diff --git a/M2/Generative AI/TP3/TP3 - Starter.ipynb b/M2/Generative AI/TP3/TP3 - Starter.ipynb
new file mode 100644
index 0000000..6b6296e
--- /dev/null
+++ b/M2/Generative AI/TP3/TP3 - Starter.ipynb
@@ -0,0 +1,1991 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "15419443",
+ "metadata": {},
+ "source": [
+ "# TP4 - Agents\n",
+ "\n",
+ "Dans ce notebook on s'intéresse à la méthodologie agent en utilisant le framework technique LangChain. Notre application sera l'api de la World Bank Data qui est une source de données à l'échelle mondiale sur l'état, d'un point de vue statistique, d'un pays.\n",
+ "La difficulté de cette API est qu'elle est très riche, avec des indicateurs ayant des codes complexes. De plus, les codes des pays sont spécifiques, la manière de requêter est précise.\n",
+ "\n",
+ "Pour exploiter du mieux possible les données disponibles, on se propose de définir un agent dont le rôle est de traiter une questions posées en langage naturel et requêter puis analyser les résultats.\n",
+ "\n",
+ "## Trouver le bon indicateur\n",
+ "\n",
+ "On commence par le premier enjeu : traduire une question en une liste d'indicateurs potentiel permettant d'aider à répondre. Pour ce faire, nous avons récupérer l'ensemble des indicateurs disponible et la descriptions associées."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 54,
+ "id": "2eaa0a80",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.microsoft.datawrangler.viewer.v0+json": {
+ "columns": [
+ {
+ "name": "index",
+ "rawType": "int64",
+ "type": "integer"
+ },
+ {
+ "name": "indicator",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "description",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "source",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "source_name",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "index",
+ "rawType": "int64",
+ "type": "integer"
+ },
+ {
+ "name": "embedding_text",
+ "rawType": "object",
+ "type": "string"
+ }
+ ],
+ "ref": "845e8479-ec9a-438a-96e2-582d02120544",
+ "rows": [
+ [
+ "0",
+ "1.0.HCount.1.90usd",
+ "Poverty Headcount ($1.90 a day)",
+ "topics",
+ "Poverty",
+ "11",
+ "Indicator code: 1.0.HCount.1.90usd\nIndicator description: Poverty Headcount ($1.90 a day)\nIndicator source name: Poverty"
+ ],
+ [
+ "1",
+ "1.0.HCount.2.5usd",
+ "Poverty Headcount ($2.50 a day)",
+ "topics",
+ "Poverty",
+ "11",
+ "Indicator code: 1.0.HCount.2.5usd\nIndicator description: Poverty Headcount ($2.50 a day)\nIndicator source name: Poverty"
+ ],
+ [
+ "2",
+ "1.0.HCount.Mid10to50",
+ "Middle Class ($10-50 a day) Headcount",
+ "topics",
+ "Poverty",
+ "11",
+ "Indicator code: 1.0.HCount.Mid10to50\nIndicator description: Middle Class ($10-50 a day) Headcount\nIndicator source name: Poverty"
+ ],
+ [
+ "3",
+ "1.0.HCount.Ofcl",
+ "Official Moderate Poverty Rate-National",
+ "topics",
+ "Poverty",
+ "11",
+ "Indicator code: 1.0.HCount.Ofcl\nIndicator description: Official Moderate Poverty Rate-National\nIndicator source name: Poverty"
+ ],
+ [
+ "4",
+ "1.0.HCount.Poor4uds",
+ "Poverty Headcount ($4 a day)",
+ "topics",
+ "Poverty",
+ "11",
+ "Indicator code: 1.0.HCount.Poor4uds\nIndicator description: Poverty Headcount ($4 a day)\nIndicator source name: Poverty"
+ ]
+ ],
+ "shape": {
+ "columns": 6,
+ "rows": 5
+ }
+ },
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " indicator | \n",
+ " description | \n",
+ " source | \n",
+ " source_name | \n",
+ " index | \n",
+ " embedding_text | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 1.0.HCount.1.90usd | \n",
+ " Poverty Headcount ($1.90 a day) | \n",
+ " topics | \n",
+ " Poverty | \n",
+ " 11 | \n",
+ " Indicator code: 1.0.HCount.1.90usd\\nIndicator ... | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 1.0.HCount.2.5usd | \n",
+ " Poverty Headcount ($2.50 a day) | \n",
+ " topics | \n",
+ " Poverty | \n",
+ " 11 | \n",
+ " Indicator code: 1.0.HCount.2.5usd\\nIndicator d... | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 1.0.HCount.Mid10to50 | \n",
+ " Middle Class ($10-50 a day) Headcount | \n",
+ " topics | \n",
+ " Poverty | \n",
+ " 11 | \n",
+ " Indicator code: 1.0.HCount.Mid10to50\\nIndicato... | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " 1.0.HCount.Ofcl | \n",
+ " Official Moderate Poverty Rate-National | \n",
+ " topics | \n",
+ " Poverty | \n",
+ " 11 | \n",
+ " Indicator code: 1.0.HCount.Ofcl\\nIndicator des... | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " 1.0.HCount.Poor4uds | \n",
+ " Poverty Headcount ($4 a day) | \n",
+ " topics | \n",
+ " Poverty | \n",
+ " 11 | \n",
+ " Indicator code: 1.0.HCount.Poor4uds\\nIndicator... | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " indicator description source \\\n",
+ "0 1.0.HCount.1.90usd Poverty Headcount ($1.90 a day) topics \n",
+ "1 1.0.HCount.2.5usd Poverty Headcount ($2.50 a day) topics \n",
+ "2 1.0.HCount.Mid10to50 Middle Class ($10-50 a day) Headcount topics \n",
+ "3 1.0.HCount.Ofcl Official Moderate Poverty Rate-National topics \n",
+ "4 1.0.HCount.Poor4uds Poverty Headcount ($4 a day) topics \n",
+ "\n",
+ " source_name index embedding_text \n",
+ "0 Poverty 11 Indicator code: 1.0.HCount.1.90usd\\nIndicator ... \n",
+ "1 Poverty 11 Indicator code: 1.0.HCount.2.5usd\\nIndicator d... \n",
+ "2 Poverty 11 Indicator code: 1.0.HCount.Mid10to50\\nIndicato... \n",
+ "3 Poverty 11 Indicator code: 1.0.HCount.Ofcl\\nIndicator des... \n",
+ "4 Poverty 11 Indicator code: 1.0.HCount.Poor4uds\\nIndicator... "
+ ]
+ },
+ "execution_count": 54,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import pandas as pd\n",
+ "\n",
+ "\n",
+ "def build_embedding_text(row: pd.Series) -> str:\n",
+ " \"\"\"Build the text to be embedded for a given row in the indicators dataframe.\"\"\"\n",
+ " return f\"\"\"Indicator code: {row[\"indicator\"]}\\nIndicator description: {row[\"description\"]}\\nIndicator source name: {row[\"source_name\"]}\"\"\"\n",
+ "\n",
+ "\n",
+ "df_indicators = pd.read_csv(\"./data/WBData_indicators.csv\")\n",
+ "\n",
+ "df_indicators[\"embedding_text\"] = df_indicators.apply(build_embedding_text, axis=1)\n",
+ "df_indicators.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bbabba49",
+ "metadata": {},
+ "source": [
+ "Nous allons construire un embedding de la colonne *embedding_text* pour pouvoir dans un second temps la requêter avec la méthoode FAISS.\n",
+ "\n",
+ "**Consigne** : En exploitant les fonctions `build_faiss_index` et `retrieve_index` dans le module `rag_utils`, constuire l'embedding et le tester sur question."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 55,
+ "id": "9aff2854",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import faiss\n",
+ "from sentence_transformers import SentenceTransformer\n",
+ "\n",
+ "import pandas as pd\n",
+ "\n",
+ "MODEL_NAME = \"all-MiniLM-L6-v2\"\n",
+ "model_embedding = SentenceTransformer(MODEL_NAME)\n",
+ "\n",
+ "\n",
+ "def build_faiss_index(\n",
+ " texts: [str],\n",
+ " show: bool = True, # noqa: FBT001, FBT002\n",
+ " batch_size: int = 64,\n",
+ ") -> faiss.IndexFlatIP:\n",
+ " \"\"\"Build a FAISS index from a list of texts.\"\"\"\n",
+ " embeddings = model_embedding.encode(\n",
+ " texts,\n",
+ " batch_size=batch_size,\n",
+ " show_progress_bar=show,\n",
+ " normalize_embeddings=True,\n",
+ " )\n",
+ " dimension = embeddings.shape[1]\n",
+ " index = faiss.IndexFlatIP(dimension)\n",
+ " index.add(embeddings)\n",
+ " return index\n",
+ "\n",
+ "\n",
+ "def retrieve_index(\n",
+ " dataframe: pd.DataFrame,\n",
+ " query: str,\n",
+ " index: faiss.IndexFlatIP,\n",
+ " k: int = 10,\n",
+ ") -> pd.DataFrame:\n",
+ " \"\"\"Retrieve the top k most similar entries from the dataframe for the given query.\"\"\"\n",
+ " query_embbeding = model_embedding.encode([query], normalize_embeddings=True).astype(\n",
+ " \"float32\",\n",
+ " )\n",
+ " scores, indices = index.search(query_embbeding, k)\n",
+ "\n",
+ " results = dataframe.iloc[indices[0]].copy()\n",
+ " results[\"score\"] = scores[0]\n",
+ "\n",
+ " return results.sort_values(\"score\", ascending=False)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 56,
+ "id": "8716ab99",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Batches: 100%|██████████| 409/409 [00:45<00:00, 9.08it/s]\n"
+ ]
+ },
+ {
+ "data": {
+ "application/vnd.microsoft.datawrangler.viewer.v0+json": {
+ "columns": [
+ {
+ "name": "index",
+ "rawType": "int64",
+ "type": "integer"
+ },
+ {
+ "name": "indicator",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "description",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "score",
+ "rawType": "float32",
+ "type": "float"
+ }
+ ],
+ "ref": "6e8d5b84-f1f7-4d37-9a5f-a4696cab9084",
+ "rows": [
+ [
+ "6689",
+ "HD.HCI.LAYS",
+ "Learning-Adjusted Years of School",
+ "0.6565653"
+ ],
+ [
+ "14239",
+ "SE.PRM.INFR",
+ "Basic Infrastructure",
+ "0.65512097"
+ ],
+ [
+ "17416",
+ "UIS.ESG.LOWERSEC.NCOG.ENJO.M",
+ "Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, male (%)",
+ "0.645964"
+ ],
+ [
+ "14421",
+ "SE.PRM.PEDG.4.M",
+ "(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Male",
+ "0.6426065"
+ ],
+ [
+ "14403",
+ "SE.PRM.PEDG",
+ "Teacher Pedagogical Skills",
+ "0.6393548"
+ ]
+ ],
+ "shape": {
+ "columns": 3,
+ "rows": 5
+ }
+ },
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " indicator | \n",
+ " description | \n",
+ " score | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 6689 | \n",
+ " HD.HCI.LAYS | \n",
+ " Learning-Adjusted Years of School | \n",
+ " 0.656565 | \n",
+ "
\n",
+ " \n",
+ " | 14239 | \n",
+ " SE.PRM.INFR | \n",
+ " Basic Infrastructure | \n",
+ " 0.655121 | \n",
+ "
\n",
+ " \n",
+ " | 17416 | \n",
+ " UIS.ESG.LOWERSEC.NCOG.ENJO.M | \n",
+ " Percentage of students in lower secondary educ... | \n",
+ " 0.645964 | \n",
+ "
\n",
+ " \n",
+ " | 14421 | \n",
+ " SE.PRM.PEDG.4.M | \n",
+ " (De Facto) Percent of teachers with good pract... | \n",
+ " 0.642606 | \n",
+ "
\n",
+ " \n",
+ " | 14403 | \n",
+ " SE.PRM.PEDG | \n",
+ " Teacher Pedagogical Skills | \n",
+ " 0.639355 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " indicator \\\n",
+ "6689 HD.HCI.LAYS \n",
+ "14239 SE.PRM.INFR \n",
+ "17416 UIS.ESG.LOWERSEC.NCOG.ENJO.M \n",
+ "14421 SE.PRM.PEDG.4.M \n",
+ "14403 SE.PRM.PEDG \n",
+ "\n",
+ " description score \n",
+ "6689 Learning-Adjusted Years of School 0.656565 \n",
+ "14239 Basic Infrastructure 0.655121 \n",
+ "17416 Percentage of students in lower secondary educ... 0.645964 \n",
+ "14421 (De Facto) Percent of teachers with good pract... 0.642606 \n",
+ "14403 Teacher Pedagogical Skills 0.639355 "
+ ]
+ },
+ "execution_count": 56,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "index = build_faiss_index(df_indicators[\"embedding_text\"].tolist())\n",
+ "query = \"What are the indicators related to education?\"\n",
+ "results = retrieve_index(df_indicators, query, index, k=5)\n",
+ "results[[\"indicator\", \"description\", \"score\"]]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "206c6280",
+ "metadata": {},
+ "source": [
+ "Il faut maintenant constuire une fonction pour que ça soit un outil de notre agent.\n",
+ "\n",
+ "**Consigne** : Construire une fonction `retrieve_indicators` qui à partir d'une question et d'un nombre d'indicateurs à renvoyer, renvoie les indicateurs les plus pertinents (selon l'embedding) pour la question.\n",
+ "Dans un soucis de simplicité, on ne renverras que trois colonnes : l'indicateur, sa description et le score associé."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 57,
+ "id": "583967a2",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def retrieve_indicators(query: str, k: int = 10) -> pd.DataFrame:\n",
+ " \"\"\"Retrieve the top k most similar indicators for the given query.\"\"\"\n",
+ " index = build_faiss_index(df_indicators[\"embedding_text\"].tolist())\n",
+ " results = retrieve_index(df_indicators, query, index, k=k)\n",
+ " return results[[\"indicator\", \"description\", \"score\"]]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "c7bcbb11",
+ "metadata": {},
+ "source": [
+ "Nous sommes maintenant capables d'identifier des indicateurs pertinent pour une question donnée. Il faut maintenant obtenir les codes des pays qui nous intéresse.\n",
+ "\n",
+ "## Identifier les codes de pays\n",
+ "\n",
+ "De la même manière que précédemment, nous avons l'ensemble des valeurs disponibles."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 58,
+ "id": "190b9427",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.microsoft.datawrangler.viewer.v0+json": {
+ "columns": [
+ {
+ "name": "index",
+ "rawType": "int64",
+ "type": "integer"
+ },
+ {
+ "name": "Code",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "Description",
+ "rawType": "object",
+ "type": "string"
+ },
+ {
+ "name": "embedding_text",
+ "rawType": "object",
+ "type": "string"
+ }
+ ],
+ "ref": "a36c39e7-624f-4363-8af1-fbf22836367b",
+ "rows": [
+ [
+ "0",
+ "ABW",
+ "Aruba",
+ "Code: ABW\nDescription: Aruba"
+ ],
+ [
+ "1",
+ "AFE",
+ "Africa Eastern and Southern",
+ "Code: AFE\nDescription: Africa Eastern and Southern"
+ ],
+ [
+ "2",
+ "AFG",
+ "Afghanistan",
+ "Code: AFG\nDescription: Afghanistan"
+ ],
+ [
+ "3",
+ "AFR",
+ "Africa",
+ "Code: AFR\nDescription: Africa"
+ ],
+ [
+ "4",
+ "AFW",
+ "Africa Western and Central",
+ "Code: AFW\nDescription: Africa Western and Central"
+ ]
+ ],
+ "shape": {
+ "columns": 3,
+ "rows": 5
+ }
+ },
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Code | \n",
+ " Description | \n",
+ " embedding_text | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " ABW | \n",
+ " Aruba | \n",
+ " Code: ABW\\nDescription: Aruba | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " AFE | \n",
+ " Africa Eastern and Southern | \n",
+ " Code: AFE\\nDescription: Africa Eastern and Sou... | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " AFG | \n",
+ " Afghanistan | \n",
+ " Code: AFG\\nDescription: Afghanistan | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " AFR | \n",
+ " Africa | \n",
+ " Code: AFR\\nDescription: Africa | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " AFW | \n",
+ " Africa Western and Central | \n",
+ " Code: AFW\\nDescription: Africa Western and Cen... | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Code Description \\\n",
+ "0 ABW Aruba \n",
+ "1 AFE Africa Eastern and Southern \n",
+ "2 AFG Afghanistan \n",
+ "3 AFR Africa \n",
+ "4 AFW Africa Western and Central \n",
+ "\n",
+ " embedding_text \n",
+ "0 Code: ABW\\nDescription: Aruba \n",
+ "1 Code: AFE\\nDescription: Africa Eastern and Sou... \n",
+ "2 Code: AFG\\nDescription: Afghanistan \n",
+ "3 Code: AFR\\nDescription: Africa \n",
+ "4 Code: AFW\\nDescription: Africa Western and Cen... "
+ ]
+ },
+ "execution_count": 58,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "countries = pd.read_csv(\"./data/WBData_countries.csv\")\n",
+ "countries[\"embedding_text\"] = countries.apply(\n",
+ " lambda row: f\"\"\"Code: {row[\"Code\"]}\\nDescription: {row[\"Description\"]}\"\"\",\n",
+ " axis=1,\n",
+ ")\n",
+ "countries.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "db235f9f",
+ "metadata": {},
+ "source": [
+ "**Consigne** : reproduire *mutatis mutandis* le travail précédent dans le cadre des codes de pays."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 59,
+ "id": "09c64a5d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def retrieve_countries(query: str, k: int = 10) -> pd.DataFrame:\n",
+ " \"\"\"Retrieve the top k most similar countries for the given query.\"\"\"\n",
+ " index = build_faiss_index(countries[\"embedding_text\"].tolist())\n",
+ " results = retrieve_index(countries, query, index, k=k)\n",
+ " return results[[\"Code\", \"Description\", \"score\"]]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "cd7f259e",
+ "metadata": {},
+ "source": [
+ "A présent nous avons deux fonctions : une pour indentifier les indicateurs pertinent, une pour identifier les codes pays d'intérêts.\n",
+ "\n",
+ "## Appeler correctement l'API\n",
+ "\n",
+ "L'objectif est à présent de requêter l'API correctement. Par exemple pour l'inflation annuelle en pourcentage, vue par le consommateur, en France entre 2015 et 2020, la requête est :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 60,
+ "id": "9abc67e3",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "date\n",
+ "2020 0.476499\n",
+ "2019 1.108255\n",
+ "2018 1.850815\n",
+ "2017 1.032283\n",
+ "2016 0.183335\n",
+ "2015 0.037514\n",
+ "Name: value, dtype: float64"
+ ]
+ },
+ "execution_count": 60,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import wbdata\n",
+ "\n",
+ "code = \"FP.CPI.TOTL.ZG\"\n",
+ "country = \"FRA\"\n",
+ "series = wbdata.get_series(code, date=(\"2015\", \"2020\"), country=[country])\n",
+ "series"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a9ff0f02",
+ "metadata": {},
+ "source": [
+ "Si on souhaite l'obtenir pour la France et l'Allemagne :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 61,
+ "id": "99ff0a12",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "country date\n",
+ "Germany 2020 0.144878\n",
+ " 2019 1.445660\n",
+ " 2018 1.732169\n",
+ " 2017 1.509495\n",
+ " 2016 0.491747\n",
+ " 2015 0.514426\n",
+ "France 2020 0.476499\n",
+ " 2019 1.108255\n",
+ " 2018 1.850815\n",
+ " 2017 1.032283\n",
+ " 2016 0.183335\n",
+ " 2015 0.037514\n",
+ "Name: value, dtype: float64"
+ ]
+ },
+ "execution_count": 61,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "code = \"FP.CPI.TOTL.ZG\"\n",
+ "country = [\"FRA\", \"DEU\"]\n",
+ "series = wbdata.get_series(code, date=(\"2015\", \"2020\"), country=country)\n",
+ "series"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "e427b5a0",
+ "metadata": {},
+ "source": [
+ "**Consigne** : Compléter la fonction `query_api` dont l'objectif est de requêter l'API World Bank Data. A partir d'un code d'indicateur, d'une période en années et d'un code de pays, retourner un DataFrame simple de lecture."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 62,
+ "id": "b6a089ce",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def query_api(\n",
+ " country_codes: [str],\n",
+ " indicator_codes: [str],\n",
+ " date: tuple[str, str],\n",
+ ") -> pd.DataFrame:\n",
+ " \"\"\"Query the World Bank API for the given countries and indicators.\"\"\"\n",
+ " data = wbdata.get_data(\n",
+ " indicator_codes,\n",
+ " country=country_codes,\n",
+ " data_date=date,\n",
+ " )\n",
+ " records = []\n",
+ " for country_data in data:\n",
+ " country_code = country_data[\"country\"][\"id\"]\n",
+ " for indicator_code, entries in country_data[\"indicators\"].items():\n",
+ " for entry in entries:\n",
+ " record = {\n",
+ " \"country_code\": country_code,\n",
+ " \"indicator_code\": indicator_code,\n",
+ " \"date\": entry[\"date\"],\n",
+ " \"value\": entry[\"value\"],\n",
+ " }\n",
+ " records.append(record)\n",
+ " return pd.DataFrame(records)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5a5aaeea",
+ "metadata": {},
+ "source": [
+ "## Agent ! \n",
+ "\n",
+ "Passons maintenant à l'étape de conception de l'agent, nous utiliserons LangGraph pour le faire.\n",
+ "\n",
+ "Pour commencer, faisons le récapitulatif des fonctions que nous avons construites :\n",
+ "1. `retrieve_indicators` : récupérer les codes pertinents pour une question donnée\n",
+ "2. `retrieve_countries` : récupérer les codes pays pertinents pour une question donnée\n",
+ "3. `query_api` : requêter proprement l'API d'intérêt"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 63,
+ "id": "1b58d076",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "TOOL_REGISTRY = {\n",
+ " \"retrieve_indicators\": retrieve_indicators,\n",
+ " \"retrieve_countries\": retrieve_countries,\n",
+ " \"query_api\": query_api,\n",
+ "}"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "49459ab3",
+ "metadata": {},
+ "source": [
+ "### Structure de l'agent\n",
+ "\n",
+ "Dans LangGraph, un agent est un graphe d'actions et d'informations évolutifs. Nous allons définir :\n",
+ "1. Une **classe** qui représentera l'agent. L'objectif est de pouvoir stocker et utiliser par la suite à bon essient les avancées de l'agent.\n",
+ "2. Des **méthodes** qui sont les sommets dans le graphes d'actions de l'agent. Ces méthodes exploitent les informations contenues dans la classe.\n",
+ "3. Un **graphe** qui va permettre de définir comment passer d'un sommet à l'autre.\n",
+ "\n",
+ "Commençons par la classe. Nous appelons l'agent à partir d'une **question** sur laquelle il va **réfléchir** et élaborer un plan d'action qui ici se résumé à des **appels** aux fonctions que nous avons définies. Puis, exploitant les **résultats** de ces appels, l'agent pourra **requêter** l'API puis **analyser** le résultat, à la lumière de la question posée initialement.\n",
+ "\n",
+ "Nous allons exactement coder cela, chaque mot en gras correspond à une information que l'on va stocker et exploiter au moment opportun."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 64,
+ "id": "08461b31",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from typing import Any, TypedDict\n",
+ "\n",
+ "from pydantic import BaseModel, Field\n",
+ "\n",
+ "\n",
+ "class AgentState(TypedDict):\n",
+ " \"\"\"State of the agent during its reasoning process.\"\"\"\n",
+ "\n",
+ " question: str\n",
+ " tool_thoughts: str\n",
+ " query_thoughts: str\n",
+ " tool_calls: list[dict]\n",
+ " tool_results: list[Any]\n",
+ " query_calls: list[dict]\n",
+ " query_results: list[dict]\n",
+ " answer: str"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bc6040ac",
+ "metadata": {},
+ "source": [
+ "Pour travailler, nous n'utiliserons qu'un seul modèle, ici Gemma3 version 12B. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 65,
+ "id": "ebb591c8",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from langchain_ollama import OllamaLLM\n",
+ "\n",
+ "model = OllamaLLM(model=\"gemma3:12b\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "055fd5fe",
+ "metadata": {},
+ "source": [
+ "### Préparation de l'appel\n",
+ "\n",
+ "La première étape consiste à préparer l'appel à l'API. Nous avons besoin que le modèle puisse à la fois nous liver sa réflexion et les outils qu'il souhaite exploiter.\n",
+ "Nous allons donc définir notre propre *parser* du résultat du modèle :\n",
+ "\n",
+ "1. **Raisonnement** : pour auditer la réflexion du modèle. Ici, simplement du texte suffit.\n",
+ "2. **Outil** : pour savoir quels outils appeler avec quel paramètrage. Ici nous devons définir une liste d'appels."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 66,
+ "id": "081174ae",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The output should be formatted as a JSON instance that conforms to the JSON schema below.\n",
+ "\n",
+ "As an example, for the schema {\"properties\": {\"foo\": {\"title\": \"Foo\", \"description\": \"a list of strings\", \"type\": \"array\", \"items\": {\"type\": \"string\"}}}, \"required\": [\"foo\"]}\n",
+ "the object {\"foo\": [\"bar\", \"baz\"]} is a well-formatted instance of the schema. The object {\"properties\": {\"foo\": [\"bar\", \"baz\"]}} is not well-formatted.\n",
+ "\n",
+ "Here is the output schema:\n",
+ "```\n",
+ "{\"$defs\": {\"ToolCall\": {\"description\": \"Representation of a tool call.\", \"properties\": {\"name\": {\"description\": \"Name of the tool to call\", \"title\": \"Name\", \"type\": \"string\"}, \"args\": {\"additionalProperties\": true, \"description\": \"Arguments for the tool\", \"title\": \"Args\", \"type\": \"object\"}}, \"required\": [\"name\", \"args\"], \"title\": \"ToolCall\", \"type\": \"object\"}}, \"description\": \"Output schema for reasoning steps.\", \"properties\": {\"thought\": {\"description\": \"Short explanation of reasoning\", \"title\": \"Thought\", \"type\": \"string\"}, \"tools\": {\"description\": \"Tools to call\", \"items\": {\"$ref\": \"#/$defs/ToolCall\"}, \"title\": \"Tools\", \"type\": \"array\"}}, \"required\": [\"thought\", \"tools\"]}\n",
+ "```\n"
+ ]
+ }
+ ],
+ "source": [
+ "from langchain_core.output_parsers import PydanticOutputParser\n",
+ "\n",
+ "\n",
+ "class ToolCall(BaseModel):\n",
+ " \"\"\"Representation of a tool call.\"\"\"\n",
+ "\n",
+ " name: str = Field(description=\"Name of the tool to call\")\n",
+ " args: dict[str, Any] = Field(description=\"Arguments for the tool\")\n",
+ "\n",
+ "\n",
+ "class ReasoningOutput(BaseModel):\n",
+ " \"\"\"Output schema for reasoning steps.\"\"\"\n",
+ "\n",
+ " thought: str = Field(description=\"Short explanation of reasoning\")\n",
+ " tools: list[ToolCall] = Field(description=\"Tools to call\")\n",
+ "\n",
+ "\n",
+ "parser = PydanticOutputParser(pydantic_object=ReasoningOutput)\n",
+ "format_instructions = parser.get_format_instructions()\n",
+ "print(format_instructions)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9e4b951b",
+ "metadata": {},
+ "source": [
+ "Nous avons en plus les instructions à fournir au modèle pour formatter la réponse.\n",
+ "\n",
+ "Nous pouvons enfin créer notre premier sommet/noeud du graphe :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 67,
+ "id": "02cd965a",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def preparation_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Prepare node to decide which tools to call based on the question.\"\"\"\n",
+ " prompt = f\"\"\"\n",
+ "You are a AI agent data analyst using the World Bank Data API to answer the user question. You MUST use the two tools to answer the question.\n",
+ "\n",
+ "User question:\n",
+ "{state[\"question\"]}\n",
+ "\n",
+ "Available tools:\n",
+ "- retrieve_indicators(query: str) : ask a question to see which indicators might help\n",
+ "- retrieve_countries(query: str) : ask a question to retrieve the code of a specific country or a geographic zone\n",
+ "\n",
+ "\n",
+ "\n",
+ "{format_instructions}\n",
+ "\"\"\"\n",
+ " response = model.invoke(prompt)\n",
+ " decision = parser.parse(response)\n",
+ "\n",
+ " state[\"tool_thoughts\"] = decision.thought\n",
+ " state[\"tool_calls\"] = [\n",
+ " {\"name\": tool.name, \"args\": tool.args} for tool in decision.tools\n",
+ " ]\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "221e51f0",
+ "metadata": {},
+ "source": [
+ "Nous avons appelé le modèle, récupérer sa réponse dans un format facilement exploitable pour nous puis stocké les informations. Il nous faut maintenant concrétement appeler les outils et stocker les résultats : c'est complétement déterministe.\n",
+ "\n",
+ "### Appels d'outils"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 68,
+ "id": "48939e28",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def tool_execution_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Execute the tool calls decided in the preparation node.\"\"\"\n",
+ " results = []\n",
+ " for call in state[\"tool_calls\"]:\n",
+ " tool_name = call[\"name\"]\n",
+ " tool_args = call.get(\"args\", {})\n",
+ "\n",
+ " tool_function = TOOL_REGISTRY.get(tool_name)\n",
+ " if tool_function is None:\n",
+ " results.append(\n",
+ " {\"tool\": tool_name, \"args\": tool_args, \"error\": \"Unknown tool\"},\n",
+ " )\n",
+ " continue\n",
+ "\n",
+ " try:\n",
+ " result = tool_function(**tool_args)\n",
+ " results.append({\"tool\": tool_name, \"args\": tool_args, \"result\": result})\n",
+ " except:\n",
+ " continue\n",
+ "\n",
+ " state[\"tool_results\"] = results\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "612b4ebe",
+ "metadata": {},
+ "source": [
+ "### Noeuds de requête\n",
+ "\n",
+ "Après la préparation et la récupération des informations via les outils que nous avons défini plus tôt, nous pouvons définir un nouveau sommet/noeud dont l'objectif est de définir l'appel à la fonction `query_api`.\n",
+ "\n",
+ "**Consigne** En s'inspirant du sommet `preparation_node`, compléter la cellule ci-dessous."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 69,
+ "id": "36935e0f",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def query_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Node to decide how to query the World Bank API based on tool results.\"\"\"\n",
+ " prompt = f\"\"\"\n",
+ "You are in a AI agent system. Based on the following informations, use the tool to help answer the user question.\n",
+ "\n",
+ "User question:\n",
+ "{state[\"question\"]}\n",
+ "\n",
+ "Your reasoning:\n",
+ "{state[\"tool_thoughts\"]}\n",
+ "\n",
+ "Data retrieved from tools:\n",
+ "{state[\"tool_results\"]}\n",
+ "\n",
+ "Available tool: query_api(code, date, country) with parameters :\n",
+ " - code : string linked to an indicator in the world bank data. Example : FR.INR.MMKT\n",
+ " - date : string of the year. If you need to query for a period, use a list with the starting and ending year. Examples : \"2025\" or [\"2020\", \"2023\"]\n",
+ " - country: string or list of string representing a country with a 3 letter code. Examples : \"FRA\" or [\"UAE\", \"DEU\"]\n",
+ "\n",
+ "{format_instructions}\n",
+ "\"\"\"\n",
+ " state[\"answer\"] = model.invoke(prompt)\n",
+ " return state"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "1170b4f0",
+ "metadata": {},
+ "source": [
+ "Il reste à exécuter ce que ce sommet/noeud a jugé utile :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 70,
+ "id": "f20f5c60",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def query_execution_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Execute the query calls decided in the query node.\"\"\"\n",
+ " results = []\n",
+ " for call in state[\"query_calls\"]:\n",
+ " tool_name = call[\"name\"]\n",
+ " tool_args = call.get(\"args\", {})\n",
+ "\n",
+ " tool_function = TOOL_REGISTRY.get(tool_name)\n",
+ " if tool_function is None:\n",
+ " results.append(\n",
+ " {\"tool\": tool_name, \"args\": tool_args, \"error\": \"Unknown tool\"},\n",
+ " )\n",
+ " continue\n",
+ "\n",
+ " result = tool_function(**tool_args)\n",
+ " results.append({\"tool\": tool_name, \"args\": tool_args, \"result\": result})\n",
+ "\n",
+ " state[\"query_results\"] = results\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "5986bba8",
+ "metadata": {},
+ "source": [
+ "### Synthèse\n",
+ "\n",
+ "Après tout ces appels et ces informations collectées, il est temps de les restituer sous forme de simple texte."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 71,
+ "id": "2c751849",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def synthesis_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Synthesis node to produce the final answer to the user question.\"\"\"\n",
+ " prompt = f\"\"\"\n",
+ "You are an expert in data analysis and you used the World Bank Data API.\n",
+ "\n",
+ "User question:\n",
+ "{state[\"question\"]}\n",
+ "\n",
+ "Your reasoning:\n",
+ "{state[\"query_thoughts\"]}\n",
+ "\n",
+ "Data retrieved from tools:\n",
+ "{state[\"query_results\"]}\n",
+ "\n",
+ "Write a concise and clear answer to the user question, based ONLY on the information you have. Be thoughtful, write in plain text : do not use too much formatting.\n",
+ "\"\"\"\n",
+ " state[\"answer\"] = model.invoke(prompt)\n",
+ " return state"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "15cfb361",
+ "metadata": {},
+ "source": [
+ "### Définition du graphe\n",
+ "\n",
+ "A ce stade, nous avons des bouts du puzzles mais ils ne sont pas assemblé. C'est ce que nous allons faire maintenant. On commence par ajouter les noeuds/sommets :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 72,
+ "id": "31e2e6a5",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 72,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from langgraph.graph import StateGraph\n",
+ "\n",
+ "graph = StateGraph(AgentState)\n",
+ "\n",
+ "graph.add_node(\"preparation\", preparation_node)\n",
+ "graph.add_node(\"preparation_tools\", tool_execution_node)\n",
+ "\n",
+ "graph.add_node(\"query\", query_node)\n",
+ "graph.add_node(\"query_tools\", query_execution_node)\n",
+ "\n",
+ "graph.add_node(\"synthesis\", synthesis_node)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "e80eb961",
+ "metadata": {},
+ "source": [
+ "Puis les liens entres les différents noeuds/sommets :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 73,
+ "id": "a2f9aebe",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "graph.set_entry_point(\"preparation\")\n",
+ "graph.add_edge(\"preparation\", \"preparation_tools\")\n",
+ "graph.add_edge(\"preparation_tools\", \"query\")\n",
+ "graph.add_edge(\"query\", \"query_tools\")\n",
+ "graph.add_edge(\"query_tools\", \"synthesis\")\n",
+ "\n",
+ "agent = graph.compile()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18f33d4a",
+ "metadata": {},
+ "source": [
+ "Il est maintenant temps de l'utiliser !"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 74,
+ "id": "80f9aa22",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Batches: 100%|██████████| 409/409 [00:48<00:00, 8.45it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "question = \"What the evolution of France's inflation between 2015 and 2025 ? Comment on this value using the inflation in Europe, or in Germany for example.\"\n",
+ "\n",
+ "initial_state = {\n",
+ " \"question\": question,\n",
+ " \"tool_thoughts\": \"\",\n",
+ " \"query_thoughts\": \"\",\n",
+ " \"tool_calls\": [],\n",
+ " \"tool_results\": [],\n",
+ " \"query_calls\": [],\n",
+ " \"query_results\": [],\n",
+ " \"answer\": \"\",\n",
+ "}\n",
+ "\n",
+ "result = agent.invoke(initial_state)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b8e91b0d",
+ "metadata": {},
+ "source": [
+ "On peut obtenir le résultat de l'agent ainsi que ces différentes réflexion tout au long du processus :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 75,
+ "id": "7355b174",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Unfortunately, I do not have access to external tools or the World Bank Data API to retrieve the data you requested. Therefore, I cannot provide you with the evolution of France’s inflation between 2015 and 2025, nor compare it to European or German inflation rates.\n",
+ "\n",
+ "\n",
+ "\n",
+ "To answer your question accurately, I would need to query the World Bank Data API and process the results. If you can provide the data yourself, I would be happy to analyze it and comment on the trends.\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(result[\"answer\"])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 94,
+ "id": "ff17fb70",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "{'question': \"What the evolution of France's inflation between 2015 and 2025 ? Comment on this value using the inflation in Europe, or in Germany for example.\", 'tool_thoughts': \"First, I need to determine which indicator represents inflation. I will use the 'retrieve_indicators' tool to find appropriate indicators.\", 'tool_calls': [{'name': 'retrieve_indicators', 'args': {'query': 'inflation'}}], 'tool_results': [{'tool': 'retrieve_indicators', 'args': {'query': 'inflation'}, 'result': indicator \\\n",
+ "6299 FP.CPI.TOTL.ZG \n",
+ "9781 NY.GDP.DEFL.KD.ZG \n",
+ "6303 FP.WPI.TOTL.ZG \n",
+ "9782 NY.GDP.DEFL.KD.ZG.AD \n",
+ "6301 FP.FPI.TOTL.ZG \n",
+ "9780 NY.GDP.DEFL.87.ZG \n",
+ "6298 FP.CPI.TOTL \n",
+ "6275 FM.LBL.MQMY.ZG \n",
+ "6313 FR.INR.MMKT \n",
+ "10930 PI-16 \n",
+ "\n",
+ " description score \n",
+ "6299 Inflation, consumer prices (annual %) 0.518722 \n",
+ "9781 Inflation, GDP deflator (annual %) 0.460076 \n",
+ "6303 Inflation, wholesale prices (annual %) 0.456499 \n",
+ "9782 Inflation, GDP deflator: linked series (annual %) 0.409883 \n",
+ "6301 Inflation, food prices (annual %) 0.402444 \n",
+ "9780 Inflation, GDP deflator (annual %) 0.401507 \n",
+ "6298 Consumer price index (2010 = 100) 0.358742 \n",
+ "6275 Money and quasi money growth (annual %) 0.320473 \n",
+ "6313 Money market rate (%) 0.313243 \n",
+ "10930 Medium term perspective in expenditure budgeting 0.311095 }], 'query_thoughts': 'Structured query plan generated', 'query_results': [], 'query_plan': {'indicator_code': 'FP.CPI.TOTL.ZG', 'countries': ['FRA', 'DEU'], 'start_year': 2015, 'end_year': 2025}, 'answer': \"```tool_code\\nfrom wbdata import wbdata\\nimport pandas as pd\\n\\n# Define the indicator for inflation (CPI, % change)\\nindicator = 'CPI-ACP-RD'\\n\\n# Define the country for France\\ncountry = 'FRA'\\n\\n# Define the year range\\nstart_year = 2015\\nend_year = 2025\\n\\n# Fetch the data for France\\nfrance_inflation = wbdata.get_series(indicator, country, start_year=start_year, end_year=end_year)\\n\\n# Fetch the data for Europe (aggregate region)\\neurope_inflation = wbdata.get_series(indicator, 'EUU', start_year=start_year, end_year=end_year)\\n\\n# Fetch the data for Germany\\ngermany_inflation = wbdata.get_series(indicator, 'DEU', start_year=start_year, end_year=end_year)\\n\\n\\n# Convert to pandas DataFrames for easier handling\\nfrance_inflation_df = france_inflation.to_frame(name='France')\\neurope_inflation_df = europe_inflation.to_frame(name='Europe')\\ngermany_inflation_df = germany_inflation.to_frame(name='Germany')\\n\\n# Combine the dataframes\\ncombined_df = pd.concat([france_inflation_df, europe_inflation_df, germany_inflation_df], axis=1)\\n\\n# Print the combined data\\nprint(combined_df)\\n```\\n\", 'human_feedback': {'approved': True}}\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(result)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "ffd8baa7",
+ "metadata": {},
+ "source": [
+ "C'est pas mal ! Mais nous avons probablement eu de la chance : la requête a été bien formulée. Ce ne sera peut-être pas toujours le cas, nous avons besoin de plus de sécurité.\n",
+ "\n",
+ "## Plus de robustesse dans la génération de la requête\n",
+ "\n",
+ "On se propose ici d'améliorer cet aspect en modifiant le graphe :\n",
+ "- Ajout d'un module de **validation déterministe** des paramètres de la requête sélectionné\n",
+ "- Ajout d'un noeud/sommet de revus des paramètres s'il y a une erreur, pour le **réparer**\n",
+ "\n",
+ "Ces deux ajustements nous demanderons de modifier la classe de définition de l'agent et le graphe.\n",
+ "\n",
+ "### Validation déterministe\n",
+ "\n",
+ "On commence par la classe `QueryPlan` :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 76,
+ "id": "274e67a5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class QueryPlan(BaseModel):\n",
+ " \"\"\"Plan for querying the World Bank API.\"\"\"\n",
+ "\n",
+ " indicator_code: str = Field(description=\"World Bank indicator code\")\n",
+ " countries: list[str] = Field(description=\"List of 3-letter country codes\")\n",
+ " start_year: int = Field(description=\"Start year of the query\")\n",
+ " end_year: int = Field(description=\"End year of the query\")\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "683ddb56",
+ "metadata": {},
+ "source": [
+ "**Consigne** : Modifier la classe de l'agent pour remplacer *query_calls* et *query_results* par :\n",
+ "* *query_plan* qui sera un dictionnaire optionnel\n",
+ "* *validation_errors* qui sera une liste de string optionnel, pour aider à débugger"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 77,
+ "id": "36c8ca29",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def query_plan(\n",
+ " question: str,\n",
+ ") -> QueryPlan:\n",
+ " \"\"\"Generate a query plan based on the user question.\"\"\"\n",
+ " prompt = f\"\"\"You are an AI agent data analyst using the World Bank Data API to answer the user question. Based on the question, create a plan to query the World Bank API.\n",
+ "User question:\n",
+ "{question}\n",
+ "\n",
+ "{format_instructions}\n",
+ " \"\"\"\n",
+ " response = model.invoke(prompt)\n",
+ " return parser.parse(response)\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "50ba9a56",
+ "metadata": {},
+ "source": [
+ "Il nous faut modifier la fonction `query_node` pour produire quelque chose de plus simple à valider :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 80,
+ "id": "287fe8ec",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from langchain_core.output_parsers import PydanticOutputParser\n",
+ "\n",
+ "query_plan_parser = PydanticOutputParser(pydantic_object=QueryPlan)\n",
+ "query_plan_format = query_plan_parser.get_format_instructions()\n",
+ "\n",
+ "\n",
+ "def query_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Node to decide how to query the World Bank API based on tool results.\"\"\"\n",
+ " prompt = f\"\"\"\n",
+ "You are an AI agent building a structured query plan for the World Bank Data API.\n",
+ "\n",
+ "User question:\n",
+ "{state[\"question\"]}\n",
+ "\n",
+ "Retrieved indicators and countries:\n",
+ "{state[\"tool_results\"]}\n",
+ "\n",
+ "Return exactly one query plan with:\n",
+ "- indicator_code\n",
+ "- countries (list)\n",
+ "- start_year\n",
+ "- end_year\n",
+ "\n",
+ "{query_plan_format}\n",
+ "\"\"\"\n",
+ " response = model.invoke(prompt)\n",
+ " plan = query_plan_parser.parse(response)\n",
+ "\n",
+ " state[\"query_thoughts\"] = \"Structured query plan generated\"\n",
+ " state[\"query_plan\"] = plan.model_dump()\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "278c2df8",
+ "metadata": {},
+ "source": [
+ "Puis il nous faut un module de validation déterministe :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 81,
+ "id": "c16a8f6b",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "VALID_INDICATORS = set(df_indicators[\"indicator\"].values)\n",
+ "VALID_COUNTRIES = set(countries[\"Code\"].values)\n",
+ "MIN_YEAR = 1960\n",
+ "MAX_YEAR = 2025\n",
+ "\n",
+ "\n",
+ "def validation_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Validate the generated query plan.\"\"\"\n",
+ " plan = state.get(\"query_plan\")\n",
+ " errors = []\n",
+ "\n",
+ " if plan is None:\n",
+ " errors.append(\"No query plan found.\")\n",
+ " state[\"validation_errors\"] = errors\n",
+ " return state\n",
+ "\n",
+ " if plan[\"indicator_code\"] not in VALID_INDICATORS:\n",
+ " errors.append(f\"Invalid indicator code: {plan['indicator_code']}\")\n",
+ "\n",
+ " for c in plan[\"countries\"]:\n",
+ " if c not in VALID_COUNTRIES:\n",
+ " errors.append(f\"Invalid country code: {c}\")\n",
+ "\n",
+ " if not (MIN_YEAR <= plan[\"start_year\"] <= MAX_YEAR):\n",
+ " errors.append(f\"start_year out of bounds: {plan['start_year']}\")\n",
+ "\n",
+ " if not (MIN_YEAR <= plan[\"end_year\"] <= MAX_YEAR):\n",
+ " errors.append(f\"end_year out of bounds: {plan['end_year']}\")\n",
+ "\n",
+ " state[\"validation_errors\"] = errors if errors else None\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "e063ee6c",
+ "metadata": {},
+ "source": [
+ "Il nous faut également, un noeud pour éventuellement ajuster le plan d'appel s'il ne vérifie pas la validation.\n",
+ "\n",
+ "**Consigne** : Compléter la fonction ci-dessous."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "d98d3031",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def repair_node(state: AgentState) -> AgentState:\n",
+ " prompt = f\"\"\"\n",
+ "The following query plan is invalid:\n",
+ "\n",
+ "{state[\"query_plan\"]}\n",
+ "\n",
+ "Errors:\n",
+ "{state[\"validation_errors\"]}\n",
+ "\n",
+ "Fix the query plan so that:\n",
+ "- The indicator exists\n",
+ "- Country codes are valid\n",
+ "- Years are within bounds\n",
+ "\n",
+ "Return a corrected query plan only.\n",
+ "\n",
+ "{query_plan_format}\n",
+ "\"\"\"\n",
+ " response = model.invoke(prompt)\n",
+ " plan = query_plan_parser.parse(response)\n",
+ " state[\"query_plan\"] = plan.model_dump()\n",
+ " state[\"validation_errors\"] = None\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "a0653b30",
+ "metadata": {},
+ "source": [
+ "La fonction `query_execution_node` peut être largement simplifiée maintenant que nous avons fait tout ces changements.\n",
+ "\n",
+ "**Consigne** : Re-définir la fonction `query_execution_node` en prenant en compte le plan stocké dans la mémoire de l'agent."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 83,
+ "id": "e9d888ec",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def query_execution_node(state: AgentState) -> AgentState:\n",
+ " \"\"\"Execute the query calls decided in the query node.\"\"\"\n",
+ " plan = state.get(\"query_plan\")\n",
+ " if plan is None:\n",
+ " state[\"query_results\"] = []\n",
+ " return state\n",
+ "\n",
+ " result = query_api(\n",
+ " country_codes=plan[\"countries\"],\n",
+ " indicator_codes=[plan[\"indicator_code\"]],\n",
+ " date=(str(plan[\"start_year\"]), str(plan[\"end_year\"])),\n",
+ " )\n",
+ " state[\"query_results\"] = [result]\n",
+ " return state"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "abc0e490",
+ "metadata": {},
+ "source": [
+ "Finalement, nous pouvons ré-écrire le graphe en y ajoutant nos nouveaux sommets et surtout introduire des noeuds optionnels !"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 84,
+ "id": "259e91ae",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAPoAAALaCAIAAACXvdl1AAAQAElEQVR4nOydB2DTRhfHT7YznAlZJBAg7A1hU9qywmgZhUDZUPZsKbO0rLLLHl9pgVKg7ELZ0DLKKHvvUVYaZhJGQshOHFv6ni1inMROIsUJOvn9Glz5dDrJur+e3r07nVQcxxEEsQ1UBEFsBpQ7YkOg3BEbAuWO2BAod8SGQLkjNoRs5f7iafKdczGvwlJSNRzHEm0qp1QyOh2nUDCwltNDGFiEP4jEMgzHcowCvjEsLCgJYRnIAZk5ot/cuIoQw1bE8H+G8CkA5GQNJUDmt8uMvgRGoS/ZkF2/o3dfDZvwh2HEzkGhUHJqZ6VvccdazQsqlUqCWBVGZnH3sJD449sjXz/XwrJSRewdFQ5OCtCqNpUolAyr0+uPGORuULlBu4YFXtP6VYYF/Vnh0qXo8+gM+zDI3SB65m055K2Oebnzn2n6NiyTTF8Nm5D0clc5MqxWp0nhUpJYXSqxcyQ+RR2Dh/oTxErIR+6vXybt/jk8IZZz91ZWrOteM8iDUM6xrc9DbiQkx3OefnZdxxYnSK6Ridy3Ln784nFqkbKOwUPkZgtjIpN2L3seH6Or29K9ZhNvguQCOch95cRQnY4dNKs0kS/3r8Yd/f2FT3GH9l8WJYhYqJf7b1MeFvRVtRtsEyJYOTGkcv0C9Vp6EUQUdMv9l+/+8yvh8NkgG2rMrZoU6lJQ1XlUMYIIR0Go5bcpoT7FbEvrQL/pJeNfa//eEEEQ4dAq931rwiC2aJtBun4zSoZcS4iLTiaIQGiVe+j1pB7jbfeGXqKK05YFYQQRCJVy3zDzkbu3Su1suyMgPu1VWJPMXTgYSRAhUCn3N5Ha1gMKEdumeAWn6ydiCSIE+uT+56pwBydS0FtNbJtW/QprktjXUejBC4A+uT9/mORX0onkL999993u3buJcJo1axYWlldOtr1acWpbFEFyDH1yT0niqn3sRvKXf//9lwgnIiIiOjqa5Bne/nZRERqC5BjKupnCHybu+il86IK8Gi9w+vTpdevW3b5928vLq1q1asOGDYOFWrVq8WtdXFyOHTsWHx+/YcOGs2fP/vfff7C2YcOGQ4YMcXR0hAxjx45VKpV+fn5QyKBBg3755Rd+Q8izYMECYm3OH4i6+k/04DlyHj1hXSiz7s8eJDJ5Ngj87t27w4cPr1279rZt20C49+/fnzJlCjFcA/A5adIk0DosbN68ec2aNT179ly8eDHkP3To0IoVK/gS7OzsQgwsXLjw888/hwyQCF5QXmgd8C/jwOoIknMoi+UlxXNKZV5doteuXQMj3bdvX4VC4evrW7FiRRBu5mw9evQICgoqUaIE//X69etnzpz5+uuvieGJj/Dw8PXr1/PGPq/x8FITjiFIjqFM7hzL5l31BgYGJicnjxgxom7dug0aNChatKjRjTEFTDh4MpMnTwbzr9XqnyPx8Hg3th4ug/zRuh4VwVmxBEGZM+PgpNAZHweyNuXLl//xxx+9vb2XLFkSHBw8dOhQsNyZs8Fa8F4gw65duy5dutSnTx/TtQ4ODiS/iIEoJBp3IVAm98IBal1ehiLq168PPvrevXvBa4+JiQFLz9tvI2BNt2/f3rlzZ5A7ODyQEhcXR94T4SEpKHdBUCb34hVd4O4dFZ4nfSuXL18GLxwWwMC3bt169OjRIGUIJprmSU1NTUpK8vHx4b9qNJoTJ06Q98TTB4kOatS7AOiLu9s5MJeO5EkwG1wXCMjs2LEDguW3bt2CCAzoHqKK4J+Avs+dOweuC7RiAwIC9uzZ8+zZszdv3kybNg08/tjY2ISEhMwFQk74hNANlEbygOePkt087AiSY+iTu7e//bP7iSQPgJALuCjz58+HrtCBAwc6OzuDj65S6VvzEK65ePEi2Hsw7T/88AM0RiHO2K5duzp16nz11VfwtWnTphCTyVCgv79/mzZtli9fDu4+yQNSk0m9VvhkkwDoe5opOVm7ctyjrxbZet/Kkd9f3LscN3Q+9jEJgD7r7uiogvjM5vlPiG1z/0pc2RouBBEClUPG233pu2VeeBYZGjVqZDZdp9OB880w5pt3EFgsUKAAyQOgAwuCPGZXQWMXAvlmD6lkyZKrV682u9WpPS91OtK0my9BhEDro9lbFjxOitf1nlzS7FpxwUFXV1eSZ1g6pJSUFEuhergGXFzM2++fRoY07upVqU6eXJwyhuKZCJZ/+1/5Oi6NOtjccx5rpz90dFF2HomTEQiG4pkIBs8p9e/ZuHvX3hBbYvP8h6yWQ62Lg/pplZaOCanT0r2Wbcwmt2HWQ7WLXYdhOEmqSOQwad6yb0IKFlJ1GRNAZM2q7x8qVaT39yUIIhaZTIm66vsQTTJTo4l73U9k2O2y55ewZ/eTipVXtx5QhCC5QD4TXp/569X147EQzytaVt20i5eDiz2hnMf34s79GR0ZpoF+hs+HFy7gnV/jiuWL3F5ncGzbi/uX41M1+rcMqF0ZVw87ZxeVykGp1b77mQqGsBzHv36Df4cHRwxL797MQdKdFS7tBQdpGdKWOcMJTJdoKNywljM8egGpCsN6/qUJ+j3BfxyECHTc28yGVyrosyuVRJOiS47Xxb/RJieyHEucXJX123qVDczDCKlNITe5Gzm581X4w8TEGJ1e6CxjKnde5qbfFZCFGOWuVx4xOSuwSmG4JsjbHPq1/KtpFAyTdsHwyRx0Y6W9joZ/MUjaHvkvaZeZ/u04rEH4oHSGf50Io7JXKJWcyoFx87APqKQObED9GxmkhmzlnteMHTu2RYsWQUFBBKEHfPOeSLRaLT9YEqEIrDCRoNxpBCtMJCh3GsEKE0lqaqqdHT5JRBkod5GgdacRrDCRoNxpBCtMJCh3GsEKEwn67jSCchcJWncawQoTCcqdRrDCRIJypxGsMJGg3GkEK0wk2FSlEZS7SNC60whWmEhQ7jSCFSYSnU6HcqcOrDAxgGlXKvPslWhInoFyFwN6MpSCdSYGlDulYJ2JAeVOKVhnYkC5UwrWmRiwj4lSUO5iQOtOKVhnYuA4zs/PjyC0gXIXAwTdw8LCCEIbKHcxgCeT4W3aCBWg3MWAcqcUlLsYUO6UgnIXA8qdUlDuYkC5UwrKXQwod0qh+EWT7xEIRLIsi1PjUwfKXSRo4GkE5S4SlDuNoO8uEpQ7jaDcRYJypxGUu0hQ7jSCchcJyp1GUO4iQbnTCMpdJCh3GkG5iwTlTiP41mxhVK9enTHAnzdYgO7Vxo0bL1y4kCCSB7uZhFG3bl1e7goDsODj49OnTx+C0ADKXRjdu3f39PQ0TalQoUKVKlUIQgMod2F8/PHHFStWNH51c3Pr2rUrQSgB5S6YXr16eXh48MulS5cG94YglIByFwy0VitXrgwLzs7OaNrpQtKRmftX3jy+m5SqYYwpDENMj5f/qlQQHWtm7bts+v/0KzJva0TJcKz+bFjMoM+jYHSsPik2Nub6jRsODg51atcxl41ALjNHAr8jXfmcIcn8MZtmBpvEkqwOzHQrtROp1tjFw8uFIJmQqNw1Gt3aqQ+1GqKyZ1JT3qUzClAll+GrUYUZdfBOMRBJAQGml3vGovSfHGsxA6BQMqzubQqcNwjLEAtXBQtpLMlA5mtVfxVCImumCkwzw7GZlgYBIZY1X2sKJadQKlI1rLunose4kgRJjxTlrtPpfvn2YanqLvVb+xJEFNv+F2LvoOr+bQBBTJCi3JeNDan/mWfJKgUJkgv2/vJIl8r1nFCCIGlIrqm6b3WYnSODWs89bQYFxEbpXkclESQNyck9Mkzj7mlPEGtgr2Yu/x1DkDQkJ/eUJE6B4VErweqIBo27CZIbEclynA5HrVkJiB4RxAQcACxnIHzJsSxB0pCc3PWDDQliHaAni+8cQHgkJ3dO34OINWQlGMJ3JyM80nNm9I471pC1YAj6Miag7y5rOMNoBCQNycldodQ/JEQQa8DphwnhrfId0gtE6lhL458QoSiUDNoOU9CZkTOsjkPbYYoU5Y7myFqAaQfXkCBpSFDuDI4hsBZg2lnsZjJBgt1MBLEWjJIwaN1NkNy5gEgCJ3d7tH3H5qBmdUjew+lwEEE6JCd3hWHSIiI7du76Y9acyfxyxQqVe/boT/IeRkFwEIEpUhwRKctQ8b17/xqXK1SoDH8k79EPEcPAjAlyCES2/qxht659QE8nTh51dnauUqX6+HHTXV1cQ0ND+g3oMmvm4vkLZxQoUHDlit+1Wu2q1UvPnT/18uXzypUDg9t2qlfvo6wLgVUPH/63Z++2K1cvPn8eHlC8ZMuW7dp+9jmkZy4/Pj5+67YNFy6effToP08Pr/r1G/btM8TR0XHEqIHXr1+BTf7++69flm+4efPa0mULjxy6wO963fqVB//+MzLypY+Pb2C1miNHjOPDKe3aN+3Te3BMzJu161ao1eratT746ssxnp5eOT8zDOEYHDNjguScGaUS+lWF3X+VStXWbRtbt25/9PDFubN/evLk0ZKf5kG6nZ0dfK7bsLJzp56jR02E5R+XzN22fVNwu86bNu5t2CBo8tSxx08cyboQ4OelCy5ePDv8629nz/oRtP6/H+ecO3/abPk7dm7e9Psa+PrDzMWDBg0/dvwQKBXSFy9cAea8efNW/xy5VLZMedOD/23N8l27/xgyaMS2rQf79R0Km8Bh8Kug/C1b1oH0d+08sva37TdvXVuz9hciBC79VCKI5OSu07E64T0jpUuVrV2rHvipFStWAdN77Nih1NRU3m2F9I6fd69QvlJKSgoY0W5de3/WpoO7m3vLT9sGNflk3fpfsy4E0idNmjVv3tIa1WtXD6wF6eXKVrhw8QwhJEP5sNypYw+w8Y0aNoWcH3/UuHGj5nxOS8TFx/2+eS348R991AjuJLAhXIobNq7i9wsUKVK0R/e+sAqMOlj3+/fvECQXSHG8u4jGVenS5YzLRQoXBbmEhz9TKpXwtWyZCnw6aEWj0YBojDnBc9h/YE9MbAyo31IhxYuXAP93x47N5y+cfvr0Mb/Wz6+IMaexfGKwxxcvnZ09Z3LIf/f52d8LFvTI4rChQNiLqR9ftmwF8IjCwp4GBJTkvxpXubq6JSTEE0HgePf0SNJ3F37/dXBwNC47qtXwCcpwM4jY3sGBT4+Pj4PPYcP7Zdg2+nUUL3ezhUA3zXfjh6emagb0/yowsBYY2gwlGMsHVvy6ZN++XeDGwEVVqJDvylU/79u/m1jm9etI/b5M9qtWO8FnUlIi/zW3YuVw/v50SO/xDlH1Y2r2kpP0TyM7Oqoz5PH08obP0aMmgIdgmg4NxCwKuf/g7t27t+fPW1qzxttIOVw23l4+xNyR7/1z++cdurVuFWzMSbLE2Vk/tV1S8rvHpxMTE+DTw0NAezQL+InKCJKG5OSuVAluqgLXr182Lj8IuadSqUDTr169MM3jX6SYg8ESg2PNp0RHvwaNOjk5ZVHINUOiUd+PHoXCX4mAUpmPAdySpKQkr7Sc4DidVSJRbwAAEABJREFUOXuCZEmpUmXB47p9+zrv+gN37tyCG4i3tw+xBpxhpkCCpCG9pqpWTFP1VeRLCGjodDqIqPz5147GjZs7mPgYPCDr3r0GQdsU4oCgRYjJjBk7dPH/ZmddCEQeQfdb/lgfGxfLh2ugbfr8RUTmY7C3ty9WLAAaA2HhzyB6OHf+tCqVA+PiYhMS9AYbrhyQMkQz4RozbuLm6tasacsNG1efOXMCyocw5c5dWz7/vDuO68ojZNJUBf/h9u0bS5ctgmUIoQz76huz2bp0/gIM6qbNa65cuQCORKWKVUePnph1IeCCTxg/A+KJbds1AclOGDc96nXkpO/H9Orz+czpGd/HNGnCDxC17N3nc4i1Dx0yCnz9CxfOBHdounbN9jat2kNb+ZuxX86ZvcR0ky+HjgZxT585Hpq2hQv7Q+y/a5dexFqgI5MeyTVlfvku1MPX/pM+/jnfpG1wUIf2Xb/omatueasUIjU2zAgtWk7dur8fQQxIz7or0CZZF/Td3yHFmQiwfqwGGo70SE/u+jcPCKul3TuPkFxjlUIkh34SE5T8O6Ro3Vkc1WRF8GSaIEXrjubIWhjGuxPEiPR6VfHhGytieGMVQdKQ4LRKDPZ7WwsOW/7pkeaYGawhK4EnMj3Ss+4KeT6rikgBycldh5PmWQ+FgijRdpggvV5VgmNWrQbLEnzzjykSHESgQLUjeYT0Jt5gWQwmIHmE5OTu4Ki0c0Dzbh3sHYjKHk/mOyQnd3s1iY9OJYg10GhYD18lQdKQ3FMz1Rq6JbzREiTX/HdN/77sOs2t8xygPJCc3CvV9XD2UGyeF0KQ3HH2r1dVPnIjiAkSnZhh/5qwJ3eTipRzLhzgaO9obzYPY67TUP9rzAUy9b8zUwSaM1zuXPY5OXMjTzgm/WhDfnyKaRKXdpyWUuBoM+wqw54gg4LJcITpsnCGwzB+ZRVcwhvN07vxkc80bYcWLlLCiSAmSHcekn/+iAi9mZiSzLGWXBsut8OfclMAx5IM7zvOXJqI8rPfBK4P0yrLcNEzjMqOU7swjTsVKlbOhSDpwWl3RDJ27NgWLVoEBQURhB7wVWQi0Wq1KhWePcrAChMJyp1GsMJEgnKnEawwkaDcaQQrTCQodxrBChMJyp1GsMJEgnKnEawwkaSmpvLvZkIoAuUuErTuNIIVJhKUO41ghYkE5U4jWGEiQbnTCFaYSLCpSiMod5GgdacRrDCRoNxpBCtMJCh3GsEKEwNoXalU4lyW1IFyFwOadkrBOhMDyp1SsM7EgHKnFKwzMaDcKQXrTAwod0rBOhMDyp1SsM7EwLJs2bJlCUIbKHcxKBSK+/fvE4Q2UO5iAE8G/BmC0AbKXQwod0pBuYsB5U4pKHcxoNwpBeUuBpQ7paDcxYBypxSUuxhA7jqdjiC0Ibl3M9GCUqlEA08dKHeRoD9DI+jMiATlTiMod5Gg3GkE5S4SlDuNoNxFgnKnEZS7SFDuNIJyFwnKnUZQ7iJBudMIvjVbGDVq1OAX+DmV+LNXtWrVNWvWEETyYDeTMMqUKUMMTzMxBmDB2dm5b9++BKEBlLswunbt6urqappSqlSpBg0aEIQGUO7CaNeuXdGiRY1fHRwcunXrRhBKQLkLpk+fPuDA8Msg/ebNmxOEElDuggkKCipRogQxBGfAtyEIPeRtIDI+Oun5Ew3DZNwLow8I6SMb8M8YGGIgzkEyTiENKQwxEzsym54h0aRw0/2kOxCz6QqOYy1MZs2ntm8xNDVmi5PaqXKJpv/dSDDun4FIFyEk53vK2arMPzbDJsYMWRaV8fSazaxkuIAqLkSm5FUg8snduIMbXqQm608qmzk8bfZMm68rIUplDHVqJq+wdEbBcKzw02JZa5xBj+KxdPw52beQLIDSjrAscXVXfDGpJJEdeSL36Jea3+c+KV3N+YPP/AhCGzExSSe2RMRGsYNnlybywvpyj3iYtHNpWM+JcjtTtsaZPyMe3kgYPEdW9Wj9purBdc8LBTgShHLqt/ZT2TEH14cTGWF9uSfG6yp94EYQ+ingYxcemkRkhPXlzumIRyFngtCPg9qeTZVVqNr6gUiOJQTnpJAFrJbVpMiqLnEAMGJDoNwRGwLljlhEoVQwSvTdEduAY1mGtX4v5HsE5Y5YBHogWXk97JY3cs/VABEEySvyRu74/KssYBQM/BEZgdYdsQyYLXkZLvTdEYvob9Lou2cPOjNyQWYVidYdsQj4pAp5+aV504kgd9998pSxo8cMIZIkNDSkcVCtmzevESvAyMy6543c5ejMTJ323b79u/nlBg2CmjVrSfKG4A7NwiPCiATgDBAZgc5MTrl379/atT/gl4OatCB5w/PnEW/eRBMkb3j/IyL+2LqhXfump04da/958yZNa/f4Ivjvv//iV23fsblDxxanTh8LalZnyc/zIeX166gZMyd06dYaNpk5a9LTp4/5nPcf3IU7+ImTR/sN6AILn3f65OelC4272LFzy9hvv2rzWSMobdr0cWHhzyyVf/bsyZk/TOzctdWnrT4aNXrw1WuX+JxQZsTz8Hnzp7dp24ikd2YSExNn/DAR9tji0/qDBvfYtXsrn75z1x/wi548edSnXyfYHA7swMG9WZ8K2F3X7m1goXuPthO/H51F4VmvMhIXH/fjT/OgtJatPx45atBf+3YRIYBPyqDvbl2USlVCQvyRowc2rt+9a+cRMJyz507hdWxvb5+YmLBnz7Zx300LbttJp9ONHD3o2vXLI0eMX71yS8ECHkO/7MVrV6XU36Y2bFg1Y/rCg/vPfDl09O49W/naBS92yU/zKlWqNm3a/O++nRod/RoEze86Q/nJyckzZ01MSUmBbD/MXFysWMCEiSPhAoOcB/adhs9vxkzau/tYhuP/bvzX4eHPpk9b8MfmfeDk/O/HOXfu3oZ0Ozu7eFDbkrnfjJ509PDFhg2azp037cWL51mciuqBtWbNXAwLGzfsnjFtQRaFZ73KyNy5U/+9fWPEiHFrVm+rUKHyosWzbt++QXKM/FzSPGqqCspNtFpt++AuarXazdWtd69Bzk7OR44eJIZZdkGCXbr0ahr0ib9/MRAuGMvx46bXrVPfw8NzyOARbu4Ftm/fZCzn44+b+PkWBhE3btQMHI8jRw5AYsWKVX5b9Uf3bn1ATLVr1evUscedO7diYmMyl+/o6LhyxebRoyZATvgbPGhEUlLSzVtZtfnOnT8NRwWCrlC+krt7AdhLlSqBa9et4Nempqb2+mIgHADsqEXz1uAHh4TcIzkmi8Kz3q+R6zeuwJUAv9rHp9DAAcN+/mmNp6d3jvdvmKpDXkGHPPHdRZyismUrvN2WYQoX9n/y5KFxVflylfgFUB6YzBrVaxtzBlarCTVqzFmmdDnjcpHCRQ8f2U8ML0AFK/jz0gV37t5KSHg7BdKb6Nfubu4Zyid6DyFh5aqf4AYSFRX5NmeWnvTDhyFwkZQoUerdDylTAe5U7w6+/NvCXV31z++CvSc5JovCs90vD1wD4CvGxLypVrUGXP/l0k5yDtE3U3FEZNZw5iYDyxYHB4d3y46O4N4Yv4K15hdAK2AvwQ823bBAgYLGZUdHtcny20JOnz4OfjDYv0EDh5cqVebS5fPgx5uWYCwfPI3hI/vXqF5n0oQfeJPcrEU9kiVwVZjuFHByckpKSjR+zY3vm0Xh2e6X59uxU8BVO/rPQRC9i7NLcHDnL3oOUKlsNz5h/V/OEEZEIBLsrnGe0ZTkZPDLM+fx9PQCh2fmjEWmiUqF0rhsajvBS+EF8ee+nWDk+vf7MnOeDBw7fkij0YDjDnsh2dl1Hjjm5OR0z+onJCZ4CXEYxBWew/2Cc9ije1+41G/dun7y1D/rN6xycXEFd47kDGyq5hVXr13kF6Cl+OTpI9PbtJFSpcqCM+3j48v71vBXqJBfaRMHBpwQ4zJ4ySVL6KcEio2N8fbyMaafPHnU0jFATnA5eK0Dx08cIdlRrmxFuK4emHjk0DAIMHfwIsii8JzsF9onEJKCbCBZuOCHDhkJZwxCWCTHcERuzVVJyF2hUOzYsRmaoRB7Wf3bMlB8UJNPMmerWaNOnTr158+fDl4H+KMQehs8pOeBA3uMGS5eOnv+whlYgNgiBPWaNv0UlkuXKnvx0jn4Cg3irds28jmfv4jIXH7JkmXASdizdzvkhHKuXLkArcCXL/WxFPC1vL19LqWVY9wEjgdaGgsXzrx771+I4axavRRk17ljTyKWosUC4PPYsUP/3rmVReE52S9Eq6DxOmXat2DaIQ+Edx+E3K1SOZAIgGHkNUW0JNw4MD9whx01ZjCoDYzrd2OnFC1a3GxOiNOBHKfNGPfvvzchDwi6ffsuxrXduvRetern78Z9DdcPpLdq2Q4S+/YdCg3QiZNGwZ0B4j/gq0REhEGeCeNnZCgcYqCPH4euW/8rBOwgmgGO7+Yt6zb9viYuLnbUyPHdu/X9bc3yCxfP/L7pT+Mm4AdDxHD5L4shJAptALhgpk+bD6aUiKVIYf9PWrSBHVWuVG3Rwl8sFZ6T/YLDM23KvCU/zxs2vB98hRsmxJo+/eSznB8MOKWsvJqq1p8j8qcRIZ1GlVC7K3OYH/p6li5beOTQBZILQkNDoB/nf4t+rVq1OkGsxNFN4eGhiUPmyWeaSBxEgFhEfk1VlHt+M27CiFsWhiu2bNkO+s6IdJDdyNa8cWZGl1S74WtwzAPtE02qxuwqJ7UTNI6JZDi6KeL5w6RBc+XzXgN8mim/gd4DQg0cq5/yUz5YX+7yasrbNui7Z4u8ZmqwbfQDQnDMTLbgxBuIJEHfHbGIflolgs4MYhtwrNzmVcojZ4YgMoBhGJlNvJFHzgxBZAC0U3EGYAShFZQ7YkPkwdNMCo7YE0QGMEqisiNywvojW5QqJvJJIkHoJyVRZ+eY04HcVGB9uTu5Km6ewXmw5ED0y5Si5R2IjLC+3LuM9I96piEI5Rzc9JhRkKBOhYmMYPJiUERSvO63yQ8Ll1bXbeXh4q4mCFU8uRN76XAUq+X6TJHP0F8eJo/GAMW/TtryY3hKPARuSdZjSJlsw/RcNv1WDJflZFfZbG55teU1WRyzpYPJYhP9vDyM+QOA9JxXTzbnIWcoFRyjZAr42HUdU5zIDiavh7y9Ck+Cc5hFBsPMbO+mpjEri6wvCaggTmHxd+inKFeYGcXDi4NJWzS/IZNxlXGrpcuW1q5Vq1btOpm2YvQnNUNi2g/ghBwh7Emh4DIPqIbOTrO/VkEY1riHtFNq2LWZH8hY+NX2jsTdQ7aRtTyPu3sXlqczE5v0TO0e6F0YY640gd1MItFqtbY8+xylYIWJBOVOI1hhIkG50whWmEhQ7jSCFSaS1NRUlDt1YIWJBK07jWCFiQTlTiNYYSJBudMIVphIwHe3s5PXYHAbAOUuErTuNIIVJhKUO41ghYkE5U4jWGEiQd+dRlDuIkHrTiNYYSJBudMIVpgYWFb/gBresdMAABAASURBVJZCgW8ooQyUuxjQcacUlLsY0JOhFKwzMaDcKQXrTAwod0rBOhMD+u6UgnIXA1p3SsE6EwMEIsuXL08Q2kC5iwEi7nfv3iUIbaDcxQCeDPgzBKENlLsYUO6UgnIXA8qdUlDuYkC5UwrKXQwod0pBuYsB5U4pKHcxgNx1Oh1BaANHbItEqVSigacOlLtI0J+hEXRmRIJypxGUu0hQ7jSCchcJyp1GUO4iQbnTCMpdJCh3GkG5iwTlTiMod5Gg3Gkkz9+aLTOaN2/OdzBFR0c7ODiwLKvRaAICArZv304QyYPWXRguLi5Pnjzhl1NSUuATRN+3b1+C0AD2qgqjXbt2YN1NU/z9/Vu1akUQGkC5C6NLly5FihQxfgUPvmPHjgShBJS7MOzt7Tt16gQODP8VpN+2bVuCUALKXTBg4MGBIYZBkW3atIELgCCUgHIXQ9euXZ2cnIoVKxYcHEwQepBnIDLiafzB314lxuo4lrBmfh8kMSQXMIYicliq+cyWgZYwwxAPP/vOo4oRxKrIUO4JMZrfpj7xLeFYtpaTu6eL/ucZhGiUHSxyhHunQu6tJBlGn074RX4lZ8j7dqt3qlVwhE1TdrpyiBnFK1iGVZgphDHZyBSlQhcemnT3QowmQTdgVmmCWA+5yf3+1dhDG19+MUkOKjm9J/zx7cRBs1HxVkNuvvuxrS/L1nAmsuDDzwo7OCu2/fiYIFZCVnKPikjSaki9Vn5ELgRUdH0dkUoQKyEruT8PTWHkdbvyKmKvxRkPrIesxsxwCoVOQ2QFp2LRuFsPHCImaQxR1FzFTBFTUO6ShlHAfzhC22qg3CUNxIlZVLv1QLlLHej8IoiVkJnc4cYvK3Fw+LiZVZGX3BmOkZenyxCWINZDXnLnBI7GkjwcUaAzY0XQd5c0DOHQmbEiKHeJwzFKfCbBashK7vpRu3K78zOcDt13qyGvQQSEkZnvzugHRhDEWsgsMiO3Hne4gFk07tYDIzOShpHdBfx+waaqpOFkdwG/X2TWVMUudyQrZNUO0ptC4VHq5b/8r/3nzRsH1Zo3f/q5c6dgISoqEtLHTRgBf8ZsBw/+CasSExP5rwcO7h36Ve9PW30En9u2bzLut21w0Pbtvw8fOQAyQ8ktW39sOlEwrGrWol5qak7HsHOEQ+tuRWy92f/nXztBrCOGf7d719GKFass+Xk+MUyFl/VWh48cmDN3atky5Tdt2NO/35dQwk9LF/Cr7Ozs/ty3s3TpcvPm/tyuXaekpKSTp/4xbnj85JGPPmwEeUjOYPgZFBArITu5CxTH/gN7Pv6ocYOPm7i5urVq2S6wWs2cbLVv366qVavDRVKwoEeN6rX79Bq8a9cf0dGvicGbcnNzH/blmFo16/oW8qtdq97Rowf5reCmcfPmtebNBM2fyihQ7tZDdnIXeOsPCblXrlxF41cw8CQ7j4hl2Vu3r9eu9YExpXr12pB44+ZV/mu5su8KbNmy3bnzp2JiY2D52PHD7u4F6tSpTwSA492tidxGRBIhTdXk5GSNRqNWOxlTHB3V2W4Fm4DzvWr1UvgzTeetOzFMm2pMBNfF2dnl+PHDn7XpcOLkETDtGebLRvITmcXdGSKkqerg4ADiS0lJNqYkJSVayqxj304J4Ojo6OTkBMJt0CDINENhP//MW0Ez4NNPPjt0eF/DBkE3blwdPuxbIgQu1/P7IabYdNwd/Gxf38L37v1rTDE6JIC9nf2bmGjj16dP301vVKpU2bj4uOqBtfivYOwjIsJ8fAqZ3UurVsGbt6z7Y+sGaNqWLClsSjBG8AyTSFbIy3cX3gfZqGHTo//8ffzEEYgw7ti55cKFM8ZVFSpUvnv3dmhoCCxfunz+1OljxlUD+n11+vSxfft3g8sOrc9p08eNGjMYnByzu/AvUhRawNt3/N6ieWuCvFfkJXfhfZA9uvf7pEWb//04p1WbBn/t29mj+7u3LLVr2ymoyScDB3eHCPr+/bt7dNOv4luxVaoErli+EZyT4A7NxowdmpAQP2P6QuM7DjJTv34DnU4XFPQJEQGHzozVkJ0zI/DhPXDEvx072fj1n2OHTFeN/eZ7+DOmtGjxzjwXLVr8u2+nZC5w65b9mROvXL3YuHFzCMsQEeDEG9ZDdnKXki2Mj49/EHL36tWLt29dX73qD4K8b3AAcB7y+HHoqNGDvb19pk6d5+XlTYSjgMsXx7tbDxwAnI7GjZrBH7ESlSpV/efIJZILWHBlcLy79ZDXiEgG+9yRrJDXw3uc3Prc9RcwXr/WA313SaO/gDEwYz3Qd0dsCHx4D7Eh5CZ32XVBMgocQGk95CZ32bXrOBbfzWQ95NerShDEEui7IzaEzLqZWIVKZu4Mh3F3KyIruatd5TZ+MDoqSYE3YOshq/FHJSsVUCjI/atviFwIu5/s4o56txpyG25XrLzj1cORRC68Dk9pNcCLIFZChm+6Or331Y2TMY07+xYp7UKo5erRVzdPx7T/sohfiewnR0ByiDxf7LZ35bNn95Khy0nBMLp3U9YZnnM2ebSff+yZSTd9wdvVDMM/qMeYbst/y3jCOAI9QfppqU2eoob/KwzFMszbM2xcabJTzvTZa2MGO3s4ZlZpxzTv4RVQ0Z0g1kPO7zG8ciIyPpLN0NHKpZuKxqjANKClm5af4xjT9/gZtjN+5W7f/tfb28fHx5szO1+AfjeKtEE8zNudcHwhrOkeM0+soVBwvqUdSldBoVsfOTeDajTIQ693z9m55T9u1aBxRYLQA7b6RaLVarOdORWRGlhhIkG50whWmEhSU1NzPm81IhFQ7iJB604jWGEiQbnTCFaYSFDuNIIVJhKUO41ghYkE5U4jWGEiQbnTCFaYSFDuNIIVJhKUO41ghYkEu5loBOUuErTuNIIVJhKUO41ghYkE5U4jWGFiYFmW4zh8ITB1oNzFgKadUrDOxIBypxSsMzGg3CkF60wMKHdKwToTA/YxUQrKXQxo3SkF60wMIPeAgACC0AbKXQwKheLJkycEoQ2UuxjAkwEDTxDaQLmLAeVOKSh3MaDcKQXlLgaUO6Wg3MWAcqcUlLsYUO6UgnIXA8qdUuT2bqb8gWEYCL3rdPhCa8pAuYsEDTyNoNxFgnKnEfTdRYJypxGUu0js7OxSU1MJQhUod5GgdacRlLtIUO40gnIXCcqdRlDuIkG504ic35qdFzRr1gyEDn1MkZGR7u7usKxUKh0cHLZt20YQyYPWXRgg7levXvHLr1+/JoYe1mHDhhGEBrCbSRgff/xxhvthkSJF2rdvTxAaQLkLo3///qBv41cw7eDeuLi4EIQGUO7CKFSoUNOmTY1fQfqdOnUiCCWg3AXTp0+fokWL8ssfffSRt7c3QSgB5S4YV1fXli1bQnCmcOHCaNrpgvpA5Nl9r+5ejNWmEE2KxTwKBWFZy2uVDKuzeBIYBeHMbcuyLMMQlVKhM7eWMfyzdGoZy6uUKqIzF83nWM7BiXF2V3zS29fDR00QUdAt9/1rwp/cS/T0tfMopGY5xlI2Bn4myeJnwoYW1kKyAja1XLIl4XIMx7AMsbChDnRtoUD9huZKZDlIf/EkMTZK13ZQ4SKlnQgiHIrl/vu8x/ExqV2+KU1sjA0zQqo1dKvf2ocgAqHVd79w8FVslC1qHQjq6XfteCxBhEOr3O9ciCvga09sEr/izko7cnRzBEEEQqvcNcnEzctG5Q44OKpev8QBaoKhdcxMagrHamw3ipqq4TTJOLZPMDhEDLEhUO6IDUGr3Bl95xHezRFh0Cp3Tt+vyRCbhSMEL3bhoDNDJzZ8pecGauXOEVu3b6h44VArd4ZghSNCodiZYRgbtu4MtNTxahcMtZEZhv9nozA4hYQoqI3McOaHodsQaNyFQ6/vztjyk1hg2m39ahcFtc4Mx9my665/DATNu3BotZAcIXntu4aGhjQOqnXz5jVYnjxl7OgxQ8xm69Ov0+L/zSb5DJf181mIefDR7BzRoEFQs2YtSS4I7tAsPCKMIO8V7FXNEUFNWpBc8Px5xJs30cR6QBSSQUslHHqHiEF95/RurtPpPmn5Ya8vBvbo3teY8lm7xm0/6zhwwLCzZ08e/efgjZtXY2NjKpSv3LNn/+qBtTKUAM5MfHzcgvnLYPnRo9DZcyY/fvIwMLDWFz36m2YzW9TVa5dGjR4Ma7v3aPvhhw1nTFug1WpXrV567vyply+fV64cGNy2U716HxEhsCw2VcVAr4kQ4LsqlcoP6n188uRRY8qly+cTExODmnySnJw8c9bElJSU776d+sPMxcWKBUyYOPL16yhLRaWmpn47bpi3d6E1q7cNGvD15i3roqIi+VWWigLFz5q5GDJs3LAbtA4LPy6Zu237puB2nTdt3NuwQdDkqWOPnzhChGB40yVBhELxiEiOExCaaNiw6YyZEyKeh/v5Foavp079ExBQslSpMrC8csVmtVrt7l4AlsEk796z7eata6BCs+WcOHn05csX/1u0slAhX/j69bCxHTt/yq9ydHTMSVFwPRz8+89uXXt/1qYDfG35adtbt66vW/+rpT2a//lg3NG6C4fqQQQCMn9Yv6GDgwMY+E4de4BWwJrCAr8qMTFh5aqfrl2/bLTTWfjZYWFPQda+vn78V09PLx+fQsa1OSnq/v07Go2mdq0PjCmB1WruP7AnPj4+51OrMnoIIhSK5S4oEAkarf9Bg5On/gGVQ2wxLi62WVN9pOXFi+fDR/avUb3OpAk/VKxYRT+jb4t6WZQDTrlanW5KIwcHR34hh0VBGwA+hw3vl7HkuBgBcifYqyoGeuXOCR0i1qhRM2hxgt0Fh6RSpaq8N3Ls+CGwteBtgxNCsrTrPG5u7klJiaYpYNH5hRwW5emln0J19KgJRYoUNU33KOhJcgyLvaqioFfugo0btFadnZ0hHgLBk55pERWw1q6ubrxAgWybjL6F/KBJCj1QJUvqZ3QKCbkfGflKUFH+RYqBWwULxvhPdPRrUC/cf0jOwRGRoqC4eS+oqUoML/6tX7/hnj3bYmLeNGr4do72kiXLgL3fs3c7BAfPXzhz5coFaGhCfNBSIVCCvb39/IUzQPQg9GkzxoG9z7aoosUC4PPYsUP/3rnl5OTUu9cgaJuCTwV3A7gqxowdKrhfltPHIgkiENvqZmrUoOmEQ6Nq16pXsKAHnwL9R48fh4L4Fi2eBenfjp0CscVNv68B575dWzOTWYN7DUHGFSt+bP1ZQ7DHAwd8ffjI/myLGjVy/Cct2vy2ZnnlStUWLfylS+cvSpUqu2nzGrgknJ1dKlWsOnr0RILkPbQOm1465r/iFV0bdLDRaUH/mP/IyV3RdUwxgggBBxFQCTZVxUHv00yMLT+8px8yg01V4dD7NJNND/jWD5nBpqpwKHZmbLm6cUSkONB3pxJ9gAF9d+Gg3KmEw2eZRIFyR2wIimcisOkZgHFKVFHQO0ckZ8szADPQVFUSRCjozFAJzjN9RQhpAAAQAElEQVQjDpQ7YkOg3BEbguamqk1PI8bi40wioFXu9g5Q3bbrvapUCidXbKsKhtaeaNcCylcRycRWSU7QFa8k5OknxACtcg8e7BcfqSM2yend4Sp7pnoDb4IIhFa527vYN+nqs356yLPQOGJLnNge/uh24oCZpQgiHLpfAvHgWuyhDS9VdsTeSZWakvGHKJQMx6b7ffox4vrRJu8SIYUz/c6PpDfMSsc3BfUZWP1q6NiB/8PXtyNvGX2/Jj/bC2xuKFh/MvXD8A2lGV4vot+E4TcmRMfC2rRNDP8ZMxs6jvi5ovS70B+RoWGiUjFaraE0hiiVJCVJRxjd4NnlCCIKObzz5J+tEdHPtclJXFJiUkxsjK+vL58O+mDTv+QjbdCsXsGmKYavbwMd+v8pCKd7mwAZ+BJ4oRu/vop86eTo7OLqDNkgxaBW/blkTHr30zK/fRKFM0RT9HvUCx2uKP2nUe6QbrjM9BkYjjFcYsROpUjV8kUQR1emeHmnkJdHDh8+/Msvv+C8SiKQ1St+vv766zlz5hinvsg7QkNDv/zyy4CAgGXLlpF85/Lly5UqVXr9+nXhwoUJIgQ5PCNw7dq1v//+GxZ+/PHHfNA6sHbt2pcvXz58+BCUR/KdmjVrOjo6qlSqxo0bP378mCA5hnq5P3r0aMmSJQ0bNiT5xd27dy9dugS+BCh+/fr15D3h4+Oze/duuOSIfmIma04eL2MolvutW7fi4+Pt7e1XrVrFz8uVP6xcuTIiIoLovXnFvXv3bt++Td4Tbm5ujRo1goWJEydu3LiRINlBq9yPHTs2b948Z2fnfPZfr1y5cv36dUXa5Opg4Ddt2kTeNz///DO/8OLFC4JYhj65h4Xp33AEzis40PkfnYA7SWRkpPErHMDVq1fBxpP3Tffu3eHzwYMH3377rVarJYg5KJM7+MogOFioV68eeR+AB6WPppsQHh6+fft2Ig0++uijZs2anTt3jiDmoEbucXH63lPwIr7//nvy/jh+/PgVA2XLlt2yZQssQFwImstEMjRt2hREDwudO3fmG7KIETrkvmbNmhMnTpC0W7YUAIcBQoH88ooVK4j0gC6InTt3EsN71whiQOpyB1WFhISAaW/VqhWREqZylybQCzZq1Chi6I6Qjrv1fpG03Dds2AB9h0WKFBk2bBiRGKmpqXZ2doQGRo4cCY1pCNpoNBpi20hX7mCQXr16BZ0p+dNRKhTpW3dTxo8fX7BgQYgpzZ6d7++zlxJSlPuhQ4fg88MPPwSzRKQKXXIHoD8O+ihKlSq1aNEiYqtIrsImT54MTicsGAc2ShPq5M7TsWNHvuW6YMECCN34+/sTW0JC1v3u3bvEUB99+vQhkodSuRPDO8Ths23btqNHjyY2hiTkznHcV199FRWlfzV75cqVCQ3QK3ee0qVLQ78B0b9A/NSRI8JeUU8v71/uEGSE3hAIqIOzTugBXAKq5W4E+qcPHjx49uxZYgO8T7lDD/yIESOSkpJKliz5wQcfEHqAKKQ8tE70zweq5s6dC1VADJFfImvep9zXrl3boUMHCDUS2qDdk8lMoUKFiMGtHzp0KJEv7+fhvXnz5n3zzTeEWsABa9OmzbFjx4jsiI6Ohgg9ePO1atVyd3cn8uI9WPdevXrVr1+f0Iz8rLsR0Dp8Qng+ODj45cuXRF7kq9yhSQSfq1evpqtVmhmKRhCIA7o+jh49Cld1QkLCe3keN4/IJ7lrNBqQePHixUla3JdqZGzdTYFeWLVa/csvv8hmhFk+1VliYiK4g46OMpnWEGJK0CdPbACFQrFixYpr164RWZAf1r1fv35gC2WjdWjcf/3118uXLyc2Q2Bg4K1bt2QQtMkPuTs7O1+/fp3IgkePHtWuXXvRokXe3jY3Iyn48YRy8iMQGR8fD3txdXUllAORxyVLltjmoxLgv0EDjPZbdH747i4uLoR+1qxZc/PmTZt9LAiceBm4o/nhzIB1b9u2LaGZyZMnQ9fSggULiK3y9OlT6TwoLJr8kDtYd7ANT548IXTSu3dv8Ncl+ABhfsIwDJgtQjn5NIgA3D5QPHWx6qioqA4dOoC/XqVKFWLbgE5SUlJo92dkNeG1dYHexHHjxoGzLoNGNsKTT72q9+7d69atG6EHUDn0Jv7999+odZ7Y2FipzX0ignzyLsqVK/f8+XNa+t4XLlyYnJwszcmS3hfgi6LvLkOgx7Ru3boyiEJYnaSkJGlOgpJz8k/uiYmJEo/dpqamQsP022+/pX3AJmKJ/BsAfPbs2fc7m2nWhISEfPzxx8uWLUOtW6JBgwaEcvJP7oGBgfxcAxLk8OHDEyZMOHfuXJEiRQhiAQhE0j5zPPru+pfPPHjwYM6cOQTJEhn47vn6NFN4eLjUWvdg1MFlR63nBNq1TvJZ7keOHAFTSiRDjx49wF8fMmQIQXJAmzZt3rx5Q2gmX50ZaA5u3br1woULMQbe40OQL168gCDMr7/+WqFCBYJkyWeffQa9JRBVe/z4sZeXF/8aNk9Pz3Xr1hHayI9On4EDBz579gzaqeA2MAaI4bWgt2/frlSpEsl3zp8/P3Xq1EOHDsng7pwPhIWFGV/59urVK2J42piuPnIj+eHMQPcktOh1Oh0YBuOJs7e3fy9a/+OPP9auXbtv3z7Ueg6pU6dOBhegePHilI7oziffvWfPnqbyYln2vXgRc+fOffjw4dKlSwmSY/r16wc+jPErGKxmzZpR+shO/sk9KCjI+BV8QbAZJH8ZOnQomCXoNCWIEGrVqlWxYkXj16JFi7Zv357QSf5FZqZMmVK1alX+tujh4WF6BvOa5OTkli1b9urVq3PnzgQRTv/+/fmpPMG0N27cGNqphE7yNRC5ZMkSf39/8GTAsSlfvjzJF+7evQs3lt9++61u3boEEQW0smrUqAEL0OscHBxMqCX7QORfq8OjX2iSE81ng6gUy2YqVEE4lihVjE6bcStos0JPk8pO4eLs9rYEhrBpuVQqRqs1syNo4bKG44R2Lvdu1wzLpssM4TKt9t3RQKtYyyU9irgxa2UXQgN7fn0WE5makvj2K9+q5+sHlg1v6+ZPAsfAKYbzZvgKJ5AYVxnOPOTkq9WQC5bJ26+GdNPzBsXCmvRnVV+hfPrbPIa1LKuLjY2DAIOzszOXVhdMpirgMyuUDKvLWI+GAGa6/MZsmVeZbKU/ZvgVrGWh2tkTewemVKBLneZeJEuykvvLsKSti8IcHBUuBVTaVAvbM2ZKgLPAsZzZ32z8De9+m8nJtrSJ8exDxTGESduLvmrTFasirDbdVpAS/0aj1ZB+U0vYq6U7Wd9/12MPrH+pdlE6uyhT0061/sSknRz9bzac1berDHfltz+fMZwfw7KpTA3Z9Nsbz5Je+lCkyXnja8q0CtIumHfl8Of83VbvMputfE6fbnKoJgdjcswm+0pbZWYT/hcZ/nEcSyyhsmdSNdqEGNbenuk7rSSxjEW5h96M27f2RYtefr7FnAnlPLgSfe6vqC/GF3HxkGLw8co/kef2vWk/opizi01MxJd37FwaSljmiwklLGWw6LsfXPei4eeeMtA6UKZGwUofum2cG0Ykydm/3nQei1q3AsFDSypUzO9zH1nKYF7uf28MV9krAioUJHKhRhMfuI1dOhxJJMbuZU+dXJQ2MsFqPlC3pfebVxZHKZuXe1SERu3EEHlh56gMC00iEgPapi7u1M8ALh0M/gj7+L75gbfmx8xokqANId33x4tDpyEpcURqpCQxdg5ysyzvF51WkZJo/pTKf05+BDGCckdsCPNyZ/Duml9AyFmBZzu/MC93fT8ckSPSExbHyfZkvzcYi/bavNwNPbdyszkKadpRToan+j3DEUtDBczLHXr45TdBAcuaGd6D2BTmo40MR1i8w+YXDDaV8guFpWSlBP3c3MEwEm2C41Q/VsZyLdtQU5Wz7NK9RyR7EVKM5Vq2oUCkvqkqvZ5iaV6EdMMRS+fUhqy7NJuqjIKT4EVINww/0N8M5s+0yQQZ8gF+lEKKkUgUu/WxdMM0f645lpNa+6ltcNC69bmacA+iq2YfD3u/cPqjIki79k1zWb/vMDy1ZRYLcuc3khKdO/WsWqU6kR2M5TsvRUyd9t2+/buJRDA8bmgWau6k3br2DgysSXIBQ6Q5iIBw0rvnCOXevX8JDVhtRCQ4G1/06H/i1NEbN67u3nXUzdXtwMG9e/Zuf/gwpESJ0k0aN+/QvivfIJgwaZSdyq548RKbt6xjWbZkidLfjPm+dOmyxPB+7a3bNly4ePbRo/88Pbzq12/Yt88Q/v02UD6U8EXP/tt3bN70+28jR4ybPGVsu3adhn05JodHyBEijwZ4YmLizFkTr1y5oNVqvxw6OjLy5YmTR9et2X7n7u2hX/Za+vPaCuXfzkbYo2c7OIdDh4yE5devo5YuW3jr9vXk5OTatT+AyipatDikZzifISH3HOwd5s75ybi7Sd+PiXodufSnNZaOp3FQLficN3/6suWL9u4+BsunTx9fu27F4ycP3d0LlC5dbviwbwsV8uUzZ7HKyLnzp7dsWXf33m0PD6/KlasN7D/M09OLCEKQMyOiqWpnZ/fnvp3wA+bN/dlJ7XT4yIE5c6eWLVN+04Y9/ft9uW37pp+Wvn3DukqpunrtEiwc2Hd67ZrtHp5eE78fpdPpIGXHTjj1a8Bv+WHm4kGDhh87fghOTYYd2dvbJyYm7Nmzbdx304LbdiJCkGD7W6Fk4E/QJgsX/xD634PFi37d8vtfz549OXxkP5z8rDeB0zty9KBr1y+PHDF+9cotBQt4wIURFv6MZDqfLT9pe/nKBbg2+A3h2jh3/lTzZlm9YhLqET6/GTOJ1/qly+e/n/JN8+at/ti8b/Kk2S9eRCz+cTafM4tVRu4/uDtu/PDq1WuvWb3t62Fj//vv/py5U4hAGIvdp+bQN1MFGkK4Ptzc3MHW1qpZV6VS7du3q2rV6iOGf1ewoEeN6rX79Bq8a9cf0dGv+cwaTUrPHv1hk8J+Rfr0HvzixfObN69BeqeOPVau+L1Rw6bVA2t9/FHjxo2aX7h4JvOOoA66dOnVNOgTf/9iRAgSjHDrhycJcWbgBnj8+OFOnXqWK1vBw8Pzy6GjVCq7bOMKcHqfPHk0ftz0unXqw1ZDBo9wcy+wffsmkul8Nm7c3MnJ6eg/B/kNT50+Bp9NmrQgOWb1b8safNzk8w7dwH5XqlR16JBR586dumvwdrJYZeTWzWtwP+/RvS9YfTjaBfOWde3amwhEYGRGVFymXNm38+CBiwI3zdq1PjCugosVEm/cvMp/BffG+IJV/yJ6ycLdjRhuERcvnR0y9ItmLerBLfKPrRuMV0gGypcTPHuwoVFIJIfAbqYnTx6CD1M+zV0BsVaoUDl7ud+6BucW7I5xq8BqNa/fuGLMYDyfYOybBn16+PB+/uvJk0c/rN8QXFOSY0JDHxgPj6Sp4u7d21mvMlK5SiBcj9LC/gAAEABJREFUfuMmjNi6beOzsKdwYYDtI1bCmr2qxsfpNRpNamrqqtVL4c80g1G7jg7vXjfJu+YJCfpnaVf8ugRuC+DGwKUCF/fKVT9bau+LeHTf0CgkUkP/eIeQyAzvZoC7aEwxXbZEfHwc1AjvZBspUODdTBOm57N1q/a7dm8FVweaT+cvnJ404QeSY+Dmk5KS4mBSv3CvIPr2RkIWq0xLAAd49qwfT5w4AmJYumxRzRp1evcaBB48EQJD8rFXFRQMvwQcvgYNgkzTC/v58wu8uHngUoZPOAtgovb+uR3udK1bvZ2FECqJWBFGiuPdOZYI6g0AawefKZoUY0pCermYotW9nYICmnpqtXrmjEWma5UK8zMglCpVBu4Y+/fvLlOmvFrtVLeugDdv8sYrOTkpw+HBlZPFqgyFgA8Df+DlXr58fvuO38dPGLFj+yFB71vniJBHs3PfpCtVqmxcfJzxNgSmJSIizMenEP/1v9AHMTFv+Jq7f/8OfJYsWRryJCUleXn58HngFnHm7AliRTgiwYif3roLaar6+hYmBgcArCAx+I3/3r7hYFASRFSI/v14b+eYBGsaGfmKX4bqgHPr4+NbpPBbixMeEVbA3eI8Qi0/bQtxM2gHg2MjSGeQGRoVt2/fMKbwyyVLlclilWkJ165dhosZ5O7l5d2iRWv4vSNGDXz+IsK/SFGSYxQC4+6WO6ZyxoB+X50+fQxcEagPaCdNmz5u1JjBoGB+LTRqf1wyNzYuFv7Wrf8V/BboQoL7abFiAfsP7IHbKFwMc+dPq1I5MC4uNiEhgcgXvXXXCTjV3t4+cGcHNw/8WlDzosWz4uJj+VUQWHR1cYVzDvdJ8O9nz53smuZzg0tQp079+fOnQ1QAzi34KoOH9DxwYI+lvTRp3CIq6hV4MqD7bA/JwcEBjurSpXMQcIP9BrfrDA3c7dt/h8qFFIh+QpuhTOlykDOLVUag1Tdl6ti9f+548yb63zu3IFgHuvct5EeEwAp6mknfVM3dE2VVqgSuWL5x46bfflnxI9y/KlWsOmP6Qjgv/FqItQcElOrU+VNw5vx8C8+YtlCp1N9YwU38eemC3n0+hxsfNNsDA2tduHAmuENTiFcSJA2IGC5ePGvAwK7gBzZu1Kxhg6a3/9WbSWiMTpo0638/zmnStDZIZNDA4eDoG1uxs2Yuhm6QaTPG/fvvTbgwmjb9tH17ixMjgy9as2bdVy9flChRKieH1L1b39/WLIcw2u+b/oQ446vIl1u2rofQMxiyWjXrDej/FZ8ti1VGIDoHQv/p5/kLF/0AFhAuvEULVwi6w2SB+SlR1898zOlI8PDiJA+A7gxwyhfMX0byl82zH7p7qzqNEnBPzAdWTnjoUsCu1UB/IpbF/5sNMZbfVv1BrAfchzt2/nTggGGtWrYjtLF2SkjzXn5lA81Mb5rFs6pyGxIpzV5V4+TrEuH584iw8KfgQkC3d048GWliSbuWmqqM/J5VNcwUTqSG/o0DUuoNOHL0ADQMIDo+5fs5xq51aH1BeMTSJhvW7+KjDhJC0MQbYHQUedbhPnXKXPI+ENFVnB9wuQwKEOi6Jtaje7c+8JchUd8SW7HJ0iaS0zoROPEGPlGWn7A0PErjZwiA0o7luLs8n2YiUkNvVugfACwtOIG+O5HjbBCsRJ8b4mTweIe0YAT67mlvVpMVEr1lMZIcqEk5wnx3faxAdlUgzaaq/i11aNyti+XzaWHSPPl57hIGbbuVETqtkmxrQIojIjkJDkumHYWgdOnNu2ElJPij5BgEe+9YMiD4spr3jDTnR5ArKPf3jCHuTpD8wbwz46gmCtm911Zpzzm6SM6bsVMzKgdsrFoTRkkc1OZNiHm5F/R10CTqiLxITWF9S2T/WGc+41ZQmfBGbqf6PfIqPAl8w+LlXM2uNS/35j38UpLYiMexRC7cOB0JZ6FOc4Gz8+Q9rQcWSohFuVuNc3tfuHtZfAu5xUEkjTt5HV73MiZGcm9VF0FYSNz1f94Ef1WESA97e/vAxu4bZoYQJNf8tfJJSiLb/bsSljIwWUQcw0MTdy0NV7sqnd1V+rfXmKLg9AGF9A6SQgER5IyJ+gtKn8KZBiA440CRzC4WH5jLlA4dvRwx36oDX40zZx85OEhWFxeVmpLC9f6+hNrF4kX/3rlzMebollcu7ipndyVhLRwnfyYVJieBeRtaNcwByrzLkwaXIerD51cQM3VE9In6k2yyilERTpsuI8cP0M8wYJbRf824I/37vZiMB5+hZCZt8tIMh8R36ht2oYDzoXub4d3hpR0wj9KeJCVo4qO1CgXTf0ZWTxsy2QbYdy9/Fv1Sk5KYfjPDK1bYjHI3M3LY8Iw3l/HMc3qNmp1RiB/ZkrnnRaFkOAvvA1SqiE5rJh2KcnRiPP3sW/WXol3PgEaj2bviRXx0arKFJ9EZXlXMu5OWWbema9OveNfnkDkPP2bEUHi6p9iUKkanfZeV1ekYhUJfEemHY5gp0BBeNa2tDBcSFGL6QDoox1RLjOFo+dUKFWG1ab89rRD+gRhjgSoHxs6eLV7RrWGwN8kSRqb9SYj1GThw4KBBg2rWzNU8zO8XjLsjOUWr1VprRoD3BcodySmpqanZTjUscVDuSE5B647YECh3xIZAuSM2BModsSGwqYrYEGjdERsC5Y7YECh3xIZA3x2xIXQ6HVp3xCYAT4Z/wwrVoNyRHCEDx52g3JEcgnJHbAiUO2JDoNwRGwLljtgQKHfEhpBBHxNBuSM5BK07YkOg3BEbAuWO2Bbu7u6EclDuSI5QKBTR0dGEclDuSI4ATwb8GUI5KHckR6DcERsC5Y7YEEqlUqej/rULKHckR6B1R2wIlDtiQ6DcERsC5Y7YECh3xIZAuSM2BMhdBoFIBUGQnAGhd9oNPModySky8GfQmUFyCsodsSFQ7ogNIQO541uzkWwIDAxUKBSM4QXy+nfIMwzLsj169BgzZgyhDWyqItlQoUIF+ASVg+ghOAOfxYoV69atG6EQlDuSDd27d3dycjJNqVevXuHChQmFoNyRbGjdunWZMmWMX318fLp06ULoBOWOZE/v3r3VajW/XL169ZIlSxI6Qbkj2dOwYUPeg/f09IRGKqEWjMxQwNVjUeEPUjSat18ZhvCVxhBirDx9IjH5bgCyQbppAnm73btCCElXlCEAw2RYyxEuLjYu9L//XFxcypQrw7GEURD4zAC/1dvPdwWSjBKDHSgZwhKzyuMPwNwaolRxDq5Mg88Kql3URBQod0kTH6PZOOcJpyN2DgptytvEd1Iz0bs+kV/m3qXzi+/QK4/Xcia9GotS6Bf0WTKpGeKPjALiM4xFufOJTFoJXPqjTQMuHn0hHDGrd0bBcax5uavs9MeQkkx8/O06jSpOhINyly7x8Zp1U59UrO9Ws4kPQUz4fXZI8UrOLXr4EYGg3KXLsm9CPmznXaIy9VPV5QVbF4d6+Nm3G+gvaCtsqkqU/WvC7RwJat0SgQ3cI0KSiUBQ7hIl8lmKq4c9QSxQpoYnNAnCQ5MEbYVylyiaZGiVESQL4PykJAp7wApHREoUllUQHUMQy3DCzQHKHbEhUO4ItTD6AL6gLVDuCMUwAts3KHeJAr2SDLruWSO8xwjlLlVQ7nkAyl2iQNgBA5FZo78Bou+O2AgcyTzYMhtQ7gi1GB4VF7QFyh2xIVDuEoVRMAyO8MgSve9O0HeXCRwGZrJG78cwwpwZNCASRTqRmZk/TBw2vB+xEm2Dg9atX0msAkeE+u4od8QMU6d9t2//bpIHdO7Us2qV6uQ9gXJHzHDv3r8kb+jWtXdgYE1iFRgitCsOfXeJYngIWtAW5MmTR7+tWX7t+mW4xVeqVLVLpy+qVAkcPnKAg73D3Dk/GbNN+n5M1OvIpT+tade+aZ/eg2Ni3qxdt0KtVteu9cFXX47x9PRqHFQLss2bP33Z8kV7dx+DZTuV3bVrl2fOmvjmTXTpUmWHDRtbsUJlvrQDB/fu2bv94cOQEiVKN2ncvEP7roxBgmYPhhicGcjzRc/+kL59x+8HD/759Nnj4sVK1KpVr2+fIUqlMsc/l4ho26B1lyrglQrxSzUazYhRA0Euc2YvWTBvmUqpmjBxZHJycstP2l6+cuH16yg+G6ScO3+qebNWsGxnZ7dlyzqFQrFr55G1v22/eevamrW/QPqBfafh85sxk3itAy9ePt+zd9v4cdNnz/pRk6qZN38a7zQfPnJgztypZcuU37RhT/9+X27bvumnpQuyOBjTA96xY/OGjas/79Bt86Y/27Tp8Ne+XZu3rCNC4AS3VNG6SxWQEyukLp8+fRwd/RoMJ4gPvk7+fvb1G1e0Wm3jxs1/Wjr/6D8HQViQfur0Mfhs0qQFv1WRIkV7dO+rX3JxBet+//4ds4W/evVi+bL1ri6usNw+uMv8BTNiY2Pc3Qvs27eratXqI4Z/B+kFC3r06TV47vxpPbr1havL7MGYlgkp5cpVbNGiNSy3bhVcvXrtpMREIgiOcASbqrLAMCBEQH5//2IFChScPXcKmMxbt66Dza4eWMvFxcXe3r5p0KeHD+/ns508efTD+g3dXN34r2XLVjCW4OrqlpAQb7bwUqXK8loH3N0KEMNdgmXZW7evw0VizAaShcQbN69aOhjTMitXrnb58vm586aBOxQTG1OksH/p0mVJHoPWXaLofRkhgUgHB4f/LfoVXALwKFatXlq4sH/vLwY2a9aS6G1n+127t4aFP/P08Dp/4fSkCT8Yt2Jy1tRTqVSZNwGPJTU1FfYFf6aZwa5ncTBG4G7j5OR8+sxxcIeg/EaNmg0a8LWXlzcRgtCuOJS7RBHRq1qsWMCQwSOg9XnlyoX9B/b8MPv74gElwZ0oVapMhQqV9+/fXaZMebXaqW7dD4k1cHR0dHJygmZAgwZBpumF/fyzOBhjNjD54MPA36NHoZBnzboVcG/5YcYiIgSOw8c7ZIIwvxQiIbf/vfHpJ5+BCuvXbwCa/qTlh+CL8wpr+WlbaAg+e/YEHBtTU51LwMmJi48DR4X/CsY+IiLMx6dQ1gfDAzEZcKVKlCgVEFAS/qCcv/btJIIQ/kgA+u4SBcyWoB5DaDuCH7xs+eJnYU+h2bpx02/QNKxcqRq/tknjFlFRr8CTAd1nWxS4It7ePpcunbt67VLWL2Ma0O+r06ePQYcUuOw3b16bNn3cqDGDwcnJ+mB4jhw98P2Ub86cOQGO+7lzp06eOpohQ/ZwQsf/onWXC9DyGzVyPEQS/9i6Ab7Wqll34YLlYDX5teB11KxZ99XLF2BNc1Ja9259IWp+4eKZ3zf9mUU2CKWvWL4R1PzLih+Tk5MqVaw6Y/pCuFqyPhie0aMm/vTz/AmTRsGyh4cneDUdP8/zqbRxjkiJ8uv4hy4FVK0HFSXWACxux86fDhwwrFXLdkQurJkS0rqfX4nKzjnfBK27hLHGkMjnzyPCwp/u2Lm5ePESOfFkKIIRPiocx9oAAAn0SURBVGoUfXeJYq3nssFFHvPNUOj3mTBuBiOvh705IviJALTuEsXSbP9C6d6tD/wRWYIP7yFIFqDcJYqIEZFItqDcJQtHMGZmbVDuEkX/8B7KPUsYhiMKfLwDsQ30LxEU+Dgvyl264EwE2SLU4UO5SxR9SBnnRLU2KHeJYhgihs67lUG5IzYEyh2xIVDuEsXeiVGpsZ8pK1R2+hmvhW1CEEmidmGS3qQQxAIJ8RqdjgRUdhW0FdoPifJha5/4WHx9h0VO73zhWkDAHEw8KHeJUqS02tvfbuMPIQTJxIPrkS8ep/T6vgQRCD7NJGlO7Xl5+0ysl7+jd1FHlZ1d5gxM+mHC0KeeNvSAM9dPZUiEvvdsHovg9CF/y7pQ6MOk70pg0r8zRmHo7jSm6BdNdscY/vFrTQ/ekMaYfmbel0LBxkQmP3+YnBSrGzyvNBEOyl3qXDgSeedUXFKiTqcxtzq93hkFw7Fc5vR0mZlsR9LzlwQxuws94BOwmYo1/UqI+c2NsufMrTJchgxnJv3tblWMQsV5FLLrOKI4EQXKHckpgwYNGjhwYM2aVpq/932AkRkkp2i1WkEz9EoQlDuSU1JTU+3MtR8oAuWO5BSw7lacgey9gHJHcgrKHbEhUO6IDYFyR2wIbKoiNgRad8SGQLkjNgTKHbEh0HdHbAi07oitoNPpFAoF7VNmo9yRHCED005Q7kgOQbkjNoQM2qkE5Y7kELTuiA2BckdsCJQ7YkOg3BEbAuWO2BAod8SGQLkjNgTHccWKFSOUg3JHcgTDME+ePCGUg3JHcgR4MuDPEMpBuSM5AuWO2BAod8SGQLkjNgTKHbEhUO6IDYFyR2wIlDtiQ6DcERsC5Y7YEEqlUqfTEcrB96oiOYJhGIVCQbviUe5ITpGBP4NyR3KKDOSOvjuSU1DuiA0hA7njW7ORbAgMDDS+PRjUws+K2qRJk3nz5hHaQN8dyYaSJUsyafCTAPv6+vbv359QCModyYbg4GBQuWlKlSpVypUrRygE5Y5kQ8+ePU0fyvby8urSpQuhE5Q7kj2geHt7e365fPny4M0TOkG5I9nTtm3bgIAAWHB3d+/atSuhFozMyJOw0MTXESlaDcNy6V4vo2AIZ4ivvEuCRU6fznL8N44wDC8KYyLw4MG9o0ePenp5d+zQQZ+D4QziMS2DGD6YDEn6wjgm7ZvJkSg5Z3dlsVL2jq4OJL9AucuHB9fiLh58HROZqtMSvb4Md24uwyAXhklf5SB8hssqgyHNRM1G4WZWsLlNLGdQEH43EOS0VyuLlHH4pGdhkseg3OXAqT0vb5yIZXVE5ah08VJ7+Ls4uakJJUQ9fRPzMjElTqNL5TwK2Xf7Ng/nKkO5041Op1s54ZE2lXMr5FS0SiFCM0lxyWE3XyUnaIuXV7cZWITkASh3ijm588X1E3Gu3uri1X2JXNBoNKFnI1R2pP/0ksTaoNxp5ebpmFO7Iys0DiBy5PHViITo5KHzShOrgnKnkkMbI+5dSajctASRL49vRMS/Sv5yvjUVj3F3+ji959WDq4ny1jpQvKpfAX/Xpd+EEOuBcqcMlmWvHoupGBRAbIAi5bzs1aoNPzwiVgLlThmrJj1086EmyJh7Sn9QNOa19sqx18QaoNxp4sxfLzUpXLFq8onD5AR3P5cLB1Dutset03FuhVyIjeFf0ZvTMef2RZJcg3Knhkd34jTJXNHK3kSqzFvSdfveuSQPcHB3uH0uluQalDs1XPg72s5RSWwS/wqeSfEsyTUod2p480LrVNCR2CT2TvYKJXM21/4MzkRADaka1tfPleQNOp12/+Hld+6ffvPmeYni1erX7Vix3IeQHvHivwU/dft60OqjJ9beunPc3c0nsEqzls2+5B/Wfv4ydPP2aS9ePSxdsmbThn1JXqJQMWH3E0lLkhvQutNB1MskwhE3z7wKQe78c/7Js79/VLfj+NG7qlRqsm7zdzduHYV0ldIOPrfunlW9aovZk091+3zq8dMbr98+TPQvFk5duW5EAXefsV9vadX8q2OnNsTFWaE1aQmlvSo+JrdT9qHc6eB1uIazgu9qntTUlEvX/mryca8P6rR3dnKvW/MzEPehY6uMGapValKtcpBKZVeqRA3PgkWehd2FxJv//vMm5sVnn44sWMDX16dkcOsxSclxJM+ws1NpU0kuQbnTAcRkGIbkEU/D72i1mrKl6xpTSgXUiHgRkpAYw3/1L1zBuMrR0ZWXdWTUU3s7R4+Cfny6m6tXAfc8HIHMMaw2NbdXPPrudKB2VubdWL7kpHj4/HnlwAzpcfFRSoVeIQxjxiwmJsXaOziZptip8rAlzVlj7mGUOx34l3MieYabmxd8ft52nJdHUdP0gu6+sZbdcSe1W0pKomlKckoCyTN0qTq1S27jsCh3OrC319d0dHhswcJuxNp4exazs9M/Hw0BFj4lLv41x3EOYLwte+MFC/ilpiaDz+NXSD9GNyzifmzcK5JnaFN0nr72JHeg704N9mom9nmemE+QdfPGAw79syr08bVUrQZiMivWDNvxZzb9o5UqNFCp7LfumqXRJMfEvtrwx0QnJ3eSZ7BatlSV3N7i0LpTQ6FiDhEPNSRvaPxxz8J+Zf85ue7BfxcdHV0Cilbp2HZ81puoHV369Vj4198/TZzZBNqsEIu8cuNgHjWnY1/Gcwyp1sCD5A58mokakmI0q6Y8qdxc5k91mCXk3DM7O67XxACSO9CZoQa1u73aVRl6KZzYHikJqfU/LUhyDTozNNGoo9f+315kkWH+km5vYs1kYFkdBBMZC6H770Zsd3EuQKzEqvWjHj65bnYVBHMgfGl21YRRu9Rq80MkHl6OcFArytS0QsMAnRnKWDv9kSaVKfOBv9m18QnRrPCX4/GBSGsBnVM6C/2f0A62U5mPrri4eGSYVtvI7cMPu35bxMMaz3Ch3Onjp5EhhSt5ehSxfkRSgtw9/ti3uEO7IdaZZQl9d/roPNo3/HYUsQFCzj91cOCspXWCcqcRb3+XdkP9bh16SGTNneOPHB0UfaaWItYDnRlaiQxP3jzvmU9pd5+SuY1GS5D7p54whB0w05paJyh3qnnzSrNpzhOFSlG+YXEiF148iIp8HOvpb99lpPWnAka5U8/G2Y+iX2hVakXRqr7O7vn3agCrE34nMuZ5PEjyo7YFq9T3JHkAyl0OJMZptyx8nPCGI4z+1QBOBRxdvZwc3e0d1LkdU5V3aLXa5PiUpDeahNfJyfEanYZVqphSVZ2adfcjeQbKXVYc2/H88a3EhDjoVsrq7RnGtwFnTH/3rhnTzCRDXjMpmTbMkJJ5E5YjEGeHPzsHRcFCdjWCCpSslFdP4hpBuSM2BA4iQGwIlDtiQ6DcERsC5Y7YECh3xIZAuSM2BModsSH+DwAA//89MAXQAAAABklEQVQDAGFDx0C1Q8iIAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 84,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from langgraph.graph import StateGraph\n",
+ "\n",
+ "graph = StateGraph(AgentState)\n",
+ "\n",
+ "graph.add_node(\"preparation\", preparation_node)\n",
+ "graph.add_node(\"preparation_tools\", tool_execution_node)\n",
+ "graph.add_node(\"query\", query_node)\n",
+ "graph.add_node(\"validate\", validation_node)\n",
+ "graph.add_node(\"repair\", repair_node)\n",
+ "graph.add_node(\"query_tools\", query_execution_node)\n",
+ "graph.add_node(\"synthesis\", synthesis_node)\n",
+ "\n",
+ "graph.set_entry_point(\"preparation\")\n",
+ "graph.add_edge(\"preparation\", \"preparation_tools\")\n",
+ "graph.add_edge(\"preparation_tools\", \"query\")\n",
+ "graph.add_edge(\"query\", \"validate\")\n",
+ "\n",
+ "\n",
+ "def validation_router(state: AgentState):\n",
+ " if state.get(\"validation_errors\"):\n",
+ " return \"repair\"\n",
+ " return \"query_tools\"\n",
+ "\n",
+ "\n",
+ "graph.add_conditional_edges(\n",
+ " \"validate\",\n",
+ " validation_router,\n",
+ " {\n",
+ " \"repair\": \"repair\",\n",
+ " \"query_tools\": \"query_tools\",\n",
+ " },\n",
+ ")\n",
+ "\n",
+ "graph.add_edge(\"repair\", \"validate\")\n",
+ "graph.add_edge(\"query_tools\", \"synthesis\")\n",
+ "\n",
+ "agent = graph.compile()\n",
+ "agent\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8c8786d9",
+ "metadata": {},
+ "source": [
+ "C'est une structure plus complexe ! Et a priori plus robuste sur l'appel à l'API. Mais puisque l'agent met du temps à répondre, nous souhaiterions être certain qu'il est parti sur la bonne piste.\n",
+ "\n",
+ "## *Human in the loop*\n",
+ "\n",
+ "Il est temps d'intégrer l'humain dans le processus pour valider ou non que le plan identifié est correct. Si ce n'est pas le cas, alors l'humain peut modifier le pla voire préciser sa question.\n",
+ "\n",
+ "Pour démarrer, nous devons à nouveau modifier la classe de l'agent.\n",
+ "\n",
+ "**Consigne** : Ajouter un dictionnaire optionnel nommé *human_feedback*."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 88,
+ "id": "7d6d2da3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class AgentState(TypedDict):\n",
+ " \"\"\"State of the agent during its reasoning process.\"\"\"\n",
+ "\n",
+ " question: str\n",
+ "\n",
+ " tool_thoughts: str\n",
+ " tool_calls: list[dict]\n",
+ " tool_results: list[Any]\n",
+ "\n",
+ " query_thoughts: str\n",
+ " query_calls: list[dict]\n",
+ " query_results: list[dict]\n",
+ " query_plan: dict | None\n",
+ " retry_count: int\n",
+ "\n",
+ " answer: str\n",
+ " human_feedback: dict | None\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "dee8fb70",
+ "metadata": {},
+ "source": [
+ "On continue avec le noeud concernant l'appel à l'humain. On se propose trois possibilitées :\n",
+ "1. **Approuver** : on continue avec ce plan\n",
+ "2. **Editer** : on modifie le plan qui est proposé par l'agent, puis on repart sur le module de validation\n",
+ "3. **Rejeter** : on reformule la question que l'on a posé, puis on repart sur l'étape de préparation\n",
+ "\n",
+ "Pour éviter le cas où l'on édite le plan, qu'il est valider par le module de validation et qu'on nous re-sollicite, on ajoute une vérification que l'humain n'a pas déjà été sollicité."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 89,
+ "id": "44ea5c40",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def human_approval_node(state: AgentState) -> AgentState:\n",
+ " if state.get(\"human_feedback\"):\n",
+ " return state\n",
+ " plan = state[\"query_plan\"]\n",
+ "\n",
+ " print(\"\\nProposed query plan:\")\n",
+ " print(f\"Indicator: {plan['indicator_code']}\")\n",
+ " print(f\"Countries: {', '.join(plan['countries'])}\")\n",
+ " print(f\"Years: {plan['start_year']}–{plan['end_year']}\")\n",
+ "\n",
+ " decision = input(\"\\nApprove? (y = yes / e = edit / n = reject): \").strip().lower()\n",
+ "\n",
+ " if decision == \"y\":\n",
+ " state[\"human_feedback\"] = {\"approved\": True}\n",
+ "\n",
+ " elif decision == \"e\":\n",
+ " edited = input(\"\\nEnter corrected query plan as JSON:\\n\")\n",
+ " state[\"human_feedback\"] = {\"approved\": False, \"edited_plan\": edited}\n",
+ "\n",
+ " else:\n",
+ " new_q = input(\"\\nPlease rephrase your question:\\n\")\n",
+ " state[\"human_feedback\"] = {\"approved\": False, \"new_question\": new_q}\n",
+ "\n",
+ " return state\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "74cbce56",
+ "metadata": {},
+ "source": [
+ "Et on obtient alors un nouveau graphe :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 90,
+ "id": "e4ae950a",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAR8AAAM9CAIAAAAqzuAOAAAQAElEQVR4nOydB2DTRhfHT7KdvRMSCIEMIOwyyi477FE2Ze9dKJRNC2UXymo/oNBS9t6rbAhQ9t57JgRIwsjetqXv2UocJzjBCZaH9H5NjXw6nWTp/rr33p1OUpZlCYIgPCAlCILwA6oLQfgC1YUgfIHqQhC+QHUhCF+guhCEL1BdxubuufhXTxKTYpRpaUpFqqo7hJIQVqleJyFESSiasIzqGywQwrIMpU6BnOoFJQv/ZubhtqVZwlKE61uhYb0qkcujyckVyChVa7kNCUO47hjYlIIC1P9y2TSbqHOyUiuJVEbcC9oGVnYoUtKGIPpBYX+XcTixKfLVk+SURKVEQslsaZmMpmVEmaqqxZSEUmkmQyoUTam1pFpQq0udwqqqPywwoDaW0s6jWlBLJVNdRJWoU12qq82S9A3hH0b76lPcumzqkshArFRKslKpYOWpsG/i6CarVN+1XC1HguQKqot3DqwKD3ucJLOifUvZ1frWy96JWDTPbyfdPB39/m0K3CZqtSqAGssFVBePJESxmxeEgK7qdfQMKGdLhMXJbe8eX493cJX1nFSUILpAdfHFhX+jbv4XDRZUrVZuRLhsW/j6Y0TqsPnFCPIJqC5eePcqbdfS10PnBRARcP1E7KXD779fWJwgWUF1GZ7/dn94fCVu0FxRSIvjzaPUfStfD1uALVgWaIIYlJB7yfcvxopKWkDhUtY1Wrj/PfEFQbRAdRmYIxvDG3UuSMRH5YYuLp5Wm397TZAMUF2GZOv8MAdnaWBVeyJKvhvtE/Mh9dG1BIKoQXUZDEUqgehZD3GHp0tWdDy39z1B1KC6DMaOJa8dXWVE3AR190xLZZ7dTCYIqsuARIen1mxegBiR58+ft2rViuSd7du3T506lfCDm5cVBOgJguoyFPcuxFMSqsTXdsSIPHjwgOSLfG+oD5XqucbHygmC6jIUT2/G29rzdTLj4+Pnz5/fpk2bOnXqDB48eO/evZD4119/TZ8+PSIiokqVKps2bYKUs2fPTp48uWXLlrVr1x4yZMi1a9e4zbdu3dq0adPTp09Xq1ZtwYIFgwYNOnDgwMGDB2HDR48eEUNTsqoDy5D3YUoievAJFMMQ+0Hu4mlN+AFUFBkZOWnSJH9/fzDq5syZExAQAPpJS0s7duwYSAXypKSkgLRAP5AZvp44ceLHH38EHbq7u1tZWSUmJu7cuXPGjBllypQpWrRonz59fH19uZx8ILOiH16NKVDEnYgbVJdhkKcpXT2tCD/cuHGjV69eNWrUgOURI0Y0atTIxcUlWx4bGxtoo2xtbblV5cqVAzndunUrKCiIoijQXu/evatWrUqMgrWNJOY9GoeoLgPBKImtPUX4oWLFihs3boyJialcuXLNmjVLly6tMxs0UEuXLr1+/fqHDx+4lOjoaM3asmXLEmNBUWxKchoRPeh3GQaW8Dhcc9q0ad26dbt48eLo0aMbN268fPlyhUKRLQ84YAMGDJDL5b/++ivkvHTpUrYMYB8SY6F6TlrJ173GgsC2yzBIpbQ8hfCEk5NTv379+vbte/v27VOnTq1atcrR0bFHjx7aeY4fPw5uGLhSYBySrK2W8WEUrJU13rhRXQaCosiHCF7kFRsbe+TIEQgYgmdVUc3jx48/jfVBNhAhJy0gODiYmI7UVMbJw3hNpdmCNxjD4Ogqi3nPi6chlUpXrFgxYcIEaLg+fvwIkXSQFmgMVkH0D1wsCLWHhoaWKFEClnft2gVG44ULF65cuQLhDTAXdZZZpEiRe/fuXb16NSoqivCAIo0pUcGBiB4J2PQE+WKSE5mQ+wlVmxj+MWTwl8qXLw+G35o1ayC2ERYWNnDgwLZt20Ik0MPDA/qF165dC0L67rvvlErl5s2bFy9eDGbhzz//nJSUtGHDBpBcgQIFoCsMvDKaTr+Zurq6QsqWLVuqV6/u4+NDDErIg6SnN+Ibd/ciogefnjQYy8Y+bzvUx7sYX71elsL238PiPsoHzBLXE246QcvQYNg7S8/seUdET1SEvFIDIU8loj8Y1TAYTXsW3Lk4LJcMhw4dmjdvns5Vzs7OEJbQuQqMwFGjRhF+gJKhx1nnqtTUVGtr3e0w2KJ+fn46V53/9yOjZL4OciEIWoaGZfW0EEcXaadRuj0ZcISgR1jnquTkZE24Lxt2dnafjswwFOCVQRxf56q4uDgIQupc5enpCbEWnauWjXv+VW2X2m3EPgaKA9VlYJb8+KzfNH97ZwkRH//+ExH5KmXATD+CqEG/y8BUque6YU4oER/v36S9epiA0tIG1WVgard19ypis36m6AS244+wdkOLEEQLtAx54dqJ2BvBUYPm+BMRkBTLrp7+vPdkf0c3MdrDuYDq4os9y96+e5XSfrhPAR8hjwk6te39gyuxnUYW9SyKQ5+yg+rikStHY64d/1CgsG2nHwsTwRH6IOXElgiGIQNn+xFEF6gu3tk0JyzmY5qLu+zrILdS1YQw+u7M7o9PbsSlpTB+ZR1a9MURTzmC6jIGibHk4CrVu0Jg2dqWdnCR2TlKpTIiT2O0s9ESGrpitVNU74mkMl9pl5Ev/f13WXLSNGRksiWqINkSAYlU9f47hsl+nLRE9Rho9sw0Rcvo+Gh5cqwyOUWpSGVk1pKipeyb9fIkSK6guozK8ztJj6/FxX5UpCQqlErVqxy119IUCCFrFFf9rtXsl4hWv4g1ayJFMaoXvDLwH6sZrUup3i9JfXqFafVbYD9N17zSUhuQokRGE4aFO0Ihf7uqjVztXTHUrBeoLkHx+PHjGTNmcFNEISYHxxkKCoVCkdMYJcT44JUQFKguswKvhKBAdZkVeCUEBarLrMArIShQXWYFXglBgeoyK/BKCApUl1mBV0JQyOVymUzsb+gzH1BdggLbLrMCr4SgQHWZFXglBAWqy6zAKyEoUF1mBV4JQYFRDbMC1SUosO0yK/BKCApUl1mBj8EJClSXWYHqEhSgLvS7zAe8zwkKbLvMCrwSggLVZVbglRAUqC6zAq+EoEB1mRV4JQQF9CajuswHvBKCAtsuswKvhKBwcHCwssK3JZgLqC5BkZSUlJKSQhDzANUlKMAsBOOQIOYBqktQoLrMClSXoEB1mRWoLkGB6jIrUF2CAtVlVqC6BAWqy6xAdQkKVJdZgeoSFKguswKfnhQUqC6zAtsuQYHqMitQXYIC1WVWoLoEBarLrEB1CQpUl1mB6hIUqC6zAtUlKFBdZgWqS1CguswKimVZglg4HTt2fP78OU3TDMNQauCyenh4HDt2jCCmA3uThcDQoUNdXV1BVBKJBDTGqatixYoEMSmoLiEQFBRUokQJ7RQvL68ePXoQxKSgugRC3759nZycNF9BbF999RVBTAqqSyDUqFGjbNmy3DLIrHv37gQxNagu4TBgwAA3NzdYKF68OIiNIKYGY4b54fz+6PjoVHkaw32l1PcoliE0TRiWokjGSaUgldASwiiJOjUjM0upTnzG1pDCMiy3SlWIjDDyzH1JZLRSzmjvnZZShCEMk3nhuAOAvd25ez86OqpUqVIFPAqoCobjUWbJBuVLJESp1CqOIjSUx3CHkl4faFWBlPYuNIcBQRMuXfOL1CWnf8v4UZnZOKxtZYX8bMrXdiRiAtWVN/YuCw9/mSy1VtUlRVp6oqpOQiVlSbpOVDWNW5GpLpWVwGQkgrxgG41kKFalt4z8FA3CozR7pKSEzdqDRUlU+VktxakVq9ovVGiA1qgNStYqiiufSAjJqi7V8aaXxnLHp7lfaKClLKNIX8UyWqWlHwCrrkvaKVk2t7KlFKpbBtu0m7dfeRsiDlBdeeDktg/P7ya0/97Pyo4g+eDx1firx9+36leoSElbIgJQXfpyaFVk5JvUjiOLEuTL2Dj7Rc+JAQ5uRPBgVENfwp4mVW3sSZAvxt3T5t9/wogIQHXpxdtnqSzD+JYRi8PAK4WK28bHiWIwJI7i1Yv4OLl2BAz5EqxsJPJUhogAVJdesEqGURLEICgZBSuOWxWqC0H4AtWFIHyB6tIPiiIIkkdQXfqBvYIGRDR3KlQXYnRYscgL1YUYH7EYAqgu/UC/C8k7qC79QL/LgKim1SFiANWlF6rqgK2XoWDFMnQc1aUX2HIZFmy7EC3gZosKMxwiabtwjDySSZt2Qes3rCSIgUB16YdwTZl2HRq/DX/DLX/XuedX5SsRxECgZagfAjVlIiLCY2KiNV+7de1DEMOB6uKLn6eMlkllvr7+W7etZxgmwL/4uLG/FC8eCKumThsvkUi8vArBqunT5tWt0/D+/Tvr1q949Oi+s4trzRp1evcaZG9vDzm379i4ecvasaMnL/rjV5CBt7dPrx4DmjRpye1i955tly6dffjwnpW1dYWvKvfv/31hbx+d5evMefPWtdFjhkD+7j3afPNNvVkzFoJl2KF91149B0Diq1chf/xv7pOnDyUSqZ9fQJ/egytVrALpe/Zu37Bx5R+LVkydPj4k5EVAQPFOHbs3a9pa/zNDicZgQstQP/JuGEolUqi+sHDk0Pl1a3e5uXtM/mW0Uj3XmUwme/HyGfzNnrkILLHXb8LGjh+WkpqydMmamdMXvHjx9MfRg7hXmUDNTkxMCD55ZNOGfXv3BAc1bDp33rSwsFBYdffurSVL55ctW2HGjAUTJ0yPjo6a/etkbtfZys8pJ6hlzuw/YGHTxn0gLe2DhzzDR/T19Cy44u/Nfy5Z4+riNnPWT0lJSVzhCQnxi5fMGzdmyskTV+vVbTRv/ozIyAiiP4xY+uZRXfqRL8MwLS21Z48B0FfmXahw3z5DoApCRSfq3rOIiLfTp86rVauui4vriROHoZUDXRUt6getxNgxU54+e3zu/GmuEJBZ+3ZdbG1tnRydoAGxt7MPPnkU0suUKb9m1fbu3fqCSKpWqdG5Uw9ommLjYj8tP5ecObFj5yZo5caOmQxH7uNTFFrd5OSkfft3cGvlcjm0rlAs7Khpk1bQe/Xs2WOiPziKF8lCviqEv39xqTT9DPsUVk0mFfrqZcWKX8OCb1F/G5v0WTru379dqlRZZ2cX7mvBgoXAArxz92b9eo24lMDA0ulHAUL19nn16iVRNWuSt29f/7ls4cNH9xITE7kMMdFRzk7O2crPPadOoN0rUaKU5uDBTC3i4/vkyUNNBjhgbsHRUTV5PbRmRG9E05mM6tIPiqLz4S3YWGfOcsPVdTDzuK/QMmhWQdV89PhBg6Aq2ttGR33ULFtrZba2seEKOX/+v8m/jIEWafCgkcWKlbh2/fL4CcM12bTLzz2nTqI+fihcuEiW32Jrm5ScpPkqlrFMXwaqSy9YhmHzPs+KRktASkoKUelEx6xS4JKVL18RTEftRGcnF61yErkgB5CakgJeECwcOLQHthrQ/3suPZfWQ/+cGuzs7cEP1E5JTkriml+DIBJtot/FI89fPI2NjeGWObMKImyfZisWUOLduwgI5YFfxP2BfsAH02S4JoGCDQAAEABJREFUeesqt5CamvoqLMTfvxgsx8XFFvDInF/x7NmTOR2G/jk1lAwsA74Z+FfpJcTHgU3L7dcw4FgNJJN83WydnJwhtgZVE/7Wb/jHy6ugzr7ajh27Q8h+6bKF0L5BPPDvFYv7DfgOPB9uLU3Tu3dvhfg4xBtXr1kOAgtq2AzSixcLvHrtEoQlIewBQQguc0Rk+Kfl55KziFrDp08ff/DwnvYmrVt3gIZ34aLZEImBsPucub+AlduieVtiINDvQrTIlx8OfVx+fsU6f9ccJFGooPesGYsgwPBpNggGrlq5bevWdYOH9gAVQcBg3NgpgSVKcWvBw4Eo3+ixQz5+/ACRw4njpxUp4gvp/foNS0pKnDxldHJyMgQVIdQeHv5m4qQffv5pVrbyc8nZKKgZdFWtWftXubIVfl/0t2YTn8JFpv4yd8OGlV26tYJwS+nS5f73x0qNdYroCc4jrxePrsWd2Pyu99Ti+m8CXbrg4SxcsJx8Abt2b122fFHw8StEQNw9H3XjRNTwRXk4mRYKtl36weJTKAaEQssQyQSfnTQgFGFF4u6juvQiH093TZ82j3wxHdp3gT8iLFRTQuHTk0gmNLZdhoMVy9OTqC79wBegIHkH1aUfOPDHkFAimUcB1aUf2G9hOCjRRIlQXfqBbZfhEM8EQKguBOELVJd+oGVoSCiRnE9Ul56gZWgwVKdSHJY2qksv0O0yIOh3IVnAsc5IPkB16QVNSyVW+CycYZDKZDIrCREBWGP0IrCiHavE5sswfHyTYmUtClMb1aUfEmJrLzmz6x1Bvpi3LxO9i4viQUxUl750Ge336lFCWhJBvoQjq8IhqNG0ZwEiAvDZ5LyQRpZPfu7iae1XxsnBmVYodE0TxYUXPzmrqrE/cLKzdfVQ6ocyKVUipRl9p/6avkqTKT1neiJNUUxmnoxUiuICcpqiVAuUOiZDZTyxqJ4qTTWjICyoj0T9ncufuSNKfQyZO0w/pPRt08tRr8/cUfqBZPw6cKyUmT9UKpG+f50S+jhBZk31mFiEiANUV57ZuvB13Ee5Mo1R5uSJsbq7x3Qkp8uBpbiRd7lciqzq0v6aWSyVsZtsW2kvfLouY6ssh6frYNKPU/OVVc8In1E+J3Zd+1YhtaJkVtJC/jYt+nkR0YDq4p1Hjx6NHTv2l19+qVatGrFAQkJCBg4cqFQq7e3tS5UqVa9evbJly/r7+xPkc6C6+GX58uXnz59fsGBBwYIFicUyfvz44OBgWGAYxsrKqkCBAo6Ojl9//TXcNQiSMxjV4IuwsLAuXbpAXdy4caNFSwto2bKlq6sruFoSiQQasYiICGiQN2/eTJBcQXXxwvr163/44YfZs2f379+fWD5gDbq5uUHDpUkBmRUtarCJr4UKqsvAfPz4sV+/fjExMXv27ClWzHBTQ5uaZs2aaV6JAnh6eu7du5cguYLqMiS7d+/u1q3bqFGjoOEiwiIoKEhj30I79tdff3Fv+kNyAccZGobU1FRw8b29vY8ePUqEiK+vb8mSJV+/fg3SOnbsGFiJp06dgshhQEAAQXIAY4YG4MiRI7NmzZo/f37NmjWJoKlfv/7p06c1Xzt37rxu3TpbW1uC6ALV9aVMmDBBJpOBuogoiYyMlMvlPj4+BPkE9Lvyz9mzZ2vUqNGkSRPRSgvw8vKKi4uDbj2CfAL6Xflk5syZUVFR0FOs86VBoqJMmTKXLl368OGDh4cHQbTAtivP3Lhxo2HDhhUqVPj9999RWhzQCQHe17Vr1wiiBbZdeWPRokWPHj2Crh4nJyeCaGFvbw/xw7Zt22I/mAaMaujL48ePIebetWtX6NEiSA5AyB76waBnAiI9RPSguvQCOk/PnTsHMfdChQoR5HMEBweDwEqXLk3EDfpdnwFuxl26dJFKpRs3bkRp6UlQUNCvv/6anJxMxA22XbmxYcOGXbt2LViwoHhx4b/k1+B8/PgxISHB19eXiBVsu3QD0fb+/fvDJ/joKK384e7unpSUBJFVIlZQXTrYvXs3WIM//PDDyJEjCfIFgOvl6ekJjRgRJWgZZiE1NXXcuHEFCxb86aefCGIgwAG7deuW4Adhfgq2XZkcPXoUuomh1UJpGRboaIZGrHnz5kRkYNuVzsSJEyUSyezZswnCD+/fvwfTAJwx8Yypx7aLQEdWjRo1GjVqhNLilQIFCvj4+Fy+fPnmzZtEHIi97Zo5cyb43BBz136sHeGVgQMHLl68WAwtmKjVtWTJEplMNmTIEIIYl5iYGBcXFyJ0RG0Zvn79GvuyTMLVq1cjIiKI0BG1uqDhUigUBDE6u3btglsbETqidjbA10J1mQSIIVn6DKr6gOpCdZmAjh07EhEgassQ1WUqjh8/jn6XwEF1mQr0u4QPqstUoN8lfFBdpgL9LuGD6jIV6HcJH1SXqRCJ34XqQnWZAPS7hA+qy1Sg3yV8UF2mAv0u4YPqMhXY3yV8ZDKZXC4niNFBv0v4YNtlKtDvEj6oLlMhEr9LjG1Xy5YtIyMjWTXw9fDhw/AJy+KZ78HkgN/l6uoqeONQjG1Xnz59rKysKIqiMwBpVatWjSDGQiR+l0jn1ejSpcuzZ880X52dnWfMmPHNN98QBDEcIvW7unfvbmdnp/laokQJlJYxwf4uIdO6deuAgABu2d7evlOnTgQxIjjOUOD07NmTezurv79/UFAQQYwI+l2ZhNxPTUlKVeWG2Bq3GUUR9ZawwP0LJanXUepMrCarOmP6P5rNM1IzSoSvKtiMTTKOistGZWTLONKM3BlfMgrmNkw/lKy7UK8i2tlgYc3q1WGvw1q3blOpckVN4Zk/Msu2mWcpvXy4LzGaBEKynMZsKVwp2geddV/Zs2uOnMpMzcip+j8zkdI+1RpoCe3hZetWGN+YbmI+o66df7z58DYVrp8ijcm6HeHqceZVz6EYTZUgWatfhkwz09kM2eg6zIwcmcWq955zaTqORC2L3A4yx72r90Zy3pbKQTafHirJIZu2kHQVoqWu3H4jBy1VHZHUiv6qlmv1luY4KSf4XeXLlxd885Vbf9fW+W8Ylmnex8etsBVBLI27Z2PvXIzyLGrtX97s5pQWe3/X+pmhCiXbenARlJaFUr6Oc5dx/kc3hl8+HE3MDJH4XbrV9fR6clKCss1QH4JYOOVqud05G0PMjI4dO/r4CL926VbX3YuxDk4yglg+Feq7KBRMbIR5jRkQdX9XcmIaocX7bhSBwTLk3ftEYk6I+vkuiBAyDEGEgZJhWSVFzAl8vgtB+AKf70IQvhC130XRGcMnEMuHYlnazK6mqP0u8IPF/TplQcGmjwIzI0Ttd9Hmdq9Dvgxzu1WK2u9iGBb+CCIYzOxuKWq/i5aA64XNl0Cg2ByHL5sKUftdjBJcL2y7BAJLmZ1liP1dCMIX2N+FCAR15wqOMzQButUlkVK0BP0ugcByz4ybE6KeV4NRskTo4wx37d4a1Nh85zBs277R+g0riUHImPLAfBD1811wt2OE2J388uXzLt1acctlSpfr2WMA4YfpMyYeOryPmAnpUy+YEaJ+vkuoPH7yQLNcunS5Pr0HEX54/PgBQXIG55HPG62+rdeta1+oVWfOnrS3ty9fvtJPk2Y6OjjCqjbtgnr1GHDm3Mk7d27u23vSydHpyNF/9/+76+XLZ/7+xRs2aNKhfVdK7XrnUgg0O/v/3Xnj5tWIiLd+vgEtWrRt82163Clb+TRF79i58crViyEhz93dPGrVqtev71AbG5s1a//ibK0GQVWGDf2RpiXLli8KPn6FK+T8+f/WrV8R+uqls7NL8eIlR46Y4OWlMl3AQuvbZ0hsbAystbW1rVql5vDvx7q7e+RyKqB8+Jy/YObyv37/d9/pXArPfZWGS5fPb9u2/tHj+25uHuXKVRg0YETuB5ANOLVmOM5QvPNq5COqIZFId+zc1KpV+5Mnrs6bu/TVq5AlS+dzq2Qy2YFDe6DqzJ/3p52t3YngI7/Nmx5YotTmjfsH9P9+567NS5ct/Gwhfy5bePXqxZE/TJg7ZzFI63+Lf4M6p7P83Xu2bt6y9rvOPX+d/cfgwSNP/3ccqi9kA5F0+a4X1N1Twdc6deyuffDXrl/+Zdq4Jk1abt96aOqUuZGR4X8snqspHGo2TdN79wSvW7Pr7r1ba9f9nfupOHJIdWDjxk7hpJVL4bms0vDk6aNJP42sVKnq2tU7fxgx/vnzJ7/Nm0byAsOY3XTmou7vgqgGdCjnleLFAqtWqQELZcqUh4Zl5ao/x42ZArUT2iUnJ+cR34/lsh06tPerryqNGjkRll1d3fr2HjJvwYwe3frBci6FTJkyJykpsVBBb1hVqWKVI0f2X7l6oUZ11fTU2crv3KlHvbpBvr7+3Nd7925DzsGDfsjlyFevWV63TsOOHboR1ZzyLsOGjh47btijxw9KlSwDKYULF+nRvZ8qn4MjtF1PnjwkeSGXwnPfb/rx370FDS8cACgcbg2w6sXLZ3k6ANV8jMS8EHV/V/5uddB6aJYLexeRy+Vv36ZHXUsGplcXhmHu3b8NdVSTE+7KkHjn7s3PFMKyu3dv7dWnA9hd8AdVMCY6SpNTUz5RtzZXr10cOqxX46Y1IOf2HRujtXLq5MWLp6VKlc1W2qNH97mvgYGlNascHZ0SExNIXsil8Nz3y1GufMWUlJRJP4+CVv31mzAQIdxciIUTHByMflfesLa20Szb2Krm0NNURCur9Gnb0tLSQDCrVi+DP+1tNQLQWQjIb+JPI+XytIEDhlesWAU8sREj+2tvrikfWPHPEmgewSYEDcPNHlq/3MN3CQkJqamp2vvlXuAATSX3lfqCZ91yKfyz++UAExqM4TNnguF3LVv++9eVq/XpPRi8L2LJ7Nixw9nZWdSzheYV7Zt6SnIyfNrYZJ+nEowcqENNGresWzfL1O3ehXxyKQR8D7ijL5i/DOoWtyohIb6Ah+enxwAexr8HdoGt1aplO01OkitwSKp9pSRn/hB1/YaICPlicilc//1Wr1YL/sBvvH798q7dW376edTuXcel0jxcO3MbGSD257vyYRvevn1ds/z02WO4/OCxfJqtWLHA+IR4jXkDTVl4+BtPT69cCrmlTtTIKSTkBfz5+xX7tHAoLTk52SMjJzSVFy6eIbkCuygZWPr+/TuaFG45oFgJ8sXkUrie+71163pqWiqoy8OjQNOmrQoW9B41elBEZLiPrnOrE7jjmFvvpcj9LlV3Mskj7z+8A99AqVRCrO/Awd0NGjSxtrb+NNvA/sPPnz8N1hrYe3fv3poxc9LosUNABrkUAiF4qIvbtm+Ii4/jAokQ+YAa9mnhYCIWLep3+Mj+N29fQxgd4iXly1WMj49LTFQ1Cz4+RT9+/HDu3OmwsFDtrdq1/e7c+dO7dm2B8m/eugaR+sqVqpbQ8gDzBBxwgQKe165dgqIUCkUuheuzX3BTp00f/++B3TEx0Q8e3oOIKMisoFch/ahTF6gAABAASURBVI+HUkPMCVH3d7FsfkbOgDEGd1/wDWAZasmI4eN0ZitfvuKKvzZt2rzm7xWLwS4qW+arWTMXaXSosxBwn37+aRYE1tu0bQhN2c+TZn6M+jDll7G9+3Zct2ZntvKn/PwrhO/79O0IphdE4cBPu3LlQrsOjdat3VWjem0Q25SpY3v3GgTxCc0mEBMHVW/bsQH6BmBfVb6uAQ4e+QK6d+sH3WsQq9yy+UAuheuzXwiBgq6W/rlg0e+/wr2jYYOmvy9akSez0AwRSX+X7negrJsZwjCk4yg/ojfQpQudwr16ftHYIoMUgmRj7fRnTXsVCqxoT8yGnTt31qhRQ/CDofD5LuFjhtN7icTvykFdFM64lhvgLkLgLqe1GzfshV4pYjaY4XhsUb+/i5bkOaixb08w+WIMUogRULmOKzbntNaspKWCNbt7pUj8rhxGQikIziOfO9yYLMuAMrvmC+fVQBC+EHV/F/Qm44ShCH+Iel4NnC1UaOA88qYgx5ih2Q1NQ/KLamyAmTle4va74Fpg2yUUIGBImd+8GkQE5DTTNUVLcKpD4WBuEXlx+11K9LsEhblF5MXtdyEIn2B/F4Lwhaj9Lpk1LbOREEQQSCSUjDYvL1rUfpedvVSZhn6XQICAYQFfW2JOiHoe+a8beSQlKghi+Vw7Gg2WiIMzMStEPY98kZJWbh5WO35/RRAL59HV6DptvIiZIZJ55KlcevF3L30bH60oW9O1ZFVHglgUaWnk2uEPIQ/j2g3x8fS1ImaGSJ7vonIfI3Pgn4g3L5KUcpZR5vuJFCqvr7dRP45kJK+PNeKQr/z+rjyfQIoGiLWdpE5brxKVzMvj4hgyZMiAAQOqVLH4aU9z5zMR+VYDVXeX5GSSlpD3ma/VUPl4uEhd36l8zZyjcuH13vDly+crVvwzZ+7cdJHlaX9U3o9QPR4pz2cDjPe83tkkxNnNrEO+2N+Via0t/AkwQC+JSE1WfnD2wL4HY4PvTRY+CoXC0qcus1BE3d8lEuRyuUwmI4jRwXGGwgfbLlOBfpfwwbbLVKDfJXwYhqHNbACeSEC/S/igZWgq0O8SPqguU4F+l/BBdZkK9LuED0Y1TAX6XcIH2y5TgX6X8EF1mQr0u4QPqstUoN8lfEBd6HeZBPS7hA+oSyLBAfImQNTzaogEtAxNBfpdwgfVZSrQ7xI+2N9lKtDvEj7YdpkK7O8SPqguU4F+l/BBdZkK9LuED/pdpgL9LuGDbZepQL9L+Hh4eNjZ2RHE6KDfJXzev3+fnJxMEKODfpfwAbMQjEOCGJ0jR46g3yVwUF2mYu/eveh3CRxUl6lo2rQp+l0CB9VlKtq1a0dEAFqGqC4TgH6X8EF1mQr0u4QPqstUoN8lfFBdpgL9LuGD6jIV6HcJH1SXqUC/S/jIZDK5XE4Qo4N+l/DBtstUoN8lfFBdpgL9LuGD6jIV6HcJH1SXqUC/S/igukyFSPwuimVZIjLat2+fkpIC0UL4TE1NlUgkaWlptra2586dI4hRAL+rYsWKgm++xOh31a1bF1zq6Ojo5ORkhmFAZnCLCQwMJIixEInfJUZ19e3bt0iRItopjo6OHTp0IIixEInfJUZ1OTs7t2rVSjvFx8enZcuWBDEW4HfBOSdCR6QR+e7duxctWpRbtra2FomTbT5gf5eQsbOz69ixI+gKlgsXLtymTRuCGBH0uwROt27dvL29IWAIDRfOyGtkROJ3mXVEft/yiHevk+VpDKNgsq1iWEJT2dIolrDZ0uC3UfAfyf4bWUJRnyaqUz8lp3SGUDTRffYoiqakxNZOVrm+W4X6DgQRJebbm7zpt1fyVFLuG3e/sk6MUqlKypAJparZqs/0FB3yyYSlCcVpM6dsGekgTZrVyqJJ196X9qpPUzKgJSQtiTy4HHXp8HtbRzrwa5zxNwsi6e8yU3WtnvrKwUX27ZBCGQkW+HZjF1K7XQHSrsCW30LePHVo0MWDIBmA3+Xh4YG9ySbg7J4oRsk071eICIKgLt6Pb8YRRAvs7zIZLx8kuBW0IULB09cKDMVrx6IJkgH2d5mM1GSlnZOggpm0lPoYkUaQDLC/y2TIUxh5mpIICIXgftEXgs93IQaDJRRBtMDnu0wGpepdElR1pOgcuszECs6rYTKgj1ZVHQUF3DFE9xxdLqDfZTIYJcsyRFCwgvtFXwb6XYhBQcNQC/S7TAZ4KEJzUtjcxmqJEPS7TIeEJbSwBu/TFG2BY7n4A/0uk8EqKFYpLDeFYRns7tIC/S7EcFAU+l3aoN9lMlQReaH5XSz6Xdqg32UyqPSnqYQDRasepyRIBuh3mQxwUQQ2hynLQH8XNl6ZoN9lMtQDoYR1pxfa0K4vBf0uk6FqtwQ2/zb2d2UF/S7EYFBSmpZi45UJ+l0mQyKlJJK81cWQkBdDhvZs1KR6x87N7ty5OWJk/4WLZkP6w0f3GwRVgU9Nzh492y5b/ju3fP/+nfEThn/bpkHP3u0hMTExkUvftXtrh05Nz50/HdS42u//m9u8Ze2Nm1ZrSlAqld+2bbh791aiN6yCYRTYeGWC8xmaDKWCVSrzUBehuk+YNMLVzX3Lpn/nzV26dfv6sLDQz05R+PpN2Njxw1JSU5YuWTNz+oIXL57+OHoQ98IhKyurpKTE/ft3Tpo4o1OHbg3qNzkRfFiz4c1b1+Lj42rUrEOQ/ILzalgM165ffvcuctCAEQUKeAYEFB85YkJsbMxno44nThyWSWWgq6JF/fz8AsaOmfL02WNor4j6cZGUlJQuXXo3Cmrm41O0ZYu2oaEvYS234X//nShVsox3ocJEf/DhrqzgvBomI6+9Q8+fP7GxsfH3L8Z99fIq6Onp9Vl13b9/u1Spss7OLtzXggULeXv73Ll7U5OhVMmy3ELZsl+BxkCNRP0oyX9nghs3zuMrHcT3krTcEYnfZZYxwzz2DkVHR9naZpmO08bG9rNbJSTEP3r8ALyyLEVFfdQsg32oWW77baeNm1cPGTwSzMLk5KRGjZqTvEBJKBp7k7UQyXyGQhgJ5ejolJaWqp0CAsgps0KZ/ipXN3eP8uUr9u0zRHuts5OLzq0aN2n514r/gQl68dLZWjXrOjk6kbzAKlkGe5O1wP4u08GAJZUHeRUq6A3hvlevQsCDgq9v3r5+//4dt8raSvWWE43YEhISPnx4zy0XCyhx7PjBCl9VpjOedoHAI1iAOncBcqpfrxF4XOCYjR09mSBfBvZ3mQxW86EfNWvWBStu/sKZEIqA2MOcub84OKS/GKFIEV9HB8dDh/eBvwTxwLnzpjpmNDsdO3ZnGGbpsoWwFcQY/16xuN+A7168fJbTXlq0aMtFDmvUqE3yCkY1soL9XSZDFdXIS3UELc2e9XtKcnKrb+sNHtKjbp2GHh6e3CqIy0+ZMufRo/sNG1Xt2r11/XqNCxUqzAU8oDlatXKbrY3t4KE9evXpcOv29XFjpwSWKJXTXipVrCKVShs3agGfJK9gVCMrIunvMsc3DC0b+7xIKbv6nfI/j3zf/p3B5Bs1ciIxHI+fPBw6rNf6tbtysh5zYfOcFz6BNi37eRNEzZ49e6pWrSr4oLx5RjXM63mNZ8+eREaGr1i5pGuX3vmQFgAhDRafTdYC/S6TQVGsWT3Ku+KfxZN/GVOyZJl+fYeSfEHhs8lZwf4uk6F+kPeL7NU1q7YTwzHvt6XkC0G/KyvY32UyWIbgs4bCBvu7TIa6N1lgT0+iZZgF9LtMhqrtEpwpheLSBvu7TIYqYCisysjiPPJZwXk1TAaENAQmL8FNcvWloN9lOoRnGdI4GCoL6HeZDAHOFspgUD4L6HeZDHVUgyACBv0ukyHA+QyRrKDfZTKkUpqWCEpdtIyWyvB+kQn6XSZDZk0ThaAmWgRH0sHFhiAZoN9lMtwLWb9/m0wERFqasnYrV4JkgPMZmozWgwumJCoiXqQRQbBv6WuPgtYE3z2phUj8LnN8epLjr3EvfMs61W7nQSyWhCj2yLrXbl7SNkPz/yQoYrmYr7qANVNDk5OVEgklT8367CGVfd4NTQLEGrP9IOg9yzIKSWtbSkKxGZP+6igh61649PSPjJWazJl51UtwzLSUZpRMgcI2HUfmZV5RcQB+V8WKFfEJFFPSd7pvbCT7+HpMappcO52iPrkpZFTzjFXaGsoiOFZrTFJCfOLde3dr1qyRpQS445BP5aUem6VdMqvOmLEVq96xphwIejq6yb6qnbeJ2cQDPt9lFjh7UdVa8BUPuH///rbg3ePbfksQ44L9XcJHoVDkZ4In5IvB/i7hI5fLUV0mAfu7hA+2XaYCxxkKH1SXqUC/S/igukwF+l3CB9VlKtDvEj4Q1fjsC2ARPkC/S/hg22Uq0O8SPqguU4F+l/BBdZkK9LuED/pdpgL9LuGDbZepQL9L+KC6TAX6XcIH1WUq0O8SPkqlEtVlEnBeDeGDY+RNBfpdwgctQ1OBfpfwQXWZCvS7hA+qy1Rgf5fwwd5kU4F+l/DBtstUoN8lfFBdpgL9LuHj5ORka2tLEKNz8eLFt2/fEqEj6jt3TExMWppAZqu3LCpWrOjp6UmEjqjVBWYhGIcEMTrodwkfVJepQL9L+KC6TAX2dwkfVJepwP4u4YPqMhXodwkfVJepQL9L+KC6TAX6XcIH1CWXywlidNDvEj7YdpkK9LuED6rLVKDfJXxQXaYC/S7hg+oyFeh3CR9Ul6lAv0v4oLpMBfpdwgfVZSrQ7xI+qC5TIRK/i2JZloiMTp06JSUlwQ9PTU1NTk52d3eHxMTExJMnTxIEMRxitAwrVKgQHh7+7t272NjYtLS0cDWcxhDjgH6XYOnZs2eRIkW0UyQSSevWrQliLHAeecHi6+tbt25d7RQfH58OHToQxFiIxO8SacywW7duoDFumaKoli1b2tvbE8RYQH8X3NGI0BGpugoVKtS4cWNuGS5z27ZtCWJE0O8SOF27di1atCg0XA0aNHBzcyOIERGJ32UuEfmdf7yJ/SCXyxmFgoGvNE0xDKtzgaKI5pAzE2mKMOnJ2hmojPLZrPkzUlnYSELRLKVjLaUuSjs7pVWUeieUjjLVW4FosyVyWFtLpVbEt7RDw+88iIjZs2dP1apVBW8cml5dacnsqqkvHV2lBf0cZNZELld170ooSqk+MBqqacYC/Av/aVJU2QilJBlrVWJh1dvSSpbhMnBK02xCUZm/l2IpilZJErTAkiz7SoeCFJphGK0ESq0qNrNo2B1NK7XycNlU6mKZT3+slVQaFy2PfJVsa0d3m1iUIILGxOp6F6rctTS086gAKwciKg7+/TYpMa3fdD8iSsDvqlixouDDhib2u/b986pUNRexSQtoOdibpsmhVZFElGB/F++8fpCmTGWrNBFpRMG3tMubl8lElODzXbwT8jhRIqOIWClUzPrhVZGOIcbnu3gnNQ3+UxKxomSVSrEO0Mf+LgThC3y+C0H4Av0u3oF+WCJetyvH3ntGAAAQAElEQVS990ycoN/FO6rRDKJ7dDMTdd84ESfodyF8QxGxygv9LoRvWCJW0xD9LoRf0O8SPKa0DGlAIt6wBvpdROiYNqrBMEoRhzVEDPpdCL9QrHgtQ/S7EH5RPQQm1pYb/S7eocTdm8wQRrRmMfpdvEMxlBHENW36hLHjhsHCixfPGgRVuXPn5qd5Tp0+DqtiYqIJYhTw+S7eYQhjzAejXVxce/Uc4OmZf3N/z97tc36bSpAvBv0uoeHm5t63zxDyBTx+/IAYDtW0HZRILWP0u8yOAwf3tGxdVy6Xa1K2blvfuGmNpKSkhISENWv/Gvp97+Yta/fo2XbZ8t9TUlKybZ7NMvzr7/+179gEMsOG2m9CyamoUaMHHT124Nixg1DIk6ePIOX+/TvjJwz/tk2Dnr3bQ7bExESSJ1Sz8IjU8xKJ32XKtoui6TxFNSpVqgpCunLlwjff1ONSzp47VbNGHTs7u/UbVm7esvbnn2Y5O7skJMQvWTpfIpEMHvRDTkXt279z3/4dEydMhzIvXPhv/YZ/NKt279mqs6g/Fq0YNrxPkSK+kyZMh2yv34SNHT+sRIlSS5esgX67pX8u+HH0oGV/rpNK9T2lLCVWban9Lg8PD8EbhyZVlzoqrX/+wt4+3t4+oChOXR8/fnjw4O7UX+bCcudOPerVDfL19edy3rt3+8rVC7moCyRUr24j2ASWmzVt/fDhvdevX3Gr9CzqxInDMqls5vQFIEL4OnbMlK7dW587f7p+vUYE+Rzod/EO3PLZPAalGzdqvmPnpnFjp0B7cubsSVtb29rf1Id0mUx29drFub9Nffb8CWfmubrmOBkOy7Jv3oQ1b/atJiUwsLRmWc+i7t+/XapUWU5aQMGChUD5d+7eRHXpA/pd5kijoOZgHN64eRWWz507VadOQ84SW/HPknXrVrRs2W7j+r2ngq9179Y3l0LAQVIqlba2dpoUGxtbzbKeRYHRePXaJfDBNH9v376OjvpI9IabVJSIEvS7zBEfn6LFipU4f/40tDa3bl+fO2cxUbdF/x7Y1bFDt1Yt0++IUPVzKcTe3h6avtTUzLBHcnISt6B/UW7uHuXLV8wWhHR2ciH6A0ENsfYno9/FP+oJ10keaVC/yYEDu319A5ycnCtXqgopEEVMTk728PDkMqSlpV24eCbX3VJeXoUg4kc6padcunyOW9C/qGIBJY4dP1jhq8o0nd7+h4S8APETvYGoBo4zFDYmHauhftcBySP16zeOiAw/cmR/gwZNoAmCFCsrq6JF/Q4f2f/m7evY2Jh5C2aUL1cxPj4ulxB5g/qNwW07dfo4LG/Zug6iI1x67kUVLlwE4h9gl0ZHR3Xs2F0VKly2EOL1YWGhf69Y3G/Ady9ePiOIHuD7u3iHZfMziT1EDksGloYep6AGTTWJU37+1cbapk/fjj16tf26crUBA4bD13YdGoVHvNVZSI/u/Vu2aAvRdvCXLl46O2zoaJLxkodcimrdsj20e+PGf//8xVMnR6dVK7fZ2tgOHtqjV58OYKZCrCWwRCmC6IFI/C5TvqUheFvEoysJvX4pTkTJq6dJpzaHD19UjIiPIUOGDBgwoEqVKkTQ4BMoJoNSvz2MiBLs70L4haVY0T5/g/1d/O9bIhHzvBpiBp/v4h1GqcR5NcQJzquB8ItqoAb2dwkaVJfJUD2ajfNqCBpUl8lgqCzjoN6+fRseHh4ZGQkLISEhs2bNIsJFJO9NNqW6IKZBi34e+/nz54OWQFdgKMrl8oSEhJiYGIZhhK0uHGfIOxDTYBgiWriZro8fP/7+/XtuSBcHLYJbDo4zRHgH/K5jx44VKVIkWzrc14mgwXGGCL9oZtXYv3+/v7+/Upn+CmlY+O677/r06QMWIxEo2N+FGI8dO3YUK1aMURvK4ID1799/3Lhx3Pw84ICtXr1ae64eAYDzGfK/b1q8U44BMkai/fN37twJLRjLsgUKFICvZcuWLVGiBCz07t07NTX13bt3sLxu3TphNGjod/GOrZ1MZiXexlOuZKWyLDeXXbt2BQQEHD16VDsRvLKhQ4cWLlyYqI3GX375BRZiY2OfPHlCLBb0u3inRmNXRZp4g4bP7ybY2EuyJYKJmMsm/fr1W79+PVFbj9OmTZs8eTJRK41YGuh38Y8VcfawOrQynIiSiJcJ1Rq7k3zh5OS0efPmkSNHwvKjR49atWr133//EctBJH6XKZ+e5Nj46yuJVNpqsDcRDQlR7L9/h1Rs4FKtqSsxBNAOvHnz5uuvv161ahV0RkMT5+pqmJJ5Ys+ePVWrVhW8cWh6dQHrZ4clxcmt7WhGSZSK7McDnj93jKoQgOqRQ0qTkj2b6r90T4aiCctkWUtIlq20i2VV88ewmklkMrdVT6vDMOnvsdPeL3T5qmcuoHTuS1VW1kQOK2taoSCKVMVXtV1rfZvjjIv5JjExkYvv16hRY8uWLRCHrFatGkFMhFmoC3j9JO3O+eikRIUiNXuVhHrMDemg1BNjp6bKY+OiPdw9tfNws0upHvXNUJdmK81XQrKkaKSiUKS9fRvu61cUdJt9jxnqUk+xQ2gq85VbEgkFu+P0A/mTk1OhZru7u0GZnPDgHqApRHOObWxplwLW9TsZo7P43LlzYD1OnDixaNGi165dM6vH7EUyztBc1KU/Xbp02bp1KzEcK1eu3LBhA/gw7du3J1/AjRs3jh8/PmHCBGJOQB8a9HyMHz/+zp07UKdTUlJsbGyIqRHJvBqWpC5wLbjAtAFJS0vr3r37y5cvwYiCTlt7e3vyZUDflLW1NTE/kpKS7OzsPnz40LZt2759+0KHNTEdIvG7LKa76d69e4cOHSKG5uTJk+/fv4cFEBg0YuSLkUqlw4cPJ+YHSIuoRzAGBweXKVMGlqGlnTRpkkn6zbC/y7yAGO7AgQOJodm9e3dcXBxRW1CnT59+/Pgx+TIkEkmPHj0uXbpEzBVoWmvWrAkLjRs3btiwIaeuw4cPHzt2zGiGDPZ3mQvXr1+HT67n1LCAK/L27VvNEx+hoaF///03+WIgXle8eHEojZg9IDDoKyOqt8AEQo8ZN0zkypUrYN8SPsFxhmbBhQsX7t+/T/gBTE1Ql+YryAzsT2jByBfjoWbQoEHEQgC3c/bs2c2aNYPlhw8fQpvGtS15fqGmfohknKG5RzUgPAhBQsIPECR89eoVmwGoCz4hfg13VmIIIIro4uISEBBALBAuCgItGwjvf//7Hxd7JEheMN/ztXPnTqKOvxPeAI/Ly8sLLM9vv/125syZsAB6MJS0gMqVK8Md+uLFi8QC4aIgBw4c6NmzJyxA7Gfw4MGnTp0ihgD9LlMC4SwjNKonTpw4ePAgLDg6OsbHxxMegDpaunTp3r17E4uF65WC2xAYupwhDbehLVu2fMkZQ7/LlEC/U6dOnYix4E9dABiH0JkLhhaxcL7++mvoGyRqJw1kBgIjausX+iFJHsHnu0zDnDlz4LNWrVrEiPCqLqJ+FBLi4Nu3byeCAO4XY8aM4WI2KSkpw4YNO3v2LFFbj3qWgP1dJgDMcbhBEqPDt7qIuh8sKChoyJAhRFjAfXDfvn1fffUVLP/555/dunWLjo7+7Fb43mRjA30sJUuW9Pf3J0bHycmJb3UB7u7uEydOJELE2dkZPqdNmwZ905zDPGDAAOj3g0+d+UUyn6G5tF1wGaRSqUmkBTg4OBhBXYCfn19MTAznsQgS6JV2c1M9WTNlyhRuksZ3794tXbo0W986+l3GIzg4ePjw4dozZhoZI1iGGsBpqVOnTk43dcHg6+vbt29fom6x4ea1du1aWH727Bk3NkAkfpfpe5PDw8MhbM2ZFqYiMjKyf//+0LdDED6BFmzq1KlgMUIb7u3tzXlrAsbEbVejRo08PT1NKy1iRMswG9zEGOIBGjRoxCCsD34XdEw3btz43r17RLiYsu26cOFCmTJlwFIiZkC1atUuXbpk5ME+0GsE3dl8jP03c7jnu6BXMy4uDiQHwR64w44aNcrW1pYICNOoKzEx8dGjR5UqVTKfoWvQiu7atcv4rSgEOczk/mJCoKsdYvRgMYK5uGjRIojywzKxfExQuRUKRcuWLaFfy6xGhZrKOOSkxT0GIh6y9XeB492+fXuQFiyXLl2am9kB7juWNY3cpxi7fkOr9fLlS4M85WFYoMuLe4zSJKxcufLff/8loiGXcYbNmzf/448/iPopz/3793PB1Q8fPhALxKjqevz48fXr17np0c0NCMonJCQQEwGdP2CahoWFEXGgT38X+GALFy7knmeFoC74aSA2opo2z2JmgjGeusAgnDlzZt26dYlZYirLUANUJjCNmjRpQkSA/v1dXC9o2bJlr169WrJkSVgGvY0bN84ihtgbT11gE27cuJGYK3ArNfmE7FCTwOW4ceMG3ImIoAkODoZ+TpJHOHUNGTKkRYsW0JrB8rZt23h6etogGEldJ06cgCAhMVeio6MPHTr0hfMZGgQ3NzfoY3316tXu3buJcFmzZs2XeLkNGjTgRnv//vvvVlZWxFwxkrrAVjbgM78GB3RlPrVZKpUGBATAzejMmTNEoDRs2PDT99nmFdAntIEymYyYK0bq70pJSbly5Yp5Ol19+vQBOx4se2JmcLOjgqFYuXJlgmRFqVS+e/euUKFCxIwxUttlY2NjntKaMmXKd999Z4bSAriJhzdt2rRv3z4iIMBT+vK5yuGG+PTpU2LeGC+qsXr1anMbVPbPP/9A5Ao6WIgZA1FpbgSJPk8lWgTgVXLTmeQb6DKtXr262cafNRhPXRRFmVXX+7Fjx0JCQgYPHkzMnvr168PnihUr9uzZQywfe3t7bn6OfOPv7w8WBzF7jDfOEHqTIAgbGBhIzACIGcyaNcucewh0AiGyH3/8kYibS5cuRUREtG3blpg9lveGoS8nKSmpWbNmlhuR2759OwTcuLngLZGbN29Ch17VqlVJvgCb8MKFCyZ81lZ/jDoS6ueffzaHLnaIv1u0idW5c+fNmzfnozfWTDh69Gi+J9lPTU09d+6cRUiLGFldYHBDXJ6YlEGDBv3666/u7vl8HbiZsGTJEuhFhZC9JQ5NrFKlSv4arrS0NLg7m3MHVzaMahkmJCTAvceENRt8rXLlylmEya4PYF916tQJbhalS5cmImDkyJEQzDDyXJdfglHbLgcHBxNKa/369U5OToKRFlGP6gAT17SDj/MBBJPy8TgCxPGDgoIsSFrE+M93dezYMTk5mRgd6Ay4ffv2Dz/8QARHtWrV4BPiNPy9ismwLFu2LB+DA4sWLfrtt98Si8LY6vLy8rp79y4xLi9evPjzzz+hW5YIlyNHjlhEFBR8p+HDh+dVXadPn96xYwexNIwdkU9JSYFuZWO+t1upVH7zzTfm/KpVwwJ9YhAU9fX1JUKBYZgaNWqYPB6WD4zddtnY2BhTWkQdf9+1axcRDX369JkwYQIxV8B9ymt3CE3TligtYnx1SGhA6wAAEABJREFURUdHG3OGlhEjRkycOJEbDisSXF1duTGy0OVqhk9h3rt379atW/rnhyDznTt3iGVibHXBtQebu3Xr1k2bNoV+D15fGzd//vzatWtb7piGL6REiRLw803+wHU2wGRt06aN/vnHjBljua8+M947UOCcwpWG8DH3hmKitqf5e3Jp27Zt8GkRYz15okCBAuBtPn/+nGS8o4QDgtqjR4+G4C0xBXl62Af6jsGwt9y5DY3Xdrm4uIC6IKShmcYQur94elvXxYsXz507N27cOCJ6ihUrJpPJwBqPioqCr3Xq1IGo3aZNm4iJOHTokP5zQPj4+DRs2JBYLMZT1//+9z8/Pz/tFLASS5UqRQzNmzdv5s6du2TJEoKosbOzW7Vq1cmTJ8Eg5zobIyMjTSWwffv26TnPzOHDhy39VUxGbbsmT54MiuK+gn3o6enp4eFBDE2HDh2EPeVLPoBuRjAFNS84huZr586dJvFnoEdYn6eQoB8F+ie7du1KLBmjRjXADuzVq5dmJn4+nrfnxo9byhhqY1K9enXtqcXDw8M3bNhAjE7Lli0dHR0/mw2u4IkTJ4iFY+yYYc+ePRs0aEDU4+UN7q1CfOn7778PCAggSFbgnMvlcggjaVIgWH/06FH93yNuEGCn0Nn92WxgOl6+fJlYPnqN1bh8KDrkfmJykkKepspMUYTbiIKtCXwhFM2yDKVKgQVWlQLJJKNgyKbeEawlrPr6JiQmMIzS0cERYhxZcqrLycjGlaJ1rOp0SpWm3kvmCtVHSrLuUSDWNrSjq1WDToVcvIj5c3bPx7CnyalJCoU8+3VRnW341ZT6hGnOGFFfAk2ejDPMEnXWDFJSUpRKRsmkUUTVqjOwkboIK2sr6N+HnJT6NssyWrvTlKy+QJkXPdse1Ys6K1GWeqK+XiBvUA60XemrqIwjzbpVQkKCtY2NTCLNUip3GOk/kNFuGCh1jSOfnBPN2cgGLaFYRlfF16qKmWkSwiqzJ0KlsnGQlq/lUrq6PcmZz6tr9dQQpYJ1crGiram0FNV+aJpl1FoCQ4O7THC4jJJVp6gKVKVQcAkz9kGrzqAqkSaauyeVcQ6gNCWTfn5hc4ZhuWwaxXKHCSWkp1Pq86ddDzLUq/McWdtJk2MVCbFp5Wq51Glr1o91rZwcCofu4GpNSxh5WvZ6oXVzyazN3BnTzkPUV0RTobWRSCil8hPRqrNzNiOT5axm0Ybmgma5Lups8Ke+Ltn3SKkvBPvJQaoPO+NSfqJMWr1fVusAtI+H21C7dqVvon3HydhQUy2zQUtUB8Z8IjzNAWtXIZ0nzcZWkpLEJMSkuXlZdRqV45Tdn1HX+umhts42zfpawm3/c2z57aV/WYfG3QsQs+Sfn1/6lXGp0cqVIJbDzj9e2TvRnX/ULbDc/K4t88KsHWXCkBbQdYL/yzvxT66Z4PmXz7J25iuvInYoLYuj46iiibHKI2t1u6+5qSvmg7xuO7Oe6zSvuBW2vXLM7N4ElZhAkuMUDboK5C4mNopXcAl7qvth0BzVFXIHPGDi4EYRAeHlbZeUqCRmxsNzcVKpoM6zqChe3kmRxuhcleM4w5TUFIWcIcJCwSjkKWY3bDwlVZ6WZnaaR/SEkTIKhe7ghfFG8ZoFdHqcCkEMBZtzjRKZuhgivslREX6hcq5ROatLYvyBHPxDm+WPorJ1myOWBKgrJ4HlrC5G/ScwzPNHsTqGCCCWAkvnaBzmrC5BXm+KUMJrkBHToj0KKysi87uIWfpdFLZcFgzFkpxiZbn4XazwbvMqabFm6OKg12XBsFSOhl7O6lJSrOD8LvUIYPNrKLDpsmQotAzTwfgBYmhYlYmXV8tQkNBohSEGhs1Hf1f6c43CQvW4jfn5XTStfnwKsUyofIzVYFXjGojAUD/Za3a/imFUj8oSxELJ2d2gc9vGzNi1e2tQ42rkSxCK3zX718kjRvYnCA+0bd9o/YaVedqE5LU3OX0CB3OiTOlyPXsMIF9A+kPdCGJA2LxH5Nn0GQbMiNKly8Ef+QIoDBkiBofKX9uVR6ZOGy+RSLy8Cm3dtn76tHl16zSMivq4bPmie/dvp6SkVK1as1ePAUWK+ELO7Ts2bt6yduzoyYv++DUmJtrb2wdWNWnSkitn955tly6dffjwnpW1dYWvKvfv/31hb9W8BWAZQmnBx1Uvm2nTLgg2OXPu5J07N48duajvm6rNrj1WQVEslfcHY2RS2a1b12fPmQwnsHixwBEjxpdR33om/TwKPufM/oPLdvTogbnzph3894ydnR3YPH16D379+tWu3VtcXFxr1qgz/Puxv86dcv78f3BdenTr99lLMH3GRDjURkHNoczk5KQyZcoPGTTys7e8ly+f7/93542bVyMi3vr5BrRo0bbNt+mz2Lf6tl63rn0fP35w5uxJe3v78uUr/TRppqODYy6rXrx41n9gF/iBCxbNgl+xcoVqvl6w5Y4eO/DhwztPz4IVK3z946hJNE2D8WxrYzvvt6WaI4GTExsbs2zp2lwOyYDk6HdBFCuvlxyq+IuXz+Bv9sxFX5WvpFQqfxwz+Nbt6z+O+mn1ym2uLm7Dvu/95u1roppnR5qYmBB88simDfv27gkOatgUrlZYWCisunv31pKl88uWrTBjxoKJE6ZHR0eBj6FzXwcO7SlevOT8eX9KpZbdr8Cy+XlHYeS7CKgfUOHmzlmcJk+bv2DGZwuBk7Z127qiRf2OHr4woP/3h4/s/3H0oKCGzY4fvdSgfuP5C2fGJ6hewZzLJYBTff/BneMnDv21fMPhg+esrazn/DaVfI4/ly28evXiyB8mwKFCPf7f4t8uXT7PrYKasGPnplat2p88cXXe3KWvXoXArnNfxd1J129c+V3nnmNGqw5szdq/9u7bPnTwqJ07jvbvN+z0f8dhQ0hvUK/x9RtXNBNrwy3+2rVLjRo2y/2Q8kzOZz1HdTEMk9dLDmqEO8H0qfNq1aoLNxW4SHBG4PJXr1bLzc196JBRTs4uu3Zt5jIrFIr27brY2to6OTrBDdXezj745FFIh9vhmlXbu3frW6lilapVanTu1APuoLFxsZ/uy8nJecT3Y6t8XT0PdwEB9Sa/fx/5448/wVn6unI1OJMhIS/i4j7/MqESxUt927qDlZVV/XqNiWo65K9AV6CZBvWbwBV5FfqSfO4SJCcljRv7i3ehwrAVKBPuiZ+dMXvKlDnz5y+rXKkqFAhNRMnA0leuXtCshYYX9gIXEfYLa0+fPi6Xy3NZxV1uSO/UsXvpUmXhjrBl6zpwyGvXrg8tW/16jdq1/W7jplWQs169RlCNz547yZV27vxp+Fq/fuPPHlLeyLn6Gfiu71vU38bGhlu+e+8W3GbgB2QcAwVN9u07NzSZAwNLa1aBcfjqlerSgm359u1ruLU8fHRPc9eJiY5ydnLOtq+SgWVIXjHL3mRVD1zeLcNixQI5CwpwdnIh6nuzs/NntoKGi1sAWws+/fyKcV9tbe3gMz4+jnzuEhQp6gdGJpfooD4A2EqTohuW3b176+Ur5znzBChUKPN9hWCAaJYLexcBVcDefX39c1rFTWMeWCK98kCZkK5tnUK9SkhIePMmzM8vAKrc2XOnmjVtDennz5+GOxHc6D97SHmDZfMc1aDy9Yi8ldZUuAkJ8fCzGwRV0c4AbZpmWXveXGsbG7AVieoU/Df5lzFw4xw8aGSxYiWuXb88fsJw3fvK+3vjiVn2JlNsfobua9vD+l+sbDm1Z5bXkPsl0LlJLkBzMfGnkXJ52sABwytWrAJ3hGx9CdbWNpplG/U7BriakNMqJ7XINTUtKko1yZeNVk7uTgFuIXxCS7X0zwVw3wFNXrx09ocR4/U5pLyRj6jGl7+t3N3dAwy/2bOyzBsuoTPfnwD3Re4OCqSmpIBjBgvgTZUvXxG8Ai49Qe0JGIycB1yaEIpmKd6m+1AyeZ4Px7CX4MnTR48e3V8wfxm0G5oCC3h4ajJotERU05WrZpu0sbH97CoN9vYO8JmckjlNZVKSqr11c1O9XgfUtXjJvAsXz8C9WGUWqu3hzx5SnsjlyuUc1ZBIvnB4DpguycnJEMMB05b7g3Cidlt/89ZVbiE1NfVVWIi/v8pKAedB+3eePXuSGBCKMsNZa1iGYg332JmVzIqrXhway0d/DHsJIEYHn5oCwT+EP+0Mt29f1yw/ffYY2uTChYt8dpUGqGbQLt2/f1uTAl4iNEcFCqj2CNYsSOjKlQvBwUe+qVWPs2A/e0h5Iv2VB7rIUV2sUvmFw3PgV1WrVmvBgpmRkRHwe/bu2zFkaM8jR/an75imwfCFsAeEFlevWQ4CC1IHc8CRvXrt0s1b18DJ5iI/QERkODEIrDk+PZn+8gMDAR4I3JghbA3LYNSBK0/yiGEvAcS7QRXbtm+Ii4/j4n4QkNAu7f2Hd7AXqAaw9sDB3Q0aNNG4DLms0gBRscaNWmzctPrChTOwi2PHDu7Zu61jx+4aCxZiG3fu3Lh+/TIXz9DnkPIERfJuGRrkckOnxP5/d82YNenBg7vQo9KoUfP27bukF09REIwaPXbIx48fwICcOH4a1xXWr98wuPVOnjIa2j0IhUFEODz8zcRJP/z80ywiULh3FRAD0bZNZ6gxg4Z0h0rZsEET6MWC3o48tY2GvQReXgVhw3XrV7Rp2xBanp8nzfwY9WHKL2N79+24bs1OyNCqZbv79+8sW67yICAGNmJ45vt4c1mlzffDxoCWZs7+CW4HEB6DXrKuXXpr1oI1uOj3X0GW0HbpeUiGIkeb5NHVuBOb3/WeVpzwgHa/sDG5dizq0ZXoofOLEXPi3L6Pt89E9/qFl1Nt5rRpF9ShfddePQfkaZVZERel3L345YjfdVw+sc2roerFI2YGhTOuWTT5eAKF5l7MJDC4N/eZG5Z/mlt/Wz+nVRMmTKv9TX0iXHIZXZejujSvJ+SDDu27dMhwwIyKWc50rX53oGUrbMWKzTmt4jpacmLfnuB8rDIr2JydWgP3Jps75jnTNUOZ3fMIeaRQQW8iWnJuvHKZLRSf1TASqjfTot8lRHJ5vkuIUOY4gwVrnt4goh/5mnFNkJYha6YzWLAW7neJGTbn7uTce5PxkhsD1exbNDZeAiRXvwvnNzcKquYUz7QQyfUdKMK75BJCm+PMgZYekBc3+Xk7niBRqgZrEPMDrQQLJh9jNVT9XXhDRZAvINenJ/GGiiBfQI7qspZa0/rNYmZBSGiplbWEmBnW1jKpldkdFaIntIKWynSbeTk+PelfyRp87YQoQbVf794m2jqaXT0uV9uJUQjvHdVi4dm9GKk0j+oCXAtYn90TQQTEx/DUr4M8iJlh60BsnaT/bX1HEAvk2a34oiXtda7KTV1dxvskxacdWx9JBMHW30L8S9uVrmZHzI8+U3zfvky6fjiOIBbF7sWv7Z3opr29dK79/Hwpq34JYZSsk6s1bUUUqbonGKIkFKvUUQ5Nq7ftOmEAABAASURBVLvNPrF6uMF+mYOSMuZ3p2hdmSXqRE1edR6IaH564LSUYhTZU2U2dFK8MilWUaaaU90OZtdwabNycgj8LEd3a4pmFWm52oo0N1uKik9PGpx2Juettc8Spbr+Wawa3ZeAVo0g07kqp600Fyh9ldYBa2XK3lmUfnFz2FFO6arfq+mepbJXlVx2qp0h95OWDZmNJC2ZSYiSuxSUdR7lk1M2vWYjungoOuReUkqyXJGqOzMlZVkF9enxqwf4ULquVpb0TKnougZZzl3m1WIJk93YlUhZpSJ7orUt5ehiVbudVwEfC4gcnNn58fWLpNQkpSItt+uifXPRUbNzlgFRnSWiVGiy6q7f2XeXa6XPdjzZUmAruDsrFHKZzErPrfKhrsynEanMKSt13oJzOnU0TenfF2plS9nYycrXdClTyz6XbIac6wtBdPLy5cvx48fv2LGDiAyxzauBmAB7e/vmzZsT8YFtF4LwRd7mBEeQfBAVFXXq1CkiPlBdCO+EhoZu3ryZiA/0uxDecXNza9iwIREf6HchCF+gZYjwTkRExIUL+X2zoyWD6kJ45+HDh3v27CHiA/0uhHcKFixYu3ZtIj7Q70IQvkDLEOGdkJCQ69evE/GB6kJ458aNG8eOHSPiA/0uhHd8fX0dHByI+EC/C0H4Ai1DhHceP3587949Ij7QMkR45/z586mpqeXKlSMiA9WF8E5gYKA4HRD0uxCEL9DvQnjn7t27T548IeID1YXwztGjR6HLi4gP9LsQ3ilfvrynpycRH+h3IQhfoGWI8M7169dDQ0OJ+EB1Ibxz7NixBw8eEPGBfhfCOxUqVPD29ibiA/0uBOELtAwR3rl169bz58+J+EB1Ibxz6tSpy5cvE/GBfhfCO5UqVbKxsSHiA/0uBOELtAwR3nn06NH9+/eJ+EDLEOGdS5cuJSQklC1blogMVBfCO2XKlAF1EfGBfheC8AX6XQjvvHjx4ubNm0R8oLoQ3rlz587BgweJ+EC/C+GdgIAAmUxGxAf6XQjCF2gZIrzz5s0bcY6EQnUhvPP06dMdO3YQ8YF+F8I7Pj4+1atXJ+ID/S6ELwYMGHD9+nWaprXrmIeHh3jeh4KWIcIXgwYNKlCgAEVRdAaQWKVKFSIaUF0IX1SrVq18+fLaKV5eXl27diWiAdWF8Ei/fv0KFSqk+VqyZMlsehM2qC6ER8qWLVuhQgVuGazEHj16EDGB6kL4pXfv3kWKFIGF4sWLi8rpIhgzFAhKErzzffxHRVqKIjMR7pys+i8DSkpYrfWU6tbKsgyVmSIhrDJ9FcuoSqBYol1BKHWZWVIkkIdiGFY7hbAUq5Xy5m1YbGwcaMzRwSnr3rNkU31XlU1l+3GqH8JkX1YdYdZfx21PUVl+kSZdha6abmMv8SxiW6OFK+EBVJfF8+/fEa+fJVnZ0rSEkqdoqiHUM5UQoKJnpkhYVknlloETFbeKVX2q6ntmkVydzrIJrU5hsxZCsqao85BsFY2mVTrQzkZUqlTpOTuUDmHA5gwcGZtdSBStQ12UWu+fZgasbGh5Ggt3hxa9ChUpbeDJP7A32bK5cDD63ZvUHuMDiBVB8k3ovaSDa98271XIt6wtMRzYdlkwZ3d9fHg9vusEP4J8OUqycc6LofMDiOHAqIYF8/hmfPGKzgQxCBLi5Ga1839vieFAdVkwaalMhW94ccfFibu3TexHOTEc6HdZMEoFY+VAEENBUYw8VUkMB6rLgqEIYkggcsgoDRmGQHUhCF+guhAkHYpSd/EZDlQXgqTzaZf3F4LqQhC+QHVZMCyGNcwbVJcFQ+EwG4OCfheC8AX6XQhiMaC6ECQDiqYMahqiuiwYdLsMC6V6MBPHaiBqMGRoWAzud+EYecSyefHiWYOgKnfv3iLmB6oLMTHtOjR+G/6GCBG0DBFTEhERHhMTTcwDg/d3YdslLoJPHu3Rsy2YUsOG9wmPeAsLJ4KPQPrWbeubt6ytyRYZGQGrzp//j/t65Oi/kB8ywOfOXZs1s0VMnTZ+xsxJf69YDJnXrlsBn/fu3dYU8uzZE0i5dOlcTgdz89a1rt1bw0L3Hm0m/zKGS1y/YWX3nm2bNq/Vs3f7hYtmM0z6pDlJSUmzfp3csXMzWDV4SI+9+3S8VCU+IX7x0vlQWotWdX4cPfjgob0kL6DfheSfV69CZv86OSio2b69J/v1HfrrnCmQKJV+xn4B+f02b3pgiVKbN+4f0P97UNfSZQu5VTKZ7MXLZ/A3e+aitm06eXkVPBF8WLPhf2dOODu7VK1aM6eSK1WsMmf2H7CwaeO+WTNUZa5Z+9fefduHDh61c8fR/v2Gnf7v+I6dm7jME3/64e3b1zNnLNy+9VDdukH/W/zbw0f3sxU4b970B/fvjBo1ae3qnaVLl/v9jzn3798hpgPVJSKOHjvg4uLaq+dAJ0enKl9Xb92yvT5bHTq096uvKo0aOdHV1a1ypap9ew/Zu3d7dHQUUZlSVETE2+lT59WqVRdKbt2qw8mTR5XK9Md7T50+3rRJK4lEQvQDWp4tW9f17DGgdu36jg6O9es1atf2u42bVsnl8kuXz0PcYtyYKaVLlQXFdu/Wt3z5iuvWr8hWwu07N0B4VavU8PT0GjRwxJ9L17q7FyCmA9UlIp49e1yyZBlNdS9bTjUHde6TgoFhdu/+7apVMtufSpWqQuKduze5r75F/W1s0qcBbNmibUJiwuXL54k6lPfmTViL5m2I3oSFhYKQoM3RpAQGlk5ISIByXr58Bnvx9y+WuapE6cePH2QrASS3fcfG5X/9ceHCGSiqZGDpggULEdOBUQ0RAfGDwoWLaL7a2nx+7r60tDSopqtWL4M/7XSu7QKsrK01idB8fVOrXvDJI9CUgVkIxqSvrz/Rm6ioD/BpY505ZaetrR18Jicnffz4wSbr0drZ2UF6thImjJ+2f//Ok6eOgsYc7B3atfsOGurPmr4aaAmhpThWA1GTVw/c0dEpNS1V8zXpk9qpQcmkW3fQYkA9btK4JVhc2hm8C/no3BCar+kzJ8bFx507f7pF87YkL9jbq6bgSU5JzjzCpET4dHPzsLe3T9FKBxKTEj0+sfrA4u3RvR/YjRBcOXvu1IaNqxwcHDt30vfVEPCjGQWO1UDU5PU2W7Cg9+Ur58Gu415Ud/v2dc0qmcwqNTVVoVBwd/pXoS81q4oVCwSPCCIQ3FdoysLD34Bjo3MX1at/4+TkvG3b+tDQl42CmpG8ADsCq/X+/dvgXHEpDx/eAwesQAHPkoFlUlJSnj57XKJ4Sc0qPy1DEYiNiw0OPgK2KNwRwESEP7CEnzx9REwH+l0iol69Rh8+vF+2/HdQEQTKwXzSrCpTpjw4YBB5J+pw/OatazWrBvYffv786UOH94EsIbQAIfjRY4eAxahzFxDnaN7s2127t9SqWRfCD589pCJF/eDz9OnjDx7eg5ancaMWGzetBq8JWr9jxw7u2butY8fucC+oVq2Wt7fPokWzHz1+EBX1EcxUUNd3nXpqFyWVSCHOMW3GBGi4IA9s/vTZo/LlKhLTgeoSERBMGzzoh4sXzzRuWgNC8337DNGsguZi6JBRK9Q9VzNmTerfdxjJCHhAI7Dir0137txs16Hx2PHDEhMTZs1cZK3lbmWjVq160AyCMUn0oLC3T7OmrSEQ/88/S+Dr98PGgOc2c/ZPHTo22bRlTbeufbt17UPU3QYQsodWcdj3vbv1+Pb6jSszZyyAA9MuCqzHGdPmf/jwbsTI/h06Nd26ff2QwaNat9IrLsoTOI+8BbP0x2e9pxUn+QWCHCCYX6bMaVC/MTEc0DENoYWNG/Zy9qcFcW5P5Mt7CcMWFCMGAv0uC8bc7ou3bl1/G/5aZZ5NnWdx0uIDVJcFY25PoIyfOBzCEv37DaterZYmcdLPo+7lMIC9RYu2YI4S4YLqEi/QPXUq+BoxHMeOXPw0cezoyWly3SEQO3V3loBBdSH84u7uQSwFQ5vaqC4EycDQpjaqC0H4AtWFIOlQNM4WiiD8wDI4WyiCWAioLgsG39Jg5qC6LBh8S4OZg+pCEL5AdSEIX6C6LBgcKGtYZFZSK1tDnlO8PhaMREqH3EshiIGI/ZhqY6vvDFb6gOqyYNwKWd8584EgBuJDeErZmp9/nlp/UF0WTKdRhVNSFOf3fiTIF7NjUaizm6xSAydiOPDZZItn5eQQqRVdsKidvbtEKVdqraGyjvqm1P9/7npTEOdnqJy60iA9ox9AvZRTYepdc/tnM/ace+bMDDpzpid+sk53sRT1acXWnZMmkpjItMjXST4l7Jr30T0VT75BdQmBA6vfvXuVqEhh09Iyr2YO2sqo7DnoTD3QDnLpVle6DtTbqiswReWs1/Rs6YfBfjoEXXtbjVZ1FqjZr/oHUNnSPy0W/jLmn88tJ2BlQ4GvVbKqU/VmrsTQoLoQ3gkNDR0zZszOnTuJyMCIPMI7mmkSxQaqC+EduVyO6kIQXsC2C0H4AtWFIHyB6kIQvgC/SyaTEfGB6kJ4B9suBOELVBeC8AWqC0H4AtWFIHyBUQ0E4QtsuxCEL1BdCMIXqC4E4QtQF/pdCMIL2HYhCF+AuiQSQ861ZCngrDUI72DbhSB8gepCEL7A3mQE4QtsuxCEL1BdCMIXqC4E4QsnJydbW1siPlBdCO8kJCQkJSUR8YHqQngHzEIwDon4QHUhvIPqQhC+QHUhCF+guhCEL1BdCMIXEolEnOrCMfII72DbhSB8gepCEL5AdSEIX6C6EIQvUF0IwheoLgThC1QXgvAFqgtB+ALVhSB8IVp1USzLEgThgQ4dOrx48YKmaYZh4JNLhOWbN28ScYAjoRC+GDhwoKOjI0VREomEUgPSqlatGhENqC6EL5o1a1asWDHtFBBbz549iWhAdSE80q9fPycnJ83XgICA2rVrE9GA6kJ4pE6dOqVKleKW7ezsunbtSsQEqgvhF2i+3N3dYcHf379p06ZETGDMUOCEPkh+H5acpmDSv1MU4a64ZoGwFAU32YyKkJkOi5R6Mf0rTUNYQrOKZlmGUBkrMxbUm7DZ1p44cSIsLKzWN9+UDAzMyKDaidautLfNrJOwTDKPLHNHWfNkFkJD4CSH+iyzlpWq7OzoRowJqkuw3DkTd+lIFITpoELK03K8ylBR1XX2E9FxqRptZVuVLg+VHMgnmk3/SmltTNL3krWQ9M2zlqktOVhNsTqOWSuP1l4g7M8wRCcya0qpYO3spX2m+RJjgeoSJi/vJR1ZH/F1kGfpGg4EyeD87vchD+KHzA0gRnlZH6pLgDy5lnx6Z0TXSf4E+YS3j9JO734z+DdjnByMagiQcwcifQLtCaIL71JWNvb0/n8iCP+gugRIapKyYh13guSAh7dd1JtUwj84ileAMApi5y7Gt4DriUSmlKcxhH+w7RIgEJVWKgmSExA8lMuNEW7AtgtB+ALVhSB8gepCRAhFjAKqCxEhRurjRXWmVCt8AAAQAElEQVQJE4xWmQOoLgECd2ZjxJstFtXgRWIMUF0CxEhehcVCsUYyDVFdCMIXqC5EfNDcg2O8g+pCxAdLCItjNZD8gjHD3FA9dmWMxguvgiAxi4f2Xr9+1SCoytVrl4ghePHiGZR2544lzTSK6hIklAnV1a5D47fhb4ihcXFx7dVzgKdnQWI5oGWIGJKIiPCYmGjCA25u7n37DCEWBbZdiMoN2blr88BB3Zq1+GbwkB7/rFyqVCpv3LwKlti9e7c12Z49ewIply6d27N3e/uOTV69CunbvzOk9B/Y5cjRfyHDzVvXunZvDQvde7SZ/MsYzYYLF82GbB07N1u8ZJ4mMSrq46zZP3fp1qpt+0az50wJCwvVrLp0+fyPowc3b1m7e8+2c36b+vHjB5LVMoxPiF+8dD7spUWrOpDz4KG9JE8YK2aI6hImebquu3dv3bhpdccO3bZuPtC6dQeorFu3ra9cqaqXV8ETwYc12f47c8LZ2aVq1ZoymSwB6veSeePGTDl54mq9uo3mzZ8RGRlRqWKVObP/gJybNu6bNWMht9WatX999VXlRQv/6typB8jy5KljkAjq/XHM4Fu3r/846qfVK7e5urgN+773m7evYdWTp48m/TSyUqWqa1fv/GHE+OfPn/w2b1q2A543b/qD+3dGjZoEeUqXLvf7H3Pu379D9IcxkmOK6hImeRoJdfvOjZIlyzRt2gp8m1Yt2/25dG31at9AeutWHU6ePKrMeBLz1OnjTZu0kkhUTz3L5fLevQaVKVMeWgFIhNbv2bPHOgsHyTVu1Bw+QV0g17t3VY3P3bu3oOn7adLM6tVqgck3dMgoJ2eXXbs2w6p7d2/Z2Nj06N4PMsPahfOXd+3a59MDrls3qGqVGp6eXoMGjoADdncvQPKAkdxSVJcwyZPhU65chevXL0P7AwZebFxsYW+f4sUDIb1li7YJiQmXL58nasPszZuwFs3baLYqVaost+DoqJopHloznYWXL1dRs+zs5JKaqprQ4u69W9AAQvOYfrQUVbHC16AZ1cGUr5iSkjLp51E7dm56/SYMWktQZvYyy1fcvmPj8r/+uHDhDOi8ZGDpggULEfMDoxrCJE83Z7AJ7ezsz1/477d506VSaf36jQcP/MHDowA0Zd/Uqhd88kitWnXBLAwsUcrXN3OiMj19F4lURx0DKYIqwI/SToTdwSfsZe6cxWfOBK/4Z8my5b9/Xblan96DQf/aOSeMn7Z//86Tp46CxhzsHdq1+65Xz4FSqd6VGcdqIEaDpmkwCOEvJOTFjRtX1q5fkZiY8Ous34m6+Zo+c2JcfNy586dbNG9LDIS7u4etre1s9S40SOj0mXbAIIQ/iBBCi7pr95affh61e9dx7ZxOjk5gOnbv1heCLmfPndqwcZWDgyNYnkRPjNVfgeoSJnmy+I8ePRAYWNrfv5ifXwD8QUTu4KE93Krq1b9xcnLetm19aOjLRkHNiIEoViwwOTkZOq/ACuVSoIvMxVnVdt26dT01LRXUBY0nuIIFC3qPGj0oIjJcsy3YrsHBR8BGBfcMTET4A5cPYiEkTxglrIF+lzDJU1QDbL9fpo0DHwYqLgTcz547Wa5suiUGJlTzZt9CA1KrZl1wgT5bVJGifvB5+vTxBw/v5ZIN7L1q1WotWDATIo2xsTF79+0YMrTnkSP7YdW9+7enTR//74Hd0G8GhezesxVkVtAr062SSqTr1q+YNmMCNFwQ1j927ODTZ4+0vbvPY6yRUNh2CRCWsHmqO2NGT17654Kfp4wm6k5bMBE7dcy0smrVqrdu/T9NGrfUpyhoi5o1bQ1ReNDnmNE/55ITYvf7/901Y9akBw/uFini26hR8/btu0A6GHigKzieRb//amVl1bBB098XrdD2qezt7WdMm7/kz/kjRvYnqhcXFRsyeBTcAoj5gfPIC5AlPz7r9lNxKytiEKDvC0IIGzfs1bxZ3NI5szM89FHysPkBhGew7RImBtEBuEBvw1+rzLCp8wQjLRUUxgyRL8Ag82qMnzgc+o779xsGMQYiIKhsb9zjDVSXEGFZg9yajx25SIQIm/7qPt5BdQkRikJn2hxAdSEIX6C6hAn2Y+YGRRlnvAaqS4iwBC3DXKD0HiT5haC6hAiF6soNljVSLy+qC0H4AtUlRCiC73XNBdZYfhd6v0KEJfhi11ygsL8LQSwdVBeC8AWqS4DQNDHQ+HhhIpVJZTY40zWSLyQS+nVIKkFyIClBaW1tjLgPqkuAOLrL7l+IIkgOfAxP8S1pT/gH1SVAuk8o8v5NcgIvE05bPEdWh0skVL1O7oR/8NlkwbJ83PMChe1KV3cu6GenZHSH6GmKZlgdz4JRFK1+ToPNlqp+J6oqkdK8HpUbUpS1FlHcIH1Noip3ltepqhNI5pCtrIVwrzVWraMyEjJW0YRmMh5e015W7ZHLo7Uv+BVsxq+TEMmzu7GPrsZKrUn38UWJUUB1CZktc1/HxqQxChb+dGZgqRxel6IeS5XLcyw5bqh3BnUelsr1STQdhWj3A+e0rCszLaVkVrRnEZs2Q403ryiqC+Gd0NDQ0aNH79q1i4gMjMgjvKNQKPIwUa6AQHUhvAPqkslkRHyguhDewbYLQfgC1YUgfAHq4t76JTZQXQjvYNuFIHwhl8sxqoEgvIBtF4LwBaoLQfgC1YUgfIHqQhC+wKgGgvAFtl0IwheoLgThC1QXgvAFqgtB+EK0UQ2ctQbhHaVSKc62C9WF8A60XWgZIggvoN+FIHyB6kIQvkB1IQhfoLoQhC9cXV0dHByI+EB1IbwTHR2dkJBAxAeqC+EdMAvBOCTiA9WF8A6qC0H4AtWFIHyB6kIQvkB1IQhfiFZdOIoX4R1Ql1KpJOID1YXwDlqGCMIXqC4E4QtUF4LwBaoLQfgC1YUgfIHqQhC+QHUhCF+guhCEL0SrLoplWYIgPNCiRYvIyEhY0K5jsHzz5k0iDnCsBsIXvXr1sra2piiKzgASK1SoQEQDqgvhiy5duhQtWlQ7xcHBoVOnTkQ0oLoQHunataudnZ3mq4+PT8uWLYloQHUhPNKmTRs/Pz9u2crKqm3btkRMoLoQfunWrZutrS0sFC5cWGzqwog8ogMmjaQqlUQJQWUKwnwUUf3HqhdYwkKi+h/NV6LKp/5OuPCgOgNHvdqNd5X49+HDh80bt1GmSVLSGEhUbUUyMrLqEiCB+0xPp9WhRq60zHQVEomNlFCW8MYijMgjKl7eS75xMjr6XZo8RalQMhRNsQyhtKoGp6ScvjIUobPWo2wZdKaQDE19Sk7pKuh0vdE0ZWUr8Q6wadazIG2WzQSqS+yc3v7+yc14eRors5HaOFo5eTjYuVlDrSXmTWqCIu5dYvzHpLREuTxNYecoq/NtgcAq9sScQHWJlxf3ko5vjGBY4uzl6F3ajVgyL65FJEUn2zlK+033I2YDqkuk7Fn65m1Iqoevq1dxJyIUXlwNT4pJqdvW86u6ZvGjUF1iZNOvr+LjmVJ1ixDBkZIgf3H57Tffuleo60xMDapLdGxb9Do6Ul6qflEiXO6fCKncyK1mc1diUlBd4mLj7FfJqaREzcJE6Dw4GVI1qEDVZqY0EbE3WUSc3vkhIV4pBmkBZRr6XT7+jpgUVJeIeHAptmR1IRuE2XAp6Ljip5fEdKC6xMLGOaE2jtaUDREPPuU8lAr23J6PxESgukRBaiKJ/SAPqFaIiAw3H+f7l2OJiUB1iYIDq99Y2VoRc+XW3RNjp1RPSIwmhsarhItSQW6fjSGmANUlCt6/TnEp7EhEicxOdu98PDEFqC7hExWhVCjYAn7CGZORJ5w87OKi5MQU4BMowuf22WiapghvhLy6c+zUyrDXDxzsXUuXrN2kwQAbG9Vo2vOXdhz/b/XQfsvXb50U+e5FIa/idWt1rVq5FbfVgSNLrt0+ZG1lV+mrpp4ePEYywTh8H2J4m1MfsO0SPlHhqRIZX2PeP3wM+3vtCLk8dfiglb27/RYe+XT56qFKpWp+NYlUlpwcv/fggs5tf5o/49JX5Rpu3zsrOiYCVl24suvClZ3tW44bOXiNu6v38VOrCM88uJxAjA6qS/gkJygpCV8X+sbtI1KJrE/X37wK+BX0DOjU5uc34Y/vPfyPW6tUyhs3GOBbpDxFUVUqtmRZ9k34E0g/d3H7V2WDQG92dk7QmhUPqEL4BJrumMg0YnRQXcJHLmdZwtd4NzALi/iUsbd34b66uRZyd/N5GXpLk6Fo4bLcgp2tyvFLTokHjX2ICvPy9Nfk8fEuRfgEfn9ysglcL/S7hI9UyqbJ+bqNJqckhL15APF07cS4+MwOXGi1sm2SkprIMEpr68y5oqysbAmvUKyVtQmqOqpL+FjbSZOSGMIPjo7u/r4VmzYcpJ1ob5/b0x821vY0LZHLUzQpqWlJhE+g7XL1NMFEHKgu4ePmZf0xgi+f3turxPXbhwL8KnFT7QIR714UcM8tBgitmatLoZBXd+t9k57y8PF5wissCaxkgg4J9LuET9kaToyCr7YLguwMw+w//HtaWsq796EHji5duLRbeOSz3LeqUK7R3Qenbt09Acsnz64PfX2P8MaHVzESCcW37akTVJfwKRRgTdEk+nUi4QEI+o0dvtlKZvvHX73nLe78IuRGp7Y/fzZK0ahe3+pft9l7aCE4bNBwfdt8FMn6MgcDEv02yc7ZNJPw4NOTomDrwtcJMUzxWqJ4sisbD0+FVmroUqOZCablwbZLFDT6zjM12QQdPibnQ0gcxCxNIi2CUQ2R4OFjZecgC73+zvdrT50ZPnx8DaZdDltnmws3E7DuWjf7gRiOybODdKZDBB+MLIlER3UtEVC1d9e5JAc+hMb4lTPZJIdoGYqFlASycurzco38dK5VKhWxcbqfk09MirO30x1wswLNZvQjG4So6Lc5rUqTp1rJrD9Nl0qtnRzddW4S+TQmJjx28JwAYiJQXSLiwMrIN8+TStYVy8P/94NDOv/gW6CoyQw09LtERKsBXlIr+uXVCCICHpwKLVHB0YTSIqgusdF/ui/FKJ+df0MEzYOToUUD7Zr09CQmBS1DMbJ6agjD0sUFOvXao9OvytZyqtPGnZgaVJdI2fBraHy0skg5T0dPU4xi4IfXdz9Eh8eVreHS8LsCxAxAdYmXiwejbp6OlsgkXsXdXQrZEUsm4lF01NtYmqZ6/+Rr62wur0dCdYmd/X+Hv36WRNG0lY3MwcPOvYiD1NrcX97FkRSTFvU6LiEqWZGqkFlLylZzqt3O9NagNqguRMW1I9GPb8bHRcuVCpZST8LBMixhM1+0SrLWE5bNeHlrxqrMFE0e9WtbM77l2CWts/xc0imJBBIZODzCSmW0s4esenOPYuXNse1FdSHZiXojj/4gT01RMPL0kfXpbzfWQqMcTf3PqiUuRetVrhni+rQoklGKDinpkiQroRwcZW6FrJ3dzb2NRXUhCF/gOEME4QtUF4LwJQrg2QAAABpJREFUBaoLQfgC1YUgfIHqQhC+QHUhCF/8HwAA//+rUkq7AAAABklEQVQDAAF09k/5o9a9AAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 90,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "from langgraph.graph import StateGraph\n",
+ "\n",
+ "graph = StateGraph(AgentState)\n",
+ "\n",
+ "graph.add_node(\"preparation\", preparation_node)\n",
+ "graph.add_node(\"preparation_tools\", tool_execution_node)\n",
+ "graph.add_node(\"query\", query_node)\n",
+ "graph.add_node(\"validate\", validation_node)\n",
+ "graph.add_node(\"repair\", repair_node)\n",
+ "\n",
+ "graph.add_node(\"human_approval\", human_approval_node)\n",
+ "\n",
+ "graph.add_node(\"query_tools\", query_execution_node)\n",
+ "graph.add_node(\"synthesis\", synthesis_node)\n",
+ "\n",
+ "graph.set_entry_point(\"preparation\")\n",
+ "graph.add_edge(\"preparation\", \"preparation_tools\")\n",
+ "graph.add_edge(\"preparation_tools\", \"query\")\n",
+ "graph.add_edge(\"query\", \"validate\")\n",
+ "\n",
+ "\n",
+ "def validation_router(state: AgentState):\n",
+ " return \"repair\" if state.get(\"validation_errors\") else \"human_approval\"\n",
+ "\n",
+ "\n",
+ "graph.add_conditional_edges(\n",
+ " \"validate\",\n",
+ " validation_router,\n",
+ " {\n",
+ " \"repair\": \"repair\",\n",
+ " \"human_approval\": \"human_approval\",\n",
+ " },\n",
+ ")\n",
+ "\n",
+ "graph.add_edge(\"repair\", \"validate\")\n",
+ "\n",
+ "\n",
+ "def approval_router(state: AgentState):\n",
+ " fb = state[\"human_feedback\"]\n",
+ "\n",
+ " if fb.get(\"approved\"):\n",
+ " return \"query_tools\"\n",
+ " if \"edited_plan\" in fb:\n",
+ " return \"validate\"\n",
+ " if \"new_question\" in fb:\n",
+ " return \"preparation\"\n",
+ " return \"preparation\"\n",
+ "\n",
+ "\n",
+ "graph.add_conditional_edges(\n",
+ " \"human_approval\",\n",
+ " approval_router,\n",
+ " {\n",
+ " \"query_tools\": \"query_tools\",\n",
+ " \"validate\": \"validate\",\n",
+ " \"preparation\": \"preparation\",\n",
+ " },\n",
+ ")\n",
+ "\n",
+ "\n",
+ "graph.add_edge(\"query_tools\", \"synthesis\")\n",
+ "\n",
+ "agent = graph.compile()\n",
+ "agent"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "bfb38954",
+ "metadata": {},
+ "source": [
+ "Testons-le !"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 91,
+ "id": "22e64782",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Batches: 100%|██████████| 409/409 [00:47<00:00, 8.52it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Proposed query plan:\n",
+ "Indicator: FP.CPI.TOTL.ZG\n",
+ "Countries: FRA, DEU\n",
+ "Years: 2015–2025\n"
+ ]
+ }
+ ],
+ "source": [
+ "question = \"What the evolution of France's inflation between 2015 and 2025 ? Comment on this value using the inflation in Europe, or in Germany for example.\"\n",
+ "\n",
+ "initial_state = {\n",
+ " \"question\": question,\n",
+ " \"tool_thoughts\": \"\",\n",
+ " \"tool_calls\": [],\n",
+ " \"tool_results\": [],\n",
+ " \"query_thoughts\": \"\",\n",
+ " \"query_plan\": {},\n",
+ " \"validation_errors\": [],\n",
+ " \"human_feedback\": {},\n",
+ " \"query_results\": [],\n",
+ " \"answer\": \"\",\n",
+ "}\n",
+ "\n",
+ "result = agent.invoke(initial_state)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9f3b8cf9",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "```tool_code\n",
+ "from wbdata import wbdata\n",
+ "import pandas as pd\n",
+ "\n",
+ "# Define the indicator for inflation (CPI, % change)\n",
+ "indicator = 'CPI-ACP-RD'\n",
+ "\n",
+ "# Define the country for France\n",
+ "country = 'FRA'\n",
+ "\n",
+ "# Define the year range\n",
+ "start_year = 2015\n",
+ "end_year = 2025\n",
+ "\n",
+ "# Fetch the data for France\n",
+ "france_inflation = wbdata.get_series(indicator, country, start_year=start_year, end_year=end_year)\n",
+ "\n",
+ "# Fetch the data for Europe (aggregate region)\n",
+ "europe_inflation = wbdata.get_series(indicator, 'EUU', start_year=start_year, end_year=end_year)\n",
+ "\n",
+ "# Fetch the data for Germany\n",
+ "germany_inflation = wbdata.get_series(indicator, 'DEU', start_year=start_year, end_year=end_year)\n",
+ "\n",
+ "\n",
+ "# Convert to pandas DataFrames for easier handling\n",
+ "france_inflation_df = france_inflation.to_frame(name='France')\n",
+ "europe_inflation_df = europe_inflation.to_frame(name='Europe')\n",
+ "germany_inflation_df = germany_inflation.to_frame(name='Germany')\n",
+ "\n",
+ "# Combine the dataframes\n",
+ "combined_df = pd.concat([france_inflation_df, europe_inflation_df, germany_inflation_df], axis=1)\n",
+ "\n",
+ "# Print the combined data\n",
+ "print(combined_df)\n",
+ "```\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(result[\"answer\"])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 93,
+ "id": "2a5677ed",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "{'question': \"What the evolution of France's inflation between 2015 and 2025 ? Comment on this value using the inflation in Europe, or in Germany for example.\", 'tool_thoughts': \"First, I need to determine which indicator represents inflation. I will use the 'retrieve_indicators' tool to find appropriate indicators.\", 'tool_calls': [{'name': 'retrieve_indicators', 'args': {'query': 'inflation'}}], 'tool_results': [{'tool': 'retrieve_indicators', 'args': {'query': 'inflation'}, 'result': indicator \\\n",
+ "6299 FP.CPI.TOTL.ZG \n",
+ "9781 NY.GDP.DEFL.KD.ZG \n",
+ "6303 FP.WPI.TOTL.ZG \n",
+ "9782 NY.GDP.DEFL.KD.ZG.AD \n",
+ "6301 FP.FPI.TOTL.ZG \n",
+ "9780 NY.GDP.DEFL.87.ZG \n",
+ "6298 FP.CPI.TOTL \n",
+ "6275 FM.LBL.MQMY.ZG \n",
+ "6313 FR.INR.MMKT \n",
+ "10930 PI-16 \n",
+ "\n",
+ " description score \n",
+ "6299 Inflation, consumer prices (annual %) 0.518722 \n",
+ "9781 Inflation, GDP deflator (annual %) 0.460076 \n",
+ "6303 Inflation, wholesale prices (annual %) 0.456499 \n",
+ "9782 Inflation, GDP deflator: linked series (annual %) 0.409883 \n",
+ "6301 Inflation, food prices (annual %) 0.402444 \n",
+ "9780 Inflation, GDP deflator (annual %) 0.401507 \n",
+ "6298 Consumer price index (2010 = 100) 0.358742 \n",
+ "6275 Money and quasi money growth (annual %) 0.320473 \n",
+ "6313 Money market rate (%) 0.313243 \n",
+ "10930 Medium term perspective in expenditure budgeting 0.311095 }], 'query_thoughts': 'Structured query plan generated', 'query_results': [], 'query_plan': {'indicator_code': 'FP.CPI.TOTL.ZG', 'countries': ['FRA', 'DEU'], 'start_year': 2015, 'end_year': 2025}, 'answer': \"```tool_code\\nfrom wbdata import wbdata\\nimport pandas as pd\\n\\n# Define the indicator for inflation (CPI, % change)\\nindicator = 'CPI-ACP-RD'\\n\\n# Define the country for France\\ncountry = 'FRA'\\n\\n# Define the year range\\nstart_year = 2015\\nend_year = 2025\\n\\n# Fetch the data for France\\nfrance_inflation = wbdata.get_series(indicator, country, start_year=start_year, end_year=end_year)\\n\\n# Fetch the data for Europe (aggregate region)\\neurope_inflation = wbdata.get_series(indicator, 'EUU', start_year=start_year, end_year=end_year)\\n\\n# Fetch the data for Germany\\ngermany_inflation = wbdata.get_series(indicator, 'DEU', start_year=start_year, end_year=end_year)\\n\\n\\n# Convert to pandas DataFrames for easier handling\\nfrance_inflation_df = france_inflation.to_frame(name='France')\\neurope_inflation_df = europe_inflation.to_frame(name='Europe')\\ngermany_inflation_df = germany_inflation.to_frame(name='Germany')\\n\\n# Combine the dataframes\\ncombined_df = pd.concat([france_inflation_df, europe_inflation_df, germany_inflation_df], axis=1)\\n\\n# Print the combined data\\nprint(combined_df)\\n```\\n\", 'human_feedback': {'approved': True}}\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(result)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "df94fd32",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "studies",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.13.9"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/M2/Generative AI/TP3/__pycache__/rag_utils.cpython-313.pyc b/M2/Generative AI/TP3/__pycache__/rag_utils.cpython-313.pyc
new file mode 100644
index 0000000..5b7129e
Binary files /dev/null and b/M2/Generative AI/TP3/__pycache__/rag_utils.cpython-313.pyc differ
diff --git a/M2/Generative AI/TP3/data/WBData_countries.csv b/M2/Generative AI/TP3/data/WBData_countries.csv
new file mode 100644
index 0000000..9bd22c2
--- /dev/null
+++ b/M2/Generative AI/TP3/data/WBData_countries.csv
@@ -0,0 +1,297 @@
+Code,Description
+ABW,Aruba
+AFE,Africa Eastern and Southern
+AFG,Afghanistan
+AFR,Africa
+AFW,Africa Western and Central
+AGO,Angola
+ALB,Albania
+AND,Andorra
+ARB,Arab World
+ARE,United Arab Emirates
+ARG,Argentina
+ARM,Armenia
+ASM,American Samoa
+ATG,Antigua and Barbuda
+AUS,Australia
+AUT,Austria
+AZE,Azerbaijan
+BDI,Burundi
+BEA,East Asia & Pacific (IBRD-only countries)
+BEC,Europe & Central Asia (IBRD-only countries)
+BEL,Belgium
+BEN,Benin
+BFA,Burkina Faso
+BGD,Bangladesh
+BGR,Bulgaria
+BHI,IBRD countries classified as high income
+BHR,Bahrain
+BHS,"Bahamas, The"
+BIH,Bosnia and Herzegovina
+BLA,Latin America & the Caribbean (IBRD-only countries)
+BLR,Belarus
+BLZ,Belize
+BMN,"Middle East, North Africa, Afghanistan & Pakistan (IBRD only)"
+BMU,Bermuda
+BOL,Bolivia
+BRA,Brazil
+BRB,Barbados
+BRN,Brunei Darussalam
+BSS,Sub-Saharan Africa (IBRD-only countries)
+BTN,Bhutan
+BWA,Botswana
+CAA,Sub-Saharan Africa (IFC classification)
+CAF,Central African Republic
+CAN,Canada
+CEA,East Asia and the Pacific (IFC classification)
+CEB,Central Europe and the Baltics
+CEU,Europe and Central Asia (IFC classification)
+CHE,Switzerland
+CHI,Channel Islands
+CHL,Chile
+CHN,China
+CIV,Cote d'Ivoire
+CLA,Latin America and the Caribbean (IFC classification)
+CME,Middle East and North Africa (IFC classification)
+CMR,Cameroon
+COD,"Congo, Dem. Rep."
+COG,"Congo, Rep."
+COL,Colombia
+COM,Comoros
+CPV,Cabo Verde
+CRI,Costa Rica
+CSA,South Asia (IFC classification)
+CSS,Caribbean small states
+CUB,Cuba
+CUW,Curacao
+CYM,Cayman Islands
+CYP,Cyprus
+CZE,Czechia
+DEA,East Asia & Pacific (IDA-eligible countries)
+DEC,Europe & Central Asia (IDA-eligible countries)
+DEU,Germany
+DJI,Djibouti
+DLA,Latin America & the Caribbean (IDA-eligible countries)
+DMA,Dominica
+DMN,"Middle East, North Africa, Afghanistan & Pakistan (IDA total)"
+DNK,Denmark
+DNS,IDA countries in Sub-Saharan Africa not classified as fragile situations
+DOM,Dominican Republic
+DSA,South Asia (IDA-eligible countries)
+DSF,IDA countries in Sub-Saharan Africa classified as fragile situations
+DSS,Sub-Saharan Africa (IDA-eligible countries)
+DZA,Algeria
+EAP,East Asia & Pacific (excluding high income)
+EAR,Early-demographic dividend
+EAS,East Asia & Pacific
+ECA,Europe & Central Asia (excluding high income)
+ECS,Europe & Central Asia
+ECU,Ecuador
+EGY,"Egypt, Arab Rep."
+EMU,Euro area
+ERI,Eritrea
+ESP,Spain
+EST,Estonia
+ETH,Ethiopia
+EUU,European Union
+FCS,Fragile and conflict affected situations
+FIN,Finland
+FJI,Fiji
+FRA,France
+FRO,Faroe Islands
+FSM,"Micronesia, Fed. Sts."
+FXS,"IDA countries classified as fragile situations, excluding Sub-Saharan Africa"
+GAB,Gabon
+GBR,United Kingdom
+GEO,Georgia
+GHA,Ghana
+GIB,Gibraltar
+GIN,Guinea
+GMB,"Gambia, The"
+GNB,Guinea-Bissau
+GNQ,Equatorial Guinea
+GRC,Greece
+GRD,Grenada
+GRL,Greenland
+GTM,Guatemala
+GUM,Guam
+GUY,Guyana
+HIC,High income
+HKG,"Hong Kong SAR, China"
+HND,Honduras
+HPC,Heavily indebted poor countries (HIPC)
+HRV,Croatia
+HTI,Haiti
+HUN,Hungary
+IBB,"IBRD, including blend"
+IBD,IBRD only
+IBT,IDA & IBRD total
+IDA,IDA total
+IDB,IDA blend
+IDN,Indonesia
+IDX,IDA only
+IMN,Isle of Man
+IND,India
+INX,Not classified
+IRL,Ireland
+IRN,"Iran, Islamic Rep."
+IRQ,Iraq
+ISL,Iceland
+ISR,Israel
+ITA,Italy
+JAM,Jamaica
+JOR,Jordan
+JPN,Japan
+KAZ,Kazakhstan
+KEN,Kenya
+KGZ,Kyrgyz Republic
+KHM,Cambodia
+KIR,Kiribati
+KNA,St. Kitts and Nevis
+KOR,"Korea, Rep."
+KWT,Kuwait
+LAC,Latin America & Caribbean (excluding high income)
+LAO,Lao PDR
+LBN,Lebanon
+LBR,Liberia
+LBY,Libya
+LCA,St. Lucia
+LCN,Latin America & Caribbean
+LDC,Least developed countries: UN classification
+LIC,Low income
+LIE,Liechtenstein
+LKA,Sri Lanka
+LMC,Lower middle income
+LMY,Low & middle income
+LSO,Lesotho
+LTE,Late-demographic dividend
+LTU,Lithuania
+LUX,Luxembourg
+LVA,Latvia
+MAC,"Macao SAR, China"
+MAF,St. Martin (French part)
+MAR,Morocco
+MCO,Monaco
+MDA,Moldova
+MDE,Middle East (developing only)
+MDG,Madagascar
+MDV,Maldives
+MEA,"Middle East, North Africa, Afghanistan & Pakistan"
+MEX,Mexico
+MHL,Marshall Islands
+MIC,Middle income
+MKD,North Macedonia
+MLI,Mali
+MLT,Malta
+MMR,Myanmar
+MNA,"Middle East, North Africa, Afghanistan & Pakistan (excluding high income)"
+MNE,Montenegro
+MNG,Mongolia
+MNP,Northern Mariana Islands
+MOZ,Mozambique
+MRT,Mauritania
+MUS,Mauritius
+MWI,Malawi
+MYS,Malaysia
+NAC,North America
+NAF,North Africa
+NAM,Namibia
+NCL,New Caledonia
+NER,Niger
+NGA,Nigeria
+NIC,Nicaragua
+NLD,Netherlands
+NOR,Norway
+NPL,Nepal
+NRS,Non-resource rich Sub-Saharan Africa countries
+NRU,Nauru
+NXS,"IDA countries not classified as fragile situations, excluding Sub-Saharan Africa"
+NZL,New Zealand
+OED,OECD members
+OMN,Oman
+OSS,Other small states
+PAK,Pakistan
+PAN,Panama
+PER,Peru
+PHL,Philippines
+PLW,Palau
+PNG,Papua New Guinea
+POL,Poland
+PRE,Pre-demographic dividend
+PRI,Puerto Rico (US)
+PRK,"Korea, Dem. People's Rep."
+PRT,Portugal
+PRY,Paraguay
+PSE,West Bank and Gaza
+PSS,Pacific island small states
+PST,Post-demographic dividend
+PYF,French Polynesia
+QAT,Qatar
+ROU,Romania
+RRS,Resource rich Sub-Saharan Africa countries
+RUS,Russian Federation
+RWA,Rwanda
+SAS,South Asia
+SAU,Saudi Arabia
+SDN,Sudan
+SEN,Senegal
+SGP,Singapore
+SLB,Solomon Islands
+SLE,Sierra Leone
+SLV,El Salvador
+SMR,San Marino
+SOM,"Somalia, Fed. Rep."
+SRB,Serbia
+SSA,Sub-Saharan Africa (excluding high income)
+SSD,South Sudan
+SSF,Sub-Saharan Africa
+SST,Small states
+STP,Sao Tome and Principe
+SUR,Suriname
+SVK,Slovak Republic
+SVN,Slovenia
+SWE,Sweden
+SWZ,Eswatini
+SXM,Sint Maarten (Dutch part)
+SXZ,Sub-Saharan Africa excluding South Africa
+SYC,Seychelles
+SYR,Syrian Arab Republic
+TCA,Turks and Caicos Islands
+TCD,Chad
+TEA,East Asia & Pacific (IDA & IBRD countries)
+TEC,Europe & Central Asia (IDA & IBRD countries)
+TGO,Togo
+THA,Thailand
+TJK,Tajikistan
+TKM,Turkmenistan
+TLA,Latin America & the Caribbean (IDA & IBRD countries)
+TLS,Timor-Leste
+TMN,"Middle East, North Africa, Afghanistan & Pakistan (IDA & IBRD)"
+TON,Tonga
+TSA,South Asia (IDA & IBRD)
+TSS,Sub-Saharan Africa (IDA & IBRD countries)
+TTO,Trinidad and Tobago
+TUN,Tunisia
+TUR,Turkiye
+TUV,Tuvalu
+TZA,Tanzania
+UGA,Uganda
+UKR,Ukraine
+UMC,Upper middle income
+URY,Uruguay
+USA,United States
+UZB,Uzbekistan
+VCT,St. Vincent and the Grenadines
+VEN,"Venezuela, RB"
+VGB,British Virgin Islands
+VIR,Virgin Islands (U.S.)
+VNM,Viet Nam
+VUT,Vanuatu
+WLD,World
+WSM,Samoa
+XKX,Kosovo
+XZN,Sub-Saharan Africa excluding South Africa and Nigeria
+YEM,"Yemen, Rep."
+ZAF,South Africa
+ZMB,Zambia
+ZWE,Zimbabwe
diff --git a/M2/Generative AI/TP3/data/WBData_indicators.csv b/M2/Generative AI/TP3/data/WBData_indicators.csv
new file mode 100644
index 0000000..8678cf7
--- /dev/null
+++ b/M2/Generative AI/TP3/data/WBData_indicators.csv
@@ -0,0 +1,26143 @@
+indicator,description,source,source_name,index
+1.0.HCount.1.90usd,Poverty Headcount ($1.90 a day),topics,Poverty,11
+1.0.HCount.2.5usd,Poverty Headcount ($2.50 a day),topics,Poverty,11
+1.0.HCount.Mid10to50,Middle Class ($10-50 a day) Headcount,topics,Poverty,11
+1.0.HCount.Ofcl,Official Moderate Poverty Rate-National,topics,Poverty,11
+1.0.HCount.Poor4uds,Poverty Headcount ($4 a day),topics,Poverty,11
+1.0.HCount.Vul4to10,Vulnerable ($4-10 a day) Headcount,topics,Poverty,11
+1.0.PGap.1.90usd,Poverty Gap ($1.90 a day),topics,Poverty,11
+1.0.PGap.2.5usd,Poverty Gap ($2.50 a day),topics,Poverty,11
+1.0.PGap.Poor4uds,Poverty Gap ($4 a day),topics,Poverty,11
+1.0.PSev.1.90usd,Poverty Severity ($1.90 a day),topics,Poverty,11
+1.0.PSev.2.5usd,Poverty Severity ($2.50 a day),topics,Poverty,11
+1.0.PSev.Poor4uds,Poverty Severity ($4 a day),topics,Poverty,11
+1.1.HCount.1.90usd,Poverty Headcount ($1.90 a day)-Rural,topics,Poverty,11
+1.1.HCount.2.5usd,Poverty Headcount ($2.50 a day)-Rural,topics,Poverty,11
+1.1.HCount.Mid10to50,Middle Class ($10-50 a day) Headcount-Rural,topics,Poverty,11
+1.1.HCount.Ofcl,Official Moderate Poverty Rate- Rural,topics,Poverty,11
+1.1.HCount.Poor4uds,Poverty Headcount ($4 a day)-Rural,topics,Poverty,11
+1.1.HCount.Vul4to10,Vulnerable ($4-10 a day) Headcount-Rural,topics,Poverty,11
+1.1.PGap.1.90usd,Poverty Gap ($1.90 a day)-Rural,topics,Poverty,11
+1.1.PGap.2.5usd,Poverty Gap ($2.50 a day)-Rural,topics,Poverty,11
+1.1.PGap.Poor4uds,Poverty Gap ($4 a day)-Rural,topics,Poverty,11
+1.1.PSev.1.90usd,Poverty Severity ($1.90 a day)-Rural,topics,Poverty,11
+1.1.PSev.2.5usd,Poverty Severity ($2.50 a day)-Rural,topics,Poverty,11
+1.1.PSev.Poor4uds,Poverty Severity ($4 a day)-Rural,topics,Poverty,11
+1.1_ACCESS.ELECTRICITY.TOT,Access to electricity (% of total population),sources,Sustainable Energy for All,35
+1.1_TOTAL.FINAL.ENERGY.CONSUM,Total final energy consumption (TFEC),sources,Sustainable Energy for All,35
+1.1_YOUTH.LITERACY.RATE,"Literacy rate, youth total (% of people ages 15-24)",sources,Global Partnership for Education,34
+1.2.HCount.1.90usd,Poverty Headcount ($1.90 a day)-Urban,topics,Poverty,11
+1.2.HCount.2.5usd,Poverty Headcount ($2.50 a day)-Urban,topics,Poverty,11
+1.2.HCount.Mid10to50,Middle Class ($10-50 a day) Headcount-Urban,topics,Poverty,11
+1.2.HCount.Ofcl,Official Moderate Poverty Rate-Urban,topics,Poverty,11
+1.2.HCount.Poor4uds,Poverty Headcount ($4 a day)-Urban,topics,Poverty,11
+1.2.HCount.Vul4to10,Vulnerable ($4-10 a day) Headcount-Urban,topics,Poverty,11
+1.2.PGap.1.90usd,Poverty Gap ($1.90 a day)-Urban,topics,Poverty,11
+1.2.PGap.2.5usd,Poverty Gap ($2.50 a day)-Urban,topics,Poverty,11
+1.2.PGap.Poor4uds,Poverty Gap ($4 a day)-Urban,topics,Poverty,11
+1.2.PSev.1.90usd,Poverty Severity ($1.90 a day)-Urban,topics,Poverty,11
+1.2.PSev.2.5usd,Poverty Severity ($2.50 a day)-Urban,topics,Poverty,11
+1.2.PSev.Poor4uds,Poverty Severity ($4 a day)-Urban,topics,Poverty,11
+1.2_ACCESS.ELECTRICITY.RURAL,Access to electricity (% of rural population),sources,Sustainable Energy for All,35
+1.3_ACCESS.ELECTRICITY.URBAN,Access to electricity (% of urban population),sources,Sustainable Energy for All,35
+100000,100000:GROSS DOMESTIC PRODUCT,sources,International Comparison Program (ICP) 2011,62
+110000,110000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS,sources,International Comparison Program (ICP) 2011,62
+110100,110100:FOOD AND NON-ALCOHOLIC BEVERAGES,sources,International Comparison Program (ICP) 2011,62
+110110,110110:FOOD,sources,International Comparison Program (ICP) 2011,62
+110111,110111:Bread and cereals (Class),sources,International Comparison Program (ICP) 2011,62
+110112,110112:Meat (Class),sources,International Comparison Program (ICP) 2011,62
+110113,110113:Fish and seafood (Class),sources,International Comparison Program (ICP) 2011,62
+110114,"110114:Milk, cheese and eggs (Class)",sources,International Comparison Program (ICP) 2011,62
+110115,110115:Oils and fats (Class),sources,International Comparison Program (ICP) 2011,62
+110116,110116:Fruit (Class),sources,International Comparison Program (ICP) 2011,62
+110117,110117:Vegetables (Class),sources,International Comparison Program (ICP) 2011,62
+110118,"110118:Sugar, jam, honey, chocolate and confectionery (Class)",sources,International Comparison Program (ICP) 2011,62
+110119,110119:Food products nec (Class),sources,International Comparison Program (ICP) 2011,62
+110120,110120:NON-ALCOHOLIC BEVERAGES,sources,International Comparison Program (ICP) 2011,62
+110200,"110200:ALCOHOL BEVERAGES, TOBACCO AND NARCOTICS",sources,International Comparison Program (ICP) 2011,62
+110210,110210:ALCOHOL BEVERAGES,sources,International Comparison Program (ICP) 2011,62
+110220,110220:TOBACCO,sources,International Comparison Program (ICP) 2011,62
+110300,110300:CLOTHING AND FOOTWEAR,sources,International Comparison Program (ICP) 2011,62
+110400,"110400:HOUSING, WATER, ELECTRICITY, GAS, AND OTHER FUELS",sources,International Comparison Program (ICP) 2011,62
+110500,"110500:FURNISHING, HOUSEHOLD EQUIPMENT AND ROUTINE MAINTENANCE OF THE HOUSE",sources,International Comparison Program (ICP) 2011,62
+110600,110600:HEALTH - HHC (Category),sources,International Comparison Program (ICP) 2011,62
+110700,110700:TRANSPORT,sources,International Comparison Program (ICP) 2011,62
+110710,110710:PURCHASE OF VEHICLES,sources,International Comparison Program (ICP) 2011,62
+110730,110730:TRANSPORT SERVICES,sources,International Comparison Program (ICP) 2011,62
+110800,110800:COMMUNICATION,sources,International Comparison Program (ICP) 2011,62
+111100,111100:RESTAURANTS AND HOTELS,sources,International Comparison Program (ICP) 2011,62
+111300,111300:BALANCE OF EXPENDITURES OF RESIDENTS ABROAD AND EXPENDITURES OF NON-RESIDENTS IN THE ECONOMIC TERRITORY,sources,International Comparison Program (ICP) 2011,62
+130000,130000:INDIVIDUAL CONSUMPTION EXPENDITURE BY GOVERNMENT,sources,International Comparison Program (ICP) 2011,62
+140000,140000:COLLECTIVE CONSUMPTION EXPENDITURE BY GOVERNMENT,sources,International Comparison Program (ICP) 2011,62
+150000,150000:GROSS FIXED CAPITAL FORMATION,sources,International Comparison Program (ICP) 2011,62
+150100,150100:MACHINERY AND EQUIPMENT,sources,International Comparison Program (ICP) 2011,62
+150200,150200:CONSTRUCTION,sources,International Comparison Program (ICP) 2011,62
+150300,150300:OTHER PRODUCTS,sources,International Comparison Program (ICP) 2011,62
+160100,160100:CHANGES IN INVENTORIES,sources,International Comparison Program (ICP) 2011,62
+160200,160200:ACQUISITIONS LESS DISPOSALS OF VALUABLES,sources,International Comparison Program (ICP) 2011,62
+170000,170000:BALANCE OF EXPORTS AND IMPORTS,sources,International Comparison Program (ICP) 2011,62
+2.0.cov.Cel,Coverage: Mobile Phone,topics,Poverty,11
+2.0.cov.Ele,Coverage: Electricity,topics,Poverty,11
+2.0.cov.FPS,Coverage: Finished Primary School,topics,Education,4
+2.0.cov.Int,Coverage: Internet,topics,Poverty,11
+2.0.cov.Math.pl_2.all,Coverage: Mathematics Proficiency Level 2,topics,Poverty,11
+2.0.cov.Math.pl_2.prv,"Coverage: Mathematics Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.cov.Math.pl_2.pub,"Coverage: Mathematics Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.cov.Math.pl_3.all,Coverage: Mathematics Proficiency Level 3,topics,Poverty,11
+2.0.cov.Math.pl_3.prv,"Coverage: Mathematics Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.cov.Math.pl_3.pub,"Coverage: Mathematics Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.cov.Read.pl_2.all,Coverage: Reading Proficiency Level 2,topics,Poverty,11
+2.0.cov.Read.pl_2.prv,"Coverage: Reading Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.cov.Read.pl_2.pub,"Coverage: Reading Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.cov.Read.pl_3.all,Coverage: Reading Proficiency Level 3,topics,Poverty,11
+2.0.cov.Read.pl_3.prv,"Coverage: Reading Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.cov.Read.pl_3.pub,"Coverage: Reading Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.cov.San,Coverage: Sanitation,topics,Poverty,11
+2.0.cov.Sch,Coverage: School Enrollment,topics,Poverty,11
+2.0.cov.Scie.pl_2.all,Coverage: Science Proficiency Level 2,topics,Poverty,11
+2.0.cov.Scie.pl_2.prv,"Coverage: Science Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.cov.Scie.pl_2.pub,"Coverage: Science Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.cov.Scie.pl_3.all,Coverage: Science Proficiency Level 3,topics,Poverty,11
+2.0.cov.Scie.pl_3.prv,"Coverage: Science Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.cov.Scie.pl_3.pub,"Coverage: Science Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.cov.Wat,Coverage: Water,topics,Poverty,11
+2.0.hoi.Cel,HOI: Mobile Phone,topics,Poverty,11
+2.0.hoi.Ele,HOI: Electricity,topics,Poverty,11
+2.0.hoi.FPS,HOI: Finished Primary School,topics,Education,4
+2.0.hoi.Int,HOI: Internet,topics,Poverty,11
+2.0.hoi.Math.pl_2.all,HOI: Mathematics Proficiency Level 2,topics,Poverty,11
+2.0.hoi.Math.pl_2.prv,"HOI: Mathematics Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.hoi.Math.pl_2.pub,"HOI: Mathematics Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.hoi.Math.pl_3.all,HOI: Mathematics Proficiency Level 3,topics,Poverty,11
+2.0.hoi.Math.pl_3.prv,"HOI: Mathematics Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.hoi.Math.pl_3.pub,"HOI: Mathematics Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.hoi.Read.pl_2.all,HOI: Reading Proficiency Level 2,topics,Poverty,11
+2.0.hoi.Read.pl_2.prv,"HOI: Reading Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.hoi.Read.pl_2.pub,"HOI: Reading Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.hoi.Read.pl_3.all,HOI: Reading Proficiency Level 3,topics,Poverty,11
+2.0.hoi.Read.pl_3.prv,"HOI: Reading Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.hoi.Read.pl_3.pub,"HOI: Reading Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.hoi.San,HOI: Sanitation,topics,Poverty,11
+2.0.hoi.Sch,HOI: School Enrollment,topics,Poverty,11
+2.0.hoi.Scie.pl_2.all,HOI: Science Proficiency Level 2,topics,Poverty,11
+2.0.hoi.Scie.pl_2.prv,"HOI: Science Proficiency Level 2, Private schools",topics,Poverty,11
+2.0.hoi.Scie.pl_2.pub,"HOI: Science Proficiency Level 2, Public schools",topics,Poverty,11
+2.0.hoi.Scie.pl_3.all,HOI: Science Proficiency Level 3,topics,Poverty,11
+2.0.hoi.Scie.pl_3.prv,"HOI: Science Proficiency Level 3, Private schools",topics,Poverty,11
+2.0.hoi.Scie.pl_3.pub,"HOI: Science Proficiency Level 3, Public schools",topics,Poverty,11
+2.0.hoi.Wat,HOI: Water,topics,Poverty,11
+2.1_ACCESS.CFT.TOT,Access to Clean Fuels and Technologies for cooking (% of total population),sources,Sustainable Energy for All,35
+2.1_PRE.PRIMARY.GER,"School enrolment, preprimary, national source (% gross)",sources,Global Partnership for Education,34
+2.1_SHARE.TOTAL.RE.IN.TFEC,Renewable energy consumption(% in TFEC),sources,Sustainable Energy for All,35
+2.2_GIR,"Gross intake ratio in grade 1, total, national source (% of relevant age group)",sources,Global Partnership for Education,34
+2.3_GIR.GPI,Gender parity index for gross intake ratio in grade 1,sources,Global Partnership for Education,34
+2.4_OOSC.RATE,"Rate of out of school children, national source (% of relevant age group)",sources,Global Partnership for Education,34
+2.5_PCR,"Primary completion rate, total, national source (% of relevant age group)",sources,Global Partnership for Education,34
+2.6_PCR.GPI,Gender parity index for primary completion rate,sources,Global Partnership for Education,34
+2.7_PRI.SEC.TRANSITION.RATE,"Progression to secondary school, national source (%)",sources,Global Partnership for Education,34
+2.8_LOW.SEC.COMPLETION.RATE,"Lower secondary completion rate, total, national source (% of relevant age group)",sources,Global Partnership for Education,34
+3.0.Atkin.0.5,"Atkinson, A(.5)",topics,Poverty,11
+3.0.Atkin.1,"Atkinson, A(1)",topics,Poverty,11
+3.0.Atkin.2,"Atkinson, A(2)",topics,Poverty,11
+3.0.GenEnt-1,"Generalized Entrophy, GE(-1)",topics,Poverty,11
+3.0.GenEnt2,"Generalized Entrophy, GE(2)",topics,Poverty,11
+3.0.Gini,Gini Coefficient,topics,Poverty,11
+3.0.Gini_nozero,Gini Coefficient (No Zero Income),topics,Poverty,11
+3.0.IncShr.q1,Income Share of First Quintile,topics,Poverty,11
+3.0.IncShr.q2,Income Share of Second Quintile,topics,Poverty,11
+3.0.IncShr.q3,Income Share of Third Quintile,topics,Poverty,11
+3.0.IncShr.q4,Income Share of Fourth Quintile,topics,Poverty,11
+3.0.IncShr.q5,Income Share of Fifth Quintile,topics,Poverty,11
+3.0.MLongDev0,"Mean Log Deviation, GE(0)",topics,Poverty,11
+3.0.Rate75-25,Rate 75/25,topics,Poverty,11
+3.0.Rate90-10,Rate 90/10,topics,Poverty,11
+3.0.TheilInd1,"Theil Index, GE(1)",topics,Poverty,11
+3.1.Gini,"Gini, Rural",topics,Poverty,11
+3.1.MLongDev0,"Mean Log Deviation, GE(0), Rural",topics,Poverty,11
+3.1.TheilInd1,"Theil Index, GE(1), Rural",topics,Poverty,11
+3.11_LOW.SEC.CLASSROOMS,"Lower secondary education, classrooms, national source",sources,Global Partnership for Education,34
+3.12_LOW.SEC.NEW.CLASSROOMS,"Lower secondary education, new classrooms, national source",sources,Global Partnership for Education,34
+3.13_PRI.MATH.BOOK.PER.PUPIL,"Ratio of textbooks per pupil, primary education, mathematics",sources,Global Partnership for Education,34
+3.14_PRI.LANGU.BOOK.PER.PUPIL,"Ratio of textbooks per pupil, primary education, language",sources,Global Partnership for Education,34
+3.15_LEARN.TIME.TEACHER.STUDY,Last study on effective learning time and teacher attendance (year),sources,Global Partnership for Education,34
+3.1_LOW.SEC.NEW.TEACHERS,"Lower secondary education, new teachers, national source",sources,Global Partnership for Education,34
+3.1_PRI.NEW.ENTRANTS,"Primary education, new entrants, national source",sources,Global Partnership for Education,34
+3.1_RE.CONSUMPTION,Renewable energy consumption (TJ),sources,Sustainable Energy for All,35
+3.2.Gini,"Gini, Urban",topics,Poverty,11
+3.2.MLongDev0,"Mean Log Deviation, GE(0),Urban",topics,Poverty,11
+3.2.TheilInd1,"Theil Index, GE(1),Urban",topics,Poverty,11
+3.2_PRI.STUDENTS,"Primary education, pupils, national source",sources,Global Partnership for Education,34
+3.3_PRI.TEACHERS,"Primary education, teachers, national source",sources,Global Partnership for Education,34
+3.4_PRI.NEW.TEACHERS,"Primary education, new teachers, national source",sources,Global Partnership for Education,34
+3.5_PRI.CLASSROOMS,"Primary education, classrooms, national source",sources,Global Partnership for Education,34
+3.6_PRI.NEW.CLASSROOMS,"Primary education, new classrooms, national source",sources,Global Partnership for Education,34
+3.7_LOW.SEC.NEW.ENTRANTS,"Lower Secondary education, new entrants, national source",sources,Global Partnership for Education,34
+3.8_LOW.SEC.STUDENTS,"Lower secondary education, pupils, national source",sources,Global Partnership for Education,34
+3.9_LOW.SEC.TEACHERS,"Lower secondary education, teachers, national source",sources,Global Partnership for Education,34
+4.0.nini.15a18,Youth: Neither in School Nor Working (15-18),topics,Social Protection & Labor,10
+4.0.nini.15a24,Youth: Neither in School Nor Working (15-24),topics,Social Protection & Labor,10
+4.0.nini.19a24,Youth: Neither in School Nor Working (19-24),topics,Social Protection & Labor,10
+4.0.stud.15a18,Youth: In School (15-18),topics,Social Protection & Labor,10
+4.0.stud.15a24,Youth: In School (15-24),topics,Social Protection & Labor,10
+4.0.stud.19a24,Youth: In School (19-24),topics,Social Protection & Labor,10
+4.0.studwork.15a18,Youth: In School and Employed (15-18),topics,Social Protection & Labor,10
+4.0.studwork.15a24,Youth: In School and Employed (15-24),topics,Social Protection & Labor,10
+4.0.studwork.19a24,Youth: In School and Employed (19-24),topics,Social Protection & Labor,10
+4.0.work.15a18,Youth: Employed (15-18),topics,Social Protection & Labor,10
+4.0.work.15a24,Youth: Employed (15-24),topics,Social Protection & Labor,10
+4.0.work.19a24,Youth: Employed (19-24),topics,Social Protection & Labor,10
+4.1.1_TOTAL.ELECTRICITY.OUTPUT,Total electricity output (GWh),sources,Sustainable Energy for All,35
+4.1.2_REN.ELECTRICITY.OUTPUT,Renewable energy electricity output (GWh),sources,Sustainable Energy for All,35
+4.1.nini.15a18,"Youth: Neither in School Nor Working (15-18), Male",topics,Social Protection & Labor,10
+4.1.nini.15a24,"Youth: Neither in School Nor Working (15-24), Male",topics,Social Protection & Labor,10
+4.1.nini.19a24,"Youth: Neither in School Nor Working (19-24), Male",topics,Social Protection & Labor,10
+4.1.stud.15a18,"Youth: In School (15-18), Male",topics,Social Protection & Labor,10
+4.1.stud.15a24,"Youth: In School (15-24), Male",topics,Social Protection & Labor,10
+4.1.stud.19a24,"Youth: In School (19-24), Male",topics,Social Protection & Labor,10
+4.1.studwork.15a18,"Youth: In School and Employed (15-18), Male",topics,Social Protection & Labor,10
+4.1.studwork.15a24,"Youth: In School and Employed (15-24), Male",topics,Social Protection & Labor,10
+4.1.studwork.19a24,"Youth: In School and Employed (19-24), Male",topics,Social Protection & Labor,10
+4.1.work.15a18,"Youth: Employed (15-18), Male",topics,Social Protection & Labor,10
+4.1.work.15a24,"Youth: Employed (15-24), Male",topics,Social Protection & Labor,10
+4.1.work.19a24,"Youth: Employed (19-24), Male",topics,Social Protection & Labor,10
+4.1_SHARE.RE.IN.ELECTRICITY,Renewable electricity (% in total electricity output),sources,Sustainable Energy for All,35
+4.1_TOTAL.EDU.SPENDING,Public spending on total education (% of total public spending),sources,Global Partnership for Education,34
+4.2.nini.15a18,"Youth: Neither in School Nor Working (15-18), Female",topics,Social Protection & Labor,10
+4.2.nini.15a24,"Youth: Neither in School Nor Working (15-24), Female",topics,Social Protection & Labor,10
+4.2.nini.19a24,"Youth: Neither in School Nor Working (19-24), Female",topics,Social Protection & Labor,10
+4.2.stud.15a18,"Youth: In School (15-18), Female",topics,Social Protection & Labor,10
+4.2.stud.15a24,"Youth: In School (15-24), Female",topics,Social Protection & Labor,10
+4.2.stud.19a24,"Youth: In School (19-24), Female",topics,Social Protection & Labor,10
+4.2.studwork.15a18,"Youth: In School and Employed (15-18), Female",topics,Social Protection & Labor,10
+4.2.studwork.15a24,"Youth: In School and Employed (15-24), Female",topics,Social Protection & Labor,10
+4.2.studwork.19a24,"Youth: In School and Employed (19-24), Female",topics,Social Protection & Labor,10
+4.2.work.15a18,"Youth: Employed (15-18), Female",topics,Social Protection & Labor,10
+4.2.work.15a24,"Youth: Employed (15-24), Female",topics,Social Protection & Labor,10
+4.2.work.19a24,"Youth: Employed (19-24), Female",topics,Social Protection & Labor,10
+4.2_BASIC.EDU.SPENDING,Public spending on basic education (% of public spending on total education),sources,Global Partnership for Education,34
+4.3_TOTAL.EDU.RECURRENT,Public recurrent spending on total education (% of total public recurrent spending),sources,Global Partnership for Education,34
+4.4_BASIC.EDU.RECURRENT,Public recurrent spending on basic education (% of public recurrent spending on total education),sources,Global Partnership for Education,34
+5.0.AMeanIncGr.All,Annualized Mean Income Growth (2004-2014),topics,Economy & Growth,3
+5.0.AMeanIncGr.B40,Annualized Mean Income Growth Bottom 40 Percent (2004-2014),topics,Economy & Growth,3
+5.1.10_AFG.TOTA.AID.SIDA,"International aid disbursed to total education, Sida to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.10_ETH.TOTA.AID.JPN,"International aid disbursed to total education, Japan Government to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.10_KHM.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.10_LAO.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.10_MDG.TOTA.AID.EC,International aid to total education executed by the European Commission in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.10_MOZ.TOTA.AID.JPN,"International aid disbursed to total education, Japan to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.10_MWI.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.10_NER.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.10_TJK.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.11_AFG.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.11_ETH.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.11_KHM.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.11_LAO.TOTA.AID.INGOS,"International aid disbursed to total education, International NGOs to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.11_MOZ.TOTA.AID.NLD,"International aid disbursed to total education, Netherlands to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.11_MWI.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.12_AFG.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.12_ETH.TOTA.AID.KFW,"International aid disbursed to total education, KfW to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.12_MOZ.TOTA.AID.PRT,"International aid disbursed to total education, Portugal to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.13_AFG.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.13_ETH.TOTA.AID.NLD,"International aid disbursed to total education, Netherlands to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.13_MOZ.TOTA.AID.ESP,"International aid disbursed to total education, Spain to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.14_ETH.TOTA.AID.SIDA,"International aid disbursed to total education, Sida to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.14_MOZ.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.15_ETH.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.15_MOZ.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.16_ETH.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.16_MOZ.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.17_ETH.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.18_ETH.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.1_AFG.TOTA.AID.CIDA,"International aid disbursed to total education, CIDA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.1_ALB.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Albania (USD million)",sources,Global Partnership for Education,34
+5.1.1_BFA.TOTA.AID.CIDA,"International aid disbursed to total education, CIDA to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.1_CAF.TOT.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)",sources,Global Partnership for Education,34
+5.1.1_CIV.TOTA.AID.AFDB,"International aid disbursed to total education, AfDB to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.1_CMR.TOTA.AID.BAD,"International aid disbursed to total education, AfDB to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.1_DJI.TOTA.AID.WB,"International aid disbursed to total education, World Bank (IDA) to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.1_ETH.TOTA.AID.ADB,"International aid disbursed to total education, ADB to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.1_GEO.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Georgia (USD million)",sources,Global Partnership for Education,34
+5.1.1_GHA.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.1_GIN.TOTA.AID.ADPP.AFD,"International aid disbursed to total education, AFD to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.1_GNB.TOTA.AID.ADPP.EU,"International aid disbursed to total education, ADPP (European Union) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.1_KGZ.TOTA.AID.ADPP.EU,"International aid disbursed to total education, European Commission to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.1.1_KHM.TOTA.AID.BAD,"International aid disbursed to total education, AfDB to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.1_LAO.TOTA.AID.ADB,"International aid disbursed to total education, ADB to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.1_LBR.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Liberia (USD million)",sources,Global Partnership for Education,34
+5.1.1_MDA.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Moldova (USD million)",sources,Global Partnership for Education,34
+5.1.1_MDG.TOTA.AID.WB,International aid to total education executed by World Bank (including GPE funds) in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.1_MOZ.TOTA.AID.CAN,"International aid disbursed to total education, Canada to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.1_MRT.TOTA.AID.AFD,"International aid disbursed to total education, AFD to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.1.1_MWI.TOTA.AID.AFDB,"International aid disbursed to total education, AfDB to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.1_NER.TOTA.AID.AFD,"International aid disbursed to total education, AFD to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.1_RWA.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.1.1_SEN.TOTA.AID.CIDA,"International aid disbursed to total education, CIDA to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.1_SLE.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.1_VNM.TOTA.AID.BEL,"International aid disbursed to total education, Belgium to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.1_ZMB.TOTA.AID.DNK,"International aid disbursed to total education, Denmark to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.2_AFG.TOTA.AID.DANIDA,"International aid disbursed to total education, DANIDA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.2_ALB.TOTA.AID.BEI,"International aid disbursed to total education, BEI to Albania (USD million)",sources,Global Partnership for Education,34
+5.1.2_BFA.TOTA.AID.AFD,"International aid disbursed to total education, AFD to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.2_CIV.TOTA.AID.BADEA,"International aid disbursed to total education, BADEA to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.2_CMR.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.2_DJI.TOTA.AID.FSD,"International aid disbursed to total education, FSD to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.2_ETH.TOTA.AID.BEL,"International aid disbursed to total education, Belgium (VLIR USO) to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.2_GEO.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Georgia (USD million)",sources,Global Partnership for Education,34
+5.1.2_GHA.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.2_GIN.TOTA.AID.ADPP.AFDB,"International aid disbursed to total education, AfDB to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.2_GNB.TOTA.AID.ADPP.HUM,"International aid disbursed to total education, ADPP (Humana People to People) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.2_KGZ.TOTA.AID.ADPP.GIZ,"International aid disbursed to total education, GIZ to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.1.2_KHM.TOTA.AID.BEL,"International aid disbursed to total education, Belgium to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.2_LAO.TOTA.AID.AUS,"International aid disbursed to total education, AusAID to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.2_LBR.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Liberia (USD million)",sources,Global Partnership for Education,34
+5.1.2_MDA.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Moldova (USD million)",sources,Global Partnership for Education,34
+5.1.2_MDG.TOTA.AID.ILO,International aid to total education executed by ILO in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.2_MOZ.TOTA.AID.DANIDA,"International aid disbursed to total education, DANIDA to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.2_MRT.TOTA.AID.ISDB,"International aid disbursed to total education, IsDB to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.1.2_MWI.TOTA.AID.CIDA,"International aid disbursed to total education, CIDA to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.2_NER.TOTA.AID.BEL,"International aid disbursed to total education, Belgium to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.2_RWA.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.1.2_SEN.TOTA.AID.FR,"International aid disbursed to total education, AFD and French Embassy to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.2_SLE.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.2_TJK.TOTA.AID.AGAK,"International aid disbursed to total education, Aga Khan to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.2_VNM.TOTA.AID.CIDA,"International aid disbursed to total education, CIDA to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.2_ZMB.TOTA.AID.IRL,"International aid disbursed to total education, Ireland to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.3_AFG.TOTA.AID.FRA,"International aid disbursed to total education, France to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.3_ALB.TOTA.AID.CEIB,"International aid disbursed to total education, CEIB to Albania (USD million)",sources,Global Partnership for Education,34
+5.1.3_BFA.TOTA.AID.CHE,"International aid disbursed to total education, Switzerland to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.3_CIV.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.3_CMR.TOTA.AID.FR,"International aid disbursed to total education, AFD and French Embassy to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.3_DJI.TOTA.AID.AFD,"International aid disbursed to total education, AFD to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.3_ETH.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.3_GEO.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Georgia (USD million)",sources,Global Partnership for Education,34
+5.1.3_GHA.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.3_GIN.TOTA.AID.ADPP.WB,"International aid disbursed to total education, World Bank to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.3_GNB.TOTA.AID.ADPP.OTH,"International aid disbursed to total education, ADPP (other donors) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.3_KGZ.TOTA.AID.ADPP.UNICEF,"International aid disbursed to total education, UNICEF to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.1.3_KHM.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.3_LAO.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.3_LBR.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Liberia (USD million)",sources,Global Partnership for Education,34
+5.1.3_MDG.TOTA.AID.FR,International aid to total education executed by AFD and French Embassy in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.3_MOZ.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.3_MRT.TOTA.AID.SP,"International aid disbursed to total education, Spanish Cooperation to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.1.3_MWI.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.3_NER.TOTA.AID.FR,"International aid disbursed to total education, French Embassy to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.3_RWA.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.1.3_SEN.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.3_SLE.TOTA.AID.GIZ,"International aid disbursed to total education, GIZ to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.3_TJK.TOTA.AID.OPENS,"International aid disbursed to total education, Open Society Foundations to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.3_VNM.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.3_ZMB.TOTA.AID.ILO,"International aid disbursed to total education, ILO to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.4_AFG.TOTA.AID.DEU,"International aid disbursed to total education, Germany to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.4_BFA.TOTA.AID.DNK,"International aid disbursed to total education, Denmark to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.4_CIV.TOTA.AID.ISDB,"International aid disbursed to total education, IsDB to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.4_CMR.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.4_DJI.TOTA.AID.AFDB,"International aid disbursed to total education, AfDB to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.4_ETH.TOTA.AID.DVV,"International aid disbursed to total education, DVV international to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.4_GEO.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Georgia (USD million)",sources,Global Partnership for Education,34
+5.1.4_GHA.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.4_GIN.TOTA.AID.ADPP.GPE,"International aid disbursed to total education, Global Partnership for Education to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.4_GNB.TOTA.AID.EU,"International aid disbursed to total education, European Commission to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.4_KGZ.TOTA.AID.ADPP.WB,"International aid disbursed to total education, World Bank to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.1.4_KHM.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.4_LAO.TOTA.AID.DEU,"International aid disbursed to total education, Germany (GIZ and KfW) to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.4_MDG.TOTA.AID.JICA,International aid to total education executed by JICA in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.4_MOZ.TOTA.AID.FIN,"International aid disbursed to total education, Finland to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.4_MRT.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.1.4_MWI.TOTA.AID.GIZ,"International aid disbursed to total education, GIZ to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.4_NER.TOTA.AID.JAPAN,"International aid disbursed to total education, Japan to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.4_RWA.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.1.4_SEN.TOTA.AID.IT,"International aid disbursed to total education, Italy to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.4_SLE.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.4_TJK.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.4_VNM.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.4_ZMB.TOTA.AID.JPN,"International aid disbursed to total education, Japan to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.5_AFG.TOTA.AID.IND,"International aid disbursed to total education, India to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.5_BFA.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.5_CIV.TOTA.AID.FSD,"International aid disbursed to total education, FSD to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.5_CMR.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.5_DJI.TOTA.AID.ISDB,"International aid disbursed to total education, IsDB to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.5_ETH.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.5_GHA.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.5_GIN.TOTA.AID.ADPP.GIZ,"International aid disbursed to total education, GIZ to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.5_GNB.TOTA.AID.FR,"International aid disbursed to total education, AFD and French Embassy to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.5_KHM.TOTA.AID.JPN,"International aid disbursed to total education, Japan to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.5_LAO.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.5_MDG.TOTA.AID.NOR,International aid to total education executed by Norway in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.5_MOZ.TOTA.AID.FLAND,"International aid disbursed to total education, Flanders to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.5_MRT.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.1.5_MWI.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.5_NER.TOTA.AID.KFW,"International aid disbursed to total education, KfW to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.5_RWA.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.1.5_SEN.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.5_SLE.TOTA.AID.SIDA,"International aid disbursed to total education, Sida to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.5_TJK.TOTA.AID.GIZ,"International aid disbursed to total education, GIZ to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.5_VNM.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.5_ZMB.TOTA.AID.ZMB,"International aid disbursed to total education, Netherlands to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.6_AFG.TOTA.AID.JPN,"International aid disbursed to total education, Japan's MoFA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.6_BFA.TOTA.AID.NLD,"International aid disbursed to total education, Netherlands to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.6_CIV.TOTA.AID.KFW,"International aid disbursed to total education, KfW to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.6_CMR.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.1.6_DJI.TOTA.AID.IMOA,"International aid disbursed to total education, IMOA to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.6_ETH.TOTA.AID.FIN,"International aid disbursed to total education, Finland to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.6_GHA.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.6_GIN.TOTA.AID.ADPP.KFW,"International aid disbursed to total education, KfW to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.6_GNB.TOTA.AID.PORT,"International aid disbursed to total education, Portuguese Cooperation to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.6_KHM.TOTA.AID.SWE,"International aid disbursed to total education, Sweden to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.6_LAO.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.6_MDG.TOTA.AID.WFP,International aid to total education executed by WFP in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.6_MOZ.TOTA.AID.DEU,"International aid disbursed to total education, Germany (GIZ and KfW) to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.6_MWI.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.6_NER.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.6_SEN.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Senegal (USD million)",sources,Global Partnership for Education,34
+5.1.6_SLE.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.6_TJK.TOTA.AID.GPE,"International aid disbursed to total education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.6_VNM.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.6_ZMB.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.7_AFG.TOTA.AID.JICA,"International aid disbursed to total education, JICA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.7_BFA.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.7_CIV.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.7_ETH.TOTA.AID.GIZ,"International aid disbursed to total education, GIZ/BMZ to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.7_GHA.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.1.7_GIN.TOTA.AID.ADPP.UNICEF,"International aid disbursed to total education, UNICEF to Guinea (USD million)",sources,Global Partnership for Education,34
+5.1.7_GNB.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.7_KHM.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.7_LAO.TOTA.AID.UNESCO,"International aid disbursed to total education, UNESCO to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.7_MDG.TOTA.AID.UNESCO,International aid to total education executed by UNESCO in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.7_MOZ.TOTA.AID.GPE,"International aid disbursed to total education, GPE to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.7_MWI.TOTA.AID.KFW,"International aid disbursed to total education, KfW to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.7_NER.TOTA.AID.DFID,"International aid disbursed to total education, DFID to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.7_SLE.TOTA.AID.WB,"International aid disbursed to total education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.1.7_TJK.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.7_VNM.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.7_ZMB.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Zambia (USD million)",sources,Global Partnership for Education,34
+5.1.8_AFG.TOTA.AID.NLD,"International aid disbursed to total education, Netherlands to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.8_BFA.TOTA.AID.EC,"International aid disbursed to total education, European Commission to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.1.8_CIV.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.1.8_ETH.TOTA.AID.GPE,"International aid disbursed to total education, GPE Catalytic Fund to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.8_GNB.TOTA.AID.JAP,"International aid disbursed to total education, Japan (via UNICEF) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.1.8_KHM.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.8_LAO.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.8_MDG.TOTA.AID.UNICEF,International aid to total education executed by UNICEF (excluding GPE funds) in Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.8_MOZ.TOTA.AID.IRL,"International aid disbursed to total education, Ireland to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.8_MWI.TOTA.AID.UNICEF,"International aid disbursed to total education, UNICEF to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.8_NER.TOTA.AID.CHE,"International aid disbursed to total education, Switzerland to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.8_SLE.TOTA.AID.WFP,International aid disbursed to total education from WFP to Sierra Leone (USD million),sources,Global Partnership for Education,34
+5.1.8_TJK.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.8_VNM.TOTA.AID.WB,"International aid disbursed to total education, World Bank to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.1.9_AFG.TOTA.AID.NZL,"International aid disbursed to total education, New Zealand to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.1.9_ETH.TOTA.AID.ITA,"International aid disbursed to total education, Italian Cooperation to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.1.9_KHM.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.1.9_LAO.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Laos (USD million)",sources,Global Partnership for Education,34
+5.1.9_MDG.TOTA.AID.GPE,International aid disbursed to total education from the Global Partnership for Education (via UNICEF and WB) to Madagascar (USD million),sources,Global Partnership for Education,34
+5.1.9_MOZ.TOTA.AID.ITA,"International aid disbursed to total education, Italy to Mozambique (USD million)",sources,Global Partnership for Education,34
+5.1.9_MWI.TOTA.AID.USAID,"International aid disbursed to total education, USAID to Malawi (USD million)",sources,Global Partnership for Education,34
+5.1.9_NER.TOTA.AID.LUX,"International aid disbursed to total education, Luxembourg to Niger (USD million)",sources,Global Partnership for Education,34
+5.1.9_TJK.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.1.AMeanIncGr.All,Annualized Mean Income Growth (2004-2009),topics,Economy & Growth,3
+5.1.AMeanIncGr.B40,Annualized Mean Income Growth Bottom 40 Percent (2004-2009),topics,Economy & Growth,3
+5.1_TOTAL.EDU.AID,"International aid for total education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)",sources,Global Partnership for Education,34
+5.2.10_AFG.BAS.AID.SIDA,"International aid disbursed to basic education, Sida to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.10_ETH.BAS.AID.JPN,"International aid disbursed to basic education, Japan Government to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.10_KHM.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.10_LAO.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.10_MDG.BAS.AID.EC,International aid to basic education executed by the European Commission in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.10_MWI.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.10_NER.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.10_TLS.TOT.AID.PRIV,"International aid disbursed to total education, private donors to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.11_AFG.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.11_ETH.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.11_KHM.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.11_LAO.BAS.AID.INGOS,"International aid disbursed to basic education, International NGOs to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.11_MWI.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.11_TLS.TOT.AID.UNICEF,"International aid disbursed to total education, UNICEF to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.12_AFG.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.12_ETH.BAS.AID.KFW,"International aid disbursed to basic education, KfW to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.12_TLS.TOT.AID.USAID,"International aid disbursed to total education, USAID to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.13_AFG.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.13_ETH.BAS.AID.NLD,"International aid disbursed to basic education, Netherlands to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.14_ETH.BAS.AID.SIDA,"International aid disbursed to basic education, Sida to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.15_ETH.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.16_ETH.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.17_ETH.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.18_ETH.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.1_AFG.BAS.AID.CIDA,"International aid disbursed to basic education, CIDA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.1_ALB.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Albania (USD million)",sources,Global Partnership for Education,34
+5.2.1_BFA.BAS.AID.CIDA,"International aid disbursed to basic education, CIDA to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.1_CAF.BAS.AID.GPE,"International aid disbursed to total education, Global Partnership for Education to Central African Republic (USD million)",sources,Global Partnership for Education,34
+5.2.1_CIV.BAS.AID.AFDB,"International aid disbursed to basic education, AfDB to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.1_CMR.BAS.AID.BAD,"International aid disbursed to basic education, AfDB to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.1_DJI.BAS.AID.WB,"International aid disbursed to basic education, World Bank (IDA) to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.1_ETH.BAS.AID.ADB,"International aid disbursed to basic education, ADB to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.1_GEO.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Georgia (USD million)",sources,Global Partnership for Education,34
+5.2.1_GHA.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.1_GIN.BAS.AID.ADPP.AFD,"International aid disbursed to basic education, AFD to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.1_GNB.BAS.AID.ADPP.EU,"International aid disbursed to basic education, ADPP (European Union) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.1_KGZ.BAS.AID.ADPP.EU,"International aid disbursed to basic education, European Commission to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.2.1_KHM.BAS.AID.BAD,"International aid disbursed to basic education, AfDB to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.1_LAO.BAS.AID.ADB,"International aid disbursed to basic education, ADB to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.1_LBR.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Liberia (USD million)",sources,Global Partnership for Education,34
+5.2.1_MDA.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Moldova (USD million)",sources,Global Partnership for Education,34
+5.2.1_MDG.BAS.AID.WB,International aid to basic education executed by World Bank (GPE funds) in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.1_MRT.TOTA.AID.WFP,"International aid disbursed to total education, WFP to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.1_MWI.BAS.AID.AFDB,"International aid disbursed to basic education, AfDB to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.1_NER.BAS.AID.AFD,"International aid disbursed to basic education, AFD to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.1_RWA.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.2.1_SEN.BAS.AID.CIDA,"International aid disbursed to basic education, CIDA to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.1_SLE.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.1_TJK.BAS.AID.AGAK,"International aid disbursed to basic education, Aga Khan to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.1_TLS.TOT.AID.AUSAID.CFAUS,"International aid disbursed to total education, AusAID and ChildFund Australia to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.1_VNM.BAS.AID.CIDA,"International aid disbursed to basic education, CIDA to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.1_ZMB.BAS.AID.DNK,"International aid disbursed to basic education, Denmark to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.2_AFG.BAS.AID.DANIDA,"International aid disbursed to basic education, DANIDA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.2_ALB.BAS.AID.BEI,"International aid disbursed to basic education, BEI to Albania (USD million)",sources,Global Partnership for Education,34
+5.2.2_BFA.BAS.AID.AFD,"International aid disbursed to basic education, AFD to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.2_CIV.BAS.AID.BADEA,"International aid disbursed to basic education, BADEA to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.2_CMR.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.2_DJI.BAS.AID.FSD,"International aid disbursed to basic education, FSD to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.2_ETH.BAS.AID.BEL,"International aid disbursed to basic education, Belgium (VLIR USO) to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.2_GEO.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Georgia (USD million)",sources,Global Partnership for Education,34
+5.2.2_GHA.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.2_GIN.BAS.AID.ADPP.AFDB,"International aid disbursed to basic education, AfDB to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.2_GNB.BAS.AID.ADPP.HUM,"International aid disbursed to basic education, ADPP (Humana People to People) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.2_KGZ.BAS.AID.ADPP.GIZ,"International aid disbursed to basic education, GIZ to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.2.2_KHM.BAS.AID.BEL,"International aid disbursed to basic education, Belgium to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.2_LAO.BAS.AID.AUS,"International aid disbursed to basic education, AusAID to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.2_LBR.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Liberia (USD million)",sources,Global Partnership for Education,34
+5.2.2_MDA.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Moldova (USD million)",sources,Global Partnership for Education,34
+5.2.2_MDG.BAS.AID.ILO,International aid to basic education executed by ILO in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.2_MRT.BAS.AID.AFD,"International aid disbursed to basic education, AFD to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.2_MWI.BAS.AID.CIDA,"International aid disbursed to basic education, CIDA to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.2_NER.BAS.AID.BEL,"International aid disbursed to basic education, Belgium to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.2_RWA.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.2.2_SEN.BAS.AID.FR,"International aid disbursed to basic education, AFD and French Embassy to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.2_SLE.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.2_TJK.BAS.AID.OPENS,"International aid disbursed to basic education, Open Society Foundations to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.2_TLS.TOT.AID.AUSAID.WB,"International aid disbursed to total education, AusAID (World Bank) to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.2_VNM.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.2_ZMB.BAS.AID.IRL,"International aid disbursed to basic education, Ireland to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.3_AFG.BAS.AID.FRA,"International aid disbursed to basic education, France to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.3_ALB.BAS.AID.CEIB,"International aid disbursed to basic education, CEIB to Albania (USD million)",sources,Global Partnership for Education,34
+5.2.3_BFA.BAS.AID.CHE,"International aid disbursed to basic education, Switzerland to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.3_CIV.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.3_CMR.BAS.AID.FR,"International aid disbursed to basic education, AFD and French Embassy to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.3_DJI.BAS.AID.AFD,"International aid disbursed to basic education, AFD to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.3_ETH.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.3_GEO.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Georgia (USD million)",sources,Global Partnership for Education,34
+5.2.3_GHA.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.3_GIN.BAS.AID.ADPP.WB,"International aid disbursed to basic education, World Bank to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.3_GNB.BAS.AID.ADPP.OTH,"International aid disbursed to basic education, ADPP (other donors) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.3_KGZ.BAS.AID.ADPP.UNICEF,"International aid disbursed to basic education, UNICEF to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.2.3_KHM.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.3_LAO.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.3_LBR.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Liberia (USD million)",sources,Global Partnership for Education,34
+5.2.3_MDG.BAS.AID.FR,International aid to basic education executed by AFD and French Embassy in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.3_MRT.BAS.AID.ISDB,"International aid disbursed to basic education, IsDB to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.3_MWI.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.3_NER.BAS.AID.FR,"International aid disbursed to basic education, French Embassy to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.3_RWA.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.2.3_SEN.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.3_SLE.BAS.AID.GIZ,"International aid disbursed to basic education, GIZ to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.3_TJK.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.3_TLS.TOT.AID.AUS,"International aid disbursed to total education, Australia to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.3_VNM.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.3_ZMB.BAS.AID.ILO,"International aid disbursed to basic education, ILO to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.4_AFG.BAS.AID.DEU,"International aid disbursed to basic education, Germany to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.4_BFA.BAS.AID.DNK,"International aid disbursed to basic education, Denmark to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.4_CIV.BAS.AID.ISDB,"International aid disbursed to basic education, IsDB to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.4_CMR.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.4_DJI.BAS.AID.AFDB,"International aid disbursed to basic education, AfDB to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.4_ETH.BAS.AID.DVV,"International aid disbursed to basic education, DVV international to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.4_GEO.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Georgia (USD million)",sources,Global Partnership for Education,34
+5.2.4_GHA.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.4_GIN.BAS.AID.ADPP.GPE,"International aid disbursed to basic education, Global Partnership for Education to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.4_GNB.BAS.AID.EU,"International aid disbursed to basic education, European Commission to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.4_KGZ.BAS.AID.ADPP.WB,"International aid disbursed to basic education, World Bank to Kyrgyzstan (USD million)",sources,Global Partnership for Education,34
+5.2.4_KHM.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.4_LAO.BAS.AID.DEU,"International aid disbursed to basic education, Germany (GIZ and KfW) to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.4_MDG.BAS.AID.JICA,International aid to basic education executed by JICA in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.4_MRT.BAS.AID.SP,"International aid disbursed to basic education, Spanish Cooperation to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.4_MWI.BAS.AID.GIZ,"International aid disbursed to basic education, GIZ to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.4_NER.BAS.AID.JAPAN,"International aid disbursed to basic education, Japan to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.4_RWA.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.2.4_SEN.BAS.AID.IT,"International aid disbursed to basic education, Italy to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.4_SLE.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.4_TJK.BAS.AID.GIZ,"International aid disbursed to basic education, GIZ to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.4_TLS.TOT.AID.WB,"International aid disbursed to total education, World Bank (IDA) to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.4_VNM.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.4_ZMB.BAS.AID.JPN,"International aid disbursed to basic education, Japan to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.5_AFG.BAS.AID.IND,"International aid disbursed to basic education, India to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.5_BFA.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.5_CIV.BAS.AID.FSD,"International aid disbursed to basic education, FSD to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.5_CMR.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.5_DJI.BAS.AID.ISDB,"International aid disbursed to basic education, IsDB to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.5_ETH.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.5_GHA.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.5_GIN.BAS.AID.ADPP.GIZ,"International aid disbursed to basic education, GIZ to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.5_GNB.BAS.AID.FR,"International aid disbursed to basic education, AFD and French Embassy to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.5_KHM.BAS.AID.JPN,"International aid disbursed to basic education, Japan to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.5_LAO.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.5_MDG.BAS.AID.NOR,International aid to basic education executed by Norway in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.5_MRT.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.5_MWI.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.5_NER.BAS.AID.KFW,"International aid disbursed to basic education, KfW to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.5_RWA.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Rwanda (USD million)",sources,Global Partnership for Education,34
+5.2.5_SEN.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.5_SLE.BAS.AID.SIDA,"International aid disbursed to basic education, Sida to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.5_TJK.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education (CF and EPDF) to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.5_TLS.TOT.AID.JPN,"International aid disbursed to total education, Japan to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.5_VNM.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.5_ZMB.BAS.AID.ZMB,"International aid disbursed to basic education, Netherlands to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.6_AFG.BAS.AID.JPN,"International aid disbursed to basic education, Japan's MoFA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.6_BFA.BAS.AID.NLD,"International aid disbursed to basic education, Netherlands to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.6_CIV.BAS.AID.KFW,"International aid disbursed to basic education, KfW to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.6_CMR.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Cameroun (USD million)",sources,Global Partnership for Education,34
+5.2.6_DJI.BAS.AID.IMOA,"International aid disbursed to basic education, IMOA to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.6_ETH.BAS.AID.FIN,"International aid disbursed to basic education, Finland to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.6_GHA.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.6_GIN.BAS.AID.ADPP.KFW,"International aid disbursed to basic education, KfW to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.6_GNB.BAS.AID.PORT,"International aid disbursed to basic education, Portuguese Cooperation to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.6_KHM.BAS.AID.SWE,"International aid disbursed to basic education, Sweden to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.6_LAO.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.6_MDG.BAS.AID.WFP,International aid to basic education executed by WFP in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.6_MRT.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.6_MWI.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.6_NER.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.6_SEN.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Senegal (USD million)",sources,Global Partnership for Education,34
+5.2.6_SLE.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.6_TJK.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.6_TLS.TOT.AID.KOR,"International aid disbursed to total education, South Korea to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.6_VNM.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.6_ZMB.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.7_AFG.BAS.AID.JICA,"International aid disbursed to basic education, JICA to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.7_BFA.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.7_CIV.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.7_ETH.BAS.AID.GIZ,"International aid disbursed to basic education, GIZ/BMZ to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.7_GHA.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Djibouti (USD million)",sources,Global Partnership for Education,34
+5.2.7_GIN.BAS.AID.ADPP.UNICEF,"International aid disbursed to basic education, UNICEF to Guinea (USD million)",sources,Global Partnership for Education,34
+5.2.7_GNB.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF (excluding Japan funds) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.7_KHM.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.7_LAO.BAS.AID.UNESCO,"International aid disbursed to basic education, UNESCO to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.7_MDG.BAS.AID.UNESCO,International aid to basic education executed by UNESCO in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.7_MRT.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Mauritania (USD million)",sources,Global Partnership for Education,34
+5.2.7_MWI.BAS.AID.KFW,"International aid disbursed to basic education, KfW to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.7_NER.BAS.AID.DFID,"International aid disbursed to basic education, DFID to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.7_SLE.BAS.AID.WB,"International aid disbursed to basic education, World Bank (including the Global Partnership for Education) to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.7_TJK.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.7_TLS.TOT.AID.NZL,"International aid disbursed to total education, New Zealand to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.7_VNM.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Vietnam (USD million)",sources,Global Partnership for Education,34
+5.2.7_ZMB.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Zambia (USD million)",sources,Global Partnership for Education,34
+5.2.8_AFG.BAS.AID.NLD,"International aid disbursed to basic education, Netherlands to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.8_BFA.BAS.AID.EC,"International aid disbursed to basic education, European Commission to Burkina Faso (USD million)",sources,Global Partnership for Education,34
+5.2.8_CIV.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Côte d'Ivoire (USD million)",sources,Global Partnership for Education,34
+5.2.8_ETH.BAS.AID.GPE,"International aid disbursed to basic education, GPE Catalytic Fund to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.8_GNB.BAS.AID.JAP,"International aid disbursed to basic education, Japan (via UNICEF) to Guinea Bissau (USD million)",sources,Global Partnership for Education,34
+5.2.8_KHM.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.8_LAO.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.8_MDG.BAS.AID.UNICEF,International aid to basic education executed by UNICEF in Madagascar (USD million),sources,Global Partnership for Education,34
+5.2.8_MWI.BAS.AID.UNICEF,"International aid disbursed to basic education, UNICEF to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.8_NER.BAS.AID.CHE,"International aid disbursed to basic education, Switzerland to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.8_SLE.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Sierra Leone (USD million)",sources,Global Partnership for Education,34
+5.2.8_TJK.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.8_TLS.TOT.AID.CFNZL,"International aid disbursed to total education, ChildFund NZAID and UNICEF to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.9_AFG.BAS.AID.NZL,"International aid disbursed to basic education, New Zealand to Afghanistan (USD million)",sources,Global Partnership for Education,34
+5.2.9_ETH.BAS.AID.ITA,"International aid disbursed to basic education, Italian Cooperation to Ethiopia (USD million)",sources,Global Partnership for Education,34
+5.2.9_KHM.BAS.AID.USAID,"International aid disbursed to basic education, AUSAID to Cambodia (USD million)",sources,Global Partnership for Education,34
+5.2.9_LAO.BAS.AID.WFP,"International aid disbursed to basic education, WFP to Laos (USD million)",sources,Global Partnership for Education,34
+5.2.9_MDG.BAS.AID.GPE,"International aid disbursed to basic education, Global Partnership for Education to Madagascar (USD million)",sources,Global Partnership for Education,34
+5.2.9_MWI.BAS.AID.USAID,"International aid disbursed to basic education, USAID to Malawi (USD million)",sources,Global Partnership for Education,34
+5.2.9_NER.BAS.AID.LUX,"International aid disbursed to basic education, Luxembourg to Niger (USD million)",sources,Global Partnership for Education,34
+5.2.9_TJK.BAS.AID.WB,"International aid disbursed to basic education, World Bank to Tajikistan (USD million)",sources,Global Partnership for Education,34
+5.2.9_TLS.TOT.AID.PRT,"International aid disbursed to total education, Portugal to Timor-Leste (USD million)",sources,Global Partnership for Education,34
+5.2.AMeanIncGr.All,Annualized Mean Income Growth (2009-2014),topics,Economy & Growth,3
+5.2.AMeanIncGr.B40,Annualized Mean Income Growth Bottom 40 Percent (2009-2014),topics,Economy & Growth,3
+5.2_BASIC.EDU.AID,"International aid for basic education, disbursed (up to present year) and scheduled (next years), aggregation of reporting donors (USD million)",sources,Global Partnership for Education,34
+6.0.Conspc,Consumption per capita (2011 $),topics,Economy & Growth,3
+6.0.GDP_current,GDP (current $),topics,Economy & Growth,3
+6.0.GDP_growth,GDP growth (annual %),topics,Economy & Growth,3
+6.0.GDP_usd,GDP (constant 2005 $),topics,Economy & Growth,3
+6.0.GDPpc_constant,"GDP per capita, PPP (constant 2011 international $)",topics,Economy & Growth,3
+6.0.GNIpc,GNI per capita (2011 $),topics,Economy & Growth,3
+6.1_LEG.CA,Coordinating agency of Local Education Group (1=text in notes),sources,Global Partnership for Education,34
+6.1_PRIMARY.ENERGY.INTENSITY,Energy intensity level of primary energy (MJ/$2005 PPP),sources,Sustainable Energy for All,35
+6.2_LEG.OTHER.DONORS,Donor members in Local Education Group (1=text in notes),sources,Global Partnership for Education,34
+6.3_LEG.CSO,Civil society organizations in Local Education Group (1=text in notes),sources,Global Partnership for Education,34
+6.4_LAST.JSR,Date of last Joint Education Sector Review (year=full date in notes),sources,Global Partnership for Education,34
+6.5_NEXT.JSR,Date of next Joint Education Sector Review (year=full date in notes),sources,Global Partnership for Education,34
+7.1.1_ESP.PERIOD.START,Starting year of current Education Sector Plan period (year=full period in notes),sources,Global Partnership for Education,34
+7.1.2_ESP.PERIOD.END,Ending year of current Education Sector Plan period (year=full period in notes),sources,Global Partnership for Education,34
+7.11_CURR.ALLOCATION.MODALITY,Current allocation - Modality (1=text in notes),sources,Global Partnership for Education,34
+7.12_CURR.ALLOCATION.2011.DISB,Current allocation - Total disbursements as of 12/2011 (USD millions),sources,Global Partnership for Education,34
+7.13_CURR.ALLOCATION.DISB,Current allocation - Annual disbursements (USD million),sources,Global Partnership for Education,34
+7.1_CURR.ALLOCATION.SE,Current allocation - Supervising or managing entity (1=text in notes),sources,Global Partnership for Education,34
+7.2_ESP.ENDORSEMENT,Endorsement of Education Sector Plan (year),sources,Global Partnership for Education,34
+7.3_PREV.ALLOCATION.YEAR,Previous allocation - Approval (year),sources,Global Partnership for Education,34
+7.4_PREV.ALLOCATION.AMOUNT,Previous allocation - Amount disbursed (USD million),sources,Global Partnership for Education,34
+7.5_CURR.ALLOCATION.YEAR,Current allocation - Approval (year),sources,Global Partnership for Education,34
+7.6_CURR.ALLOCATION.AMOUNT,Current allocation - Total indicative amount (USD million),sources,Global Partnership for Education,34
+7.7.1_CURR.ALLOCATION.PERIOD.START,Current allocation - Starting year of implementation period (year=full period in notes),sources,Global Partnership for Education,34
+7.7.2_CURR.ALLOCATION.PERIOD.END,Current allocation - Ending year of Implementation period (year=full period in notes),sources,Global Partnership for Education,34
+7.8_CURR.ALLOCATION.SIGNATURE,Current allocation - Signature date (year=full date in notes),sources,Global Partnership for Education,34
+7.9_CURR.ALLOCATION.CLOSURE,Current allocation - Closing date (year=full date in notes),sources,Global Partnership for Education,34
+8.0.LIPI,Labor Income Poverty Index,topics,Poverty,11
+8.1_SCH.LEAVING.EXAMS,"Administration of school leaving exams (yes=1, no=0, see notes if available)",sources,Global Partnership for Education,34
+8.2_INT.TESTS,"Participation in international tests (yes=1, no=0, see notes if available)",sources,Global Partnership for Education,34
+8.3.10_ETH.LEAR.TEST.12.CHE.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, Chemistry, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.10_GEO.LEAR.TEST.9.LANG.LOWEST,"National assessment for learning outcomes in Georgia, grade 9, Language, students in lowest level (%)",sources,Global Partnership for Education,34
+8.3.10_GHA.LEAR.TEST.P6.ENG.ABOV.PROF,"National assessment for learning outcomes in Ghana, P6, English, students above proficient levels (%)",sources,Global Partnership for Education,34
+8.3.10_GIN.PASEC.CM1.FR.MATH.MEAN.BEG,"PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)",sources,Global Partnership for Education,34
+8.3.10_NER.LEAR.TEST.CP.FR.UNDERMIN,"National assessment for learning outcomes in Niger, CP, French, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.11_ETH.LEAR.TEST.12.PHY.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, Physics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.11_GEO.LEAR.TEST.9.MAT.LOWEST,"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in lowest level (%)",sources,Global Partnership for Education,34
+8.3.11_GHA.LEAR.TEST.P3.MAT.ABOV.PROF,"National assessment for learning outcomes in Ghana, P3, Mathematics, students above proficient levels (%)",sources,Global Partnership for Education,34
+8.3.11_GIN.LEAR.TEST.CEPE.MEAN,"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade) (mean score)",sources,Global Partnership for Education,34
+8.3.11_NER.LEAR.TEST.CE2.FR.UNDERMIN,"National assessment for learning outcomes in Niger, CE2, French, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.12_ETH.LEAR.TEST.12.AVR.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, average of all subjects, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.12_GEO.LEAR.TEST.1.ENG.MED,"National assessment for learning outcomes in Georgia, grade 1, English, students in medium level (%)",sources,Global Partnership for Education,34
+8.3.12_GHA.LEAR.TEST.P6.MAT.ABOV.PROF,"National assessment for learning outcomes in Ghana, P6, Mathematics, students above proficient levels (%)",sources,Global Partnership for Education,34
+8.3.12_GIN.LEAR.TEST.BEPC.MEAN,"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade (mean score)",sources,Global Partnership for Education,34
+8.3.12_NER.LEAR.TEST.CM2.FR.UNDERMIN,"National assessment for learning outcomes in Niger, CM2, French, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.13_GEO.LEAR.TEST.9.LANG.MED,"National assessment for learning outcomes in Georgia, grade 9, Language, students in medium level (%)",sources,Global Partnership for Education,34
+8.3.13_GHA.TIMSS.8.MAT.MEAN,"TIMSS in Ghana, grade 8, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.13_GIN.LEAR.TEST.BAC.MEAN,"National assessment at the end of secondary (BAC) in Guinea, Terminale (mean score)",sources,Global Partnership for Education,34
+8.3.13_NER.LEAR.TEST.CP.MATH.MEAN,"National assessment for learning outcomes in Niger, CP, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.14_GEO.LEAR.TEST.9.MAT.MED,"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in medium level (%)",sources,Global Partnership for Education,34
+8.3.14_GHA.TIMSS.8.SCI.MEAN,"TIMSS in Ghana, grade 8, Science (mean score)",sources,Global Partnership for Education,34
+8.3.14_GIN.LEAR.TEST.CEPE.MIN,"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), minimal competency",sources,Global Partnership for Education,34
+8.3.14_NER.LEAR.TEST.CE2.MATH.MEAN,"National assessment for learning outcomes in Niger, CE2, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.15_GEO.LEAR.TEST.1.ENG.HIGH,"National assessment for learning outcomes in Georgia, grade 1, English, students in higher level (%)",sources,Global Partnership for Education,34
+8.3.15_GHA.LITERACY.P3.LETTERS,"Making the Grade Scores in Ghana, P3, Literacy in English, Letters per minute (mean)",sources,Global Partnership for Education,34
+8.3.15_GIN.LEAR.TEST.BEPC.MIN,"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, minimum competency",sources,Global Partnership for Education,34
+8.3.15_NER.LEAR.TEST.CM2.MATH.MEAN,"National assessment for learning outcomes in Niger, CM2, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.16_GEO.LEAR.TEST.9.LANG.HIGH,"National assessment for learning outcomes in Georgia, grade 9, Language, students in higher level (%)",sources,Global Partnership for Education,34
+8.3.16_GHA.LITERACY.P5.LETTERS,"Making the Grade Scores in Ghana, P5, Literacy in English, Letters per minute (mean)",sources,Global Partnership for Education,34
+8.3.16_GIN.LEAR.TEST.BAC.MIN,"National assessment at the end of secondary (BAC) in Guinea, minimal competency",sources,Global Partnership for Education,34
+8.3.16_NER.LEAR.TEST.CP.MATH.OPTIM,"National assessment for learning outcomes in Niger, CP, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.17_GEO.LEAR.TEST.9.MAT.HIGH,"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in higher level (%)",sources,Global Partnership for Education,34
+8.3.17_GHA.LITERACY.P3.WORDS,"Making the Grade Scores in Ghana, P3 Literacy in English, Words per minute (mean)",sources,Global Partnership for Education,34
+8.3.17_GIN.LEAR.TEST.CEPE.OPTIM,"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), optimal competency",sources,Global Partnership for Education,34
+8.3.17_NER.LEAR.TEST.CE2.MATH.OPTIM,"National assessment for learning outcomes in Niger, CE2, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.18_GEO.LEAR.TEST.9.LAG.HIGHEST,"National assessment for learning outcomes in Georgia, grade 9, Language, students in highest level (%)",sources,Global Partnership for Education,34
+8.3.18_GHA.LITERACY.P5.WORDS,"Making the Grade Scores in Ghana, P5, Literacy in English, Words per minute (mean)",sources,Global Partnership for Education,34
+8.3.18_GIN.LEAR.TEST.BEPC.OPTIM,"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, optimal competency",sources,Global Partnership for Education,34
+8.3.18_NER.LEAR.TEST.CM2.MATH.OPTIM,"National assessment for learning outcomes in Niger, CM2, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.19_GEO.LEAR.TEST.9.MAT.HIGHEST,"National assessment for learning outcomes in Georgia, grade 9, Mathematics, students in highest level (%)",sources,Global Partnership for Education,34
+8.3.19_GHA.LITERACY.P3.ZERO,"Making the Grade Scores in Ghana, P3, Literacy in English, Zero score",sources,Global Partnership for Education,34
+8.3.19_GIN.LEAR.TEST.BAC.OPTIM,"National assessment at the end of secondary (BAC) in Guinea, optimal competency",sources,Global Partnership for Education,34
+8.3.19_NER.LEAR.TEST.CP.MATH.MIN,"National assessment for learning outcomes in Niger, CP, Mathematics, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.1_ALB.LEAR.TEST.9.LANG.MEAN,"National assessment for learning outcomes in Albania, grade 9, Language (mean score)",sources,Global Partnership for Education,34
+8.3.1_BFA.PASEC.CP2.FR,"PASEC in Burkina Faso, CP2, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_CAF.BREVET.SUCC,"Brevet des colleges in Central African Republic, success rate (%)",sources,Global Partnership for Education,34
+8.3.1_CIV.LEAR.TEST.PRIM.ALL.MEAN,"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), mean score of all subjects",sources,Global Partnership for Education,34
+8.3.1_CMR.PASEC.25.FRE,"PASEC in Cameroon, grades 2 and 5, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_ETH.LEAR.TEST.10.ENG.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, English, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.1_GEO.PIRLS.4.READ.MEAN,"PIRLS in Georgia, grade 4, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.1_GHA.LEAR.TEST.P3.ENG.ABOV.MEAN,"National assessment for learning outcomes in Ghana, P3, English, students above mean (%)",sources,Global Partnership for Education,34
+8.3.1_GIN.PASEC.CP2.FR.MEAN,"PASEC in Guinea, CP2, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_KGZ.PISA.89.READ1,"PISA in Kyrgyzstan, grades 8-9, Reading - overall (mean score)",sources,Global Partnership for Education,34
+8.3.1_KHM.LEAR.TEST.3.LANG.MEAN,"National assessment for learning outcomes in Cambodia, grade 3, Language (mean score)",sources,Global Partnership for Education,34
+8.3.1_LAO.LEAR.TEST.5.LANG.MEAN,"National assessment for learning outcomes in Laos, grade 5, Language (mean score)",sources,Global Partnership for Education,34
+8.3.1_MDA.LEAR.TEST.4.MEAN,"National assessment for learning outcomes in Moldova, grade 4, mean competency (%)",sources,Global Partnership for Education,34
+8.3.1_MDG.PASEC.CM2.FRE,"PASEC in Madagascar, CM2, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_MOZ.SACMEQ.TEST.6.READ,"SACMEQ in Mozambique, grade 5, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.1_MRT.PASEC.5.FR,"PASEC in Mauritania, grade 5, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_MWI.SACMEQ.357.READ,"SACMEQ in Malawi, standards 3,5,7, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.1_NER.LEAR.TEST.CP.FR.MEAN,"National assessment for learning outcomes in Niger, CP, French (mean score)",sources,Global Partnership for Education,34
+8.3.1_SEN.LEAR.TEST.CE2.MATH.MIN,"National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.1_VNM.LEAR.TEST.5.MAT1,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.1_VNM.LEAR.TEST.5.READ1,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.1_ZMB.LEAR.TEST.5.READ,"National assessment for learning outcomes in Zambia, grade 5, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.20_GHA.LITERACY.P5.ZERO,"Making the Grade Scores in Ghana, P5, Literacy in English, Zero score",sources,Global Partnership for Education,34
+8.3.20_GIN.LEAR.TEST.CEPE.MAX,"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), maximal competency",sources,Global Partnership for Education,34
+8.3.20_NER.LEAR.TEST.CE2.MATH.MIN,"National assessment for learning outcomes in Niger, CE2, Mathematics, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.21_GHA.NUMERACY.P3.ADDITIO,"Making the Grade Scores in Ghana, P3, Numeracy, Correct Additions (%)",sources,Global Partnership for Education,34
+8.3.21_GIN.LEAR.TEST.BEPC.MAX,"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, maximal competency",sources,Global Partnership for Education,34
+8.3.21_NER.LEAR.TEST.CM2.MATH.MIN,"National assessment for learning outcomes in Niger, CM2, Mathematics, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.22_GHA.NUMERACY.P5.ADDITIO,"Making the Grade Scores in Ghana, P5, Numeracy, Correct Additions (%)",sources,Global Partnership for Education,34
+8.3.22_GIN.LEAR.TEST.BAC.MAX,"National assessment at the end of secondary (BAC) in Guinea, maximal competency",sources,Global Partnership for Education,34
+8.3.22_NER.LEAR.TEST.CP.MATH.UNDERMIN,"National assessment for learning outcomes in Niger, CP, Mathematics, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.23_GHA.NUMERACY.P3.MULTIPLI,"Making the Grade Scores in Ghana, P3, Numeracy, Correct Multiplications (%)",sources,Global Partnership for Education,34
+8.3.23_GIN.LEAR.TEST.CEPE.SUCC,"National assessment at the end of primary (CEPE) in Guinea, CM2 (6 grade), success rate (%)",sources,Global Partnership for Education,34
+8.3.23_NER.LEAR.TEST.CE2.MATH.UNDERMIN,"National assessment for learning outcomes in Niger, CE2, Mathematics, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.24_GHA.NUMERACY.P5.MULTIPLI,"Making the Grade Scores in Ghana, P5, Numeracy, Correct Multiplications (%)",sources,Global Partnership for Education,34
+8.3.24_GIN.LEAR.TEST.BEPC.SUCC,"National assessment at the end of lower secondary (BEPC) in Guinea, 10 grade, success rate (%)",sources,Global Partnership for Education,34
+8.3.24_NER.LEAR.TEST.CM2.MATH.UNDERMIN,"National assessment for learning outcomes in Niger, CM2, Mathematics, under minimal competency (%)",sources,Global Partnership for Education,34
+8.3.25_GHA.NUMERACY.P3.ZERO,"Making the Grade Scores in Ghana, P3, Numeracy, Zero score",sources,Global Partnership for Education,34
+8.3.25_GIN.LEAR.TEST.BAC.SUCC,"National assessment at the end of secondary (BAC) in Guinea, success rate (%)",sources,Global Partnership for Education,34
+8.3.25_NER.LEAR.TEST.CERTIFICATE.SUCC,"National assessment for learning outcomes in Niger, end of 1st degree certificate, success rate (%)",sources,Global Partnership for Education,34
+8.3.26_GHA.NUMERACY.P5.ZERO,"Making the Grade Scores in Ghana, P5, Numeracy, Zero score",sources,Global Partnership for Education,34
+8.3.2_ALB.LEAR.TEST.9.MAT.MEAN,"National assessment for learning outcomes in Albania, grade 9, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_BFA.PASEC.CM1.FR,"PASEC in Burkina Faso, CM1, French (mean score)",sources,Global Partnership for Education,34
+8.3.2_CAF.BAC.SUCC,"Baccalaureate in Central African Republic, exam at the end of secondary education, success rate (%)",sources,Global Partnership for Education,34
+8.3.2_CIV.LEAR.TEST.SEC.ALL.MEAN,"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), mean score of all subjects",sources,Global Partnership for Education,34
+8.3.2_CMR.PASEC.25.MAT,"PASEC in Cameroon, grades 2 and 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_ETH.LEAR.TEST.10.MAT.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.2_GEO.TIMSS.4.MAT.MEAN,"TIMSS in Georgia, grade 4, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_GHA.LEAR.TEST.P6.ENG.ABOV.MEAN,"National assessment for learning outcomes in Ghana, P6, English, students above mean (%)",sources,Global Partnership for Education,34
+8.3.2_GIN.PASEC.CP2.MAT.MEAN,"PASEC in Guinea, CP2, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_KGZ.PISA.89.READ2,"PISA in Kyrgyzstan, grades 8-9, Reading - access and retrieve (mean score)",sources,Global Partnership for Education,34
+8.3.2_KHM.LEAR.TEST.3.MAT.MEAN,"National assessment for learning outcomes in Cambodia, grade 3, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_LAO.LEAR.TEST.5.LANG.MIN,"National assessment for learning outcomes in Laos, grade 5, Language (minimal competency)",sources,Global Partnership for Education,34
+8.3.2_MDA.LEAR.TEST.9.MEAN,"National assessment for learning outcomes in Moldova, grade 9, mean competency (%)",sources,Global Partnership for Education,34
+8.3.2_MDG.PASEC.CM2.MAT,"PASEC in Madagascar, CM2, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_MOZ.SACMEQ.TEST.6.MAT,"SACMEQ in Mozambique, grade 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_MRT.PASEC.5.MAT,"PASEC in Mauritania, grade 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_MWI.SACMEQ.357.MAT,"SACMEQ in Malawi, standards 3,5,7, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.2_NER.LEAR.TEST.CE2.FR.MEAN,"National assessment for learning outcomes in Niger, CE2, French (mean score)",sources,Global Partnership for Education,34
+8.3.2_SEN.LEAR.TEST.CE2.FR.MIN,"National assessment for learning outcomes (SNERS) in Senegal, CE2, French, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.2_VNM.LEAR.TEST.5.MAT2,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.2_VNM.LEAR.TEST.5.READ2,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 2, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.2_ZMB.LEAR.TEST.5.MAT,"National assessment for learning outcomes in Zambia, grade 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.3_ALB.PISA.910.READ,"PISA in Albania, grade 9 and 10, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.3_BFA.PASEC.CP2.MAT,"PASEC in Burkina Faso, CP2, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.3_CIV.LEAR.TEST.PRIM.ALL.MIN.COMP,"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), minimal competency (%)",sources,Global Partnership for Education,34
+8.3.3_ETH.LEAR.TEST.10.BIO.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, Biology, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.3_GEO.TIMSS.4.SCI.MEAN,"TIMSS in Georgia, grade 4, Science (mean score)",sources,Global Partnership for Education,34
+8.3.3_GHA.LEAR.TEST.P3.MAT.ABOV.MEAN,"National assessment for learning outcomes in Ghana, P3, Mathematics, students above mean (%)",sources,Global Partnership for Education,34
+8.3.3_GIN.PASEC.CP2.FR.MAT.MEAN,"PASEC in Guinea, CP2, French and Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.3_KGZ.PISA.89.READ3,"PISA in Kyrgyzstan, grades 8-9, Reading - integrate and interpret (mean score)",sources,Global Partnership for Education,34
+8.3.3_KHM.LEAR.TEST.6.LANG.MEAN,"National assessment for learning outcomes in Cambodia, grade 6, Language (mean score)",sources,Global Partnership for Education,34
+8.3.3_LAO.LEAR.TEST.5.LANG.PROF,"National assessment for learning outcomes in Laos, grade 5, Language (proficiency)",sources,Global Partnership for Education,34
+8.3.3_MDA.LEAR.TEST.4.MIN,"National assessment for learning outcomes in Moldova, grade 4, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.3_NER.LEAR.TEST.CM2.FR.MEAN,"National assessment for learning outcomes in Niger, CM2, French (mean score)",sources,Global Partnership for Education,34
+8.3.3_SEN.LEAR.TEST.CE2.MATH.OPT,"National assessment for learning outcomes (SNERS) in Senegal, CE2, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.3_VNM.LEAR.TEST.5.MAT3,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.3_VNM.LEAR.TEST.5.READ3,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 3, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.3_ZMB.SACMEQ.TEST.5.READ,"SACMEQ in Zambia, grade 5, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.4_ALB.PISA.910.MAT,"PISA in Albania, grade 9 and 10, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.4_BFA.PASEC.CM1.MAT,"PASEC in Burkina Faso, CM1, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.4_CIV.LEAR.TEST.SEC.ALL.MIN.COMP,"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), minimal competency (%)",sources,Global Partnership for Education,34
+8.3.4_ETH.LEAR.TEST.10.CHE.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, Chemistry, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.4_GEO.TIMSS.8.MAT.MEAN,"TIMSS in Georgia, grade 8, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.4_GHA.LEAR.TEST.P6.MAT.ABOV.MEAN,"National assessment for learning outcomes in Ghana, P6, Mathematics, students above mean (%)",sources,Global Partnership for Education,34
+8.3.4_GIN.PASEC.CM1.FR.MEAN,"PASEC in Guinea, CM1, French (mean score)",sources,Global Partnership for Education,34
+8.3.4_KGZ.PISA.89.READ4,"PISA in Kyrgyzstan, grades 8-9, Reading - reflect and evaluate (mean score)",sources,Global Partnership for Education,34
+8.3.4_KHM.LEAR.TEST.6.MAT.MEAN,"National assessment for learning outcomes in Cambodia, grade 6, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.4_LAO.LEAR.TEST.5.MAT.MEAN,"National assessment for learning outcomes in Laos, grade 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.4_MDA.LEAR.TEST.9.MIN,"National assessment for learning outcomes in Moldova, grade 9, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.4_NER.LEAR.TEST.CP.FR.OPTIM,"National assessment for learning outcomes in Niger, CP, French, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.4_SEN.LEAR.TEST.CE2.FR.OPT,"National assessment for learning outcomes (SNERS) in Senegal, CE2, French, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.4_VNM.LEAR.TEST.5.MAT4,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.4_VNM.LEAR.TEST.5.READ4,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 4, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.4_ZMB.SACMEQ.TEST.5.MAT,"SACMEQ in Zambia, grade 5, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.5_ALB.PISA.910.SCIENCE,"PISA in Albania, grade 9 and 10, Science (mean score)",sources,Global Partnership for Education,34
+8.3.5_CIV.LEAR.TEST.PRIM.ALL.OPT.COMP,"National assessment for learning outcomes in Côte d'Ivoire, primary (CEPE), optimal competency (%)",sources,Global Partnership for Education,34
+8.3.5_ETH.LEAR.TEST.10.PHY.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, Physics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.5_GEO.TIMSS.8.SCI.MEAN,"TIMSS in Georgia, grade 8, Science (mean score)",sources,Global Partnership for Education,34
+8.3.5_GHA.LEAR.TEST.P3.ENG.ABOV.MIN,"National assessment for learning outcomes in Ghana, P3, English, students above minimal competency (%)",sources,Global Partnership for Education,34
+8.3.5_GIN.PASEC.CM1.MAT.MEAN,"PASEC in Guinea, CM1, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.5_KGZ.PISA.89.READ5,"PISA in Kyrgyzstan, grades 8-9, Reading - continuous texts (mean score)",sources,Global Partnership for Education,34
+8.3.5_KHM.LEAR.TEST.9.LANG.MEAN,"National assessment for learning outcomes in Cambodia, grade 9, Language (mean score)",sources,Global Partnership for Education,34
+8.3.5_LAO.LEAR.TEST.5.MAT.MIN,"National assessment for learning outcomes in Laos, grade 5, Mathematics (minimal competency)",sources,Global Partnership for Education,34
+8.3.5_MDA.LEAR.TEST.4.PROF,"National assessment for learning outcomes in Moldova, grade 4, proficient competency (%)",sources,Global Partnership for Education,34
+8.3.5_NER.LEAR.TEST.CE2.FR.OPTIM,"National assessment for learning outcomes in Niger, CE2, French, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.5_SEN.PASEC.CM1.MATH.MEAN,"PASEC in Senegal, CM1, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.5_VNM.LEAR.TEST.5.MAT5,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.5_VNM.LEAR.TEST.5.READ5,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 5, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.6_CIV.LEAR.TEST.SEC.ALL.OPT.COMP,"National assessment for learning outcomes in Côte d'Ivoire, lower secondary (BEPC), optimal competency (%)",sources,Global Partnership for Education,34
+8.3.6_ETH.LEAR.TEST.10.AVR.OPT,"National assessment for learning outcomes in Ethiopia, grade 10, average of all subjects, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.6_GEO.PISA.9.READ.MEAN,"PISA in Georgia, grade 9, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.6_GHA.LEAR.TEST.P6.ENG.ABOV.MIN,"National assessment for learning outcomes in Ghana, P6, English, students above minimum competency (%)",sources,Global Partnership for Education,34
+8.3.6_GIN.PASEC.CM1.FR.MAT.MEAN,"PASEC in Guinea, CM1, French and Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.6_KGZ.PISA.89.READ6,"PISA in Kyrgyzstan, grades 8-9, Reading - non-continuous texts (mean score)",sources,Global Partnership for Education,34
+8.3.6_KHM.LEAR.TEST.9.MAT.MEAN,"National assessment for learning outcomes in Cambodia, grade 9, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.6_LAO.LEAR.TEST.5.MAT.PROF,"National assessment for learning outcomes in Laos, grade 5, Mathematics (proficiency)",sources,Global Partnership for Education,34
+8.3.6_MDA.LEAR.TEST.9.PROF,"National assessment for learning outcomes in Moldova, grade 9, proficient competency (%)",sources,Global Partnership for Education,34
+8.3.6_NER.LEAR.TEST.CM2.FR.OPTIM,"National assessment for learning outcomes in Niger, CM2, French, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.6_SEN.PASEC.CM1.FR.MEAN,"PASEC in Senegal, CM1, French (mean score)",sources,Global Partnership for Education,34
+8.3.6_VNM.LEAR.TEST.5.MAT6,"National assessment for learning outcomes in Vietnam, grade 5, Mathematics - Level 1, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.6_VNM.LEAR.TEST.5.READ6,"National assessment for learning outcomes in Vietnam, grade 5, Reading - Level 6, scores in indicated level (%)",sources,Global Partnership for Education,34
+8.3.7_CIV.PASEC.PRI.FRE.MAT,"PASEC in Côte d'Ivoire, CP2 and CM1, French and Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.7_ETH.LEAR.TEST.12.ENG.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, English, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.7_GEO.PISA.9.MAT.MEAN,"PISA in Georgia, grade 9, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.7_GHA.LEAR.TEST.P3.MAT.ABOV.MIN,"National assessment for learning outcomes in Ghana, P3, Mathematics, students above minimal competency (%)",sources,Global Partnership for Education,34
+8.3.7_GIN.PASEC.CP2.FR.MATH.MEAN.END,"PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)",sources,Global Partnership for Education,34
+8.3.7_KGZ.PISA.89.READ7,"PISA in Kyrgyzstan, grades 8-9, Reading - mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.7_LAO.LEAR.TEST.5.WORLD.MEAN,"National assessment for learning outcomes in Laos, grade 5, world around us (mean score)",sources,Global Partnership for Education,34
+8.3.7_MDA.PIRLS.READ.4.MEAN,"PIRLS in Moldova, grade 4, Reading (mean score)",sources,Global Partnership for Education,34
+8.3.7_NER.LEAR.TEST.CP.FR.MIN,"National assessment for learning outcomes in Niger, CP, French, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.7_SEN.PASEC.MATH.MEAN,"PASEC in Senegal, Mathematics, (mean score)",sources,Global Partnership for Education,34
+8.3.8_ETH.LEAR.TEST.12.MAT.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, Mathematics, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.8_GEO.PISA.9.SCI.MEAN,"PISA in Georgia, grade 9, Science (mean score)",sources,Global Partnership for Education,34
+8.3.8_GHA.LEAR.TEST.P6.MAT.ABOV.MIN,"National assessment for learning outcomes in Ghana, P6, Mathematics, students above minimal competency (%)",sources,Global Partnership for Education,34
+8.3.8_GIN.PASEC.CM1.FR.MATH.MEAN.END,"PASEC in Guinea, CM1, French and Mathematics, mean score at the end of year (%)",sources,Global Partnership for Education,34
+8.3.8_KGZ.PISA.89.READ8,"PISA in Kyrgyzstan, grades 8-9, Reading - science (mean score)",sources,Global Partnership for Education,34
+8.3.8_LAO.LEAR.TEST.5.WORLD.MIN,"National assessment for learning outcomes in Laos, grade 5, world around us (minimal competency)",sources,Global Partnership for Education,34
+8.3.8_MDA.TIMSS.MAT.MEAN,"TIMSS in Moldova, Mathematics (mean score)",sources,Global Partnership for Education,34
+8.3.8_NER.LEAR.TEST.CE2.FR.MIN,"National assessment for learning outcomes in Niger, CE2, French, minimal competency (%)",sources,Global Partnership for Education,34
+8.3.8_SEN.PASEC.FR.MEAN,"PASEC in Senegal, French (mean score)",sources,Global Partnership for Education,34
+8.3.9_ETH.LEAR.TEST.12.BIO.OPT,"National assessment for learning outcomes in Ethiopia, grade 12, Biology, optimal competency (%)",sources,Global Partnership for Education,34
+8.3.9_GEO.LEAR.TEST.1.ENG.LOWEST,"National assessment for learning outcomes in Georgia, grade 1, English, students in lowest level (%)",sources,Global Partnership for Education,34
+8.3.9_GHA.LEAR.TEST.P3.ENG.ABOV.PROF,"National assessment for learning outcomes in Ghana, P3, English, students above proficient levels (%)",sources,Global Partnership for Education,34
+8.3.9_GIN.PASEC.CP2.FR.MATH.MEAN.BEG,"PASEC in Guinea, CP2, French and Mathematics, mean score at the end of year (%)",sources,Global Partnership for Education,34
+8.3.9_LAO.LEAR.TEST.5.WORLD.PROF,"National assessment for learning outcomes in Laos, grade 5, world around us (proficiency)",sources,Global Partnership for Education,34
+8.3.9_MDA.TIMSS.SCIEN.MEAN,"TIMSS in Moldova, Science (mean score)",sources,Global Partnership for Education,34
+8.3.9_NER.LEAR.TEST.CM2.FR.MIN,"National assessment for learning outcomes in Niger, CM2, French, minimal competency (%)",sources,Global Partnership for Education,34
+8.3_NATIONAL.ASSESSMENTS,"Realization of national assessments (yes=1, no=0, see notes if available)",sources,Global Partnership for Education,34
+8.4_ORAL.READING.TEST,"Administration of oral reading fluency tests (yes=1, no=0, see notes if available)",sources,Global Partnership for Education,34
+9.0.Employee.All,Employees (%),topics,Social Protection & Labor,10
+9.0.Employee.B40,Employees-Bottom 40 Percent (%),topics,Social Protection & Labor,10
+9.0.Employee.T60,Employees-Top 60 Percent (%),topics,Social Protection & Labor,10
+9.0.Employer.All,Employers (%),topics,Social Protection & Labor,10
+9.0.Employer.B40,Employers-Bottom 40 Percent (%),topics,Social Protection & Labor,10
+9.0.Employer.T60,Employers-Top 60 Percent (%),topics,Social Protection & Labor,10
+9.0.Labor.All,Labor Force Participation Rate (%),topics,Social Protection & Labor,10
+9.0.Labor.B40,Labor Force Participation Rate (%)-Bottom 40 Percent,topics,Economy & Growth,3
+9.0.Labor.T60,Labor Force Participation Rate (%)-Top 60 Percent,topics,Economy & Growth,3
+9.0.SelfEmp.All,Self-Employed (%),topics,Social Protection & Labor,10
+9.0.SelfEmp.B40,Self-Employed-Bottom 40 Percent (%),topics,Social Protection & Labor,10
+9.0.SelfEmp.T60,Self-Employed-Top 60 Percent (%),topics,Social Protection & Labor,10
+9.0.Unemp.All,Unemployed (%),topics,Social Protection & Labor,10
+9.0.Unemp.B40,Unemployed-Bottom 40 Percent (%),topics,Social Protection & Labor,10
+9.0.Unemp.T60,Unemployed-Top 60 Percent (%),topics,Social Protection & Labor,10
+9.0.Unpaid.All,Unpaid Workers (%),topics,Social Protection & Labor,10
+9.0.Unpaid.B40,Unpaid Workers-Bottom 40 Percent (%),topics,Social Protection & Labor,10
+9.0.Unpaid.T60,Unpaid Workers-Top 60 Percent (%),topics,Social Protection & Labor,10
+9.1.Employee.All,"Employees (%), Male",topics,Social Protection & Labor,10
+9.1.Employee.B40,"Employees-Bottom 40 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Employee.T60,"Employees-Top 60 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Employer.All,"Employers (%), Male",topics,Social Protection & Labor,10
+9.1.Employer.B40,"Employers-Bottom 40 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Employer.T60,"Employers-Top 60 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Labor.All,"Labor Force Participation Rate (%), Male",topics,Social Protection & Labor,10
+9.1.Labor.B40,"Labor Force Participation Rate (%)-Bottom 40 Percent, Male",topics,Economy & Growth,3
+9.1.Labor.T60,"Labor Force Participation Rate (%)-Top 60 Percent, Male",topics,Economy & Growth,3
+9.1.SelfEmp.All,"Self-Employed (%), Male",topics,Social Protection & Labor,10
+9.1.SelfEmp.B40,"Self-Employed-Bottom 40 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.SelfEmp.T60,"Self-Employed-Top 60 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Unemp.All,"Unemployed (%), Male",topics,Social Protection & Labor,10
+9.1.Unemp.B40,"Unemployed-Bottom 40 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Unemp.T60,"Unemployed-Top 60 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Unpaid.All,"Unpaid Workers (%), Male",topics,Social Protection & Labor,10
+9.1.Unpaid.B40,"Unpaid Workers-Bottom 40 Percent (%), Male",topics,Social Protection & Labor,10
+9.1.Unpaid.T60,"Unpaid Workers-Top 60 Percent (%), Male",topics,Social Protection & Labor,10
+9.1_AID.ALIGNMENT,Alignment of aid to education (% of total international aid to education),sources,Global Partnership for Education,34
+9.2.Employee.All,"Employees (%), Female",topics,Social Protection & Labor,10
+9.2.Employee.B40,"Employees-Bottom 40 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Employee.T60,"Employees-Top 60 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Employer.All,"Employers (%), Female",topics,Social Protection & Labor,10
+9.2.Employer.B40,"Employers-Bottom 40 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Employer.T60,"Employers-Top 60 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Labor.All,"Labor Force Participation Rate (%), Female",topics,Social Protection & Labor,10
+9.2.Labor.B40,"Labor Force Participation Rate (%)-Bottom 40 Percent, Female",topics,Economy & Growth,3
+9.2.Labor.T60,"Labor Force Participation Rate (%)-Top 60 Percent, Female",topics,Economy & Growth,3
+9.2.SelfEmp.All,"Self-Employed (%), Female",topics,Social Protection & Labor,10
+9.2.SelfEmp.B40,"Self-Employed-Bottom 40 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.SelfEmp.T60,"Self-Employed-Top 60 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Unemp.All,"Unemployed (%), Female",topics,Social Protection & Labor,10
+9.2.Unemp.B40,"Unemployed-Bottom 40 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Unemp.T60,"Unemployed-Top 60 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Unpaid.All,"Unpaid Workers (%), Female",topics,Social Protection & Labor,10
+9.2.Unpaid.B40,"Unpaid Workers-Bottom 40 Percent (%), Female",topics,Social Protection & Labor,10
+9.2.Unpaid.T60,"Unpaid Workers-Top 60 Percent (%), Female",topics,Social Protection & Labor,10
+9.2_COORDINATED.TECH.COOP,Coordinated technical cooperation (% of total cooperation to education),sources,Global Partnership for Education,34
+9.3_PFM.COUNTRY.SYSTEMS,Use of public financial management country systems (% of total international aid to education),sources,Global Partnership for Education,34
+9.4_PROCUREMENT.COUNTRY.SYSTEMS,Use of procurement country systems (% of total international aid to education),sources,Global Partnership for Education,34
+9.5_PIU,"Number of parallel implementation units, education sector",sources,Global Partnership for Education,34
+9.6_PBA,Aid provided through program based approaches (% of international aid to education),sources,Global Partnership for Education,34
+9020000,9020000:ACTUAL INDIVIDUAL CONSUMPTION,sources,International Comparison Program (ICP) 2011,62
+9060000,"9060000:ACTUAL HOUSING, WATER, ELECTRICITY, GAS AND OTHER FUELS",sources,International Comparison Program (ICP) 2011,62
+9080000,9080000:ACTUAL HEALTH,sources,International Comparison Program (ICP) 2011,62
+9110000,9110000:ACTUAL RECREATION AND CULTURE,sources,International Comparison Program (ICP) 2011,62
+9120000,9120000:ACTUAL EDUCATION,sources,International Comparison Program (ICP) 2011,62
+9140000,9140000:ACTUAL MISCELLANEOUS GOODS AND SERVICES,sources,International Comparison Program (ICP) 2011,62
+9250000,9250000:DOMESTIC ABSORPTION,sources,International Comparison Program (ICP) 2011,62
+9260000,9260000:INDIVIDUAL CONSUMPTION EXPENDITURE BY HOUSEHOLDS WITHOUT HOUSING,sources,International Comparison Program (ICP) 2011,62
+A1,001.Number of Exporters,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A10i,026.Export Value per Incumbent: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A10ii,027.Export Value per Incumbent: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A10iii,028.Export Value per Incumbent: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A10iv,029.Export Value per Incumbent: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A10v,030.Export Value per Incumbent: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A11i,031.Growth of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A11ii,032.Growth of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A11iii,033.Growth of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A11iv,034.Growth of Incumbents: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A11v,035.Growth of Incumbents: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A12i,036.Growth of Surviving Entrants: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A12ii,037.Growth of Surviving Entrants: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A12iii,038.Growth of Surviving Entrants: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A12iv,039.Growth of Surviving Entrants: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A12v,040.Growth of Surviving Entrants: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A2,002.Number of Entrants,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A3,003.Number of Exiters,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A4,004.Number of Surviving Entrants,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A5,005.Number of Incumbents,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A6i,006.Export Value per Exporter: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A6ii,007.Export Value per Exporter: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A6iii,008.Export Value per Exporter: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A6iv,009.Export Value per Exporter: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A6v,010.Export Value per Exporter: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A7i,011.Export Value per Entrant: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A7ii,012.Export Value per Entrant: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A7iii,013.Export Value per Entrant: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A7iv,014.Export Value per Entrant: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A7v,015.Export Value per Entrant: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A8i,016.Export Value per Exiter: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A8ii,017.Export Value per Exiter: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A8iii,018.Export Value per Exiter: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A8iv,019.Export Value per Exiter: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A8v,020.Export Value per Exiter: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A9i,021.Export Value per Surviving Entrant: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A9ii,022.Export Value per Surviving Entrant: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A9iii,023.Export Value per Surviving Entrant: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A9iv,024.Export Value per Surviving Entrant: First Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+A9v,025.Export Value per Surviving Entrant: Third Quartile,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+AED.PRIM.MATH,EDSTATS: Adjusted Primary Math Score,sources,Education Statistics,12
+AED.PRIM.MEAN,EDSTATS: Average Adjusted Primary Test Score,sources,Education Statistics,12
+AED.PRIM.READ,EDSTATS: Adjusted Primary Reading Score,sources,Education Statistics,12
+AED.PRIM.SCNC,EDSTATS: Adjusted Primary Science Score,sources,Education Statistics,12
+AED.PRSC.MEAN,EDSTATS: Average Adjusted Test Score,sources,Education Statistics,12
+AED.SECO.MATH,EDSTATS: Adjusted Secondary Math Score,sources,Education Statistics,12
+AED.SECO.MEAN,EDSTATS: Average Adjusted Secondary Test Score,sources,Education Statistics,12
+AED.SECO.READ,EDSTATS: Adjusted Secondary Reading Score,sources,Education Statistics,12
+AED.SECO.SCNC,EDSTATS: Adjusted Secondary Science Score,sources,Education Statistics,12
+AG.AGR.TRAC.NO,"Agricultural machinery, tractors",topics,Agriculture & Rural Development,1
+AG.AID.CREL.MT,"Cereal food aid deliveries (FAO, tonnes)",sources,Africa Development Indicators,11
+AG.AID.FOOD.MT,"Total food (cereals and non-cereal) food aid deliveries (FAO, tonnes)",sources,Africa Development Indicators,11
+AG.AID.NCREL.MT,"Non-cereal food aid deliveries (FAO, tonnes)",sources,Africa Development Indicators,11
+AG.CON.FERT.MT,Fertilizer consumption (metric tons),sources,WDI Database Archives,57
+AG.CON.FERT.PT.ZS,Fertilizer consumption (% of fertilizer production),topics,Agriculture & Rural Development,1
+AG.CON.FERT.ZS,Fertilizer consumption (kilograms per hectare of arable land),topics,Agriculture & Rural Development,1
+AG.CON.PEST.MT,Pesticide consumption (metric tons),sources,WDI Database Archives,57
+AG.CRP.BLY.CD,"Producer Price for Barley (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.BLY.CN,"Producer Price for Barley (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.FNO.CD,"Producer Price for Fonio (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.FNO.CN,"Producer Price for Fonio (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.MLT.CD,"Producer Price for Millet (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.MLT.CN,"Producer Price for Millet (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.MZE.CD,"Producer Price for Maize (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.MZE.CN,"Producer Price for Maize (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.RICE.CD,"Producer Price for Rice, paddy (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.RICE.CN,"Producer Price for Rice, paddy (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.SGM.CD,"Producer Price for Sorghum (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.SGM.CN,"Producer Price for Sorghum (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.CRP.WHT.CD,"Producer Price for Wheat (per tonne, current US$)",sources,Africa Development Indicators,11
+AG.CRP.WHT.CN,"Producer Price for Wheat (per tonne, current LCU)",sources,Africa Development Indicators,11
+AG.FRST.PROD.CHAR,Wood charcoal production quantity (tonnes),sources,Africa Development Indicators,11
+AG.FRST.PROD.WOOD,"Wood fuel production quantity (CUM, solid volume units)",sources,Africa Development Indicators,11
+AG.IMP.CREL.MT,Cereal imports (metric tons),sources,WDI Database Archives,57
+AG.LND.AGRI.HA,Agricultural land (hectares),sources,Africa Development Indicators,11
+AG.LND.AGRI.K2,Agricultural land (sq. km),topics,Agriculture & Rural Development,1
+AG.LND.AGRI.ZS,Agricultural land (% of land area),topics,Agriculture & Rural Development,1
+AG.LND.ARBL.HA,Arable land (hectares),topics,Agriculture & Rural Development,1
+AG.LND.ARBL.HA.PC,Arable land (hectares per person),topics,Agriculture & Rural Development,1
+AG.LND.ARBL.ZS,Arable land (% of land area),topics,Agriculture & Rural Development,1
+AG.LND.BLY.HA,Land under barley production (hectares),sources,Africa Development Indicators,11
+AG.LND.CERE.ZS,Cereal cropland (% of land area),sources,Africa Development Indicators,11
+AG.LND.CREL.HA,Land under cereal production (hectares),topics,Agriculture & Rural Development,1
+AG.LND.CROP.HA,Permanent cropland (hectares),sources,Africa Development Indicators,11
+AG.LND.CROP.ZS,Permanent cropland (% of land area),topics,Agriculture & Rural Development,1
+AG.LND.CRPA.HA,Arable and permanent cropland (hectares),sources,Africa Development Indicators,11
+AG.LND.EL5M.RU.K2,Rural land area where elevation is below 5 meters (sq. km),topics,Agriculture & Rural Development,1
+AG.LND.EL5M.RU.ZS,Rural land area where elevation is below 5 meters (% of total land area),topics,Agriculture & Rural Development,1
+AG.LND.EL5M.UR.K2,Urban land area where elevation is below 5 meters (sq. km),topics,Environment,6
+AG.LND.EL5M.UR.ZS,Urban land area where elevation is below 5 meters (% of total land area),topics,Environment,6
+AG.LND.EL5M.ZS,Land area where elevation is below 5 meters (% of total land area),topics,Environment,6
+AG.LND.FNO.HA,Land under fonio production (hectares),sources,Africa Development Indicators,11
+AG.LND.FRLS.HA,Tree Cover Loss (hectares),sources,"Environment, Social and Governance (ESG) Data",75
+AG.LND.FRST.HA,Forest area (hectares),sources,Africa Development Indicators,11
+AG.LND.FRST.K2,Forest area (sq. km),topics,Agriculture & Rural Development,1
+AG.LND.FRST.ZS,Forest area (% of land area),topics,Agriculture & Rural Development,1
+AG.LND.IRIG.AG.ZS,Agricultural irrigated land (% of total agricultural land),topics,Agriculture & Rural Development,1
+AG.LND.IRIG.HA,"Land use, irrigated land (hectares)",sources,WDI Database Archives,57
+AG.LND.IRIG.HA.AG,Agricultural area irrigated (ha),sources,Africa Development Indicators,11
+AG.LND.IRIG.PO.HA,Land area equipped for irrigation (hectares),sources,Africa Development Indicators,11
+AG.LND.IRIG.ZS,Irrigated land (% of cropland),sources,WDI Database Archives,57
+AG.LND.MLT.HA,Land under millet production (hectares),sources,Africa Development Indicators,11
+AG.LND.MZE.HA,Land under maize production (hectares),sources,Africa Development Indicators,11
+AG.LND.OTHR.ZS,"Land use, other (% of land area)",sources,WDI Database Archives,57
+AG.LND.POP.ZS,Arable land (hectares per person),sources,WDI Database Archives,57
+AG.LND.PPAS.ZS,Permanent pasture (% of land area),sources,WDI Database Archives,57
+AG.LND.PRCP.MM,Average precipitation in depth (mm per year),topics,Agriculture & Rural Development,1
+AG.LND.RICE.HA,Land under rice production (hectares),sources,Africa Development Indicators,11
+AG.LND.SGM.HA,Land under sorghum production (hectares),sources,Africa Development Indicators,11
+AG.LND.TOTL.HA,Land area (hectares),sources,Africa Development Indicators,11
+AG.LND.TOTL.K2,Land area (sq. km),topics,Agriculture & Rural Development,1
+AG.LND.TOTL.RU.K2,Rural land area (sq. km),topics,Agriculture & Rural Development,1
+AG.LND.TOTL.UR.K2,Urban land area (sq. km),topics,Environment,6
+AG.LND.TRAC.ZS,"Agricultural machinery, tractors per 100 sq. km of arable land",topics,Agriculture & Rural Development,1
+AG.LND.WHT.HA,Land under wheat production (hectares),sources,Africa Development Indicators,11
+AG.PRD.AGRI.XD,Agriculture production index (1999-2001 = 100),sources,Africa Development Indicators,11
+AG.PRD.BLY.MT,Barley production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.CREL.MT,Cereal production (metric tons),topics,Agriculture & Rural Development,1
+AG.PRD.CREL.XD,Cereal production index (1999-2001 = 100),sources,Africa Development Indicators,11
+AG.PRD.CROP.XD,Crop production index (2014-2016 = 100),topics,Agriculture & Rural Development,1
+AG.PRD.FNO.MT,Fonio production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.FOOD.XD,Food production index (2014-2016 = 100),topics,Agriculture & Rural Development,1
+AG.PRD.GAGRI.XD,"Agriculture production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.GCREL.XD,"Cereal production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.GCROP.XD,"Crop production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.GFOOD.XD,"Food production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.GLVSK.XD,"Livestock production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.GNFOOD.XD,"Non-food production index (gross, 1999-2001 = 100)",sources,Africa Development Indicators,11
+AG.PRD.LVSK.XD,Livestock production index (2014-2016 = 100),topics,Agriculture & Rural Development,1
+AG.PRD.MLT.MT,Millet production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.MZE.MT,Maize production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.NFOOD.XD,Gross non-food production index (1999-2001 = 100),sources,Africa Development Indicators,11
+AG.PRD.RICE.MT,Rice production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.RTTB.MT,Roots and tubers production (metric tons),sources,WDI Database Archives,57
+AG.PRD.SGM.MT,Sorghum production (metric tons),sources,Africa Development Indicators,11
+AG.PRD.WHT.MT,Wheat production (metric tons),sources,Africa Development Indicators,11
+AG.SED.BLY.MT,"Barley seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.CREL.MT,"Cereal seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.FNO.MT,"Fonio seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.MLT.MT,"Millet seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.MZE.MT,"Maize seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.RICE.MT,"Rice seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.SGM.MT,"Sorghum seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SED.WHT.MT,"Wheat seed quantity (FAO, metric tonnes)",sources,Africa Development Indicators,11
+AG.SRF.TOTL.HA,Surface area (ha),sources,Africa Development Indicators,11
+AG.SRF.TOTL.K2,Surface area (sq. km),topics,Agriculture & Rural Development,1
+AG.TRC.EMPL.ZS,"Agricultural machinery, tractors per agricultural worker",sources,WDI Database Archives,57
+AG.USE.PEST.ZS,Pesticide consumption (kg per hectare),sources,WDI Database Archives,57
+AG.YLD.BLY.KG,Barley yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.CREL.KG,Cereal yield (kg per hectare),topics,Agriculture & Rural Development,1
+AG.YLD.FNO.KG,Fonio yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.MLT.KG,Millet yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.MZE.KG,Maize yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.RICE.KG,Rice yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.SGM.KG,Sorghum yield (kg per hectare),sources,Africa Development Indicators,11
+AG.YLD.WHT.KG,Wheat yield (kg per hectare),sources,Africa Development Indicators,11
+B1,041.Herfindahl-Hirschman Index,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B2i,042.Share of top 1% Exporters in TEV (Total Export Value),sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B2ii,043.Share of top 5% Exporters in TEV (Total Export Value),sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B2iii,044.Share of top 25% Exporters in TEV (Total Export Value),sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B3i,045.Number of HS6 Products per Exporter: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B3ii,046.Number of HS6 Products per Exporter: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B3iii,047.Number of HS6 Products per Exporter: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B4i,048.Number of Destinations per Exporter: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B4ii,049.Number of Destinations per Exporter: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B4iii,050.Number of Destinations per Exporter: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B5i,051.Number of Exporters per HS6 Product: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B5ii,052.Number of Exporters per HS6 Product: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B5iii,053.Number of Exporters per HS6 Product: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B6i,054.Number of Exporters per Destination: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B6ii,055.Number of Exporters per Destination: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+B6iii,056.Number of Exporters per Destination: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+BAR.NOED.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with no education,topics,Education,4
+BAR.NOED.1519.ZS,Barro-Lee: Percentage of population age 15-19 with no education,topics,Education,4
+BAR.NOED.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with no education,topics,Education,4
+BAR.NOED.15UP.ZS,Barro-Lee: Percentage of population age 15+ with no education,topics,Education,4
+BAR.NOED.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with no education,topics,Education,4
+BAR.NOED.2024.ZS,Barro-Lee: Percentage of population age 20-24 with no education,topics,Education,4
+BAR.NOED.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with no education,topics,Education,4
+BAR.NOED.2529.ZS,Barro-Lee: Percentage of population age 25-29 with no education,topics,Education,4
+BAR.NOED.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with no education,topics,Education,4
+BAR.NOED.25UP.ZS,Barro-Lee: Percentage of population age 25+ with no education,topics,Education,4
+BAR.NOED.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with no education,topics,Education,4
+BAR.NOED.3034.ZS,Barro-Lee: Percentage of population age 30-34 with no education,topics,Education,4
+BAR.NOED.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with no education,topics,Education,4
+BAR.NOED.3539.ZS,Barro-Lee: Percentage of population age 35-39 with no education,topics,Education,4
+BAR.NOED.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with no education,topics,Education,4
+BAR.NOED.4044.ZS,Barro-Lee: Percentage of population age 40-44 with no education,topics,Education,4
+BAR.NOED.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with no education,topics,Education,4
+BAR.NOED.4549.ZS,Barro-Lee: Percentage of population age 45-49 with no education,topics,Education,4
+BAR.NOED.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with no education,topics,Education,4
+BAR.NOED.5054.ZS,Barro-Lee: Percentage of population age 50-54 with no education,topics,Education,4
+BAR.NOED.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with no education,topics,Education,4
+BAR.NOED.5559.ZS,Barro-Lee: Percentage of population age 55-59 with no education,topics,Education,4
+BAR.NOED.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with no education,topics,Education,4
+BAR.NOED.6064.ZS,Barro-Lee: Percentage of population age 60-64 with no education,topics,Education,4
+BAR.NOED.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with no education,sources,Education Statistics,12
+BAR.NOED.6569.ZS,Barro-Lee: Percentage of population age 65-69 with no education,sources,Education Statistics,12
+BAR.NOED.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with no education,sources,Education Statistics,12
+BAR.NOED.7074.ZS,Barro-Lee: Percentage of population age 70-74 with no education,sources,Education Statistics,12
+BAR.NOED.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with no education,sources,Education Statistics,12
+BAR.NOED.75UP.ZS,Barro-Lee: Percentage of population age 75+ with no education,sources,Education Statistics,12
+BAR.POP.1519,"Barro-Lee: Population in thousands, age 15-19, total",topics,Education,4
+BAR.POP.1519.FE,"Barro-Lee: Population in thousands, age 15-19, female",topics,Education,4
+BAR.POP.15UP,"Barro-Lee: Population in thousands, age 15+, total",topics,Education,4
+BAR.POP.15UP.FE,"Barro-Lee: Population in thousands, age 15+, female",topics,Education,4
+BAR.POP.2024,"Barro-Lee: Population in thousands, age 20-24, total",topics,Education,4
+BAR.POP.2024.FE,"Barro-Lee: Population in thousands, age 20-24, female",topics,Education,4
+BAR.POP.2529,"Barro-Lee: Population in thousands, age 25-29, total",topics,Education,4
+BAR.POP.2529.FE,"Barro-Lee: Population in thousands, age 25-29, female",topics,Education,4
+BAR.POP.25UP,"Barro-Lee: Population in thousands, age 25+, total",topics,Education,4
+BAR.POP.25UP.FE,"Barro-Lee: Population in thousands, age 25+, female",topics,Education,4
+BAR.POP.3034,"Barro-Lee: Population in thousands, age 30-34, total",topics,Education,4
+BAR.POP.3034.FE,"Barro-Lee: Population in thousands, age 30-34, female",topics,Education,4
+BAR.POP.3539,"Barro-Lee: Population in thousands, age 35-39, total",topics,Education,4
+BAR.POP.3539.FE,"Barro-Lee: Population in thousands, age 35-39, female",topics,Education,4
+BAR.POP.4044,"Barro-Lee: Population in thousands, age 40-44, total",topics,Education,4
+BAR.POP.4044.FE,"Barro-Lee: Population in thousands, age 40-44, female",topics,Education,4
+BAR.POP.4549,"Barro-Lee: Population in thousands, age 45-49, total",topics,Education,4
+BAR.POP.4549.FE,"Barro-Lee: Population in thousands, age 45-49, female",topics,Education,4
+BAR.POP.5054,"Barro-Lee: Population in thousands, age 50-54, total",topics,Education,4
+BAR.POP.5054.FE,"Barro-Lee: Population in thousands, age 50-54, female",topics,Education,4
+BAR.POP.5559,"Barro-Lee: Population in thousands, age 55-59, total",topics,Education,4
+BAR.POP.5559.FE,"Barro-Lee: Population in thousands, age 55-59, female",topics,Education,4
+BAR.POP.6064,"Barro-Lee: Population in thousands, age 60-64, total",topics,Education,4
+BAR.POP.6064.FE,"Barro-Lee: Population in thousands, age 60-64, female",topics,Education,4
+BAR.POP.6569,"Barro-Lee: Population in thousands, age 65-69, total",sources,Education Statistics,12
+BAR.POP.6569.FE,"Barro-Lee: Population in thousands, age 65-69, female",sources,Education Statistics,12
+BAR.POP.7074,"Barro-Lee: Population in thousands, age 70-74, total",sources,Education Statistics,12
+BAR.POP.7074.FE,"Barro-Lee: Population in thousands, age 70-74, female",sources,Education Statistics,12
+BAR.POP.75UP,"Barro-Lee: Population in thousands, age 75+, total",sources,Education Statistics,12
+BAR.POP.75UP.FE,"Barro-Lee: Population in thousands, age 75+, female",sources,Education Statistics,12
+BAR.PRM.CMPT.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.1519.ZS,Barro-Lee: Percentage of population age 15-19 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.15UP.ZS,Barro-Lee: Percentage of population age 15+ with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.2024.ZS,Barro-Lee: Percentage of population age 20-24 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.2529.ZS,Barro-Lee: Percentage of population age 25-29 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.25UP.ZS,Barro-Lee: Percentage of population age 25+ with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.3034.ZS,Barro-Lee: Percentage of population age 30-34 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.3539.ZS,Barro-Lee: Percentage of population age 35-39 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.4044.ZS,Barro-Lee: Percentage of population age 40-44 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.4549.ZS,Barro-Lee: Percentage of population age 45-49 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.5054.ZS,Barro-Lee: Percentage of population age 50-54 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.5559.ZS,Barro-Lee: Percentage of population age 55-59 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.6064.ZS,Barro-Lee: Percentage of population age 60-64 with primary schooling. Completed Primary,topics,Education,4
+BAR.PRM.CMPT.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.CMPT.6569.ZS,Barro-Lee: Percentage of population age 65-69 with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.CMPT.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.CMPT.7074.ZS,Barro-Lee: Percentage of population age 70-74 with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.CMPT.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.CMPT.75UP.ZS,Barro-Lee: Percentage of population age 75+ with primary schooling. Completed Primary,sources,Education Statistics,12
+BAR.PRM.ICMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.15UP.ZS,Barro-Lee: Percentage of population age 15+ with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.25UP.ZS,Barro-Lee: Percentage of population age 25+ with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with primary schooling. Total (Incomplete and Completed Primary),topics,Education,4
+BAR.PRM.ICMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.ICMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.ICMP.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.ICMP.7074.ZS,Barro-Lee: Percentage of population age 70-74 with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.ICMP.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.ICMP.75UP.ZS,Barro-Lee: Percentage of population age 75+ with primary schooling. Total (Incomplete and Completed Primary),sources,Education Statistics,12
+BAR.PRM.SCHL.1519,"Barro-Lee: Average years of primary schooling, age 15-19, total",topics,Education,4
+BAR.PRM.SCHL.1519.FE,"Barro-Lee: Average years of primary schooling, age 15-19, female",topics,Education,4
+BAR.PRM.SCHL.15UP,"Barro-Lee: Average years of primary schooling, age 15+, total",topics,Education,4
+BAR.PRM.SCHL.15UP.FE,"Barro-Lee: Average years of primary schooling, age 15+, female",topics,Education,4
+BAR.PRM.SCHL.2024,"Barro-Lee: Average years of primary schooling, age 20-24, total",topics,Education,4
+BAR.PRM.SCHL.2024.FE,"Barro-Lee: Average years of primary schooling, age 20-24, female",topics,Education,4
+BAR.PRM.SCHL.2529,"Barro-Lee: Average years of primary schooling, age 25-29, total",topics,Education,4
+BAR.PRM.SCHL.2529.FE,"Barro-Lee: Average years of primary schooling, age 25-29, female",topics,Education,4
+BAR.PRM.SCHL.25UP,"Barro-Lee: Average years of primary schooling, age 25+, total",topics,Education,4
+BAR.PRM.SCHL.25UP.FE,"Barro-Lee: Average years of primary schooling, age 25+, female",topics,Education,4
+BAR.PRM.SCHL.3034,"Barro-Lee: Average years of primary schooling, age 30-34, total",topics,Education,4
+BAR.PRM.SCHL.3034.FE,"Barro-Lee: Average years of primary schooling, age 30-34, female",topics,Education,4
+BAR.PRM.SCHL.3539,"Barro-Lee: Average years of primary schooling, age 35-39, total",topics,Education,4
+BAR.PRM.SCHL.3539.FE,"Barro-Lee: Average years of primary schooling, age 35-39, female",topics,Education,4
+BAR.PRM.SCHL.4044,"Barro-Lee: Average years of primary schooling, age 40-44, total",topics,Education,4
+BAR.PRM.SCHL.4044.FE,"Barro-Lee: Average years of primary schooling, age 40-44, female",topics,Education,4
+BAR.PRM.SCHL.4549,"Barro-Lee: Average years of primary schooling, age 45-49, total",topics,Education,4
+BAR.PRM.SCHL.4549.FE,"Barro-Lee: Average years of primary schooling, age 45-49, female",topics,Education,4
+BAR.PRM.SCHL.5054,"Barro-Lee: Average years of primary schooling, age 50-54, total",topics,Education,4
+BAR.PRM.SCHL.5054.FE,"Barro-Lee: Average years of primary schooling, age 50-54, female",topics,Education,4
+BAR.PRM.SCHL.5559,"Barro-Lee: Average years of primary schooling, age 55-59, total",topics,Education,4
+BAR.PRM.SCHL.5559.FE,"Barro-Lee: Average years of primary schooling, age 55-59, female",topics,Education,4
+BAR.PRM.SCHL.6064,"Barro-Lee: Average years of primary schooling, age 60-64, total",topics,Education,4
+BAR.PRM.SCHL.6064.FE,"Barro-Lee: Average years of primary schooling, age 60-64, female",topics,Education,4
+BAR.PRM.SCHL.6569,"Barro-Lee: Average years of primary schooling, age 65-69, total",sources,Education Statistics,12
+BAR.PRM.SCHL.6569.FE,"Barro-Lee: Average years of primary schooling, age 65-69, female",sources,Education Statistics,12
+BAR.PRM.SCHL.7074,"Barro-Lee: Average years of primary schooling, age 70-74, total",sources,Education Statistics,12
+BAR.PRM.SCHL.7074.FE,"Barro-Lee: Average years of primary schooling, age 70-74, female",sources,Education Statistics,12
+BAR.PRM.SCHL.75UP,"Barro-Lee: Average years of primary schooling, age 75+, total",sources,Education Statistics,12
+BAR.PRM.SCHL.75UP.FE,"Barro-Lee: Average years of primary schooling, age 75+, female",sources,Education Statistics,12
+BAR.PRM.UCMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with primary schooling. Incomplete primary,sources,Education Statistics,12
+BAR.PRM.UCMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with primary schooling. Incomplete primary,sources,Education Statistics,12
+BAR.PRM.UCMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with primary schooling. Incomplete Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with primary schooling. Incomplete Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.PRM.UCMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with primary schooling. Incompleted Primary,sources,Education Statistics,12
+BAR.SCHL.1519,"Barro-Lee: Average years of total schooling, age 15-19, total",topics,Education,4
+BAR.SCHL.1519.FE,"Barro-Lee: Average years of total schooling, age 15-19, female",topics,Education,4
+BAR.SCHL.15UP,"Barro-Lee: Average years of total schooling, age 15+, total",topics,Education,4
+BAR.SCHL.15UP.FE,"Barro-Lee: Average years of total schooling, age 15+, female",topics,Education,4
+BAR.SCHL.2024,"Barro-Lee: Average years of total schooling, age 20-24, total",topics,Education,4
+BAR.SCHL.2024.FE,"Barro-Lee: Average years of total schooling, age 20-24, female",topics,Education,4
+BAR.SCHL.2529,"Barro-Lee: Average years of total schooling, age 25-29, total",topics,Education,4
+BAR.SCHL.2529.FE,"Barro-Lee: Average years of total schooling, age 25-29, female",topics,Education,4
+BAR.SCHL.25UP,"Barro-Lee: Average years of total schooling, age 25+, total",topics,Education,4
+BAR.SCHL.25UP.FE,"Barro-Lee: Average years of total schooling, age 25+, female",topics,Education,4
+BAR.SCHL.3034,"Barro-Lee: Average years of total schooling, age 30-34, total",topics,Education,4
+BAR.SCHL.3034.FE,"Barro-Lee: Average years of total schooling, age 30-34, female",topics,Education,4
+BAR.SCHL.3539,"Barro-Lee: Average years of total schooling, age 35-39, total",topics,Education,4
+BAR.SCHL.3539.FE,"Barro-Lee: Average years of total schooling, age 35-39, female",topics,Education,4
+BAR.SCHL.4044,"Barro-Lee: Average years of total schooling, age 40-44, total",topics,Education,4
+BAR.SCHL.4044.FE,"Barro-Lee: Average years of total schooling, age 40-44, female",topics,Education,4
+BAR.SCHL.4549,"Barro-Lee: Average years of total schooling, age 45-49, total",topics,Education,4
+BAR.SCHL.4549.FE,"Barro-Lee: Average years of total schooling, age 45-49, female",topics,Education,4
+BAR.SCHL.5054,"Barro-Lee: Average years of total schooling, age 50-54, total",topics,Education,4
+BAR.SCHL.5054.FE,"Barro-Lee: Average years of total schooling, age 50-54, female",topics,Education,4
+BAR.SCHL.5559,"Barro-Lee: Average years of total schooling, age 55-59, total",topics,Education,4
+BAR.SCHL.5559.FE,"Barro-Lee: Average years of total schooling, age 55-59, female",topics,Education,4
+BAR.SCHL.6064,"Barro-Lee: Average years of total schooling, age 60-64, total",topics,Education,4
+BAR.SCHL.6064.FE,"Barro-Lee: Average years of total schooling, age 60-64, female",topics,Education,4
+BAR.SCHL.6569,"Barro-Lee: Average years of total schooling, age 65-69, total",sources,Education Statistics,12
+BAR.SCHL.6569.FE,"Barro-Lee: Average years of total schooling, age 65-69, female",sources,Education Statistics,12
+BAR.SCHL.7074,"Barro-Lee: Average years of total schooling, age 70-74, total",sources,Education Statistics,12
+BAR.SCHL.7074.FE,"Barro-Lee: Average years of total schooling, age 70-74, female",sources,Education Statistics,12
+BAR.SCHL.75UP,"Barro-Lee: Average years of total schooling, age 75+, total",sources,Education Statistics,12
+BAR.SCHL.75UP.FE,"Barro-Lee: Average years of total schooling, age 75+, female",sources,Education Statistics,12
+BAR.SEC.CMPT.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.1519.ZS,Barro-Lee: Percentage of population age 15-19 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.15UP.ZS,Barro-Lee: Percentage of population age 15+ with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.2024.ZS,Barro-Lee: Percentage of population age 20-24 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.2529.ZS,Barro-Lee: Percentage of population age 25-29 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.25UP.ZS,Barro-Lee: Percentage of population age 25+ with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.3034.ZS,Barro-Lee: Percentage of population age 30-34 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.3539.ZS,Barro-Lee: Percentage of population age 35-39 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.4044.ZS,Barro-Lee: Percentage of population age 40-44 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.4549.ZS,Barro-Lee: Percentage of population age 45-49 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.5054.ZS,Barro-Lee: Percentage of population age 50-54 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.5559.ZS,Barro-Lee: Percentage of population age 55-59 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.6064.ZS,Barro-Lee: Percentage of population age 60-64 with secondary schooling. Completed Secondary,topics,Education,4
+BAR.SEC.CMPT.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.CMPT.6569.ZS,Barro-Lee: Percentage of population age 65-69 with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.CMPT.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.CMPT.7074.ZS,Barro-Lee: Percentage of population age 70-74 with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.CMPT.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.CMPT.75UP.ZS,Barro-Lee: Percentage of population age 75+ with secondary schooling. Completed Secondary,sources,Education Statistics,12
+BAR.SEC.ICMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.15UP.ZS,Barro-Lee: Percentage of population age 15+ with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.25UP.ZS,Barro-Lee: Percentage of population age 25+ with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with secondary schooling. Total (Incomplete and Completed Secondary),topics,Education,4
+BAR.SEC.ICMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.ICMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.ICMP.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.ICMP.7074.ZS,Barro-Lee: Percentage of population age 70-74 with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.ICMP.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.ICMP.75UP.ZS,Barro-Lee: Percentage of population age 75+ with secondary schooling. Total (Incomplete and Completed Secondary),sources,Education Statistics,12
+BAR.SEC.SCHL.1519,"Barro-Lee: Average years of secondary schooling, age 15-19, total",topics,Education,4
+BAR.SEC.SCHL.1519.FE,"Barro-Lee: Average years of secondary schooling, age 15-19, female",topics,Education,4
+BAR.SEC.SCHL.15UP,"Barro-Lee: Average years of secondary schooling, age 15+, total",topics,Education,4
+BAR.SEC.SCHL.15UP.FE,"Barro-Lee: Average years of secondary schooling, age 15+, female",topics,Education,4
+BAR.SEC.SCHL.2024,"Barro-Lee: Average years of secondary schooling, age 20-24, total",topics,Education,4
+BAR.SEC.SCHL.2024.FE,"Barro-Lee: Average years of secondary schooling, age 20-24, female",topics,Education,4
+BAR.SEC.SCHL.2529,"Barro-Lee: Average years of secondary schooling, age 25-29, total",topics,Education,4
+BAR.SEC.SCHL.2529.FE,"Barro-Lee: Average years of secondary schooling, age 25-29, female",topics,Education,4
+BAR.SEC.SCHL.25UP,"Barro-Lee: Average years of secondary schooling, age 25+, total",topics,Education,4
+BAR.SEC.SCHL.25UP.FE,"Barro-Lee: Average years of secondary schooling, age 25+, female",topics,Education,4
+BAR.SEC.SCHL.3034,"Barro-Lee: Average years of secondary schooling, age 30-34, total",topics,Education,4
+BAR.SEC.SCHL.3034.FE,"Barro-Lee: Average years of secondary schooling, age 30-34, female",topics,Education,4
+BAR.SEC.SCHL.3539,"Barro-Lee: Average years of secondary schooling, age 35-39, total",topics,Education,4
+BAR.SEC.SCHL.3539.FE,"Barro-Lee: Average years of secondary schooling, age 35-39, female",topics,Education,4
+BAR.SEC.SCHL.4044,"Barro-Lee: Average years of secondary schooling, age 40-44, total",topics,Education,4
+BAR.SEC.SCHL.4044.FE,"Barro-Lee: Average years of secondary schooling, age 40-44, female",topics,Education,4
+BAR.SEC.SCHL.4549,"Barro-Lee: Average years of secondary schooling, age 45-49, total",topics,Education,4
+BAR.SEC.SCHL.4549.FE,"Barro-Lee: Average years of secondary schooling, age 45-49, female",topics,Education,4
+BAR.SEC.SCHL.5054,"Barro-Lee: Average years of secondary schooling, age 50-54, total",topics,Education,4
+BAR.SEC.SCHL.5054.FE,"Barro-Lee: Average years of secondary schooling, age 50-54, female",topics,Education,4
+BAR.SEC.SCHL.5559,"Barro-Lee: Average years of secondary schooling, age 55-59, total",topics,Education,4
+BAR.SEC.SCHL.5559.FE,"Barro-Lee: Average years of secondary schooling, age 55-59, female",topics,Education,4
+BAR.SEC.SCHL.6064,"Barro-Lee: Average years of secondary schooling, age 60-64, total",topics,Education,4
+BAR.SEC.SCHL.6064.FE,"Barro-Lee: Average years of secondary schooling, age 60-64, female",topics,Education,4
+BAR.SEC.SCHL.6569,"Barro-Lee: Average years of secondary schooling, age 65-69, total",sources,Education Statistics,12
+BAR.SEC.SCHL.6569.FE,"Barro-Lee: Average years of secondary schooling, age 65-69, female",sources,Education Statistics,12
+BAR.SEC.SCHL.7074,"Barro-Lee: Average years of secondary schooling, age 70-74, total",sources,Education Statistics,12
+BAR.SEC.SCHL.7074.FE,"Barro-Lee: Average years of secondary schooling, age 70-74, female",sources,Education Statistics,12
+BAR.SEC.SCHL.75UP,"Barro-Lee: Average years of secondary schooling, age 75+, total",sources,Education Statistics,12
+BAR.SEC.SCHL.75UP.FE,"Barro-Lee: Average years of secondary schooling, age 75+, female",sources,Education Statistics,12
+BAR.SEC.UCMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.SEC.UCMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with secondary schooling. Incompleted Secondary,sources,Education Statistics,12
+BAR.TER.CMPT.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.1519.ZS,Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.15UP.ZS,Barro-Lee: Percentage of population age 15+ with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.2024.ZS,Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.2529.ZS,Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.25UP.ZS,Barro-Lee: Percentage of population age 25+ with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.3034.ZS,Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.3539.ZS,Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.4044.ZS,Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.4549.ZS,Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.5054.ZS,Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.5559.ZS,Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.6064.ZS,Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Completed Tertiary,topics,Education,4
+BAR.TER.CMPT.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.CMPT.6569.ZS,Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.CMPT.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.CMPT.7074.ZS,Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.CMPT.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.CMPT.75UP.ZS,Barro-Lee: Percentage of population age 75+ with tertiary schooling. Completed Tertiary,sources,Education Statistics,12
+BAR.TER.ICMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.15UP.FE.ZS,Barro-Lee: Percentage of female population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.15UP.ZS,Barro-Lee: Percentage of population age 15+ with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.25UP.FE.ZS,Barro-Lee: Percentage of female population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.25UP.ZS,Barro-Lee: Percentage of population age 25+ with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Total (Incomplete and Completed Tertiary),topics,Education,4
+BAR.TER.ICMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.ICMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.ICMP.7074.FE.ZS,Barro-Lee: Percentage of female population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.ICMP.7074.ZS,Barro-Lee: Percentage of population age 70-74 with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.ICMP.75UP.FE.ZS,Barro-Lee: Percentage of female population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.ICMP.75UP.ZS,Barro-Lee: Percentage of population age 75+ with tertiary schooling. Total (Incomplete and Completed Tertiary),sources,Education Statistics,12
+BAR.TER.SCHL.1519,"Barro-Lee: Average years of tertiary schooling, age 15-19, total",topics,Education,4
+BAR.TER.SCHL.1519.FE,"Barro-Lee: Average years of tertiary schooling, age 15-19, female",topics,Education,4
+BAR.TER.SCHL.15UP,"Barro-Lee: Average years of tertiary schooling, age 15+, total",topics,Education,4
+BAR.TER.SCHL.15UP.FE,"Barro-Lee: Average years of tertiary schooling, age 15+, female",topics,Education,4
+BAR.TER.SCHL.2024,"Barro-Lee: Average years of tertiary schooling, age 20-24, total",topics,Education,4
+BAR.TER.SCHL.2024.FE,"Barro-Lee: Average years of tertiary schooling, age 20-24, female",topics,Education,4
+BAR.TER.SCHL.2529,"Barro-Lee: Average years of tertiary schooling, age 25-29, total",topics,Education,4
+BAR.TER.SCHL.2529.FE,"Barro-Lee: Average years of tertiary schooling, age 25-29, female",topics,Education,4
+BAR.TER.SCHL.25UP,"Barro-Lee: Average years of tertiary schooling, age 25+, total",topics,Education,4
+BAR.TER.SCHL.25UP.FE,"Barro-Lee: Average years of tertiary schooling, age 25+, female",topics,Education,4
+BAR.TER.SCHL.3034,"Barro-Lee: Average years of tertiary schooling, age 30-34, total",topics,Education,4
+BAR.TER.SCHL.3034.FE,"Barro-Lee: Average years of tertiary schooling, age 30-34, female",topics,Education,4
+BAR.TER.SCHL.3539,"Barro-Lee: Average years of tertiary schooling, age 35-39, total",topics,Education,4
+BAR.TER.SCHL.3539.FE,"Barro-Lee: Average years of tertiary schooling, age 35-39, female",topics,Education,4
+BAR.TER.SCHL.4044,"Barro-Lee: Average years of tertiary schooling, age 40-44, total",topics,Education,4
+BAR.TER.SCHL.4044.FE,"Barro-Lee: Average years of tertiary schooling, age 40-44, female",topics,Education,4
+BAR.TER.SCHL.4549,"Barro-Lee: Average years of tertiary schooling, age 45-49, total",topics,Education,4
+BAR.TER.SCHL.4549.FE,"Barro-Lee: Average years of tertiary schooling, age 45-49, female",topics,Education,4
+BAR.TER.SCHL.5054,"Barro-Lee: Average years of tertiary schooling, age 50-54, total",topics,Education,4
+BAR.TER.SCHL.5054.FE,"Barro-Lee: Average years of tertiary schooling, age 50-54, female",topics,Education,4
+BAR.TER.SCHL.5559,"Barro-Lee: Average years of tertiary schooling, age 55-59, total",topics,Education,4
+BAR.TER.SCHL.5559.FE,"Barro-Lee: Average years of tertiary schooling, age 55-59, female",topics,Education,4
+BAR.TER.SCHL.6064,"Barro-Lee: Average years of tertiary schooling, age 60-64, total",topics,Education,4
+BAR.TER.SCHL.6064.FE,"Barro-Lee: Average years of tertiary schooling, age 60-64, female",topics,Education,4
+BAR.TER.SCHL.6569,"Barro-Lee: Average years of tertiary schooling, age 65-69, total",sources,Education Statistics,12
+BAR.TER.SCHL.6569.FE,"Barro-Lee: Average years of tertiary schooling, age 65-69, female",sources,Education Statistics,12
+BAR.TER.SCHL.7074,"Barro-Lee: Average years of tertiary schooling, age 70-74, total",sources,Education Statistics,12
+BAR.TER.SCHL.7074.FE,"Barro-Lee: Average years of tertiary schooling, age 70-74, female",sources,Education Statistics,12
+BAR.TER.SCHL.75UP,"Barro-Lee: Average years of tertiary schooling, age 75+, total",sources,Education Statistics,12
+BAR.TER.SCHL.75UP.FE,"Barro-Lee: Average years of tertiary schooling, age 75+, female",sources,Education Statistics,12
+BAR.TER.UCMP.1519.FE.ZS,Barro-Lee: Percentage of female population age 15-19 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.1519.ZS,Barro-Lee: Percentage of population age 15-19 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.2024.FE.ZS,Barro-Lee: Percentage of female population age 20-24 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.2024.ZS,Barro-Lee: Percentage of population age 20-24 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.2529.FE.ZS,Barro-Lee: Percentage of female population age 25-29 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.2529.ZS,Barro-Lee: Percentage of population age 25-29 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.3034.FE.ZS,Barro-Lee: Percentage of female population age 30-34 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.3034.ZS,Barro-Lee: Percentage of population age 30-34 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.3539.FE.ZS,Barro-Lee: Percentage of female population age 35-39 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.3539.ZS,Barro-Lee: Percentage of population age 35-39 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.4044.FE.ZS,Barro-Lee: Percentage of female population age 40-44 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.4044.ZS,Barro-Lee: Percentage of population age 40-44 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.4549.FE.ZS,Barro-Lee: Percentage of female population age 45-49 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.4549.ZS,Barro-Lee: Percentage of population age 45-49 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.5054.FE.ZS,Barro-Lee: Percentage of female population age 50-54 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.5054.ZS,Barro-Lee: Percentage of population age 50-54 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.5559.FE.ZS,Barro-Lee: Percentage of female population age 55-59 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.5559.ZS,Barro-Lee: Percentage of population age 55-59 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.6064.FE.ZS,Barro-Lee: Percentage of female population age 60-64 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.6064.ZS,Barro-Lee: Percentage of population age 60-64 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.6569.FE.ZS,Barro-Lee: Percentage of female population age 65-69 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BAR.TER.UCMP.6569.ZS,Barro-Lee: Percentage of population age 65-69 with tertiary schooling. Incompleted Tertiary,sources,Education Statistics,12
+BG.GSR.NFSV.GD.ZS,Trade in services (% of GDP),topics,Economy & Growth,3
+BG.KAC.FNEI.GD.PP.ZS,"Gross private capital flows (% of GDP, PPP)",sources,WDI Database Archives,57
+BG.KAC.FNEI.GD.ZS,Gross private capital flows (% of GDP),sources,WDI Database Archives,57
+BG.KLT.DINV.GD.PP.ZS,"Gross foreign direct investment (% of GDP, PPP)",sources,WDI Database Archives,57
+BG.KLT.DINV.GD.ZS,Gross foreign direct investment (% of GDP),sources,WDI Database Archives,57
+BI.EMP.FRML.CA.PB.ZS,"Core Public Administration workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.ED.PB.ZS,"Education workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.HE.PB.ZS,"Health workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.MW.PB.ZS,"Medical workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.ED.ZS,"Public sector employment, as a share of formal employment, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.HE.ZS,"Public sector employment, as a share of formal employment, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.MW.ZS,"Public sector employment, as a share of formal employment, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.PA.ZS,"Public Administration workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.PS.ZS,"Public Safety workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.TS.ZS,"Public sector employment, as a share of formal employment, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.PB.ZS,"Public sector employment, as a share of formal employment",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.SS.PB.ZS,"Social Security workers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.FRML.TS.PB.ZS,"Teachers, as a share of public formal employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.CK.ZS,"Public sector female employment, as a share of paid employment by occupational group: Clerks",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.ED.ZS,"Public sector female employment, as a share of paid employment by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.EO.ZS,"Public sector female employment, as a share of paid employment by occupational group: Elementary workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.HE.ZS,"Public sector female employment, as a share of paid employment by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.MW.ZS,"Public sector female employment, as a share of paid employment by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.PN.ZS,"Public sector female employment, as a share of paid employment by occupational group: Professionals",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.SN.ZS,"Public sector female employment, as a share of paid employment by occupational group: Manager",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.TN.ZS,"Public sector female employment, as a share of paid employment by occupational group: Technicians",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PUBS.FE.TS.ZS,"Public sector female employment, as a share of paid employment by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.CA.PB.ZS,"Core Public Administration workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.ED.PB.ZS,"Education workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.HE.PB.ZS,"Health workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.MW.PB.ZS,"Medical workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.CK.ZS,"Public sector employment, as a share of paid employment, by occupational group: Clerks",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.ED.ZS,"Public sector employment, as a share of paid employment, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.EO.ZS,"Public sector employment, as a share of paid employment, by occupational group: Elementary workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.FE.ZS,"Public sector employment, as a share of paid employment by gender: Female",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.HE.ZS,"Public sector employment, as a share of paid employment, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.MA.ZS,"Public sector employment, as a share of paid employment by gender: Male",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.MW.ZS,"Public sector employment, as a share of paid employment, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.PA.ZS,"Public Administration workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.PN.ZS,"Public sector employment, as a share of paid employment, by occupational group: Professionals",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.PS.ZS,"Public Safety workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.RU.ZS,"Public sector employment, as a share of paid employment by location: Rural",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.SN.ZS,"Public sector employment, as a share of paid employment, by occupational group: Manager",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.TN.ZS,"Public sector employment, as a share of paid employment, by occupational group: Technicians",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.TS.ZS,"Public sector employment, as a share of paid employment, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.UR.ZS,"Public sector employment, as a share of paid employment by location: Urban",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.PB.ZS,"Public sector employment, as a share of paid employment",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.SS.PB.ZS,"Social Security workers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.PWRK.TS.PB.ZS,"Teachers, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.CA.PB.ZS,"Core Public Administration workers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.ED.PB.ZS,"Education workers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.HE.PB.ZS,"Health workers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.MW.PB.ZS,"Medical workers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO,Number of employed individuals,sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.CA,"Number of employed employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.ED,"Number of employed employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.HE,"Number of employed employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.MW,"Number of employed employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.PA,"Number of employed employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.PS,"Number of employed employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.SS,"Number of employed employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.NO.TS,"Number of employed employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.CK.ZS,"Public sector employment, as a share of total employment, by occupational group: Clerks",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.ED.ZS,"Public sector employment, as a share of total employment, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.EO.ZS,"Public sector employment, as a share of total employment, by occupationa group: Elementary workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.FE.ZS,"Public sector employment, as a share of total employment by gender: Female",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.HE.ZS,"Public sector employment, as a share of total employment, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.MA.ZS,"Public sector employment, as a share of total employment by gender: Male",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.MW.ZS,"Public sector employment, as a share of total employment, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.PA.ZS,"Public Administration workers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.PN.ZS,"Public sector employment, as a share of total employment, by occupational group: Professionals",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.PS.ZS,"Public Safety workers, as a share of total public employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.RU.ZS,"Public sector employment, as a share of total employment by location: Rural",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.SN.ZS,"Public sector employment, as a share of total employment, by occupational group: Manager",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.TN.ZS,"Public sector employment, as a share of total employment, by occupational group: Technicians",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.TS.ZS,"Public sector employment, as a share of total employment, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.TT.ZS,Proportion of total employees with tertiary education working in public sector,sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.UR.ZS,"Public sector employment, as a share of total employment by location: Urban",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.PB.ZS,"Public sector employment, as a share of total employment",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.SS.PB.ZS,"Social Security workers, as a share of total public employees",sources,Worldwide Bureaucracy Indicators,64
+BI.EMP.TOTL.TS.PB.ZS,"Teachers, as a share of public total employees",sources,Worldwide Bureaucracy Indicators,64
+BI.POP.TOTL.CV,Sample size,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.CA.MD,"Median age of public paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.CA.SM,"Mean age of public paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.ED.MD,"Median age of public paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.ED.SM,"Mean age of public paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.HE.MD,"Median age of public paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.HE.SM,"Mean age of public paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.MD,Median age of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.MW.MD,"Median age of public paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.MW.SM,"Mean age of public paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.PA.MD,"Median age of public paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.PA.SM,"Mean age of public paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.PS.MD,"Median age of public paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.PS.SM,"Mean age of public paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.SM,Mean age of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.SS.MD,"Median age of public paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.SS.SM,"Mean age of public paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.TS.MD,"Median age of public paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PB.TS.SM,"Mean age of public paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.ED.MD,"Median age of private paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.ED.SM,"Mean age of private paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.HE.MD,"Median age of private paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.HE.SM,"Mean age of private paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.MD,Median age of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.MW.MD,"Median age of private paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.MW.SM,"Mean age of private paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.SM,Mean age of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.TS.MD,"Median age of private paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.AGES.PV.TS.SM,"Mean age of private paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.GE.MD,"Cross-country public sector pay comparison ratio, by occupation: Government economist (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.GE.SM,"Cross-country public sector pay comparison ratio, by occupation: Government economist (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.HD.MD,"Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.HD.SM,"Cross-country public sector pay comparison ratio, by occupation: Hospital doctor (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.HN.MD,"Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.HN.SM,"Cross-country public sector pay comparison ratio, by occupation: Hospital nurse (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.JU.MD,"Cross-country public sector pay comparison ratio, by occupation: Judge (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.JU.SM,"Cross-country public sector pay comparison ratio, by occupation: Judge (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.PO.MD,"Cross-country public sector pay comparison ratio, by occupation: Police officer (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.PO.SM,"Cross-country public sector pay comparison ratio, by occupation: Police officer (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.PT.MD,"Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.PT.SM,"Cross-country public sector pay comparison ratio, by occupation: Primary school teacher (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.SN.MD,"Cross-country public sector pay comparison ratio, by occupation: Senior official (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.SN.SM,"Cross-country public sector pay comparison ratio, by occupation: Senior official (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.ST.MD,"Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.ST.SM,"Cross-country public sector pay comparison ratio, by occupation: Secondary school teacher (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.UT.MD,"Cross-country public sector pay comparison ratio, by occupation: University teacher (using median)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.CMPA.UT.SM,"Cross-country public sector pay comparison ratio, by occupation: University teacher (using mean)",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.CK.FE.ZS,"Females, as a share of private paid employees by occupational group: Clerks",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.CT.ZS,Share of private paid employees with a contract,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.EO.FE.ZS,"Females, as a share of private paid employees by occupational group: Elementary occupation",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.Q1.ZS,"Females, as a share of private paid employees by wage quintile: Quintile 1",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.Q2.ZS,"Females, as a share of private paid employees by wage quintile: Quintile 2",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.Q3.ZS,"Females, as a share of private paid employees by wage quintile: Quintile 3",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.Q4.ZS,"Females, as a share of private paid employees by wage quintile: Quintile 4",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.Q5.ZS,"Females, as a share of private paid employees by wage quintile: Quintile 5",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.FE.ZS,"Females, as a share of private paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.HS.ZS,Share of private paid employees with health insurance,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.NN.ZS,Individuals with no education as a share of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.PN.FE.ZS,"Females, as a share of private paid employees by occupational group: Professionals",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.PR.ZS,Individuals with primary education as a share of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.RU.ZS,"Rural residents, as a share of private paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.SG.ZS,Individuals with secondary education as a share of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.SN.FE.ZS,"Females, as a share of private paid employees by occupational group: Managers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.SY.ZS,Share of private paid employees with social security,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TN.FE.ZS,"Females, as a share of private paid employees by occupational group: Technicians",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TT.ED.ZS,"Individuals with tertiary education as a share of private paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TT.HE.ZS,"Individuals with tertiary education as a share of private paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TT.MW.ZS,"Individuals with tertiary Education as a share of private paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TT.TS.ZS,"Individuals with tertiary Education as a share of private paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.TT.ZS,Individuals with tertiary education as a share of private paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PRVS.UM.ZS,Share of private paid employees with union membership,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.CA.FE.ZS,"Females, as a share of public paid employees by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.CK.FE.ZS,"Females, as a share of public paid employees by occupational group: Clerks",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.CT.ZS,Share of public paid employees with a contract,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.ED.FE.ZS,"Females, as a share of public paid employees by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.EO.FE.ZS,"Females, as a share of public paid employees by occupational group: Elementary occupation",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.Q1.ZS,"Females, as a share of public paid employees by wage quintile: Quintile 1",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.Q2.ZS,"Females, as a share of public paid employees by wage quintile: Quintile 2",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.Q3.ZS,"Females, as a share of public paid employees by wage quintile: Quintile 3",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.Q4.ZS,"Females, as a share of public paid employees by wage quintile: Quintile 4",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.Q5.ZS,"Females, as a share of public paid employees by wage quintile: Quintile 5",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.FE.ZS,"Females, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.HE.FE.ZS,"Females, as a share of public paid employees by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.HS.ZS,Share of public paid employees with health insurance,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.MW.FE.ZS,"Females, as a share of public paid employees by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NN.ZS,Individuals with no education as a share of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO,Number of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.CA,"Number of public paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.ED,"Number of public paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.HE,"Number of public paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.MW,"Number of public paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.PA,"Number of public paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.PS,"Number of public paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.SS,"Number of public paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.NO.TS,"Number of public paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.PA.FE.ZS,"Females, as a share of public paid employees by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.PN.FE.ZS,"Females, as a share of public paid employees by occupational group: Professionals",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.PR.ZS,Individuals with primary education as a share of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.PS.FE.ZS,"Females, as a share of public paid employees by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.CA.ZS,"Rural residents, as a share of public paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.ED.ZS,"Rural residents, as a share of public paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.HE.ZS,"Rural residents, as a share of public paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.MW.ZS,"Rural residents, as a share of public paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.PA.ZS,"Rural residents, as a share of public paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.PS.ZS,"Rural residents, as a share of public paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.SS.ZS,"Rural residents, as a share of public paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.TS.ZS,"Rural residents, as a share of public paid employees, by industry: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.RU.ZS,"Rural residents, as a share of public paid employees",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.SG.ZS,Individuals with secondary education as a share of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.SN.FE.ZS,"Females, as a share of public paid employees by occupational group: Managers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.SS.FE.ZS,"Females, as a share of public paid employees by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.SY.ZS,Share of public paid employees with social security,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TN.FE.ZS,"Females, as a share of public paid employees by occupational group: Technicians",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TS.FE.ZS,"Females, as a share of public paid employees by industry: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.CA.ZS,"Individuals with tertiary Education as a share of public paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.ED.ZS,"Individuals with tertiary education as a share of public paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.HE.ZS,"Individuals with tertiary education as a share of public paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.MW.ZS,"Individuals with tertiary Education as a share of public paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.PA.ZS,"Individuals with tertiary education as a share of public paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.PS.ZS,"Individuals with tertiary Education as a share of public paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.SS.ZS,"Individuals with tertiary Education as a share of public paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.TS.ZS,"Individuals with tertiary Education as a share of public paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.TT.ZS,Individuals with tertiary education as a share of public paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.PUBS.UM.ZS,Share of public paid employees with union membership,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO,Number of paid employees,sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.CA,"Number of paid employees, by industry: Core Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.ED,"Number of paid employees, by industry: Education",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.HE,"Number of paid employees, by industry: Health",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.MW,"Number of paid employees, by occupation: Medical workers",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.PA,"Number of paid employees, by industry: Public Administration",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.PS,"Number of paid employees, by industry: Public Safety",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.SS,"Number of paid employees, by industry: Social Security",sources,Worldwide Bureaucracy Indicators,64
+BI.PWK.TOTL.NO.TS,"Number of paid employees, by occupation: Teachers",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.GE.ZS,"Pay compression ratio in public sector, by occupation: Government economist (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.HD.ZS,"Pay compression ratio in public sector, by occupation: Hospital doctor (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.HN.ZS,"Pay compression ratio in public sector, by occupation: Hospital nurse (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.JU.ZS,"Pay compression ratio in public sector, by occupation: Judge (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.PO.ZS,"Pay compression ratio in public sector, by occupation: Police officer (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.PT.ZS,"Pay compression ratio in public sector, by occupation: Primary school teacher (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.SN.ZS,"Pay compression ratio in public sector, by occupation: Senior officials (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.ST.ZS,"Pay compression ratio in public sector, by occupation: Secondary school teacher (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.UT.ZS,"Pay compression ratio in public sector, by occupation: University teacher (clerk as reference)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PB.ZS,Pay compression ratio in public sector (ratio of 90th/10th percentile earners),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.CPRS.PV.ZS,Pay compression ratio in private sector (ratio of 90th/10th percentile earners),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.ED,"Public sector wage premium, by industry: Education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.ED.GP,"Public sector wage premium, by industry: Education (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.FE.ED,"Public sector wage premium for females, by industry: Education (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.FE.HE,"Public sector wage premium for females, by industry: Health (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.FE.MW,"Public sector wage premium for females, by occupation: Medical workers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.FE.TS,"Public sector wage premium for females, by occupation: Teachers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.HE,"Public sector wage premium, by industry: Health (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.HE.GP,"Public sector wage premium, by industry: Health (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MA.ED,"Public sector wage premium for males, by industry: Education (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MA.HE,"Public sector wage premium for males, by industry: Health (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MA.MW,"Public sector wage premium for males, by occupation: Medical workers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MA.TS,"Public sector wage premium for males, by occupation: Teachers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MW.PE,"Public sector wage premium, by occupation: Medical workers (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.MW.WE,"Public sector wage premium, by occupation: Medical workers (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB,Public sector wage premium (compared to formal wage employees),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.CK,"Public sector wage premium, by occupational group: Clerks (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.ED,"P-Value: Public sector wage premium, by education level (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.ED.PE,"P-Value: Public sector wage premium, by industry: Education (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.ED.WE,"P-Value: Public sector wage premium, by industry: Education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.EO,"Public sector wage premium, by occupational group: Elementary occupation (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FE,"Public sector wage premium, by gender: Female (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FE.ED,"P-Value: Public sector wage premium for females, by industry: Education (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FE.HE,"P-Value: Public sector wage premium for females, by industry: Health (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FE.MW,"P-Value: Public sector wage premium for females, by occupation: Medical workers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FE.TS,"P-Value: Public sector wage premium for females, by occupation: Teachers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FL,P-Value: Public sector wage premium (compared to formal wage employees),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM,"P-Value: Public sector wage premium, by gender (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.CA,"P-Value: Gender wage premium in the public sector, by industry: Core Public Administration (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.ED,"P-Value: Gender wage premium in the public sector, by industry: Education (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.HE,"P-Value: Gender wage premium in the public sector, by industry: Health (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.PA,"P-Value: Gender wage premium in the public sector, by industry: Public Administration (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.PS,"P-Value: Gender wage premium in the public sector, by industry: Public Safety (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.FM.SS,"P-Value: Gender wage premium in the public sector, by industry: Social Security (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.GP,Public sector wage premium (compared to all private employees),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.HE.PE,"P-Value: Public sector wage premium, by industry: Health (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.HE.WE,"P-Value: Public sector wage premium, by industry: Health (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MA,"Public sector wage premium, by gender: Male (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MA.ED,"P-Value: Public sector wage premium for males, by industry: Education (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MA.HE,"P-Value: Public sector wage premium for males, by industry: Health (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MA.MW,"P-Value: Public sector wage premium for males, by occupation: Medical workers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MA.TS,"P-Value: Public sector wage premium for males, by occupation: Teachers (compared to paid wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MW.PE,"P-Value: Public sector wage premium, by occupation: Medical workers (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.MW.WE,"P-Value: Public sector wage premium, by occupation: Medical workers (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.NN,"Public sector wage premium, by education level: No education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.OC,"P-Value: Public sector wage premium, by occupation (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.PN,"Public sector wage premium, by occupational group: Professionals (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.PR,"Public sector wage premium, by education level: Primary education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.PV,P-Value: Public sector wage premium (compared to all private employees),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.SG,"Public sector wage premium, by education level: Secondary education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.SN,"Public sector wage premium, by occupational group: Managers (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.TN,"Public sector wage premium, by occupational group: Technicians (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.TS.PE,"P-Value: Public sector wage premium, by occupation: Teacher (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.TS.WE,"P-Value: Public sector wage premium, by occupation: Teacher (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PB.TT,"Public sector wage premium, by education level: Tertiary education (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PV.FM.ED,"P-Value: Gender wage premium in the private sector, by industry: Education (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PV.FM.HE,"P-Value: Gender wage premium in the private sector, by industry: Health (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PV.FM.MW,"P-Value: Gender wage premium in the private sector, by occupation: Medical workers (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.PV.FM.TS,"P-Value: Gender wage premium in the private sector, by occupation: Teachers (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.TS.PE,"Public sector wage premium, by occupation: Teacher (compared to all private employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PREM.TS.WE,"Public sector wage premium, by occupation: Teacher (compared to formal wage employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.ED.FM,"Gender wage premium in the private sector, by industry: Education (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.FM.MD,Female to male wage ratio in the private sector (using median),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.FM.SM,Female to male wage ratio in the private sector (using mean),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.HE.FM,"Gender wage premium in the private sector, by industry: Health (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.MW.FM,"Gender wage premium in the private sector, by occupation: Medical workers (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.PN,Relative wage of Professionals (using clerk as reference) in private sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.SN,Relative wage of Managers (using clerk as reference) in private sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.TN,Relative wage of Technicians (using clerk as reference) in private sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PRVS.TS.FM,"Gender wage premium in the private sector, by occupation: Teachers (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.CA.FM,"Gender wage premium in the public sector, by industry: Core Public Administration (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.ED.FM,"Gender wage premium in the public sector, by industry: Education (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.FM.MD,Female to male wage ratio in the public sector (using median),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.FM.SM,Female to male wage ratio in the public sector (using mean),sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.HE.FM,"Gender wage premium in the public sector, by industry: Health (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.PA.FM,"Gender wage premium in the public sector, by industry: Public Administration (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.PN,Relative wage of Professionals (using clerk as reference) in public sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.PS.FM,"Gender wage premium in the public sector, by industry: Public Safety (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.SN,Relative wage of Managers (using clerk as reference) in public sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.SS.FM,"Gender wage premium in the public sector, by industry: Social Security (compared to male paid employees)",sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.PUBS.TN,Relative wage of Technicians (using clerk as reference) in public sector,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.TOTL.GD.ZS,Wage bill as a percentage of GDP,sources,Worldwide Bureaucracy Indicators,64
+BI.WAG.TOTL.PB.ZS,Wage bill as a percentage of Public Expenditure,sources,Worldwide Bureaucracy Indicators,64
+BM.AG.AGR.TRAC.CD,"Agricultural tractors, exports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.AG.AGR.TRAC.NO,"Agricultural tractors, exports",sources,Africa Development Indicators,11
+BM.AG.CREL.CD,"Cereal exports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.AG.CREL.MT,"Cereal exports quantity (FAO, tonnes)",sources,Africa Development Indicators,11
+BM.AG.FRST.CD,"Forest products imports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.AG.HZ.PEST.CD,"Hazardous pesticides imports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.AG.PEST.CD,"Pesticides imports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.FOD.AGRI.CD,"Food imports excluding fish (FAO, current US$)",sources,Africa Development Indicators,11
+BM.GSR.AGRI.CD,"Total agricultural imports (FAO, current US$)",sources,Africa Development Indicators,11
+BM.GSR.CMCP.ZS,"Communications, computer, etc. (% of service imports, BoP)",topics,Economy & Growth,3
+BM.GSR.COMM.CD,"Communications services, imports (BoP, current US$)",sources,WDI Database Archives,57
+BM.GSR.FCTY.CD,"Primary income payments (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.FINS.CD,"Financial services, imports (BoP, current US$)",sources,WDI Database Archives,57
+BM.GSR.FXAI.CD,"Other income payments (BoP, current US$)",sources,Africa Development Indicators,11
+BM.GSR.GNFS.CD,"Imports of goods and services (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.INSF.ZS,"Insurance and financial services (% of service imports, BoP)",topics,Economy & Growth,3
+BM.GSR.INSU.CD,"Insurance services, imports (BoP, current US$)",sources,WDI Database Archives,57
+BM.GSR.MRCH.CD,"Goods imports (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.MRCH.ZS,Merchandise imports (BOP): percentage of GDP (%),sources,WDI Database Archives,57
+BM.GSR.NFSV.CD,"Service imports (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.OSRV.CD,"Other services, imports (BoP, US$)",sources,WDI Database Archives,57
+BM.GSR.ROYL.CD,"Charges for the use of intellectual property, payments (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.SERV.CD,"Imports of total services (Debit, current US$)",sources,Africa Development Indicators,11
+BM.GSR.TOTL.CD,"Imports of goods, services and primary income (BoP, current US$)",topics,Economy & Growth,3
+BM.GSR.TRAN.CD,"Transport services, imports (BoP, current US$)",sources,WDI Database Archives,57
+BM.GSR.TRAN.ZS,"Transport services (% of service imports, BoP)",topics,Economy & Growth,3
+BM.GSR.TRVL.CD,"Travel services, imports (BoP, current US$)",sources,WDI Database Archives,57
+BM.GSR.TRVL.ZS,"Travel services (% of service imports, BoP)",topics,Economy & Growth,3
+BM.KLT.DINV.CD,"Foreign direct investment, net outflows by reporting economy (IMF-BoP, current US$)",sources,Africa Development Indicators,11
+BM.KLT.DINV.CD.WD,"Foreign direct investment, net outflows (BoP, current US$)",topics,Economy & Growth,3
+BM.KLT.DINV.GD.ZS,"Foreign direct investment, net outflows (% of GDP)",sources,Africa Development Indicators,11
+BM.KLT.DINV.WD.GD.ZS,"Foreign direct investment, net outflows (% of GDP)",topics,Economy & Growth,3
+BM.SVF.TOTL.CD,"Factor Service Payments (US$, BoP)",sources,WDI Database Archives,57
+BM.SVN.TOTL.CD,"Non-Factor Services Payments (US$, BoP)",sources,WDI Database Archives,57
+BM.TRF.CURR.CD,"Current transfers, payments (BoP, current US$)",sources,Africa Development Indicators,11
+BM.TRF.MGR.CD,Migrant remittance outflows (current US$),sources,Africa Development Indicators,11
+BM.TRF.OFDC.CD,"Official current transfers, payments (BoP, current US$)",sources,Africa Development Indicators,11
+BM.TRF.PRVT.CD,"Secondary income, other sectors, payments (BoP, current US$)",topics,Economy & Growth,3
+BM.TRF.PWKR.CD,"Workers' remittances, payments (BoP, current US$)",sources,Africa Development Indicators,11
+BM.TRF.PWKR.CD.DT,"Personal remittances, paid (current US$)",topics,Economy & Growth,3
+BM.TRF.XOKA.CD,"Private current transfers, payments (BoP, US$)",sources,WDI Database Archives,57
+BN.CAB.FUND.CD,"Current Acc. Bal. after Off. Transf. (US$, BoP)",sources,WDI Database Archives,57
+BN.CAB.IOTR.CD,"Current Account Balance after off. trans. (US$, BoP)",sources,WDI Database Archives,57
+BN.CAB.XOKA.CD,"Current account balance (BoP, current US$)",topics,Economy & Growth,3
+BN.CAB.XOKA.GD.ZS,Current account balance (% of GDP),topics,Economy & Growth,3
+BN.CAB.XOKA.GDP.ZS,Current account balance (% of GDP),sources,WDI Database Archives,57
+BN.CAB.XOKA.GN.ZS,Current account balance (% of GNP),sources,Africa Development Indicators,11
+BN.CAB.XOTR.CD,"Current Acc. Bal. before Off. Transf.(US$, BoP)",sources,WDI Database Archives,57
+BN.CAB.XOTR.ZS,Curr. acc. bal. before official transf. (% of GDP),sources,WDI Database Archives,57
+BN.CUR.ACTN.CD,"Current Account Balance (IMF def)(US$, BoP)",sources,WDI Database Archives,57
+BN.CUR.ACTX.CD,"Total Deficit to be Financed (US$, BoP)",sources,WDI Database Archives,57
+BN.CUR.GDPM.ZS,Current account balance excluding net official capital grants (% of GDP),sources,Africa Development Indicators,11
+BN.DSR.UNPD.CD,"Debt service not paid (BoP, current US$)",sources,Africa Development Indicators,11
+BN.FAC.ARAC.CD,"Debt Service not paid: Arrears Accumulation (BoP, current US$)",sources,Africa Development Indicators,11
+BN.FIN.TOTL.CD,"Net financial account (BoP, current US$)",topics,Economy & Growth,3
+BN.FIN.TOTP.CD,Net private capital flows (US$),sources,WDI Database Archives,57
+BN.GSR.FCTY.CD,"Net primary income (BoP, current US$)",topics,Economy & Growth,3
+BN.GSR.FCTY.CD.ZS,Net income (% of GDP),sources,Africa Development Indicators,11
+BN.GSR.GNFS.CD,"Net trade in goods and services (BoP, current US$)",topics,Economy & Growth,3
+BN.GSR.MRCH.CD,"Net trade in goods (BoP, current US$)",topics,Economy & Growth,3
+BN.KAC.EOMS.CD,"Net errors and omissions (BoP, current US$)",topics,Economy & Growth,3
+BN.KAC.FNEI.CD,"Capital flows not elsewhere included (BoP, current US$)",sources,Africa Development Indicators,11
+BN.KAC.OTHR.CD,"Other capital flows, net (BoP, current US$)",sources,Africa Development Indicators,11
+BN.KAP.RSDL.CD,"Other Capital Inflows (net) (US$, BoP)",sources,WDI Database Archives,57
+BN.KLT.DINV.CD,"Foreign direct investment, net (BoP, current US$)",topics,Economy & Growth,3
+BN.KLT.DINV.CD.DRS,"Foreign direct investment, net inflows (US$)",sources,WDI Database Archives,57
+BN.KLT.DINV.CD.ZS,Foreign direct investment (% of GDP),sources,Africa Development Indicators,11
+BN.KLT.DINV.DRS.GDI.ZS,"Foreign direct investment, net inflows (% of GDI)",sources,WDI Database Archives,57
+BN.KLT.DINV.DRS.GDP.ZS,"Foreign direct investment, net inflows (% of GDP)",sources,WDI Database Archives,57
+BN.KLT.NFLW.CD,"Net long-term borrowing (BoP, current US$)",sources,Africa Development Indicators,11
+BN.KLT.OINV.CD,"Other net investment (BoP, US$)",sources,WDI Database Archives,57
+BN.KLT.OTHR.CD,"Other long-term inflows, net (BoP, current US$)",sources,Africa Development Indicators,11
+BN.KLT.PRVT.CD,"Private capital flows, total (BoP, current US$)",topics,Economy & Growth,3
+BN.KLT.PRVT.CD.DT,"Private capital flows, net total (DRS, current US$)",sources,WDI Database Archives,57
+BN.KLT.PRVT.GD.ZS,"Private capital flows, total (% of GDP)",topics,Economy & Growth,3
+BN.KLT.PTXL.CD,"Portfolio Investment, net (BoP, current US$)",topics,Economy & Growth,3
+BN.KLT.RSDL.CD,"Other Long-Term Inflows (net) (US$, BoP)",sources,WDI Database Archives,57
+BN.KLT.TOTL.CD,Net direct and portfolio investment (US$),sources,WDI Database Archives,57
+BN.KLT.TOTX.CD,"Long-Term Capital Inflow (net) (US$, BoP)",sources,WDI Database Archives,57
+BN.KLT.XRSL.CD,"Long-Term Capital Inflow, net (US$, BoP)",sources,WDI Database Archives,57
+BN.PEF.TOTL.CD,"Portfolio investment, equity (DRS, current US$)",sources,WDI Database Archives,57
+BN.RES.4040.CD,"Reserves and related items (BoP, US$)",sources,WDI Database Archives,57
+BN.RES.INCL.CD,"Reserves and related items (BoP, current US$)",topics,Economy & Growth,3
+BN.RES.LFAR.CD,"Change in Reserves (- = increase) (US$, BoP)",sources,WDI Database Archives,57
+BN.TRF.CURR.CD,"Net secondary income (BoP, current US$)",topics,Economy & Growth,3
+BN.TRF.CURR.CD.ZS,Net current transfers (% of GDP),sources,Africa Development Indicators,11
+BN.TRF.KOGT.CD,"Net capital account (BoP, current US$)",topics,Economy & Growth,3
+BN.TRF.OFDC.CD,"Official current transfers, net (BoP, current US$)",sources,Africa Development Indicators,11
+BN.TRF.OFFK.CD,"Net Official Capital Grants (US$, BoP)",sources,WDI Database Archives,57
+BN.TRF.OFFN.CD,"Official Transfers (net) (US$, BoP)",sources,WDI Database Archives,57
+BN.TRF.OFFT.CD,"Official Transfers, net (US$, BoP)",sources,WDI Database Archives,57
+BN.TRF.PRVT.CD,"Private current transfers, net (BoP, current US$)",sources,Africa Development Indicators,11
+BN.TRF.PWKR.CD,"Workers' remittances, net (BoP, current US$)",sources,Africa Development Indicators,11
+BN.TRF.PWKR.CD.DT,"Personal remittances, net (current US$)",sources,WDI Database Archives,57
+BN.TRF.XOKA.CD,"Private current transfers, net (BoP, US$)",sources,WDI Database Archives,57
+BN.TRN.KOGT.CD,"Grants (disbursements) from new commitments (BoP, current US$)",sources,Africa Development Indicators,11
+BPK.AUD.SUBN,BPK Audit Report on Sub-National Budget,sources,Indonesia Database for Policy and Economic Research,45
+BX.AG.AGR.TRAC.CD,"Agricultural tractors, imports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.AG.AGR.TRAC.NO,"Agricultural tractors, imports",sources,Africa Development Indicators,11
+BX.AG.CREL.CD,"Cereal imports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.AG.CREL.MT,"Cereal imports quantity (FAO, tonnes)",sources,Africa Development Indicators,11
+BX.AG.FRST.CD,"Forest products exports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.AG.HZ.PEST.CD,"Hazardous pesticides exports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.AG.PEST.CD,"Pesticides exports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.FOD.AGRI.CD,"Food exports excluding fish (FAO, current US$)",sources,Africa Development Indicators,11
+BX.GRT.EXTA.CD.DT,"Grants, excluding technical cooperation (current US$)",topics,External Debt,20
+BX.GRT.EXTA.CD.WD,"Grants, excluding technical cooperation (BoP, current US$)",topics,Aid Effectiveness,2
+BX.GRT.TECH.CD.DT,Technical cooperation grants (current US$),topics,External Debt,20
+BX.GRT.TECH.CD.WD,"Technical cooperation grants (BoP, current US$)",topics,Aid Effectiveness,2
+BX.GSR.AGRI.CD,"Total agricultural exports (FAO, current US$)",sources,Africa Development Indicators,11
+BX.GSR.CCIS.CD,"ICT service exports (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.CCIS.ZS,"ICT service exports (% of service exports, BoP)",topics,Economy & Growth,3
+BX.GSR.CMCP.ZS,"Communications, computer, etc. (% of service exports, BoP)",topics,Economy & Growth,3
+BX.GSR.COMM.CD,"Communications services, exports (BoP, current US$)",sources,WDI Database Archives,57
+BX.GSR.FCTY.CD,"Primary income receipts (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.FINS.CD,"Financial services, exports (BoP, current US$)",sources,WDI Database Archives,57
+BX.GSR.GNFS.CD,"Exports of goods and services (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.INCL.CD,"Exports of goods, services, income and workers' remittances (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.INSF.ZS,"Insurance and financial services (% of service exports, BoP)",topics,Economy & Growth,3
+BX.GSR.INSU.CD,"Insurance services, exports (BoP, current US$)",sources,WDI Database Archives,57
+BX.GSR.MRCH.CD,"Goods exports (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.MRCH.ZS,Merchandise exports (BOP): percentage of GDP (%),sources,WDI Database Archives,57
+BX.GSR.NFSV.CD,"Service exports (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.OSRV.CD,"Other services, exports (BoP, US$)",sources,WDI Database Archives,57
+BX.GSR.ROYL.CD,"Charges for the use of intellectual property, receipts (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.TOTL.CD,"Exports of goods, services and primary income (BoP, current US$)",topics,Economy & Growth,3
+BX.GSR.TRAN.CD,"Transport services, exports (BoP, current US$)",sources,WDI Database Archives,57
+BX.GSR.TRAN.ZS,"Transport services (% of service exports, BoP)",topics,Economy & Growth,3
+BX.GSR.TRVL.CD,"Travel services, exports (BoP, current US$)",sources,WDI Database Archives,57
+BX.GSR.TRVL.ZS,"Travel services (% of service exports, BoP)",topics,Economy & Growth,3
+BX.KLT.DINV.CD,"Foreign direct investment, net inflows in reporting economy (IMF-BoP, current US$)",sources,Africa Development Indicators,11
+BX.KLT.DINV.CD.DT,"Foreign direct investment, net inflows in reporting economy (DRS, current US$)",topics,External Debt,20
+BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",topics,Economy & Growth,3
+BX.KLT.DINV.DT.GD.ZS,"Foreign direct investment, net inflows (% of GDP)",sources,WDI Database Archives,57
+BX.KLT.DINV.DT.GI.ZS,"Foreign direct investment, net inflows (% of gross capital formation)",sources,WDI Database Archives,57
+BX.KLT.DINV.WD.GD.ZS,"Foreign direct investment, net inflows (% of GDP)",topics,Economy & Growth,3
+BX.KLT.DREM.CD.DT,Primary income on FDI (current US$),topics,Economy & Growth,3
+BX.PEF.TOTL.CD,"Portfolio investment, equity (DRS, current US$)",sources,WDI Database Archives,57
+BX.PEF.TOTL.CD.DT,"Portfolio investment, equity (DRS, current US$)",topics,External Debt,20
+BX.PEF.TOTL.CD.WD,"Portfolio equity, net inflows (BoP, current US$)",topics,Economy & Growth,3
+BX.SVF.TOTL.CD,"Factor Service Receipts (US$, BoP)",sources,WDI Database Archives,57
+BX.SVN.TOTL.CD,"Non-Factor Services Receipts (US$, BoP)",sources,WDI Database Archives,57
+BX.TRF.CURR.CD,"Secondary income receipts (BoP, current US$)",topics,Economy & Growth,3
+BX.TRF.MGR.CD,Migrant remittance inflows (current US$),sources,Africa Development Indicators,11
+BX.TRF.MGR.DT.GD.ZS,Migrant remittance inflows (% of GDP),sources,Africa Development Indicators,11
+BX.TRF.OFDC.CD,"Official current transfers, receipts (BoP, current US$)",sources,Africa Development Indicators,11
+BX.TRF.OFFT.CD,"Official transfers, current and capital (Credit, current US$)",sources,Africa Development Indicators,11
+BX.TRF.PRVT.CD,"Private current transfers, receipts (BoP, current US$)",sources,Africa Development Indicators,11
+BX.TRF.PWKR.CD,"Personal transfers, receipts (BoP, current US$)",topics,Economy & Growth,3
+BX.TRF.PWKR.CD.DT,"Personal remittances, received (current US$)",topics,Economy & Growth,3
+BX.TRF.PWKR.DT.GD.ZS,"Personal remittances, received (% of GDP)",topics,Economy & Growth,3
+BX.TRF.PWKR.GD.ZS,"Workers' remittances, receipts (% of GDP)",sources,Africa Development Indicators,11
+BX.TRF.XOKA.CD,"Private current transfers, receipts (BoP, US$)",sources,WDI Database Archives,57
+C1,057.Firm Entry Rate,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+C2,058.Firm Exit Rate,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+C3,059.Entrant 1st Year Survival Rate,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+C4,060.Share of Entrants in TEV (Total Export Value),sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+C5,061.Entrant 2nd Year Survival Rate,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+C6,062.Entrant 3rd Year Survival Rate,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+CC.EST,Control of Corruption: Estimate,topics,Public Sector,13
+CC.NO.SRC,Control of Corruption: Number of Sources,topics,Public Sector,13
+CC.PER.RNK,Control of Corruption: Percentile Rank,topics,Public Sector,13
+CC.PER.RNK.LOWER,"Control of Corruption: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+CC.PER.RNK.UPPER,"Control of Corruption: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+CC.STD.ERR,Control of Corruption: Standard Error,topics,Public Sector,13
+CM.FIN.INTL.GD.ZS,"Financing via international capital markets (gross inflows, % of GDP)",sources,WDI Database Archives,57
+CM.MKT.INDX.ZG,S&P Global Equity Indices (annual % change),topics,Financial Sector,7
+CM.MKT.LCAP.CD,Market capitalization of listed domestic companies (current US$),topics,Financial Sector,7
+CM.MKT.LCAP.GD.ZS,Market capitalization of listed domestic companies (% of GDP),topics,Financial Sector,7
+CM.MKT.LDOM.NO,"Listed domestic companies, total",topics,Financial Sector,7
+CM.MKT.TRAD.CD,"Stocks traded, total value (current US$)",topics,Financial Sector,7
+CM.MKT.TRAD.GD.ZS,"Stocks traded, total value (% of GDP)",topics,Financial Sector,7
+CM.MKT.TRNR,"Stocks traded, turnover ratio of domestic shares (%)",topics,Financial Sector,7
+CORENS,"Core CPI,not seas.adj,,,",sources,Global Economic Monitor,15
+CORESA,"Core CPI,seas.adj,,,",sources,Global Economic Monitor,15
+CPTOTNSXN,"CPI Price, nominal",sources,Global Economic Monitor,15
+CPTOTSAXMZGY,"CPI Price, % y-o-y, median weighted, seas. adj.",sources,Global Economic Monitor,15
+CPTOTSAXN,"CPI Price, nominal, seas. adj.",sources,Global Economic Monitor,15
+CPTOTSAXNZGY,"CPI Price, % y-o-y, nominal, seas. adj.",sources,Global Economic Monitor,15
+D1i,063.Product Entry Rate of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D1ii,064.Product Entry Rate of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D1iii,065.Product Entry Rate of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D2i,066.Product Entry Rate of Surviving Entrants: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D2ii,067.Product Entry Rate of Surviving Entrants: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D2iii,068.Product Entry Rate of Surviving Entrants: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D3i,069.Share of New Products in TEV of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D3ii,070.Share of New Products in TEV of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D3iii,071.Share of New Products in TEV of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D4i,072.Share of New Products in TEV of Surviving Entrants: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D4ii,073.Share of New Products in TEV of Surviving Entrants: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D4iii,074.Share of New Products in TEV of Surviving Entrants: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D5i,075.Product Exit Rate of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D5ii,076.Product Exit Rate of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D5iii,077.Product Exit Rate of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D6i,078.Product Survival Rate of 2-year Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D6ii,079.Product Survival Rate of 2-year Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+D6iii,080.Product Survival Rate of 2-year Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+DAK.AGR.CR,Total Specific Allocation Grant for Agriculture (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.EDU.CR,Total Specific Allocation Grant for Education (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.ENVR.CR,Total Specific Allocation Grant for Environment (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.FRST.CR,Total Specific Allocation Grant for Forestry (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.FSH.CR,Total Specific Allocation Grant for Fishery (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.GOVT.CR,Total Specific Allocation Grant for Government Sector (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.HE.BSRV.CR,Total Specific Allocation Grant for Health Sector (Subsect: Basic Services) (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.HE.CR,Total Specific Allocation Grant for Health (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.HE.RSRV.CR,Total Specific Allocation Grant for Health Sector (Subsect: Recommended Services) (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.INFR.CR,Total Specific Allocation Grant for Infrastructure (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.INFR.H2O.CR,Total Specific Allocation Grant for Infrastructure Sector (Subsect: Water) (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.INFR.IRIG.CR,Total Specific Allocation Grant for Infrastructure Sector (Subsect: Irrigation) (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.INFR.ROD.CR,Total Specific Allocation Grant for Infrastructure Sector (Subsect: Road) (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.POP.CR,Total Specific Allocation Grant for Demographic (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.TRAD.CR,Total Specific Allocation Grant for Trade (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DAK.VILG.CR,Total Specific Allocation Grant for Village (in IDR Billion),sources,Indonesia Database for Policy and Economic Research,45
+DB.DOD.DLXF.CD,Central Government External Debt (US$),sources,WDI Database Archives,57
+DC.AID.TOTL.CD,Official aid provided to part II countries (current US$),sources,WDI Database Archives,57
+DC.DAC.AUSL.CD,"Net bilateral aid flows from DAC donors, Australia (current US$)",topics,Aid Effectiveness,2
+DC.DAC.AUTL.CD,"Net bilateral aid flows from DAC donors, Austria (current US$)",topics,Aid Effectiveness,2
+DC.DAC.BELL.CD,"Net bilateral aid flows from DAC donors, Belgium (current US$)",topics,Aid Effectiveness,2
+DC.DAC.CANL.CD,"Net bilateral aid flows from DAC donors, Canada (current US$)",topics,Aid Effectiveness,2
+DC.DAC.CECL.CD,"Net bilateral aid flows from DAC donors, European Union institutions (current US$)",topics,Aid Effectiveness,2
+DC.DAC.CHEL.CD,"Net bilateral aid flows from DAC donors, Switzerland (current US$)",topics,Aid Effectiveness,2
+DC.DAC.CZEL.CD,"Net bilateral aid flows from DAC donors, Czechia (current US$)",topics,Aid Effectiveness,2
+DC.DAC.DEUL.CD,"Net bilateral aid flows from DAC donors, Germany (current US$)",topics,Aid Effectiveness,2
+DC.DAC.DNKL.CD,"Net bilateral aid flows from DAC donors, Denmark (current US$)",topics,Aid Effectiveness,2
+DC.DAC.ESPL.CD,"Net bilateral aid flows from DAC donors, Spain (current US$)",topics,Aid Effectiveness,2
+DC.DAC.ESTL.CD,"Net bilateral aid flows from DAC donors, Estonia (current US$)",sources,World Development Indicators,2
+DC.DAC.FINL.CD,"Net bilateral aid flows from DAC donors, Finland (current US$)",topics,Aid Effectiveness,2
+DC.DAC.FRAL.CD,"Net bilateral aid flows from DAC donors, France (current US$)",topics,Aid Effectiveness,2
+DC.DAC.GBRL.CD,"Net bilateral aid flows from DAC donors, United Kingdom (current US$)",topics,Aid Effectiveness,2
+DC.DAC.GRCL.CD,"Net bilateral aid flows from DAC donors, Greece (current US$)",topics,Aid Effectiveness,2
+DC.DAC.HUNL.CD,"Net bilateral aid flows from DAC donors, Hungary (current US$)",topics,Aid Effectiveness,2
+DC.DAC.IRLL.CD,"Net bilateral aid flows from DAC donors, Ireland (current US$)",topics,Aid Effectiveness,2
+DC.DAC.ISLL.CD,"Net bilateral aid flows from DAC donors, Iceland (current US$)",topics,Aid Effectiveness,2
+DC.DAC.ITAL.CD,"Net bilateral aid flows from DAC donors, Italy (current US$)",topics,Aid Effectiveness,2
+DC.DAC.JPNL.CD,"Net bilateral aid flows from DAC donors, Japan (current US$)",topics,Aid Effectiveness,2
+DC.DAC.KORL.CD,"Net bilateral aid flows from DAC donors, Korea, Rep. (current US$)",topics,Aid Effectiveness,2
+DC.DAC.LTUL.CD,"Net bilateral aid flows from DAC donors, Lithuania (current US$)",sources,World Development Indicators,2
+DC.DAC.LUXL.CD,"Net bilateral aid flows from DAC donors, Luxembourg (current US$)",topics,Aid Effectiveness,2
+DC.DAC.NLDL.CD,"Net bilateral aid flows from DAC donors, Netherlands (current US$)",topics,Aid Effectiveness,2
+DC.DAC.NORL.CD,"Net bilateral aid flows from DAC donors, Norway (current US$)",topics,Aid Effectiveness,2
+DC.DAC.NZLL.CD,"Net bilateral aid flows from DAC donors, New Zealand (current US$)",topics,Aid Effectiveness,2
+DC.DAC.POLL.CD,"Net bilateral aid flows from DAC donors, Poland (current US$)",topics,Aid Effectiveness,2
+DC.DAC.PRTL.CD,"Net bilateral aid flows from DAC donors, Portugal (current US$)",topics,Aid Effectiveness,2
+DC.DAC.SVKL.CD,"Net bilateral aid flows from DAC donors, Slovak Republic (current US$)",topics,Aid Effectiveness,2
+DC.DAC.SVNL.CD,"Net bilateral aid flows from DAC donors, Slovenia (current US$)",topics,Aid Effectiveness,2
+DC.DAC.SWEL.CD,"Net bilateral aid flows from DAC donors, Sweden (current US$)",topics,Aid Effectiveness,2
+DC.DAC.TOTL.CD,"Net bilateral aid flows from DAC donors, Total (current US$)",topics,Aid Effectiveness,2
+DC.DAC.USAL.CD,"Net bilateral aid flows from DAC donors, United States (current US$)",topics,Aid Effectiveness,2
+DC.ODA.COMM.CD,Total bilateral ODA commitments (current US$),topics,Millenium development goals,18
+DC.ODA.COMM.SA.CD,Total bilateral sector allocable ODA commitments (current US$),topics,Millenium development goals,18
+DC.ODA.SOCL.CD,"Bilateral, sector-allocable ODA to basic social services (current US$)",topics,Millenium development goals,18
+DC.ODA.SOCL.ZS,"Bilateral, sector-allocable ODA to basic social services (% of bilateral ODA commitments)",topics,Millenium development goals,18
+DC.ODA.TLDC.CD,"Net ODA provided, to the least developed countries (current US$)",topics,Millenium development goals,18
+DC.ODA.TLDC.GN.ZS,Net ODA provided to the least developed countries (% of GNI),topics,Millenium development goals,18
+DC.ODA.TOTL.CD,"Net ODA provided, total (current US$)",topics,Millenium development goals,18
+DC.ODA.TOTL.GN.ZS,"Net ODA provided, total (% of GNI)",topics,Millenium development goals,18
+DC.ODA.TOTL.KD,"Net ODA provided, total (constant 2023 US$)",topics,Millenium development goals,18
+DC.ODA.UNTD.CD,Bilateral ODA commitments that is untied (current US$),topics,Millenium development goals,18
+DC.ODA.UNTD.ZS,Bilateral ODA commitments that is untied (% of bilateral ODA commitments),topics,Millenium development goals,18
+DE.DOD.DLXF.CD,Non-financial Pub. Enterprises Ext. Debt (US$),sources,WDI Database Archives,57
+DG.DOD.MWBG.CD,"Pub. LT Debt, IBRD&IDA (US$, IBRD DRS - end of year)",sources,WDI Database Archives,57
+DG.DOD.OFFL.CD,"Pub. LT Debt, Official Creditors(US$, IBRD DRS)",sources,WDI Database Archives,57
+DG.DOD.PRVT.CD,"Pub. LT Debt, Private Creditors (US$, IBRD DRS)",sources,WDI Database Archives,57
+DG.DOD.TOTL.CD,"Public/Pub. Guar. Long-Term Debt(US$, IBRD DRS)",sources,WDI Database Archives,57
+DI.DOD.TOTL.CD,"Use of Fund Credit (US$, end of year)",sources,WDI Database Archives,57
+DL.AMT.TOTL.CD,"Repay on Long-Term Loans (US$, as per IBRD DRS)",sources,WDI Database Archives,57
+DL.DIS.TOTL.CD,"Disb. of Long-Term Loans (US$, as per IBRD DRS)",sources,WDI Database Archives,57
+DL.DOD.CBNK.CD,"Central Bank, incl. IMF credit",sources,WDI Database Archives,57
+DL.DOD.CGOV.CD,Central Government,sources,WDI Database Archives,57
+DL.DOD.LTRM.CD,Long-Term Debt (by debtor),sources,WDI Database Archives,57
+DL.DOD.NFPE.CD,Non-financial Public Enterprices,sources,WDI Database Archives,57
+DL.DOD.PRSC.CD,"Private sector, incl. non-guaranteed",sources,WDI Database Archives,57
+DL.DOD.ROGG.CD,Rest of General Government,sources,WDI Database Archives,57
+DL.INT.TOTL.CD,Long-Term Interest Payments (as per IBRD DRS),sources,WDI Database Archives,57
+DL.NFL.TOTL.CD,"Long-Term Loans (net) (US$, as per IBRD DRS)",sources,WDI Database Archives,57
+DM.DOD.DLTF.CD,"Central Bank Ext. Debt, incl. IMF credit (US$)",sources,WDI Database Archives,57
+DMGSRMRCHNSCD,"Imports Merchandise, Customs, current US$, millions",sources,Global Economic Monitor,15
+DMGSRMRCHNSKD,"Imports Merchandise, Customs, constant US$, millions",sources,Global Economic Monitor,15
+DMGSRMRCHNSXD,"Imports Merchandise, Customs, Price, US$",sources,Global Economic Monitor,15
+DMGSRMRCHSACD,"Imports Merchandise, Customs, current US$, millions, seas. adj.",sources,Global Economic Monitor,15
+DMGSRMRCHSAKD,"Imports Merchandise, Customs, constant US$, millions, seas. adj.",sources,Global Economic Monitor,15
+DMGSRMRCHSAXD,"Imports Merchandise, Customs, Price, US$, seas. adj.",sources,Global Economic Monitor,15
+DN.DOD.TOTL.CD,"Non-guar. Private Long-Term Debt(US$, IBRD DRS)",sources,WDI Database Archives,57
+DP.DOD.DECD.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.CG,"Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.CG.CD,"Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.FC,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.GG,"Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.GG.CD,"Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.GG.Z1,"Gross PSD, General Gov., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.PS,"Gross PSD, Public Sector, All maturities, All instruments, Domestic creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECD.CR.PS.CD,"Gross PSD, Total, All maturities, All instruments, Domestic creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.CG,"Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.CG.CD,"Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.FC,"Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.GG,"Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.GG.CD,"Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.GG.Z1,"Gross PSD, General Gov., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Foreign currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.PS,"Gross PSD, Public Sector, All maturities, All instruments, Foreign currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECF.CR.PS.CD,"Gross PSD, Total, All maturities, All instruments, Foreign currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.CG,"Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.CG.CD,"Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.FC,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.GG,"Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.GG.CD,"Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.GG.Z1,"Gross PSD, General Gov., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Domestic currency, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.PS,"Gross PSD, Public Sector, All maturities, All instruments, Domestic currency, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECN.CR.PS.CD,"Gross PSD, Total, All maturities, All instruments, Domestic currency, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.CG,"Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.CG.CD,"Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.FC,"Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.GG,"Gross PSD, General Gov., All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.GG.CD,"Gross PSD, General Gov., All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.GG.Z1,"Gross PSD, General Gov., All maturities, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.PS,"Gross PSD, Public Sector, All maturities, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECT.CR.PS.CD,"Gross PSD, Total, All maturities, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.CG,"Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.CG.CD,"Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.FC,"Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.GG,"Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.GG.CD,"Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.GG.Z1,"Gross PSD, General Gov., All maturities, All instruments, External creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, All instruments, External creditors, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.PS,"Gross PSD, Public Sector, All maturities, All instruments, External creditors, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DECX.CR.PS.CD,"Gross PSD, Total, All maturities, All instruments, External creditors, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.CG,"Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.GG,"Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.GG.CD,"Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.PS,"Gross PSD, Public Sector, All maturities, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLCD.CR.PS.CD,"Gross PSD, Total, All maturities, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD1.CR.CG.CD,"Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD1.CR.CG.Z1,"Gross PSD, Central Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD1.CR.GG.CD,"Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD1.CR.GG.Z1,"Gross PSD, General Gov.-D1, All maturities, Debt securities + loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2.CR.CG.CD,"Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2.CR.CG.Z1,"Gross PSD, Central Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2.CR.GG.CD,"Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2.CR.GG.Z1,"Gross PSD, General Gov.-D2, All maturities, D1+ SDRs + currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2A.CR.CG.CD,"Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2A.CR.CG.Z1,"Gross PSD, Central Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2A.CR.GG.CD,"Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD2A.CR.GG.Z1,"Gross PSD, General Gov.-D2A, All maturities, D1+ currency and deposits, Maastricht debt, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD3.CR.CG.CD,"Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD3.CR.CG.Z1,"Gross PSD, Central Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD3.CR.GG.CD,"Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD3.CR.GG.Z1,"Gross PSD, General Gov.-D3, All maturities, D2+other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD4.CR.CG.CD,"Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD4.CR.CG.Z1,"Gross PSD, Central Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD4.CR.GG.CD,"Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLD4.CR.GG.Z1,"Gross PSD, General Gov.-D4, All maturities, D3+insurance, pensions, and standardized guarantees, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.CG,"Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.GG,"Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.GG.CD,"Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.BC,"Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Debt Securities, Market value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.CG,"Gross PSD, Central Gov., All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.CG.CD,"Gross PSD, Central Gov., All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.CG.Z1,"Gross PSD, Central Gov., All maturities, Debt Securities, Market value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.FC,"Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Debt Securities, Market value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.GG,"Gross PSD, General Gov., All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.GG.CD,"Gross PSD, General Gov., All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.GG.Z1,"Gross PSD, General Gov., All maturities, Debt Securities, Market value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt Securities, Market value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.PS,"Gross PSD, Public Sector, All maturities, Debt Securities, Market value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.MV.PS.CD,"Gross PSD, Total, All maturities, Debt Securities, Market value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.PS,"Gross PSD, Public Sector, All maturities, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLDS.CR.PS.CD,"Gross PSD, Total, All maturities, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.CG,"Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.GG,"Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.GG.CD,"Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.PS,"Gross PSD, Public Sector, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLIN.CR.PS.CD,"Gross PSD, Total, All maturities, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.CG,"Gross PSD, Central Gov., All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.GG,"Gross PSD, General Gov., All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.GG.CD,"Gross PSD, General Gov., All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.PS,"Gross PSD, Public Sector, All maturities, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLLO.CR.PS.CD,"Gross PSD, Total, All maturities, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.CG,"Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.GG,"Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.GG.CD,"Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.PS,"Gross PSD, Public Sector, All maturities, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLOA.CR.PS.CD,"Gross PSD, Total, All maturities, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.BC,"Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.BC.CD,"Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.CG,"Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.CG.CD,"Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.CG.Z1,"Gross PSD, Central Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.FC,"Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.FC.CD,"Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.FC.Z1,"Gross PSD, Financial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.GG,"Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.GG.CD,"Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.GG.Z1,"Gross PSD, General Gov., All maturities, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.NF,"Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., All maturities, Special Drawing Rights, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.PS,"Gross PSD, Public Sector, All maturities, Special Drawing Rights, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLSD.CR.PS.CD,"Gross PSD, Total, All maturities, Special Drawing Rights, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.BC,"Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.CG,"Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.CG.CD,"Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.CG.Z1,"Gross PSD, Central Gov., Long-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.FC,"Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.FC.CD,"Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.GG,"Gross PSD, General Gov., Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.GG.CD,"Gross PSD, General Gov., Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.GG.Z1,"Gross PSD, General Gov., Long-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.CG,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.GG,"Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in one year or less, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.PS,"Gross PSD, Public Sector, Long-term, With payment due in one year or less, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.L1.PS.CD,"Gross PSD, Total, Long-term, With payment due in one year or less, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.BC,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.BC.CD,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.BC.Z1,"Gross PSD, Budgetary Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.CG,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.CG.CD,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.CG.Z1,"Gross PSD, Central Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.FC,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.FC.CD,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.FC.Z1,"Gross PSD, Financial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.GG,"Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.GG.CD,"Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.GG.Z1,"Gross PSD, General Gov., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, With payment due in more than one year, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.PS,"Gross PSD, Public Sector, Long-term, With payment due in more than one year, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.M1.PS.CD,"Gross PSD, Total, Long-term, With payment due in more than one year, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.NF,"Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Long-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.PS,"Gross PSD, Public Sector, Long-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLTC.CR.PS.CD,"Gross PSD, Total, Long-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DLXF.CD,"Priv. Sector Ext. Debt, incl. non-guarant.(US$)",sources,WDI Database Archives,57
+DP.DOD.DSCD.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.CG,"Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.CG.CD,"Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.FC,"Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.GG,"Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.GG.CD,"Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.GG.Z1,"Gross PSD, General Gov., Short-term, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, Currency and deposits, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.PS,"Gross PSD, Public Sector, Short-term, Currency and deposits, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSCD.CR.PS.CD,"Gross PSD, Total, Short-term, Currency and deposits, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.CG,"Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.CG.CD,"Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.FC,"Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.GG,"Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.GG.CD,"Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.GG.Z1,"Gross PSD, General Gov., Short-term, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, Debt securities, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.PS,"Gross PSD, Public Sector, Short-term, Debt securities, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSDS.CR.PS.CD,"Gross PSD, Total, Short-term, Debt securities, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.CG,"Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.CG.CD,"Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.FC,"Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.GG,"Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.GG.CD,"Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.GG.Z1,"Gross PSD, General Gov., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.PS,"Gross PSD, Public Sector, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSIN.CR.PS.CD,"Gross PSD, Total, Short-term, Insurance, pensions, and standardized guarantee schemes, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.CG,"Gross PSD, Central Gov., Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.CG.CD,"Gross PSD, Central Gov., Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.FC,"Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.GG,"Gross PSD, General Gov., Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.GG.CD,"Gross PSD, General Gov., Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.GG.Z1,"Gross PSD, General Gov., Short-term, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, Loans, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.PS,"Gross PSD, Public Sector, Short-term, Loans, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSLO.CR.PS.CD,"Gross PSD, Total, Short-term, Loans, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.CG,"Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.CG.CD,"Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.FC,"Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.GG,"Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.GG.CD,"Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.GG.Z1,"Gross PSD, General Gov., Short-term, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, Other accounts payable, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.PS,"Gross PSD, Public Sector, Short-term, Other accounts payable, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSOA.CR.PS.CD,"Gross PSD, Total, Short-term, Other accounts payable, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.BC,"Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.BC.CD,"Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.BC.Z1,"Gross PSD, Budgetary Central Gov., Short-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.CG,"Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.CG.CD,"Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.CG.Z1,"Gross PSD, Central Gov., Short-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.FC,"Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.FC.CD,"Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.FC.Z1,"Gross PSD, Financial Public Corp., Short-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.GG,"Gross PSD, General Gov., Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.GG.CD,"Gross PSD, General Gov., Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.GG.Z1,"Gross PSD, General Gov., Short-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.NF,"Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.NF.CD,"Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.NF.Z1,"Gross PSD, Nonfinancial Public Corp., Short-term, All instruments, Nominal Value, % of GDP",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.PS,"Gross PSD, Public Sector, Short-term, All instruments, Nominal Value, National Currency",sources,Quarterly Public Sector Debt,20
+DP.DOD.DSTC.CR.PS.CD,"Gross PSD, Total, Short-term, All instruments, Nominal Value, US$",sources,Quarterly Public Sector Debt,20
+DPANUSLCU,"Official exchange rate, LCU per USD, period average",sources,Global Economic Monitor,15
+DPANUSSPB,"Exchange rate, new LCU per USD extended backward, period average",sources,Global Economic Monitor,15
+DPANUSSPF,"Exchange rate, old LCU per USD extended forward, period average",sources,Global Economic Monitor,15
+DS.DOD.DLXF.CD,Rest of General Government External Debt (US$),sources,WDI Database Archives,57
+DS.DOD.STRM.CD,Short-Term Debt,sources,WDI Database Archives,57
+DS.DOD.TOTL.CD,"Identified Short-Term Debt (US$, end of year)",sources,WDI Database Archives,57
+DSTKMKTXD,"Stock Markets, US$",sources,Global Economic Monitor,15
+DSTKMKTXN,"Stock Markets, LCU",sources,Global Economic Monitor,15
+DT.AMD.DLXF.CD,"LT Principal due per balance of payments account (BoP, current US$)",sources,Africa Development Indicators,11
+DT.AMT.BLAT.CB.CD,"CB, bilateral (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.BLAT.CD,"PPG, bilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLAT.GG.CD,"GG, bilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLAT.OPS.CD,"OPS, bilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLAT.PRVG.CD,"PRVG, bilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLAT.PS.CD,"PS, bilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLTC.CB.CD,"CB, bilateral concessional (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.BLTC.CD,"PPG, bilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLTC.GG.CD,"GG, bilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLTC.OPS.CD,"OPS, bilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLTC.PRVG.CD,"PRVG, bilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.BLTC.PS.CD,"PS, bilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.DEAE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEAE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECB.CD,"Principal repayments on external debt, central bank (PPG) (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.DECT.CD,"Principal repayments, Total (current US$)",sources,Africa Development Indicators,11
+DT.AMT.DECT.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.03.US,"Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.03.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.04.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.05.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.0912.US,"Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.1218.US,"Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.1824.US,"Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.24P.US,"Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.36.US,"Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.69.US,"Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.03.US,"Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.0912.US,"Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.1218.US,"Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.1824.US,"Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.24P.US,"Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.36.US,"Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.69.US,"Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.AR.IQ.US,"Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.03.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.0912.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.1218.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.1824.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.24P.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.36.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.69.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.IQ.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.CB.RM.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.03.US,"Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.0912.US,"Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.1218.US,"Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.1824.US,"Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.24P.US,"Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.36.US,"Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.69.US,"Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.IQ.US,"Ext. Debt Service Pmt, General Government, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.GG.RM.US,"Gross Ext. Debt Pos., General Government, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.03.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.0912.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.1218.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.1824.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.24P.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.36.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.69.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.IQ.US,"Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IL.RM.US,"Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.IQ.00.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.DECT.CD.IQ.US,"Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.03.US,"Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.0912.US,"Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.1218.US,"Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.1824.US,"Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.24P.US,"Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.36.US,"Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.69.US,"Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.IQ.US,"Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.MA.RM.US,"Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.03.US,"Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.0912.US,"Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.1218.US,"Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.1824.US,"Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.24P.US,"Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.36.US,"Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.69.US,"Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.IQ.US,"Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.OS.RM.US,"Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DECT.CD.RM.US,"Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEFE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DEGG.CD,"Principal repayments on external debt, general government sector (PPG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.DEPS.CD,"Principal repayments on external debt, public sector (PPG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.DILD.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DILD.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DIMF.CD,"IMF repurchases (AMT, current US$)",topics,External Debt,20
+DT.AMT.DLBN.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLBN.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLCD.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTF.CD,"Principal repayments on external debt, long-term + IMF (AMT, current US$)",topics,External Debt,20
+DT.AMT.DLTL.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTL.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTO.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.GG.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTS.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLTT.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AMT.DLXF.CD,"Principal repayments on external debt, long-term (AMT, current US$)",topics,External Debt,20
+DT.AMT.DOPS.CD,"Principal repayments on external debt, other public sector (PPG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.DPNG.CD,"Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.DPPG.CD,"Principal repayments on external debt, public and publicly guaranteed (PPG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.MIBR.CD,"PPG, IBRD (AMT, current US$)",topics,External Debt,20
+DT.AMT.MIDA.CD,"PPG, IDA (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLAT.CB.CD,"CB, multilateral (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.MLAT.CD,"PPG, multilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLAT.GG.CD,"GG, multilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLAT.OPS.CD,"OPS, multilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLAT.PRVG.CD,"PRVG, multilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLAT.PS.CD,"PS, multilateral (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLTC.CB.CD,"CB, multilateral concessional (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.MLTC.CD,"PPG, multilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLTC.GG.CD,"GG, multilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLTC.OPS.CD,"OPS, multilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLTC.PRVG.CD,"PRVG, multilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.MLTC.PS.CD,"PS, multilateral concessional (AMT, current US$)",topics,External Debt,20
+DT.AMT.OFFT.CB.CD,"CB, official creditors (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.OFFT.CD,"PPG, official creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.OFFT.GG.CD,"GG, official creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.OFFT.OPS.CD,"OPS, official creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.OFFT.PRVG.CD,"PRVG, official creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.OFFT.PS.CD,"PS, official creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PBND.CB.CD,"CB, bonds (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.PBND.CD,"PPG, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PBND.GG.CD,"GG, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PBND.OPS.CD,"OPS, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PBND.PRVG.CD,"PRVG, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PBND.PS.CD,"PS, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PCBK.CB.CD,"CB, commercial banks (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.PCBK.CD,"PPG, commercial banks (AMT, current US$)",topics,External Debt,20
+DT.AMT.PCBK.GG.CD,"GG, commercial banks (AMT, current US$)",topics,External Debt,20
+DT.AMT.PCBK.OPS.CD,"OPS, commercial banks (AMT, current US$)",topics,External Debt,20
+DT.AMT.PCBK.PRVG.CD,"PRVG, commercial banks (AMT, current US$)",topics,External Debt,20
+DT.AMT.PCBK.PS.CD,"PS, commercial banks (AMT, current US$)",topics,External Debt,20
+DT.AMT.PGNG.CD,"Principal repayments, PPG and PNG private creditors (AMT, current US$)",sources,Africa Development Indicators,11
+DT.AMT.PNGB.CD,"PNG, bonds (AMT, current US$)",topics,External Debt,20
+DT.AMT.PNGC.CD,"PNG, commercial banks and other creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PROP.CB.CD,"CB, other private creditors (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.PROP.CD,"PPG, other private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PROP.GG.CD,"GG, other private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PROP.OPS.CD,"OPS, other private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PROP.PRVG.CD,"PRVG, other private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PROP.PS.CD,"PS, other private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRPG.CD,"Principal repayments on external debt, private guaranteed by public sector (PPG) (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRVS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.03.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.04.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.05.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVS.CD.IQ.00.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PRVT.CB.CD,"CB, private creditors (AMT, current US$)",sources,International Debt Statistics,6
+DT.AMT.PRVT.CD,"PPG, private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRVT.GG.CD,"GG, private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRVT.OPS.CD,"OPS, private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRVT.PRVG.CD,"PRVG, private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PRVT.PS.CD,"PS, private creditors (AMT, current US$)",topics,External Debt,20
+DT.AMT.PUBS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.03.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.04.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.05.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AMT.PUBS.CD.IQ.00.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.AXA.DECT.CD.CB.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.GG.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Principal, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.MA.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.OT.HH.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.OT.NB.US,"Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.OT.NF.US,"Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DECT.CD.OT.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DIDI.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DIFE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DIIE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.AXA.DLXF.CD,"Principal arrears, long-term DOD",sources,International Debt Statistics,6
+DT.AXA.DPPG.CD,"Principal arrears, public and publicly guaranteed (current US$)",topics,External Debt,20
+DT.AXA.OFFT.CD,"Principal arrears, official creditors (current US$)",topics,External Debt,20
+DT.AXA.PRVT.CD,"Principal arrears, private creditors (current US$)",topics,External Debt,20
+DT.AXF.DPPG.CD,Principal forgiven (current US$),topics,External Debt,20
+DT.AXR.DPPG.CD,Principal rescheduled (current US$),topics,External Debt,20
+DT.AXR.OFFT.CD,"Principal rescheduled, official (current US$)",topics,External Debt,20
+DT.AXR.PRVT.CD,"Principal rescheduled, private (current US$)",topics,External Debt,20
+DT.COM.BLAT.CD,"Commitments, bilateral creditors (COM, current US$)",topics,External Debt,20
+DT.COM.DPPG.CD,"Commitments, public and publicly guaranteed (COM, current US$)",topics,External Debt,20
+DT.COM.MIBR.CD,"Commitments, IBRD (COM, current US$)",topics,External Debt,20
+DT.COM.MIDA.CD,"Commitments, IDA (COM, current US$)",topics,External Debt,20
+DT.COM.MLAT.CD,"Commitments, multilateral creditors (COM, current US$)",topics,External Debt,20
+DT.COM.OFFT.CD,"Commitments, official creditors (COM, current US$)",topics,External Debt,20
+DT.COM.PRVT.CD,"Commitments, private creditors (COM, current US$)",topics,External Debt,20
+DT.CUR.CCVL.CD,Cross-currency valuation (current US$),sources,WDI Database Archives,57
+DT.CUR.DMAK.ZS,"Currency composition of PPG debt, Deutsche mark (%)",topics,External Debt,20
+DT.CUR.EURO.ZS,"Currency composition of PPG debt, Euro (%)",topics,External Debt,20
+DT.CUR.FFRC.ZS,"Currency composition of PPG debt, French franc (%)",topics,External Debt,20
+DT.CUR.JYEN.ZS,"Currency composition of PPG debt, Japanese yen (%)",topics,External Debt,20
+DT.CUR.MULC.ZS,"Currency composition of PPG debt, Multiple currencies (%)",topics,External Debt,20
+DT.CUR.OTHC.ZS,"Currency composition of PPG debt, all other currencies (%)",topics,External Debt,20
+DT.CUR.SDRW.ZS,"Currency composition of PPG debt, SDR (%)",topics,External Debt,20
+DT.CUR.SWFR.ZS,"Currency composition of PPG debt, Swiss franc (%)",topics,External Debt,20
+DT.CUR.UKPS.ZS,"Currency composition of PPG debt, Pound sterling (%)",topics,External Debt,20
+DT.CUR.USDL.ZS,"Currency composition of PPG debt, U.S. dollars (%)",topics,External Debt,20
+DT.DFR.DPPG.CD,Debt forgiveness or reduction (current US$),topics,External Debt,20
+DT.DIS.BLAT.CB.CD,"CB, bilateral (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.BLAT.CD,"PPG, bilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLAT.GG.CD,"GG, bilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLAT.OPS.CD,"OPS, bilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLAT.PRVG.CD,"PRVG, bilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLAT.PS.CD,"PS, bilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLCT.CD,"Disbursements, Bilateral on nonconcessional terms (DIS, current US$)",sources,Africa Development Indicators,11
+DT.DIS.BLTC.CB.CD,"CB, bilateral concessional (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.BLTC.CD,"PPG, bilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLTC.GG.CD,"GG, bilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLTC.OPS.CD,"OPS, bilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLTC.PRVG.CD,"PRVG, bilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.BLTC.PS.CD,"PS, bilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.DECB.CD,"Disbursements on external debt, central bank (PPG) (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.DECT.CD,"Disbursements, Total (current US$)",sources,Africa Development Indicators,11
+DT.DIS.DEGG.CD,"Disbursements on external debt, general government sector (PPG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.DEPS.CD,"Disbursements on external debt, public sector (PPG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.DIMF.CD,"IMF purchases (DIS, current US$)",topics,External Debt,20
+DT.DIS.DLTF.CD,"Disbursements on external debt, long-term + IMF (DIS, current US$)",topics,External Debt,20
+DT.DIS.DLXF.CD,"Disbursements on external debt, long-term (DIS, current US$)",topics,External Debt,20
+DT.DIS.DOPS.CD,"Disbursements on external debt, other public sector (PPG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.DPNG.CD,"Disbursements on external debt, private nonguaranteed (PNG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.DPPG.CD,"Disbursements on external debt, public and publicly guaranteed (PPG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.DSTC.CD,"Disbursements, Short-term (DIS, current US$)",sources,Africa Development Indicators,11
+DT.DIS.IDAG.CD,IDA grants (current US$),topics,Aid Effectiveness,2
+DT.DIS.MIBR.CD,"PPG, IBRD (DIS, current US$)",topics,External Debt,20
+DT.DIS.MIDA.CD,"PPG, IDA (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLAT.CB.CD,"CB, multilateral (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.MLAT.CD,"PPG, multilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLAT.GG.CD,"GG, multilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLAT.OPS.CD,"OPS, multilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLAT.PRVG.CD,"PRVG, multilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLAT.PS.CD,"PS, multilateral (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLCT.CD,"Disbursements, PPG Multilateral creditors nonconcessional (DIS, current US$)",sources,Africa Development Indicators,11
+DT.DIS.MLTC.CB.CD,"CB, multilateral concessional (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.MLTC.CD,"PPG, multilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLTC.GG.CD,"GG, multilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLTC.OPS.CD,"OPS, multilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLTC.PRVG.CD,"PRVG, multilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.MLTC.PS.CD,"PS, multilateral concessional (DIS, current US$)",topics,External Debt,20
+DT.DIS.OFFT.CB.CD,"CB, official creditors (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.OFFT.CD,"PPG, official creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.OFFT.GG.CD,"GG, official creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.OFFT.OPS.CD,"OPS, official creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.OFFT.PRVG.CD,"PRVG, official creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.OFFT.PS.CD,"PS, official creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PBND.CB.CD,"CB, bonds (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.PBND.CD,"PPG, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PBND.GG.CD,"GG, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PBND.OPS.CD,"OPS, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PBND.PRVG.CD,"PRVG, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PBND.PS.CD,"PS, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PCBK.CB.CD,"CB, commercial banks (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.PCBK.CD,"PPG, commercial banks (DIS, current US$)",topics,External Debt,20
+DT.DIS.PCBK.GG.CD,"GG, commercial banks (DIS, current US$)",topics,External Debt,20
+DT.DIS.PCBK.OPS.CD,"OPS, commercial banks (DIS, current US$)",topics,External Debt,20
+DT.DIS.PCBK.PRVG.CD,"PRVG, commercial banks (DIS, current US$)",topics,External Debt,20
+DT.DIS.PCBK.PS.CD,"PS, commercial banks (DIS, current US$)",topics,External Debt,20
+DT.DIS.PGNG.CD,"Disbursements, PPG and PNG private creditors (current US$)",sources,Africa Development Indicators,11
+DT.DIS.PNGB.CD,"PNG, bonds (DIS, current US$)",topics,External Debt,20
+DT.DIS.PNGC.CD,"PNG, commercial banks and other creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PROP.CB.CD,"CB, other private creditors (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.PROP.CD,"PPG, other private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PROP.GG.CD,"GG, other private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PROP.OPS.CD,"OPS, other private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PROP.PRVG.CD,"PRVG, other private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PROP.PS.CD,"PS, other private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRPG.CD,"Disbursements on external debt, private guaranteed by public sector (PPG) (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRVT.CB.CD,"CB, private creditors (DIS, current US$)",sources,International Debt Statistics,6
+DT.DIS.PRVT.CD,"PPG, private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRVT.GG.CD,"GG, private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRVT.OPS.CD,"OPS, private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRVT.PRVG.CD,"PRVG, private creditors (DIS, current US$)",topics,External Debt,20
+DT.DIS.PRVT.PS.CD,"PS, private creditors (DIS, current US$)",topics,External Debt,20
+DT.DOD.ALLC.CD,"External debt stocks, concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.ALLC.ZS,Concessional debt (% of total external debt),topics,External Debt,20
+DT.DOD.ALLC.ZSG,Debt on Concessional terms to GDP (% of GDP),sources,Africa Development Indicators,11
+DT.DOD.ALLC.ZSX,Debt on Concessional terms to export ratio (% of exports),sources,Africa Development Indicators,11
+DT.DOD.ALLN.CD,Debt on Non-concessional terms (current US$),sources,Africa Development Indicators,11
+DT.DOD.ALLN.ZSG,Debt on Non-concessional terms to GDP (% of GDP),sources,Africa Development Indicators,11
+DT.DOD.ALLN.ZSX,Debt on Non-concessional terms to export ratio (% of exports),sources,Africa Development Indicators,11
+DT.DOD.BLAT.CB.CD,"CB, bilateral (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.BLAT.CD,"PPG, bilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLAT.GG.CD,"GG, bilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLAT.OPS.CD,"OPS, bilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLAT.PRVG.CD,"PRVG, bilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLAT.PS.CD,"PS, bilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTC.CB.CD,"CB, bilateral concessional (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.BLTC.CD,"PPG, bilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTC.GG.CD,"GG, bilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTC.OPS.CD,"OPS, bilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTC.PRVG.CD,"PRVG, bilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTC.PS.CD,"PS, bilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.BLTN.CD,"Debt outstanding and disbursed, PPG Bilateral on nonconcessional terms (DOD, current US$)",sources,Africa Development Indicators,11
+DT.DOD.BNLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.BNLT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.CDLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.CDLT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.CDST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.CDST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECB.CD,"External debt stocks, central bank (PPG) (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.DECT.AR.T4.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.AR.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CB.DS.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD,"External debt stocks, total (DOD, current US$)",topics,Economy & Growth,3
+DT.DOD.DECT.CD.AR.BE.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.EA.US,"Ext. Assets in Debt Instruments, All Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.EN.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.EX.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.GE.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.NE.US,"Net Ext. Debt Position, All Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.OC.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.PX.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.TL.US,"Gross Ext. Debt Pos., All Sectors, All maturities, Arrears, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.AR.TR.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.AR.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.TD.MP.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.TD.MV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CB.TD.NV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.CG,Total change in external debt stocks (current US$),topics,External Debt,20
+DT.DOD.DECT.CD.DC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.DC.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.DT.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.CB.EU.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.CB.JY.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.CB.OT.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.CB.TO.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.CB.US.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.GG.EU.US,"Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.GG.JY.US,"Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.GG.OT.US,"Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.GG.TO.US,"Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.GG.US.US,"Gross Ext. F. Curr Debt Pos., General Government, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.IL.EU.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.IL.JY.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.IL.OT.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.IL.TO.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.IL.US.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.MA.EU.US,"Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.MA.JY.US,"Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.MA.OT.US,"Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.MA.TO.US,"Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.MA.US.US,"Gross Ext. F. Curr Debt Pos., Central Bank, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.OT.EU.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.OT.JY.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.OT.OT.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.OT.TO.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.OT.US.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.FC.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FF.ER.US,"Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FF.OD.US,"Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FF.TT.US,"Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FF.UD.US,"Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.FF.YE.US,"Gross Ext. F. Curr Debt Pos., All Sectors, All maturities, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government , All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.TD.MP.US,"Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.TD.MV.US,"Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.GG.TD.NV.US,"Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.BE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.EA.US,"Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.EN.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.EX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.GE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.NE.US,"Net Ext. Debt Position, DI: Intercom Lending, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.OC.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.PX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.AR.TR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.IL.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.LT.TD.MP.US,"Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.LT.TD.MV.US,"Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.LT.TD.NV.US,"Gross Ext. Debt Pos., All Sectors, Long-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.LT.US,"Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.TD.MP.US,"Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.TD.MV.US,"Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.MA.TD.NV.US,"Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.TD.MP.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.TD.MV.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.OT.TD.NV.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.PC,"Debt outstanding and disbursed, Total per capita (DOD, current US$)",sources,Africa Development Indicators,11
+DT.DOD.DECT.CD.ST.TD.MP.US,"Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.ST.TD.MV.US,"Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.ST.TD.NV.US,"Gross Ext. Debt Pos., All Sectors, Short-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.ST.US,"Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.TD.MP.US,"Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.TD.MV.US,"Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.TD.NV.US,"Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.TL.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.TO.US,"Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.UC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.CD.UC.US,"Gross Ext. Debt Pos., All Sectors, All maturities, All instruments, Unallocated, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.CD.ZSG,"Debt outstanding and disbursed, Total to GDP (% of GDP)",sources,Africa Development Indicators,11
+DT.DOD.DECT.DS.T4.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DECT.DS.US,"Gross Ext. Debt Pos., All Sectors, All maturities, Debt Securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.EX.ZS,"External debt stocks (% of exports of goods, services and primary income)",topics,Economy & Growth,3
+DT.DOD.DECT.GG.AR.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.GG.DS.US,"Gross Ext. Debt Pos., General Government, All maturities, Debt Securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.GN.ZS,External debt stocks (% of GNI),topics,Economy & Growth,3
+DT.DOD.DECT.IL.AR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.MA.DS.US,"Gross Ext. Debt Pos., Central Bank, All maturities, Debt Securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.OT.DS.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, Debt Securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DECT.PC.CD,Total external debt per capita (US$),sources,International Debt Statistics,6
+DT.DOD.DECT.T4.AR.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DEGG.CD,"External debt stocks, general government sector (PPG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.DEPS.CD,"External debt stocks, public sector (PPG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.DIDI.CD.FC.IL.EU.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.FC.IL.JY.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.FC.IL.OT.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.FC.IL.TO.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.FC.IL.US.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.BE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.EA.US,"Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.EN.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.EX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.GE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.NE.US,"Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investment ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.OC.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.PX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.TR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.IL.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.PR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIDI.CD.PU.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.FC.IL.EU.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.FC.IL.JY.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.FC.IL.OT.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.FC.IL.TO.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.FC.IL.US.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liabilities to fellow enterprises, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.BE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent. , Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.EA.US,"Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.EN.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.EX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.GE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt between fellow enterprises, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.NE.US,"Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt between fellow enterprises, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.OC.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.PX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.TR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.IL.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.PR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIFE.CD.PU.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.FC.IL.EU.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.FC.IL.JY.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.FC.IL.OT.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.FC.IL.TO.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.FC.IL.US.US,"Gross Ext. F. Curr Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.BE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.EA.US,"Ext. Assets in Debt Instruments, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.EN.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.EX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.GE.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.NE.US,"Net Ext. Debt Position, DI: Intercom Lending, All maturities, Debt of dir. investors to dir. investment ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.OC.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.PX.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.TR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.IL.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.PR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIE.CD.PU.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIL.CD.PR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, DI: Intercom Lending, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIIL.CD.PU.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, DI: Intercom Lending, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DIMF.CD,"Use of IMF credit (DOD, current US$)",topics,External Debt,20
+DT.DOD.DIMF.US.CD,"Use of IMF credit (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.DLBN.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLBN.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits , USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLCD.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTF.CD,"Debt outstanding and disbursed, Long-term debt including IMF credit (DOD, current US$)",sources,Africa Development Indicators,11
+DT.DOD.DLTL.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTL.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities , Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTO.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Special drawing rights (SDRs), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (SDRs), Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.NE.US,"Net Ext. Debt Position, General Government, Long-term, Special drawing rights (SDRs), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.GG.US,"Gross Ext. Debt Pos., General Government, Long-term, Special drawing rights (allocations), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Special drawing rights (SDRs), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (SDRs), Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Special drawing rights (SDRs), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTS.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Special drawing rights (allocations), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances , Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, Trade credit and advances , USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLTT.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD,"External debt stocks, long-term (DOD, current US$)",topics,External Debt,20
+DT.DOD.DLXF.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.TD.MP.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.TD.MV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.CB.TD.NV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.DC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DLXF.CD.DC.US,"Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.DR,Long-Term External Debt (by debtor) (US$),sources,WDI Database Archives,57
+DT.DOD.DLXF.CD.FC.CB.EU.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.CB.JY.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.CB.OT.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.CB.TO.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.CB.US.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Long-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.GG.EU.US,"Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.GG.JY.US,"Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.GG.OT.US,"Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.GG.TO.US,"Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.GG.US.US,"Gross Ext. F. Curr Debt Pos., General Government, Long-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.MA.EU.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.MA.JY.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.MA.OT.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.MA.TO.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.MA.US.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Long-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.OT.EU.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.OT.JY.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.OT.OT.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.OT.TO.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.OT.US.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Long-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.FC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DLXF.CD.FC.US,"Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.TD.MP.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.TD.MV.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.GG.TD.NV.US,"Gross Ext. Debt Pos., General Government, Long-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.TD.MP.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.TD.MV.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.MA.TD.NV.US,"Gross Ext. Debt Pos., Central Bank, Long-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.TD.MP.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.TD.MV.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.OT.TD.NV.US,"Gross Ext. Debt Pos., Other Sectors, Long-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.CD.US,"Gross Ext. Debt Pos., All Sectors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.PR.DS.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.PU.DS.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DLXF.PV.GNP.ZS,Present value of debt (% of GNP),sources,WDI Database Archives,57
+DT.DOD.DLXF.PV.XGS.ZS,Present value of debt (% of exports of goods and services),sources,WDI Database Archives,57
+DT.DOD.DOPS.CD,"External debt stocks, other public sector (PPG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.DPNG.CD,"External debt stocks, private nonguaranteed (PNG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.DPNG.CD.AR.US,"Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, Arrears, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPNG.CD.LT.US,"Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPNG.CD.ST.US,"Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPNG.CD.US,"Gross Ext. Debt Pos., Private Sector Ext. Debt Not Publicly Guar., All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPNG.ZS,Private nonguaranteed debt (% of external debt),sources,WDI Database Archives,57
+DT.DOD.DPPC.CD.DT.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, All maturities, All instruments, All currencies, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPPC.CD.TO.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DPPG.AR.US,"Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DPPG.CD,"External debt stocks, public and publicly guaranteed (PPG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.DPPG.CD.AR.US,"Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DPPG.DS.US,"Gross Ext. Debt Pos., Public and Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSCD.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSDR.CD,"SDR allocations (DOD, current US$)",topics,External Debt,20
+DT.DOD.DSOO.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, Other debt instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSOO.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD,"External debt stocks, short-term (DOD, current US$)",topics,External Debt,20
+DT.DOD.DSTC.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.TD.MP.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.TD.MV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.CB.TD.NV.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.DC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DSTC.CD.DC.US,"Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Domestic currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.DR,Short-Term External Debt (US$),sources,WDI Database Archives,57
+DT.DOD.DSTC.CD.FC.CB.EU.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.CB.JY.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.CB.OT.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.CB.TO.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.CB.US.US,"Gross Ext. F. Curr Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.GG.EU.US,"Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.GG.JY.US,"Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.GG.OT.US,"Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.GG.TO.US,"Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.GG.US.US,"Gross Ext. F. Curr Debt Pos., General Government, Short-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.MA.EU.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.MA.JY.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.MA.OT.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.MA.TO.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.MA.US.US,"Gross Ext. F. Curr Debt Pos., Central Bank, Short-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.OT.EU.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Euro, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.OT.JY.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Yen, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.OT.OT.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, Other curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.OT.TO.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, All curr., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.OT.US.US,"Gross Ext. F. Curr Debt Pos., Other Sectors, Short-term, All instruments, US dollar, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.FC.T5.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.DSTC.CD.FC.US,"Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, Foreign currency, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.TD.MP.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.TD.MV.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.GG.TD.NV.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.TD.MP.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.TD.MV.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.MA.TD.NV.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.CD.US,"Gross Ext. Debt Pos., All Sectors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.IR.ZS,Short-term debt (% of total reserves),topics,Economy & Growth,3
+DT.DOD.DSTC.PR.DS.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.PU.DS.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTC.XP.ZS,"Short-term debt (% of exports of goods, services and primary income)",topics,Economy & Growth,3
+DT.DOD.DSTC.ZS,Short-term debt (% of total external debt),topics,External Debt,20
+DT.DOD.DSTL.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTL.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTM.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTO.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTO.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTO.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.BE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.EA.US,"Ext. Assets in Debt Instruments, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.EN.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.EX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.GE.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.NE.US,"Net Ext. Debt Position, Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.OC.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.PX.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.TR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.BE.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.EN.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.EX.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.OC.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.PX.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.TR.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.HN.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.BE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.EN.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.EX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.OC.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.PX.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.TR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.NC.US,"Gross Ext. Debt Pos., Nonfinancial corporations, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OF.US,"Gross Ext. Debt Pos., Other financial corporations, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.BE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.EA.US,"Ext. Assets in Debt Instruments, Other Sectors, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.EN.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, end of period, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.EX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Exchange rate chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.GE.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.NE.US,"Net Ext. Debt Position, Other Sectors, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.OC.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other chg in vol., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.PX.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Other price chg, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.TR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, Transactions, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.TD.MP.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Diff. with Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.TD.MV.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Market Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSTT.CD.OT.TD.NV.US,"Gross Ext. Debt Pos., Other Sectors, Short-term, Debt Securities, Nominal Value, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.GG.AR.EA.US,"Ext. Assets in Debt Instruments, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.GG.AR.GE.US,"Gross Ext. Debt Pos., General Government, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.GG.AR.NE.US,"Net Ext. Debt Position, General Government, Short-term, Unallocated gold accounts included in monetary gold, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.MA.AR.EA.US,"Ext. Assets in Debt Instruments, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.MA.AR.GE.US,"Gross Ext. Debt Pos., Central Bank, Short-term, Unallocated gold accounts included in monetary gold, Beginning pos., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.DSUN.CD.MA.AR.NE.US,"Net Ext. Debt Position, Central Bank, Short-term, Unallocated gold accounts included in monetary gold, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.LOLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.LOLT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.LOST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.LOST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.LTST.CD,"External Debt, total",sources,WDI Database Archives,57
+DT.DOD.MDRI.CD,Debt forgiveness grants (current US$),topics,Aid Effectiveness,2
+DT.DOD.MIBR.CD,"PPG, IBRD (DOD, current US$)",topics,External Debt,20
+DT.DOD.MIDA.CD,"PPG, IDA (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.CB.CD,"CB, multilateral (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.MLAT.CD,"PPG, multilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.GG.CD,"GG, multilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.OPS.CD,"OPS, multilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.PRVG.CD,"PRVG, multilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.PS.CD,"PS, multilateral (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLAT.ZS,Multilateral debt (% of total external debt),topics,External Debt,20
+DT.DOD.MLTC.CB.CD,"CB, multilateral concessional (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.MLTC.CD,"PPG, multilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLTC.GG.CD,"GG, multilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLTC.OPS.CD,"OPS, multilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLTC.PRVG.CD,"PRVG, multilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLTC.PS.CD,"PS, multilateral concessional (DOD, current US$)",topics,External Debt,20
+DT.DOD.MLTN.CD,"Debt outstanding and disbursed, PPG Multilateral on nonconcessional terms (DOD, current US$)",sources,Africa Development Indicators,11
+DT.DOD.MMST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.MMST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.MWBG.CD,"IBRD loans and IDA credits (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.CB.CD,"CB, official creditors (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.OFFT.CD,"PPG, official creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.GG.CD,"GG, official creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.OPS.CD,"OPS, official creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PR.DS.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PR.IN.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PR.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PRVG.CD,"PRVG, official creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.PS.CD,"PS, official creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.OFFT.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PU.DS.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PU.IN.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OFFT.PU.PR.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OLLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OLLT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OOST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.OOST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.PBND.CB.CD,"CB, bonds (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.PBND.CD,"PPG, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PBND.GG.CD,"GG, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PBND.OPS.CD,"OPS, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PBND.PRVG.CD,"PRVG, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PBND.PS.CD,"PS, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCBK.CB.CD,"CB, commercial banks (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.PCBK.CD,"PPG, commercial banks (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCBK.GG.CD,"GG, commercial banks (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCBK.OPS.CD,"OPS, commercial banks (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCBK.PRVG.CD,"PRVG, commercial banks (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCBK.PS.CD,"PS, commercial banks (DOD, current US$)",topics,External Debt,20
+DT.DOD.PCCR.US,"Public and Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPR.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPR.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPU.LT.US,"Public Sector Ext. Debt Pos., Paris Club member creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPU.ST.US,"Public Sector Ext. Debt Pos., Paris Club member creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PCPU.US,"Public Sector Ext. Debt Pos., Paris Club member creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PGNG.CD,"Debt outstanding and disbursed, PPG and PNG private creditors (DOD, current US$)",sources,Africa Development Indicators,11
+DT.DOD.PNGB.CD,"PNG, bonds (DOD, current US$)",topics,External Debt,20
+DT.DOD.PNGC.CD,"PNG, commercial banks and other creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRAE.IL.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBA.CD.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBA.CD.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBA.CD.US,"Publicly Guar. Private Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBL.CD.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBL.CD.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBL.CD.US,"Publicly Guar. Private Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRBN.LT.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRCD.LT.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Currency and deposits , USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRCD.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Currency and deposits , USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRDI.IL.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRFE.IL.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRLO.LT.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Loans, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRLO.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Loans, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.PRMM.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRMU.CD.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRMU.CD.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRMU.CD.US,"Publicly Guar. Private Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PROD.LT.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PROD.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PROP.CB.CD,"CB, other private creditors (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.PROP.CD,"PPG, other private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PROP.GG.CD,"GG, other private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PROP.OPS.CD,"OPS, other private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PROP.PRVG.CD,"PRVG, other private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PROP.PS.CD,"PS, other private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PROT.CD.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PROT.CD.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PROT.CD.US,"Publicly Guar. Private Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRPG.CD,"External debt stocks, private guaranteed by public sector (PPG) (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.PRTC.LT.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRTC.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRTD.CD.LT.US,"Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRTD.CD.ST.US,"Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRTD.CD.US,"Publicly Guar. Private Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.AR.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.CD,"External debt stocks, long-term private sector (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRVS.CD.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, Arrears, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.CD.LT.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.CD.ST.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.CD.T3.US,"Publicly Guar. Private Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.CD.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.DI.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, DI: Intercom. Lending, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.DS.LT.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.DS.ST.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.DS.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.IR.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.LT.TO.US,"Publicly Guar. Private Sector Ext. Debt Pos., Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.PR.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.ST.AR.US,"Publicly Guar. Private Sector Ext. Debt Pos., Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVS.TO.T4.US,"Publicly Guar. Private Sector Ext. Debt Pos., All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PRVT.CB.CD,"CB, private creditors (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.PRVT.CD,"PPG, private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRVT.GG.CD,"GG, private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRVT.OPS.CD,"OPS, private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRVT.PRVG.CD,"PRVG, private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PRVT.PS.CD,"PS, private creditors (DOD, current US$)",topics,External Debt,20
+DT.DOD.PSDR.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Special drawing rights (allocations), USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUAE.IL.US,"Public Sector Ext. Debt Pos., All maturities, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBA.CD.LT.US,"Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBA.CD.ST.US,"Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBA.CD.US,"Public Sector Ext. Debt Pos., Deposit-Taking Corp., exc. CB, creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBL.CD.LT.US,"Public Sector Ext. Debt Pos., Official bilateral creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBL.CD.ST.US,"Public Sector Ext. Debt Pos., Official bilateral creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBL.CD.US,"Public Sector Ext. Debt Pos., Official bilateral creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBN.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Debt securities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.AR.T4.US,"Public Sector Ext. Debt Pos., All maturities, Arrears, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.CD,"External debt stocks, long-term public sector (DOD, current US$)",topics,External Debt,20
+DT.DOD.PUBS.CD.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, Arrears, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.CD.LT.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.CD.ST.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.CD.T3.US,"Public Sector Ext. Debt Pos., All Creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.CD.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.DI.US,"Public Sector Ext. Debt Pos., All maturities, DI: Intercom. Lending, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.DS.LT.T4.US,"Public Sector Ext. Debt Pos., Long-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.DS.ST.T4.US,"Public Sector Ext. Debt Pos., Short-term, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.DS.T4.US,"Public Sector Ext. Debt Pos., All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.IR.T4.US,"Public Sector Ext. Debt Pos., All maturities, Arrears, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.LT.TO.US,"Public Sector Ext. Debt Pos., Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.PR.T4.US,"Public Sector Ext. Debt Pos., All maturities, Arrears, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUBS.TO.T4.US,"Public Sector Ext. Debt Pos., All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUCD.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Currency and deposits , USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUCD.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, Currency and deposits , USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUDI.IL.US,"Public Sector Ext. Debt Pos., All maturities, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUFE.IL.US,"Public Sector Ext. Debt Pos., All maturities, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PULO.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Loans, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PULO.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, Loans, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PULT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.PUMM.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, Debt securities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUMU.CD.LT.US,"Public Sector Ext. Debt Pos., Multilateral creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUMU.CD.ST.US,"Public Sector Ext. Debt Pos., Multilateral creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUMU.CD.US,"Public Sector Ext. Debt Pos., Multilateral creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUOD.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUOO.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, Other debt liabilities, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUOT.CD.LT.US,"Public Sector Ext. Debt Pos., Other creditors, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUOT.CD.ST.US,"Public Sector Ext. Debt Pos., Other creditors, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUOT.CD.US,"Public Sector Ext. Debt Pos., Other creditors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.PUTC.LT.AR.US,"Public Sector Ext. Debt Pos., Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUTC.ST.AR.US,"Public Sector Ext. Debt Pos., Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUTD.CD.LT.US,"Public Sector Ext. Debt Pos., Debt securities' holders, Long-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUTD.CD.ST.US,"Public Sector Ext. Debt Pos., Debt securities' holders, Short-term, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PUTD.CD.US,"Public Sector Ext. Debt Pos., Debt securities' holders, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.DOD.PVLT.CD,Present value of debt (US$),sources,WDI Database Archives,57
+DT.DOD.PVLX.CD,Present value of external debt (current US$),topics,Economy & Growth,3
+DT.DOD.PVLX.EX.ZS,"Present value of external debt (% of exports of goods, services and primary income)",topics,Economy & Growth,3
+DT.DOD.PVLX.GN.ZS,Present value of external debt (% of GNI),topics,Economy & Growth,3
+DT.DOD.PVLX.ND.ZS,Present value to nominal value of debt (%),sources,Africa Development Indicators,11
+DT.DOD.RSDL.CD,"Residual, debt stock-flow reconciliation (current US$)",topics,External Debt,20
+DT.DOD.SDLT.CD.PU.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Special drawing rights (allocations), USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.TCLT.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.TCLT.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Long-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.TCST.CD.PR.AR.US,"Gross Ext. Debt Pos., Publicly Guar. Private Sector Ext. Debt, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.TCST.CD.PU.AR.US,"Gross Ext. Debt Pos., Public Sector Ext. Debt, Short-term, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOD.VPPG.CD,"External debt stocks, variable rate public and publicly guaranteed debt (PPG) (DOD, current US$)",sources,International Debt Statistics,6
+DT.DOD.VTOT.CD,"External debt stocks, variable rate (DOD, current US$)",topics,External Debt,20
+DT.DOR.DECT.AR.US,"Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CB.DS.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CD.IL.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.DS.US,"Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.GG.DS.US,"Gross Ext. Debt Pos., ST Rem., General Government, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.IL.AR.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.MA.DS.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, All instruments, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.OT.DS.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, All maturities, Debt securities, Memo item, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DECT.RL.US,"Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, Reserve related liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DIDI.CD.IL.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DIFE.CD.IL.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DIIE.CD.IL.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLBN.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLBN.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLBN.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLBN.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLCD.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLCD.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLCD.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTC.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTL.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTL.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTL.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTL.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTO.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTO.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTO.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTO.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTT.CD.CB.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTT.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTT.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLTT.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLXF.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, LT debt obg pmt 1year or less, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLXF.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, LT debt obg pmt 1year or less, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLXF.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, LT debt obg pmt 1year or less, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DLXF.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, LT debt obg pmt 1year or less, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSCD.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSCD.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSCD.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSCD.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Currency and deposits, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSOO.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSOO.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSOO.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSOO.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Other debt liabilities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.IL.AR.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, ST debt on orig. maturity, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTC.CD.RM.AR.US,"Gross Ext. Debt Pos., ST Rem., All Sectors, All maturities, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTL.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTL.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTL.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTL.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Loans, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTM.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTM.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTM.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTM.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Debt securities, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTT.CD.CB.AR.US,"Gross Ext. Debt Pos., ST Rem., Deposit-Taking Corp., exc. CB, ST debt on orig. maturity, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTT.CD.GG.AR.US,"Gross Ext. Debt Pos., ST Rem., General Government, ST debt on orig. maturity, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTT.CD.MA.AR.US,"Gross Ext. Debt Pos., ST Rem., Central Bank, ST debt on orig. maturity, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.DSTT.CD.OT.AR.US,"Gross Ext. Debt Pos., ST Rem., Other Sectors, ST debt on orig. maturity, Trade credit and advances, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.LTDI.CD.IL.RM.AR.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of DI ent. to dir. investors, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.LTFE.CD.IL.RM.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. to fellow ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.LTIE.CD.IL.RM.AR.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, Debt liab. of dir. investors to DI ent., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DOR.LTOT.CD.IL.RM.AR.US,"Gross Ext. Debt Pos., ST Rem., DI: Intercom Lending, LT debt obg pmt 1year or less, All instruments, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.DSB.DPPG.CD,Debt buyback (current US$),topics,External Debt,20
+DT.DSF.DPPG.CD,Debt stock reduction (current US$),topics,External Debt,20
+DT.DTA.DLXF.CD,Total stock of arrears (principal and interest payments) (current US$),sources,Africa Development Indicators,11
+DT.DTA.OADJ.CD,Adjustment to Arrears,sources,Africa Development Indicators,11
+DT.DXR.DPPG.CD,Debt stock rescheduled (current US$),topics,External Debt,20
+DT.GPA.DPPG,Average grace period on new external debt commitments (years),topics,External Debt,20
+DT.GPA.OFFT,"Average grace period on new external debt commitments, official (years)",topics,External Debt,20
+DT.GPA.PRVT,"Average grace period on new external debt commitments, private (years)",topics,External Debt,20
+DT.GRE.DPPG,Average grant element on new external debt commitments (%),topics,External Debt,20
+DT.GRE.OFFT,"Average grant element on new external debt commitments, official (%)",topics,External Debt,20
+DT.GRE.PRVT,"Average grant element on new external debt commitments, private (%)",topics,External Debt,20
+DT.HPC.COMR.PV,"Debt relief committed under HIPC initiative, cumulative US$ in end-2012 NPV terms",topics,Millenium development goals,18
+DT.HPC.MDRI.PV,"Debt relief delivered in full under MDRI initiative, cumulative US$ in end-2012 NPV terms",topics,Millenium development goals,18
+DT.HPC.STTS,Status under enhanced HIPC initiative,topics,Millenium development goals,18
+DT.HPC.TOTL.PV,"Debt relief committed under HIPC and MDRI initiatives, cumulative US$ in end-2012 NPV terms",topics,Millenium development goals,18
+DT.INA.DECT.CD,Adjustments to scheduled interest (current US$),sources,Africa Development Indicators,11
+DT.IND.DEXF.CD,"Interest due, total long-term and short term, including IMF per BOP (current US$)",sources,Africa Development Indicators,11
+DT.INP.DECT.00.03.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 0 to 3 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.03.YR.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 3yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.04.06.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 3 to 6 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.04.YR.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 4yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.05.10.YR.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 5 to 10 yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.05.YR.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 5yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.07.09.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 6 to 9 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.10.12.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 9 to 12 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.10.15.YR.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 10 to 15 yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.13.18.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 12 to 18 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.19.24.MO.SA.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, 18 to 24 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INP.DECT.CD.SA.03.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 0 to 3, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.0912.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 9 to 12, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.1218.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 12 to 18, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.1824.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 18 to 24, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.36.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 3 to 6, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.69.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, More than 6 to 9, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.03.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 0 to 3, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.0912.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 9 to 12, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.1218.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 12 to 18, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.1824.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 18 to 24, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.36.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 3 to 6, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.69.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, More than 6 to 9, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.AR.IQ.US,"Gross Ext. Debt Pmt, Interest payments on SDR allocations, Immediate, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.CD.SA.IQ.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediate, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INP.DECT.IQ.SA.00.US,"Ext. Debt Service Pmt, Interest payments on SDR allocations, Immediately, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.00.03.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 0 to 3 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.03.YR.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.04.06.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 3 to 6 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.04.YR.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 4yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.05.10.YR.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5 to 10 yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.05.YR.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 5yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.07.09.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 6 to 9 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.10.12.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 9 to 12 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.10.15.YR.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 10 to 15 yrs, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.13.18.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 12 to 18 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.19.24.MO.SA.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, 18 to 24 mo., All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DECT.CD.SA.03.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.0912.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.1218.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.1824.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.36.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.69.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.03.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 0 to 3, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.0912.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 9 to 12, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.1218.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 12 to 18, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.1824.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 18 to 24, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.36.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 3 to 6, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.69.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, More than 6 to 9, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.AR.IQ.US,"Gross Ext. Debt Pmt, Interest receipts on SDR holdings, Immediate, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.CD.SA.IQ.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediate, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INR.DECT.IQ.SA.00.US,"Ext. Debt Service Pmt, Interest receipts on SDR holdings, Immediately, All instruments, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INR.DPPG,Average interest on new external debt commitments (%),topics,External Debt,20
+DT.INR.OFFT,"Average interest on new external debt commitments, official (%)",topics,External Debt,20
+DT.INR.PRVT,"Average interest on new external debt commitments, private (%)",topics,External Debt,20
+DT.INT.BLAT.CB.CD,"CB, bilateral (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.BLAT.CD,"PPG, bilateral (INT, current US$)",topics,External Debt,20
+DT.INT.BLAT.GG.CD,"GG, bilateral (INT, current US$)",topics,External Debt,20
+DT.INT.BLAT.OPS.CD,"OPS, bilateral (INT, current US$)",topics,External Debt,20
+DT.INT.BLAT.PRVG.CD,"PRVG, bilateral (INT, current US$)",topics,External Debt,20
+DT.INT.BLAT.PS.CD,"PS, bilateral (INT, current US$)",topics,External Debt,20
+DT.INT.BLTC.CB.CD,"CB, bilateral concessional (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.BLTC.CD,"PPG, bilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.BLTC.GG.CD,"GG, bilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.BLTC.OPS.CD,"OPS, bilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.BLTC.PRVG.CD,"PRVG, bilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.BLTC.PS.CD,"PS, bilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.DEAE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEAE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECB.CD,"Interest payments on external debt, central bank (PPG) (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.DECT.CD,"Interest payments on external debt, total (INT, current US$)",topics,External Debt,20
+DT.INT.DECT.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.03.US,"Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.03.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.04.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.05.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.0912.US,"Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.1218.US,"Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.1824.US,"Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.24P.US,"Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.36.US,"Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.69.US,"Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.03.US,"Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.0912.US,"Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.1218.US,"Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.1824.US,"Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.24P.US,"Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.36.US,"Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.69.US,"Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.AR.IQ.US,"Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.03.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.0912.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.1218.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.1824.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.24P.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.36.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.69.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.IQ.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.CB.RM.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.03.US,"Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.0912.US,"Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.1218.US,"Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.1824.US,"Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.24P.US,"Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.36.US,"Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.69.US,"Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.IQ.US,"Ext. Debt Service Pmt, General Government, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.GG.RM.US,"Gross Ext. Debt Pos., General Government, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.03.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.0912.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.1218.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.1824.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.24P.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.36.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.69.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.IQ.US,"Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IL.RM.US,"Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.IQ.00.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.DECT.CD.IQ.US,"Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.03.US,"Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.0912.US,"Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.1218.US,"Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.1824.US,"Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.24P.US,"Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.36.US,"Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.69.US,"Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.IQ.US,"Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.MA.RM.US,"Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.03.US,"Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.0912.US,"Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.1218.US,"Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.1824.US,"Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.24P.US,"Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.36.US,"Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.69.US,"Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.IQ.US,"Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.OS.RM.US,"Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.CD.RM.US,"Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DECT.EX.ZS,"Interest payments on external debt (% of exports of goods, services and primary income)",topics,Economy & Growth,3
+DT.INT.DECT.GN.ZS,Interest payments on external debt (% of GNI),topics,Economy & Growth,3
+DT.INT.DEFE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEFE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DEGG.CD,"Interest payments on external debt, general government sector (PPG) (INT, current US$)",topics,External Debt,20
+DT.INT.DEPS.CD,"Interest payments on external debt, public sector (PPG) (INT, current US$)",topics,External Debt,20
+DT.INT.DILD.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DILD.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DIMF.CD,"IMF charges (INT, current US$)",topics,External Debt,20
+DT.INT.DIMF.US.CD,"IMF credit, charges (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.DLBN.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLBN.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLCD.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTF.CD,"Interest payments, Long-term debt including IMF credit (current US$)",sources,Africa Development Indicators,11
+DT.INT.DLTL.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTL.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTO.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.GG.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTS.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLTT.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INT.DLXF.CD,"Interest payments on external debt, long-term (INT, current US$)",topics,External Debt,20
+DT.INT.DOPS.CD,"Interest payments on external debt, other public sector (PPG) (INT, current US$)",topics,External Debt,20
+DT.INT.DPNG.CD,"Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)",topics,External Debt,20
+DT.INT.DPPG.CD,"Interest payments on external debt, public and publicly guaranteed (PPG) (INT, current US$)",topics,External Debt,20
+DT.INT.DSDR.CD,"IMF SDR allocations, charges (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.DSTC.CD,"Interest payments on external debt, short-term (INT, current US$)",topics,External Debt,20
+DT.INT.MIBR.CD,"PPG, IBRD (INT, current US$)",topics,External Debt,20
+DT.INT.MIDA.CD,"PPG, IDA (INT, current US$)",topics,External Debt,20
+DT.INT.MLAT.CB.CD,"CB, multilateral (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.MLAT.CD,"PPG, multilateral (INT, current US$)",topics,External Debt,20
+DT.INT.MLAT.GG.CD,"GG, multilateral (INT, current US$)",topics,External Debt,20
+DT.INT.MLAT.OPS.CD,"OPS, multilateral (INT, current US$)",topics,External Debt,20
+DT.INT.MLAT.PRVG.CD,"PRVG, multilateral (INT, current US$)",topics,External Debt,20
+DT.INT.MLAT.PS.CD,"PS, multilateral (INT, current US$)",topics,External Debt,20
+DT.INT.MLTC.CB.CD,"CB, multilateral concessional (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.MLTC.CD,"PPG, multilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.MLTC.GG.CD,"GG, multilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.MLTC.OPS.CD,"OPS, multilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.MLTC.PRVG.CD,"PRVG, multilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.MLTC.PS.CD,"PS, multilateral concessional (INT, current US$)",topics,External Debt,20
+DT.INT.OFFT.CB.CD,"CB, official creditors (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.OFFT.CD,"PPG, official creditors (INT, current US$)",topics,External Debt,20
+DT.INT.OFFT.GG.CD,"GG, official creditors (INT, current US$)",topics,External Debt,20
+DT.INT.OFFT.OPS.CD,"OPS, official creditors (INT, current US$)",topics,External Debt,20
+DT.INT.OFFT.PRVG.CD,"PRVG, official creditors (INT, current US$)",topics,External Debt,20
+DT.INT.OFFT.PS.CD,"PS, official creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PBND.CB.CD,"CB, bonds (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.PBND.CD,"PPG, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PBND.GG.CD,"GG, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PBND.OPS.CD,"OPS, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PBND.PRVG.CD,"PRVG, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PBND.PS.CD,"PS, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PCBK.CB.CD,"CB, commercial banks (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.PCBK.CD,"PPG, commercial banks (INT, current US$)",topics,External Debt,20
+DT.INT.PCBK.GG.CD,"GG, commercial banks (INT, current US$)",topics,External Debt,20
+DT.INT.PCBK.OPS.CD,"OPS, commercial banks (INT, current US$)",topics,External Debt,20
+DT.INT.PCBK.PRVG.CD,"PRVG, commercial banks (INT, current US$)",topics,External Debt,20
+DT.INT.PCBK.PS.CD,"PS, commercial banks (INT, current US$)",topics,External Debt,20
+DT.INT.PGNG.CD,"Interest payments, PPG and PNG Private creditors (current US$)",sources,Africa Development Indicators,11
+DT.INT.PNGB.CD,"PNG, bonds (INT, current US$)",topics,External Debt,20
+DT.INT.PNGC.CD,"PNG, commercial banks and other creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PROP.CB.CD,"CB, other private creditors (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.PROP.CD,"PPG, other private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PROP.GG.CD,"GG, other private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PROP.OPS.CD,"OPS, other private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PROP.PRVG.CD,"PRVG, other private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PROP.PS.CD,"PS, other private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PRPG.CD,"Interest payments on external debt, private guaranteed by public sector (PPG) (INT, current US$)",topics,External Debt,20
+DT.INT.PRVS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.03.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.04.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.05.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVS.CD.IQ.00.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PRVT.CB.CD,"CB, private creditors (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.PRVT.CD,"PPG, private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PRVT.GG.CD,"GG, private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PRVT.OPS.CD,"OPS, private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PRVT.PRVG.CD,"PRVG, private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PRVT.PS.CD,"PS, private creditors (INT, current US$)",topics,External Debt,20
+DT.INT.PUBS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.03.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.04.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.05.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.PUBS.CD.IQ.00.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Interest, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.INT.VPPG.CD,"Interest payments on variable rate external debt, public and publicly guaranteed (PPG) (INT, current US$)",sources,International Debt Statistics,6
+DT.INT.VTOT.CD,"Interest payments on variable rate external debt, long-term (INT, current US$)",sources,International Debt Statistics,6
+DT.INTS.DLTL.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTL.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Loans, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.INTS.DLTT.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IWA.DECT.CD.OT.HH.AR.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IWA.DECT.CD.OT.NB.AR.US,"Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IWA.DECT.CD.OT.NF.AR.US,"Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DECT.CD.CB.AR.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DECT.CD.GG.AR.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Interest, Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DECT.CD.MA.AR.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DECT.CD.OT.AR.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DIDI.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DIFE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DIIE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.IXA.DLXF.CD,"Interest arrears, long-term DOD",sources,International Debt Statistics,6
+DT.IXA.DPPG.CD,"Interest arrears, public and publicly guaranteed (current US$)",topics,External Debt,20
+DT.IXA.DPPG.CD.CG,Net change in interest arrears (current US$),topics,External Debt,20
+DT.IXA.OFFT.CD,"Interest arrears, official creditors (current US$)",topics,External Debt,20
+DT.IXA.PRVT.CD,"Interest arrears, private creditors (current US$)",topics,External Debt,20
+DT.IXF.DPPG.CD,Interest forgiven (current US$),topics,External Debt,20
+DT.IXR.DPPG.CD,Interest rescheduled (capitalized) (current US$),topics,External Debt,20
+DT.IXR.OFFT.CD,"Interest rescheduled, official (current US$)",topics,External Debt,20
+DT.IXR.PRVT.CD,"Interest rescheduled, private (current US$)",topics,External Debt,20
+DT.MAT.DPPG,Average maturity on new external debt commitments (years),topics,External Debt,20
+DT.MAT.OFFT,"Average maturity on new external debt commitments, official (years)",topics,External Debt,20
+DT.MAT.PRVT,"Average maturity on new external debt commitments, private (years)",topics,External Debt,20
+DT.NFL.BLAT.CB.CD,"CB, bilateral (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.BLAT.CD,"Net financial flows, bilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLAT.GG.CD,"GG, bilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLAT.OPS.CD,"OPS, bilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLAT.PRVG.CD,"PRVG, bilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLAT.PS.CD,"PS, bilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLTC.CB.CD,"CB, bilateral concessional (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.BLTC.CD,"PPG, bilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLTC.GG.CD,"GG, bilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLTC.OPS.CD,"OPS, bilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLTC.PRVG.CD,"PRVG, bilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.BLTC.PS.CD,"PS, bilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.BOND.CD,"Portfolio investment, bonds (PPG + PNG) (NFL, current US$)",topics,Financial Sector,7
+DT.NFL.CERF.CD,"Net official flows from UN agencies, CERF (current US$)",sources,World Development Indicators,2
+DT.NFL.DECB.CD,"Net flows on external debt, central bank (PPG) (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.DECT.CD,"Net flows on external debt, total (NFL, current US$)",topics,External Debt,20
+DT.NFL.DEGG.CD,"Net flows on external debt, general government sector (PPG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.DEPS.CD,"Net flows on external debt, public sector (PPG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.DLXF.CD,"Net flows on external debt, long-term (NFL, current US$)",topics,External Debt,20
+DT.NFL.DOPS.CD,"Net flows on external debt, other public sector (PPG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.DPNG.CD,"Net flows on external debt, private nonguaranteed (PNG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.DPPG.CD,"Net flows on external debt, public and publicly guaranteed (PPG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.DSTC.CD,"Net flows on external debt, short-term (NFL, current US$)",topics,External Debt,20
+DT.NFL.FAOG.CD,"Net official flows from UN agencies, FAO (current US$)",topics,Aid Effectiveness,2
+DT.NFL.IAEA.CD,"Net official flows from UN agencies, IAEA (current US$)",topics,Aid Effectiveness,2
+DT.NFL.IFAD.CD,"Net official flows from UN agencies, IFAD (current US$)",topics,Aid Effectiveness,2
+DT.NFL.ILOG.CD,"Net official flows from UN agencies, ILO (current US$)",topics,Aid Effectiveness,2
+DT.NFL.IMFC.CD,"Net financial flows, IMF concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.IMFN.CD,"Net financial flows, IMF nonconcessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MIBR.CD,"Net financial flows, IBRD (NFL, current US$)",topics,External Debt,20
+DT.NFL.MIDA.CD,"Net financial flows, IDA (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLAT.CB.CD,"CB, multilateral (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.MLAT.CD,"Net financial flows, multilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLAT.GG.CD,"GG, multilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLAT.OPS.CD,"OPS, multilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLAT.PRVG.CD,"PRVG, multilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLAT.PS.CD,"PS, multilateral (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLTC.CB.CD,"CB, multilateral concessional (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.MLTC.CD,"PPG, multilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLTC.GG.CD,"GG, multilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLTC.OPS.CD,"OPS, multilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLTC.PRVG.CD,"PRVG, multilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MLTC.PS.CD,"PS, multilateral concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.MOTH.CD,"Net financial flows, others (NFL, current US$)",topics,External Debt,20
+DT.NFL.NEBR.CD,"EBRD, private nonguaranteed (NFL, current US$)",topics,External Debt,20
+DT.NFL.NIFC.CD,"IFC, private nonguaranteed (NFL, US$)",topics,External Debt,20
+DT.NFL.OFFT.CB.CD,"CB, official creditors (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.OFFT.CD,"PPG, official creditors (NFL, US$)",topics,External Debt,20
+DT.NFL.OFFT.GG.CD,"GG, official creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.OFFT.OPS.CD,"OPS, official creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.OFFT.PRVG.CD,"PRVG, official creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.OFFT.PS.CD,"PS, official creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PBND.CB.CD,"CB, bonds (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.PBND.CD,"PPG, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PBND.GG.CD,"GG, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PBND.OPS.CD,"OPS, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PBND.PRVG.CD,"PRVG, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PBND.PS.CD,"PS, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBK.CB.CD,"CB, commercial banks (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.PCBK.CD,"PPG, commercial banks (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBK.GG.CD,"GG, commercial banks (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBK.OPS.CD,"OPS, commercial banks (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBK.PRVG.CD,"PRVG, commercial banks (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBK.PS.CD,"PS, commercial banks (NFL, current US$)",topics,External Debt,20
+DT.NFL.PCBO.CD,"Commercial banks and other lending (PPG + PNG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.PNGB.CD,"PNG, bonds (NFL, current US$)",topics,External Debt,20
+DT.NFL.PNGC.CD,"PNG, commercial banks and other creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PROP.CB.CD,"CB, other private creditors (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.PROP.CD,"PPG, other private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PROP.GG.CD,"GG, other private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PROP.OPS.CD,"OPS, other private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PROP.PRVG.CD,"PRVG, other private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PROP.PS.CD,"PS, other private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PRPG.CD,"Net flows on external debt, private guaranteed by public sector (PPG) (NFL, current US$)",topics,External Debt,20
+DT.NFL.PRVT.CB.CD,"CB, private creditors (NFL, current US$)",sources,International Debt Statistics,6
+DT.NFL.PRVT.CD,"PPG, private creditors (NFL, US$)",topics,External Debt,20
+DT.NFL.PRVT.GG.CD,"GG, private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PRVT.OPS.CD,"OPS, private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PRVT.PRVG.CD,"PRVG, private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.PRVT.PS.CD,"PS, private creditors (NFL, current US$)",topics,External Debt,20
+DT.NFL.RDBC.CD,"Net financial flows, RDB concessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.RDBN.CD,"Net financial flows, RDB nonconcessional (NFL, current US$)",topics,External Debt,20
+DT.NFL.SDGF.CD,"Net official flows from UN agencies, SDGFUND (current US$)",sources,World Development Indicators,2
+DT.NFL.SPRP.CD,"Net official flows from UN agencies, SPRP (current US$)",sources,World Development Indicators,2
+DT.NFL.UNAI.CD,"Net official flows from UN agencies, UNAIDS (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNCD.CD,"Net official flows from UN agencies, UNCDF (current US$)",sources,World Development Indicators,2
+DT.NFL.UNCF.CD,"Net official flows from UN agencies, UNICEF (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNCR.CD,"Net official flows from UN agencies, UNHCR (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNCTAD.CD,"Net official flows from UN agencies, UNCTAD (current US$)",sources,World Development Indicators,2
+DT.NFL.UNCV.CD,"Net official flows from UN agencies, UNCOVID (current US$)",sources,World Development Indicators,2
+DT.NFL.UNDP.CD,"Net official flows from UN agencies, UNDP (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNEC.CD,"Net official flows from UN agencies, UNECE (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNEP.CD,"Net official flows from UN agencies, UNEP (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNFP.CD,"Net official flows from UN agencies, UNFPA (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNID.CD,"Net official flows from UN agencies, UNIDIR (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNIDO.CD,"Net official flows from UN agencies, UNIDO (current US$)",sources,World Development Indicators,2
+DT.NFL.UNPB.CD,"Net official flows from UN agencies, UNPBF (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNRW.CD,"Net official flows from UN agencies, UNRWA (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNTA.CD,"Net official flows from UN agencies, UNTA (current US$)",topics,Aid Effectiveness,2
+DT.NFL.UNWN.CD,"Net official flows from UN agencies, UNWOMEN (current US$)",sources,World Development Indicators,2
+DT.NFL.UNWT.CD,"Net official flows from UN agencies, UNWTO (current US$)",topics,Aid Effectiveness,2
+DT.NFL.WFPG.CD,"Net official flows from UN agencies, WFP (current US$)",topics,Aid Effectiveness,2
+DT.NFL.WHOL.CD,"Net official flows from UN agencies, WHO (current US$)",topics,Aid Effectiveness,2
+DT.NFL.WITC.CD,"Net official flows from UN agencies, WTO-ITC (current US$)",sources,World Development Indicators,2
+DT.NTR.BLAT.CB.CD,"CB, bilateral (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.BLAT.CD,"PPG, bilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLAT.GG.CD,"GG, bilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLAT.OPS.CD,"OPS, bilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLAT.PRVG.CD,"PRVG, bilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLAT.PS.CD,"PS, bilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLTC.CB.CD,"CB, bilateral concessional (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.BLTC.CD,"PPG, bilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLTC.GG.CD,"GG, bilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLTC.OPS.CD,"OPS, bilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLTC.PRVG.CD,"PRVG, bilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.BLTC.PS.CD,"PS, bilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.DECB.CD,"Net transfers on external debt, central bank (PPG) (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.DECT.CD,"Net transfers on external debt, total (NTR, current US$)",topics,External Debt,20
+DT.NTR.DEGG.CD,"Net transfers on external debt, general government sector (PPG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.DEPS.CD,"Net transfers on external debt, public sector (PPG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.DLXF.CD,"Net transfers on external debt, long-term (NTR, current US$)",topics,External Debt,20
+DT.NTR.DOPS.CD,"Net transfers on external debt, other public sector (PPG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.DPNG.CD,"Net transfers on external debt, private nonguaranteed (PNG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.DPPG.CD,"Net transfers on external debt, public and publicly guaranteed (PPG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.MIBR.CD,"PPG, IBRD (NTR, current US$)",topics,External Debt,20
+DT.NTR.MIDA.CD,"PPG, IDA (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLAT.CB.CD,"CB, multilateral (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.MLAT.CD,"PPG, multilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLAT.GG.CD,"GG, multilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLAT.OPS.CD,"OPS, multilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLAT.PRVG.CD,"PRVG, multilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLAT.PS.CD,"PS, multilateral (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLTC.CB.CD,"CB, multilateral concessional (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.MLTC.CD,"PPG, multilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLTC.GG.CD,"GG, multilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLTC.OPS.CD,"OPS, multilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLTC.PRVG.CD,"PRVG, multilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.MLTC.PS.CD,"PS, multilateral concessional (NTR, current US$)",topics,External Debt,20
+DT.NTR.OFFT.CB.CD,"CB, official creditors (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.OFFT.CD,"PPG, official creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.OFFT.GG.CD,"GG, official creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.OFFT.OPS.CD,"OPS, official creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.OFFT.PRVG.CD,"PRVG, official creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.OFFT.PS.CD,"PS, official creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PBND.CB.CD,"CB, bonds (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.PBND.CD,"PPG, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PBND.GG.CD,"GG, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PBND.OPS.CD,"OPS, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PBND.PRVG.CD,"PRVG, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PBND.PS.CD,"PS, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PCBK.CB.CD,"CB, commercial banks (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.PCBK.CD,"PPG, commercial banks (NTR, current US$)",topics,External Debt,20
+DT.NTR.PCBK.GG.CD,"GG, commercial banks (NTR, current US$)",topics,External Debt,20
+DT.NTR.PCBK.OPS.CD,"OPS, commercial banks (NTR, current US$)",topics,External Debt,20
+DT.NTR.PCBK.PRVG.CD,"PRVG, commercial banks (NTR, current US$)",topics,External Debt,20
+DT.NTR.PCBK.PS.CD,"PS, commercial banks (NTR, current US$)",topics,External Debt,20
+DT.NTR.PNGB.CD,"PNG, bonds (NTR, current US$)",topics,External Debt,20
+DT.NTR.PNGC.CD,"PNG, commercial banks and other creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PROP.CB.CD,"CB, other private creditors (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.PROP.CD,"PPG, other private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PROP.GG.CD,"GG, other private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PROP.OPS.CD,"OPS, other private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PROP.PRVG.CD,"PRVG, other private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PROP.PS.CD,"PS, other private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRPG.CD,"Net transfers on external debt, private guaranteed by public sector (PPG) (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRVT.CB.CD,"CB, private creditors (NTR, current US$)",sources,International Debt Statistics,6
+DT.NTR.PRVT.CD,"PPG, private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRVT.GG.CD,"GG, private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRVT.OPS.CD,"OPS, private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRVT.PRVG.CD,"PRVG, private creditors (NTR, current US$)",topics,External Debt,20
+DT.NTR.PRVT.PS.CD,"PS, private creditors (NTR, current US$)",topics,External Debt,20
+DT.ODA.ALLD.CD,Net official development assistance and official aid received (current US$),topics,Aid Effectiveness,2
+DT.ODA.ALLD.GD.ZS,Net ODA received (% of GDP),sources,Africa Development Indicators,11
+DT.ODA.ALLD.GDI.ZS,Aid (% of GDI),sources,WDI Database Archives,57
+DT.ODA.ALLD.GI.ZS,Net official development assistance received (% of gross capital formation),sources,Africa Development Indicators,11
+DT.ODA.ALLD.GN.ZS,Net ODA received (% of GNP),sources,Africa Development Indicators,11
+DT.ODA.ALLD.GNP.ZS,Aid (% of GNP),sources,WDI Database Archives,57
+DT.ODA.ALLD.HIV.CNTRL.CD,"ODA aid disbursements for STD control including HIV/AIDS, all donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.ALLD.HIV.MITI.CD,"ODA aid disbursements for Social mitigation of HIV/AIDS, all donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.ALLD.IMP.ZS,Aid (% of imports of goods and services),sources,WDI Database Archives,57
+DT.ODA.ALLD.KD,Net official development assistance and official aid received (constant 2023 US$),topics,Aid Effectiveness,2
+DT.ODA.ALLD.MLR.CNTRL.CD,"ODA aid disbursements for Malaria control, all donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.ALLD.MP.ZS,Net ODA received (% exports and imports),sources,Africa Development Indicators,11
+DT.ODA.ALLD.PC.ZS,Net official development assistance received per capita (current US$),sources,Africa Development Indicators,11
+DT.ODA.ALLD.POP.ZS,Aid per capita (US$),sources,WDI Database Archives,57
+DT.ODA.ALLD.PRVT.CD,"Total ODA Private Net, all donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.ALLD.XP.ZS,Net ODA received (% of central government expenditure),sources,Africa Development Indicators,11
+DT.ODA.ALLD.XPD.ZS,Aid (% of central government expenditures),sources,WDI Database Archives,57
+DT.ODA.DACD.ADMN.CD,"Gross ODA aid disbursement for administrative costs of donors, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.AGPA.BDGT.CD,"Gross ODA aid disbursement for general budget support, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.AGPA.CD,"Gross ODA aid disbursement for commodity and general program assistance, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.AGPA.FOOD.CD,"Gross ODA aid disbursement for developmental food aid/food security assistance, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.AGPA.OCOM.CD,"Gross ODA aid disbursement for other commodity assistance, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ALLS.CD,"Gross ODA aid disbursement for all sectors and functions, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.CD,Net ODA received from DAC donors (current US$),sources,Africa Development Indicators,11
+DT.ODA.DACD.CD.PC,Net ODA received per capita from DAC donors(current US$),sources,Africa Development Indicators,11
+DT.ODA.DACD.DEBT.CD,"Gross ODA aid disbursement for action related to debt, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.BKFN.CD,"Gross ODA aid disbursement for banking & financial services, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.BUSN.CD,"Gross ODA aid disbursement for business & other services, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.CD,"Gross ODA aid disbursement for economic infrastructure, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.COMM.CD,"Gross ODA aid disbursement for communications, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.NRGY.CD,"Gross ODA aid disbursement for energy, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ECON.TRSP.CD,"Gross ODA aid disbursement for transport and storage, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EDU.BAS.CD,"Gross ODA aid disbursement for basic education, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EDU.CD,"Gross ODA aid disbursement for education, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EDU.PSEC.CD,"Gross ODA aid disbursement for post-secondary education, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EDU.SEC.CD,"Gross ODA aid disbursement for secondary education, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EDU.UNKN.CD,"Gross ODA aid disbursement for education (level unspecified), DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EMRC.CD,"Gross ODA aid disbursement for humanitarian aid, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EMRC.DISA.CD,"Gross ODA aid disbursement for disaster prevention & preparedness, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EMRC.OTHR.CD,"Gross ODA aid disbursement for emergency response, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.EMRC.RCST.CD,"Gross ODA aid disbursement for reconstruction relief and rehabilitation, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.GVCS.CD,"Gross ODA aid disbursement for government & civil society, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.GVCS.CPS.CD,"Gross ODA aid disbursement for conflict, peace and security, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.GVCS.GEN.CD,"Gross ODA aid disbursement for general government and civil society, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.HIV.CNTRL.CD,"ODA aid disbursements for STD control including HIV/AIDS, DAC donors (current US$)",topics,Economy & Growth,3
+DT.ODA.DACD.HIV.MITI.CD,"ODA aid disbursements for Social mitigation of HIV/AIDS, DAC donors (current US$)",topics,Economy & Growth,3
+DT.ODA.DACD.HLTH.BAS.CD,"Gross ODA aid disbursement for basic health, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.HLTH.CD,"Gross ODA aid disbursement for health, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.HLTH.GEN.CD,"Gross ODA aid disbursement for general health, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.KD,Net ODA received from DAC donors (constant 2010 US$),sources,Africa Development Indicators,11
+DT.ODA.DACD.MLR.CNTRL.CD,"ODA aid disbursements for Malaria control, DAC donors total (current US$)",topics,Economy & Growth,3
+DT.ODA.DACD.MSEC.CD,"Gross ODA aid disbursement for multisector, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.MSEC.GENV.CD,"Gross ODA aid disbursement for general environment protection, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.MSEC.OMSEC.CD,"Gross ODA aid disbursement for other multisector initiatives, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.POP.CD,"Gross ODA aid disbursement for population programmes and reproductive health, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.AGRI.AGR.CD,"Gross ODA aid disbursement for agriculture, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.AGRI.CD,"Gross ODA aid disbursement for agriculture, forestry and fishing sector, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.AGRI.FISH.CD,"Gross ODA aid disbursement for fishing, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.AGRI.FORS.CD,"Gross ODA aid disbursement for forestry, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.CD,"Gross ODA aid disbursement for production sectors, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.INDS.CD,"Gross ODA aid disbursement for industry, mining and construction, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.INDS.CON.CD,"Gross ODA aid disbursement for construction, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.INDS.IND.CD,"Gross ODA aid disbursement for industry, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.INDS.MIN.CD,"Gross ODA aid disbursement for mineral resources and mining, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.TRDP.CD,"Gross ODA aid disbursement for trade policy and regulations, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PROD.TRSM.CD,"Gross ODA aid disbursement for tourism sector, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.PRVT.CD,"Total ODA Private Net, DAC donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.RFGE.CD,"Gross ODA aid disbursement for refugees in donor countries, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.SOCI.CD,"Gross ODA aid disbursement for social infrastructure & services, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.TSEC.CD,"Gross ODA aid disbursement for total sector allocable, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.UNAL.CD,"Gross ODA aid disbursement for unallocated/unspecified support, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.WSS.CD,"Gross ODA aid disbursement for water supply and sanitation, DAC donors total (current US$)",sources,Africa Development Indicators,11
+DT.ODA.DACD.ZSG,Net ODA received from DAC donors (% of recipient's GDP),sources,Africa Development Indicators,11
+DT.ODA.DACD.ZSI,Net ODA received from DAC donors (% of recipient's GDI),sources,Africa Development Indicators,11
+DT.ODA.MULT.CD,Net ODA received from multilateral donors (current US$),sources,Africa Development Indicators,11
+DT.ODA.MULT.CD.PC,Net ODA received per capita from multilateral donors (current US$),sources,Africa Development Indicators,11
+DT.ODA.MULT.KD,Net ODA received from multilateral donors (constant 2010 US$),sources,Africa Development Indicators,11
+DT.ODA.MULT.ZSG,Net ODA received from multilateral donors (% of GDP),sources,Africa Development Indicators,11
+DT.ODA.MULT.ZSI,Net ODA received from multilateral donors (% of gross capital formation),sources,Africa Development Indicators,11
+DT.ODA.MULTI.HIV.CNTRL.CD,"ODA aid disbursements for STD control including HIV/AIDS, Multilateral donors (current US$)",topics,Economy & Growth,3
+DT.ODA.MULTI.HIV.MITI.CD,"ODA aid disbursements for Social mitigation of HIV/AIDS, Multilateral donors (current US$)",topics,Economy & Growth,3
+DT.ODA.MULTI.MLR.CNTRL.CD,"ODA aid disbursements for Malaria control, multilateral donors total (current US$)",topics,Economy & Growth,3
+DT.ODA.NDAC.CD,Net ODA received from non-DAC donors (current US$),sources,Africa Development Indicators,11
+DT.ODA.NDAC.KD,Net ODA received from non-DAC donors (constant 2010 US$),sources,Africa Development Indicators,11
+DT.ODA.NDAC.PRVT.CD,"Total ODA Private Net, non-DAC donors (current US$)",sources,Africa Development Indicators,11
+DT.ODA.NDAC.ZSG,Net ODA received from non-DAC bilateral donors (% of GDP),sources,Africa Development Indicators,11
+DT.ODA.NDAC.ZSI,Net ODA received from non-DAC bilateral donors (% of gross capital formation),sources,Africa Development Indicators,11
+DT.ODA.OATL.CD,Net official aid received (current US$),topics,Aid Effectiveness,2
+DT.ODA.OATL.KD,Net official aid received (constant 2023 US$),topics,Aid Effectiveness,2
+DT.ODA.ODAT.CD,Net official development assistance received (current US$),topics,Aid Effectiveness,2
+DT.ODA.ODAT.CD1,Net official development assistance received (current US$),sources,Sustainable Development Goals,46
+DT.ODA.ODAT.GD.ZS,Net ODA received (% of GDP),sources,Africa Development Indicators,11
+DT.ODA.ODAT.GI.ZS,Net ODA received (% of gross capital formation),topics,Aid Effectiveness,2
+DT.ODA.ODAT.GN.ZS,Net ODA received (% of GNI),topics,Aid Effectiveness,2
+DT.ODA.ODAT.KD,Net official development assistance received (constant 2023 US$),topics,Aid Effectiveness,2
+DT.ODA.ODAT.MP.ZS,"Net ODA received (% of imports of goods, services and primary income)",topics,Aid Effectiveness,2
+DT.ODA.ODAT.PC.ZS,Net ODA received per capita (current US$),topics,Aid Effectiveness,2
+DT.ODA.ODAT.XP.ZS,Net ODA received (% of central government expense),topics,Aid Effectiveness,2
+DT.SRV.POST.ZS,"Debt service to export ratio, ex-post (%)",sources,Africa Development Indicators,11
+DT.TDA.DECT.CD,Adjustments to scheduled debt service (current US$),sources,Africa Development Indicators,11
+DT.TDS.BLAT.CB.CD,"CB, bilateral (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.BLAT.CD,"PPG, bilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLAT.GG.CD,"GG, bilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLAT.OPS.CD,"OPS, bilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLAT.PRVG.CD,"PRVG, bilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLAT.PS.CD,"PS, bilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLTC.CB.CD,"CB, bilateral concessional (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.BLTC.CD,"PPG, bilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLTC.GG.CD,"GG, bilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLTC.OPS.CD,"OPS, bilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLTC.PRVG.CD,"PRVG, bilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.BLTC.PS.CD,"PS, bilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.DEAE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEAE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of dir. investors to DI ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECA.XP.ZS,"Debt service (PPG and IMF only, % of exports of goods and services)",sources,WDI Database Archives,57
+DT.TDS.DECB.CD,"Debt service on external debt, central bank (PPG) (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.DECT.15.UP.YR.SA.US,"Ext. Debt Service Pmt, SDR allocations, More than15yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD,"Debt service on external debt, total (TDS, current US$)",topics,External Debt,20
+DT.TDS.DECT.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.03.US,"Ext. Debt Service Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.03.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.04.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.05.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.0912.US,"Ext. Debt Service Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.1218.US,"Ext. Debt Service Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.1824.US,"Ext. Debt Service Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.24P.US,"Ext. Debt Service Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.36.US,"Ext. Debt Service Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.69.US,"Ext. Debt Service Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.03.US,"Gross Ext. Debt Pmt, All Sectors, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.0912.US,"Gross Ext. Debt Pmt, All Sectors, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.1218.US,"Gross Ext. Debt Pmt, All Sectors, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.1824.US,"Gross Ext. Debt Pmt, All Sectors, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.24P.US,"Gross Ext. Debt Pmt, All Sectors, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.36.US,"Gross Ext. Debt Pmt, All Sectors, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.69.US,"Gross Ext. Debt Pmt, All Sectors, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.AR.IQ.US,"Gross Ext. Debt Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.03.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.0912.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.1218.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.1824.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.24P.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.36.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.69.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.IQ.US,"Ext. Debt Service Pmt, Deposit-Taking Corp., exc. CB, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.CB.RM.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.03.US,"Ext. Debt Service Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.0912.US,"Ext. Debt Service Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.1218.US,"Ext. Debt Service Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.1824.US,"Ext. Debt Service Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.24P.US,"Ext. Debt Service Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.36.US,"Ext. Debt Service Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.69.US,"Ext. Debt Service Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.IQ.US,"Ext. Debt Service Pmt, General Government, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.GG.RM.US,"Gross Ext. Debt Pos., General Government, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.03.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.0912.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.1218.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.1824.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.24P.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.36.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.69.US,"Ext. Debt Service Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.AR.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.IQ.US,"Ext. Debt Service Pmt, DI: Intercom Lending, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IL.RM.US,"Gross Ext. Debt Pos., DI: Intercom Lending, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.IQ.00.US,"Ext. Debt Service Pmt, Public and Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.DECT.CD.IQ.US,"Ext. Debt Service Pmt, All Sectors, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.03.US,"Ext. Debt Service Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.0912.US,"Ext. Debt Service Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.1218.US,"Ext. Debt Service Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.1824.US,"Ext. Debt Service Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.24P.US,"Ext. Debt Service Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.36.US,"Ext. Debt Service Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.69.US,"Ext. Debt Service Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.IQ.US,"Ext. Debt Service Pmt, Central Bank, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.MA.RM.US,"Gross Ext. Debt Pos., Central Bank, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.03.US,"Ext. Debt Service Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.0912.US,"Ext. Debt Service Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.1218.US,"Ext. Debt Service Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.1824.US,"Ext. Debt Service Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.24P.US,"Ext. Debt Service Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.36.US,"Ext. Debt Service Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.69.US,"Ext. Debt Service Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.IQ.US,"Ext. Debt Service Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OS.RM.US,"Gross Ext. Debt Pos., Other Sectors, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.RM.US,"Gross Ext. Debt Pos., All Sectors, One year or less, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.CD.SA.24P.US,"Ext. Debt Service Pmt, SDR allocations, More than 2yrs, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DECT.EX.ZS,"Total debt service (% of exports of goods, services and primary income)",topics,Economy & Growth,3
+DT.TDS.DECT.GD.ZS,Total debt service (% of GDP),sources,Africa Development Indicators,11
+DT.TDS.DECT.GN.ZS,Total debt service (% of GNI),topics,Economy & Growth,3
+DT.TDS.DECT.GNP.ZS,Total debt service (% of GNP),sources,WDI Database Archives,57
+DT.TDS.DECT.XGS.ZS,Total debt service ( % of exports of goods and services),sources,WDI Database Archives,57
+DT.TDS.DEFE.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEFE.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. to fellow ent., Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DEGG.CD,"Debt service on external debt, general government sector (PPG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.DEPS.CD,"Debt service on external debt, public sector (PPG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.DILD.CD.IL.03.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 0 to 3, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.0912.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 9 to 12, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.1218.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 12 to 18, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.1824.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 18 to 24, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.24P.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 2yrs, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.36.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 3 to 6, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.69.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, More than 6 to 9, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DILD.CD.IL.IQ.US,"Gross Ext. Debt Pmt, DI: Intercom Lending, Immediate, Debt liab. of DI ent. to dir. investors, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DIMF.CD,"IMF repurchases and charges (TDS, current US$)",topics,External Debt,20
+DT.TDS.DLBN.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLBN.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Debt securities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLCD.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Currency and deposits, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTL.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Loans, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTO.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Other debt liabilities, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.GG.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTS.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Special drawing rights (allocations), Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.03.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 0 to 3, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.0912.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 9 to 12, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.1218.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 12 to 18, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.1824.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 18 to 24, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.24P.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 2yrs, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.36.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 3 to 6, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.69.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, More than 6 to 9, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.CB.AR.IQ.US,"Gross Ext. Debt Pmt, Deposit-Taking Corp., exc. CB, Immediate, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.03.US,"Gross Ext. Debt Pmt, General Government, More than 0 to 3, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.0912.US,"Gross Ext. Debt Pmt, General Government, More than 9 to 12, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.1218.US,"Gross Ext. Debt Pmt, General Government, More than 12 to 18, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.1824.US,"Gross Ext. Debt Pmt, General Government, More than 18 to 24, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.24P.US,"Gross Ext. Debt Pmt, General Government, More than 2yrs, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.36.US,"Gross Ext. Debt Pmt, General Government, More than 3 to 6, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.69.US,"Gross Ext. Debt Pmt, General Government, More than 6 to 9, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.GG.AR.IQ.US,"Gross Ext. Debt Pmt, General Government, Immediate, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.03.US,"Gross Ext. Debt Pmt, Central Bank, More than 0 to 3, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.0912.US,"Gross Ext. Debt Pmt, Central Bank, More than 9 to 12, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.1218.US,"Gross Ext. Debt Pmt, Central Bank, More than 12 to 18, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.1824.US,"Gross Ext. Debt Pmt, Central Bank, More than 18 to 24, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.24P.US,"Gross Ext. Debt Pmt, Central Bank, More than 2yrs, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.36.US,"Gross Ext. Debt Pmt, Central Bank, More than 3 to 6, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.69.US,"Gross Ext. Debt Pmt, Central Bank, More than 6 to 9, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.MA.AR.IQ.US,"Gross Ext. Debt Pmt, Central Bank, Immediate, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.03.US,"Gross Ext. Debt Pmt, Other Sectors, More than 0 to 3, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.0912.US,"Gross Ext. Debt Pmt, Other Sectors, More than 9 to 12, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.1218.US,"Gross Ext. Debt Pmt, Other Sectors, More than 12 to 18, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.1824.US,"Gross Ext. Debt Pmt, Other Sectors, More than 18 to 24, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.24P.US,"Gross Ext. Debt Pmt, Other Sectors, More than 2yrs, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.36.US,"Gross Ext. Debt Pmt, Other Sectors, More than 3 to 6, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.69.US,"Gross Ext. Debt Pmt, Other Sectors, More than 6 to 9, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLTT.CD.OT.AR.IQ.US,"Gross Ext. Debt Pmt, Other Sectors, Immediate, Trade credit and advances, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TDS.DLXF.CD,"Debt service on external debt, long-term (TDS, current US$)",topics,External Debt,20
+DT.TDS.DOPS.CD,"Debt service on external debt, other public sector (PPG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.DPNG.CD,"Debt service on external debt, private nonguaranteed (PNG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.DPPF.XP.ZS,"Debt service (PPG and IMF only, % of exports of goods, services and primary income)",topics,External Debt,20
+DT.TDS.DPPG.CD,"Debt service on external debt, public and publicly guaranteed (PPG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.DPPG.GN.ZS,Public and publicly guaranteed debt service (% of GNI),topics,External Debt,20
+DT.TDS.DPPG.REV.ZS,PPG debt service (% of central government current revenue),sources,WDI Database Archives,57
+DT.TDS.DPPG.RV.ZS,PPG debt service (% of central government current revenue),sources,WDI Database Archives,57
+DT.TDS.DPPG.XP.ZS,"Public and publicly guaranteed debt service (% of exports of goods, services and primary income)",topics,External Debt,20
+DT.TDS.MIBR.CD,"PPG, IBRD (TDS, current US$)",topics,External Debt,20
+DT.TDS.MIDA.CD,"PPG, IDA (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLAT.CB.CD,"CB, multilateral (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.MLAT.CD,"Multilateral debt service (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLAT.GG.CD,"GG, multilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLAT.OPS.CD,"OPS, multilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLAT.PG.ZS,Multilateral debt service (% of public and publicly guaranteed debt service),topics,External Debt,20
+DT.TDS.MLAT.PRVG.CD,"PRVG, multilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLAT.PS.CD,"PS, multilateral (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLTC.CB.CD,"CB, multilateral concessional (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.MLTC.CD,"PPG, multilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLTC.GG.CD,"GG, multilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLTC.OPS.CD,"OPS, multilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLTC.PRVG.CD,"PRVG, multilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.MLTC.PS.CD,"PS, multilateral concessional (TDS, current US$)",topics,External Debt,20
+DT.TDS.OFFT.CB.CD,"CB, official creditors (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.OFFT.CD,"PPG, official creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.OFFT.GG.CD,"GG, official creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.OFFT.OPS.CD,"OPS, official creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.OFFT.PRVG.CD,"PRVG, official creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.OFFT.PS.CD,"PS, official creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PBND.CB.CD,"CB, bonds (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.PBND.CD,"PPG, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PBND.GG.CD,"GG, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PBND.OPS.CD,"OPS, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PBND.PRVG.CD,"PRVG, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PBND.PS.CD,"PS, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PCBK.CB.CD,"CB, commercial banks (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.PCBK.CD,"PPG, commercial banks (TDS, current US$)",topics,External Debt,20
+DT.TDS.PCBK.GG.CD,"GG, commercial banks (TDS, current US$)",topics,External Debt,20
+DT.TDS.PCBK.OPS.CD,"OPS, commercial banks (TDS, current US$)",topics,External Debt,20
+DT.TDS.PCBK.PRVG.CD,"PRVG, commercial banks (TDS, current US$)",topics,External Debt,20
+DT.TDS.PCBK.PS.CD,"PS, commercial banks (TDS, current US$)",topics,External Debt,20
+DT.TDS.PGNG.CD,"Debt service, PPG and PNG private creditors (TDS, current US$)",sources,Africa Development Indicators,11
+DT.TDS.PNGB.CD,"PNG, bonds (TDS, current US$)",topics,External Debt,20
+DT.TDS.PNGC.CD,"PNG, commercial banks and other creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PROP.CB.CD,"CB, other private creditors (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.PROP.CD,"PPG, other private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PROP.GG.CD,"GG, other private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PROP.OPS.CD,"OPS, other private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PROP.PRVG.CD,"PRVG, other private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PROP.PS.CD,"PS, other private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRPG.CD,"Debt service on external debt, private guaranteed by public sector (PPG) (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRVS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.03.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.04.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.05.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVS.CD.IQ.00.US,"Ext. Debt Service Pmt, Publicly Guar. Private Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PRVT.CB.CD,"CB, private creditors (TDS, current US$)",sources,International Debt Statistics,6
+DT.TDS.PRVT.CD,"PPG, private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRVT.GG.CD,"GG, private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRVT.OPS.CD,"OPS, private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRVT.PRVG.CD,"PRVG, private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PRVT.PS.CD,"PS, private creditors (TDS, current US$)",topics,External Debt,20
+DT.TDS.PUBS.CD.00.03.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 0 to 3 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.03.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.04.06.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 3 to 6 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.04.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 4yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.05.10.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5 to 10 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.05.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 5yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.07.09.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 6 to 9 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.10.12.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 9 to 12 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.10.15.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 10 to 15 yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.13.18.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 12 to 18 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.15.UP.YR.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, More than15yrs, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.19.24.MO.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, 18 to 24 mo., All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TDS.PUBS.CD.IQ.00.US,"Ext. Debt Service Pmt, Public Sector Ext. Debt, Immediately, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics GDDS,23
+DT.TRA.DECT.CD,"Debt service, reduction in arrears/prepayments (current US$)",sources,Africa Development Indicators,11
+DT.TXA.DECT.CD.CB.US,"Gross Ext. Debt Pos., Deposit-Taking Corp., exc. CB, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.GG.US,"Gross Ext. Debt Pos., General Government, All maturities, All instruments, Prin. and Int., Arrears, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.IL.IN.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Interest, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.IL.PR.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Principal, USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.IL.US,"Gross Ext. Debt Pos., DI: Intercom Lending, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.MA.US,"Gross Ext. Debt Pos., Central Bank, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.OT.HH.US,"Gross Ext. Debt Pos., HH and nonprofit institu. (NPISHs), All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.OT.NB.US,"Gross Ext. Debt Pos., Other financial corporations, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.OT.NF.US,"Gross Ext. Debt Pos., Nonfinancial corporations, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.OT.US,"Gross Ext. Debt Pos., Other Sectors, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DECT.CD.TO.US,"Gross Ext. Debt Pos., All Other Sectors, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DIDI.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of DI ent. to dir. investors, All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DIFE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. to fellow ent., All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXA.DIIE.CD.IL.US,"Gross Ext. Debt Pos., Debt liab. of dir. investors to DI ent., All maturities, All instruments, Prin. and Int., USD",sources,Quarterly External Debt Statistics SDDS,22
+DT.TXR.DPPG.CD,Total amount of debt rescheduled (current US$),topics,External Debt,20
+DT.UND.DPPG.CD,"Undisbursed external debt, total (UND, current US$)",topics,External Debt,20
+DT.UND.OFFT.CD,"Undisbursed external debt, official creditors (UND, current US$)",topics,External Debt,20
+DT.UND.PRVT.CD,"Undisbursed external debt, private creditors (UND, current US$)",topics,External Debt,20
+DXGSRMRCHNSCD,"Exports Merchandise, Customs, current US$, millions",sources,Global Economic Monitor,15
+DXGSRMRCHNSKD,"Exports Merchandise, Customs, constant US$, millions",sources,Global Economic Monitor,15
+DXGSRMRCHNSXD,"Exports Merchandise, Customs, Price, US$",sources,Global Economic Monitor,15
+DXGSRMRCHSACD,"Exports Merchandise, Customs, current US$, millions, seas. adj.",sources,Global Economic Monitor,15
+DXGSRMRCHSAKD,"Exports Merchandise, Customs, constant US$, millions, seas. adj.",sources,Global Economic Monitor,15
+DXGSRMRCHSAXD,"Exports Merchandise, Customs, Price, US$, seas. adj.",sources,Global Economic Monitor,15
+E1i,081.Destination Entry Rate of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E1ii,082.Destination Entry Rate of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E1iii,083.Destination Entry Rate of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E2i,084.Destination Entry Rate of Surviving Entrants: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E2ii,085.Destination Entry Rate of Surviving Entrants: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E2iii,086.Destination Entry Rate of Surviving Entrants: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E3i,087.Share of New Destinations in TEV of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E3ii,088.Share of New Destinations in TEV of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E3iii,089.Share of New Destinations in TEV of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E4i,090.Share of New Destinations in TEV of Surviving Entrants: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E4ii,091.Share of New Destinations in TEV of Surviving Entrants: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E4iii,092.Share of New Destinations in TEV of Surviving Entrants: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E5i,093.Destination Exit Rate of Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E5ii,094.Destination Exit Rate of Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E5iii,095.Destination Exit Rate of Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E6i,096.Destination Survival Rate of 2-year Incumbents: Mean,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E6ii,097.Destination Survival Rate of 2-year Incumbents: Median,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+E6iii,098.Destination Survival Rate of 2-year Incumbents: StDev.,sources,Exporter Dynamics Database – Indicators at Country-Year Level,30
+EA.AGR.TOTL.IN.ZS,Agricultural land per worker (hectares),sources,WDI Database Archives,57
+EA.NUS.ATLS,Additional Conv. Factor (Annual avg. Local/US$),sources,WDI Database Archives,57
+EA.NUS.FCRF,"Conversion Factor (Annual average, local per US$)",sources,WDI Database Archives,57
+EA.PRD.AGRI.KD,Agriculture value added per worker (constant 2010 US$),topics,Agriculture & Rural Development,1
+EA.PRD.LAND.KD,Agriculture value added per hectare of agricultural land (constant 1995 US$),sources,WDI Database Archives,57
+EC.XPD.CAP.CR,Capital expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+EC.XPD.GSR.CR,Goods and services expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+EC.XPD.OTHR.CR,Others expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+EC.XPD.STAF.CR,Personnel expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+EC.XPD.TOTL.CR,Total Expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+EE.BOD.CGLS.ZS,"Water pollution, clay and glass industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.CHEM.ZS,"Water pollution, chemical industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.FOOD.ZS,"Water pollution, food industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.MTAL.ZS,"Water pollution, metal industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.OTHR.ZS,"Water pollution, other industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.PAPR.ZS,"Water pollution, paper and pulp industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.TOTL.KG,Organic water pollutant (BOD) emissions (kg per day),topics,Environment,6
+EE.BOD.TXTL.ZS,"Water pollution, textile industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.WOOD.ZS,"Water pollution, wood industry (% of total BOD emissions)",sources,WDI Database Archives,57
+EE.BOD.WRKR.KG,Organic water pollutant (BOD) emissions (kg per day per worker),sources,WDI Database Archives,57
+EF.EFM.OVRL.XD,Economic Fitness Metric,sources,Economic Fitness,60
+EF.EFM.PROD.XD,Economic Fitness Metric,sources,Economic Fitness 2,70
+EF.EFM.RANK.XD,"Economic Fitness Ranking (1 = high, 149 = low)",sources,Economic Fitness,60
+EF.EFM.UNIV.XD,Universal Economic Fitness Metric,sources,Economic Fitness 2,70
+EG.CFT.ACCS.RU.ZS,"Access to clean fuels and technologies for cooking, rural (% of rural population)",topics,Environment,6
+EG.CFT.ACCS.UR.ZS,"Access to clean fuels and technologies for cooking, urban (% of urban population)",topics,Environment,6
+EG.CFT.ACCS.ZS,Access to clean fuels and technologies for cooking (% of population),topics,Environment,6
+EG.EGY.PRIM.PP.KD,Energy intensity level of primary energy (MJ/$2021 PPP GDP),topics,Energy & Mining,5
+EG.EGY.PROD.KT.OE,Energy production (kt of oil equivalent),sources,Africa Development Indicators,11
+EG.ELC.ACCS.RU.ZS,"Access to electricity, rural (% of rural population)",topics,Agriculture & Rural Development,1
+EG.ELC.ACCS.UR.ZS,"Access to electricity, urban (% of urban population)",topics,Energy & Mining,5
+EG.ELC.ACCS.ZS,Access to electricity (% of population),topics,Energy & Mining,5
+EG.ELC.COAL.KH,Electricity production from coal sources (kWh),sources,Africa Development Indicators,11
+EG.ELC.COAL.ZS,Electricity production from coal sources (% of total),topics,Energy & Mining,5
+EG.ELC.FOSL.ZS,"Electricity production from oil, gas and coal sources (% of total)",topics,Energy & Mining,5
+EG.ELC.HYRO.KH,Electricity production from hydroelectric sources (kWh),sources,Africa Development Indicators,11
+EG.ELC.HYRO.ZS,Electricity production from hydroelectric sources (% of total),topics,Energy & Mining,5
+EG.ELC.LOSS.KH,Electric power transmission and distribution losses (kWh),sources,Africa Development Indicators,11
+EG.ELC.LOSS.ZS,Electric power transmission and distribution losses (% of output),topics,Energy & Mining,5
+EG.ELC.NGAS.KH,Electricity production from natural gas sources (kWh),sources,Africa Development Indicators,11
+EG.ELC.NGAS.ZS,Electricity production from natural gas sources (% of total),topics,Energy & Mining,5
+EG.ELC.NUCL.KH,Electricity production from nuclear sources (kWh),sources,Africa Development Indicators,11
+EG.ELC.NUCL.ZS,Electricity production from nuclear sources (% of total),topics,Energy & Mining,5
+EG.ELC.PETR.KH,Electricity production from oil sources (kWh),sources,Africa Development Indicators,11
+EG.ELC.PETR.ZS,Electricity production from oil sources (% of total),topics,Energy & Mining,5
+EG.ELC.PROD.KH,Electricity production (kWh),sources,Africa Development Indicators,11
+EG.ELC.RNEW.KH,Electricity production from renewable sources (kWh),sources,WDI Database Archives,57
+EG.ELC.RNEW.ZS,Renewable electricity output (% of total electricity output),topics,Energy & Mining,5
+EG.ELC.RNWX.KH,"Electricity production from renewable sources, excluding hydroelectric (kWh)",topics,Energy & Mining,5
+EG.ELC.RNWX.ZS,"Electricity production from renewable sources, excluding hydroelectric (% of total)",topics,Energy & Mining,5
+EG.FEC.RNEW.ZS,Renewable energy consumption (% of total final energy consumption),topics,Energy & Mining,5
+EG.GDP.PUSE.KO.87,GDP per unit of energy use (1987 US$ per kg of oil equivalent),sources,WDI Database Archives,57
+EG.GDP.PUSE.KO.KD,GDP per unit of energy use (2000 US$ per kg of oil equivalent),sources,WDI Database Archives,57
+EG.GDP.PUSE.KO.PP,GDP per unit of energy use (PPP $ per kg of oil equivalent),topics,Energy & Mining,5
+EG.GDP.PUSE.KO.PP.KD,GDP per unit of energy use (constant 2021 PPP $ per kg of oil equivalent),topics,Energy & Mining,5
+EG.IMP.CONS.ZS,"Energy imports, net (% of energy use)",topics,Energy & Mining,5
+EG.IMP.TOTL.KT.OE,Energy imports (kt of oil equivalent),sources,Africa Development Indicators,11
+EG.NSF.ACCS.RU.ZS,"Access to non-solid fuel, rural (% of rural population)",topics,Agriculture & Rural Development,1
+EG.NSF.ACCS.UR.ZS,"Access to non-solid fuel, urban (% of urban population)",topics,Energy & Mining,5
+EG.NSF.ACCS.ZS,Access to non-solid fuel (% of population),topics,Energy & Mining,5
+EG.USE.COMM.CL.ZS,Alternative and nuclear energy (% of total energy use),topics,Energy & Mining,5
+EG.USE.COMM.FO.ZS,Fossil fuel energy consumption (% of total),topics,Energy & Mining,5
+EG.USE.COMM.GD.PP.KD,"Energy use (kg of oil equivalent) per $1,000 GDP (constant 2021 PPP)",topics,Energy & Mining,5
+EG.USE.COMM.KT.OE,Energy use (kt of oil equivalent),sources,Africa Development Indicators,11
+EG.USE.CRNW.KT.OE,Combustible renewables and waste (metric tons of oil equivalent),sources,Africa Development Indicators,11
+EG.USE.CRNW.ZS,Combustible renewables and waste (% of total energy),topics,Energy & Mining,5
+EG.USE.ELEC.KH,Electric power consumption (kWh),sources,Africa Development Indicators,11
+EG.USE.ELEC.KH.PC,Electric power consumption (kWh per capita),topics,Energy & Mining,5
+EG.USE.PCAP.KG.OE,Energy use (kg of oil equivalent per capita),topics,Energy & Mining,5
+EN.AGR.EMPL,Economically active population in agriculture (number),topics,Agriculture & Rural Development,1
+EN.AGR.EMPL.FE,"Economically active population in agriculture, female (FAO, number)",sources,Africa Development Indicators,11
+EN.AGR.EMPL.IN,"Agricultural population (FAO, number)",sources,Africa Development Indicators,11
+EN.AGR.EMPL.MA,"Economically active population in agriculture, male (FAO, number)",sources,Africa Development Indicators,11
+EN.ANM.THRD.NO,"Animal species, threatened",sources,Africa Development Indicators,11
+EN.ARE.LAND.ZS,Arable land area (% of total land area),sources,WDI Database Archives,57
+EN.ATM.CO2E.CP.KT,CO2 emissions from cement production (thousand metric tons),sources,Africa Development Indicators,11
+EN.ATM.CO2E.EG.ZS,CO2 intensity (kg per kg of oil equivalent energy use),topics,Environment,6
+EN.ATM.CO2E.FF.KT,"CO2 emissions from fossil-fuels, total (thousand metric tons)",sources,Africa Development Indicators,11
+EN.ATM.CO2E.FF.ZS,CO2 emissions from fossil-fuels (% of total),sources,Africa Development Indicators,11
+EN.ATM.CO2E.GDP,"CO2 emissions, industrial (kg per 1987 US$ of GDP)",sources,WDI Database Archives,57
+EN.ATM.CO2E.GF.KT,CO2 emissions from gaseous fuel consumption (kt),topics,Environment,6
+EN.ATM.CO2E.GF.ZS,CO2 emissions from gaseous fuel consumption (% of total),topics,Energy & Mining,5
+EN.ATM.CO2E.GL.KT,CO2 emissions from gas flaring (thousand metric tons),sources,Africa Development Indicators,11
+EN.ATM.CO2E.KD.87.GD,"CO2 emissions, industrial (kg per 1987 US$ of GDP)",sources,WDI Database Archives,57
+EN.ATM.CO2E.KD.GD,CO2 emissions (kg per 2010 US$ of GDP),topics,Environment,6
+EN.ATM.CO2E.KT,CO2 emissions (kt),topics,Environment,6
+EN.ATM.CO2E.LF.KT,CO2 emissions from liquid fuel consumption (kt),topics,Energy & Mining,5
+EN.ATM.CO2E.LF.ZS,CO2 emissions from liquid fuel consumption (% of total),topics,Environment,6
+EN.ATM.CO2E.PC,CO2 emissions (metric tons per capita),topics,Environment,6
+EN.ATM.CO2E.PP.GD,CO2 emissions (kg per PPP $ of GDP),topics,Environment,6
+EN.ATM.CO2E.PP.GD.KD,CO2 emissions (kg per 2011 PPP $ of GDP),topics,Environment,6
+EN.ATM.CO2E.SF.KT,CO2 emissions from solid fuel consumption (kt),topics,Environment,6
+EN.ATM.CO2E.SF.ZS,CO2 emissions from solid fuel consumption (% of total),topics,Environment,6
+EN.ATM.GHGO.KT.CE,"Other greenhouse gas emissions, HFC, PFC and SF6 (thousand metric tons of CO2 equivalent)",topics,Environment,6
+EN.ATM.GHGO.ZG,Other greenhouse gas emissions (% change from 1990),topics,Environment,6
+EN.ATM.GHGT.KT.CE,Total greenhouse gas emissions (kt of CO2 equivalent),topics,Environment,6
+EN.ATM.GHGT.ZG,Total greenhouse gas emissions (% change from 1990),topics,Environment,6
+EN.ATM.HFCG.KT.CE,HFC gas emissions (thousand metric tons of CO2 equivalent),topics,Environment,6
+EN.ATM.METH.AG.KT.CE,Agricultural methane emissions (thousand metric tons of CO2 equivalent),topics,Agriculture & Rural Development,1
+EN.ATM.METH.AG.ZS,Agricultural methane emissions (% of total),topics,Agriculture & Rural Development,1
+EN.ATM.METH.EG.KT.CE,Methane emissions in energy sector (thousand metric tons of CO2 equivalent),topics,Energy & Mining,5
+EN.ATM.METH.EG.ZS,Energy related methane emissions (% of total),topics,Energy & Mining,5
+EN.ATM.METH.IN.ZS,Energy related methane emissions (% of total),topics,Environment,6
+EN.ATM.METH.KT.CE,Methane emissions (kt of CO2 equivalent),topics,Environment,6
+EN.ATM.METH.PC,Methane emissions (kt of CO2 equivalent per capita),sources,WDI Database Archives,57
+EN.ATM.METH.ZG,Methane emissions (% change from 1990),topics,Environment,6
+EN.ATM.NOXE.AG.KT.CE,Agricultural nitrous oxide emissions (thousand metric tons of CO2 equivalent),topics,Agriculture & Rural Development,1
+EN.ATM.NOXE.AG.ZS,Agricultural nitrous oxide emissions (% of total),topics,Agriculture & Rural Development,1
+EN.ATM.NOXE.EG.KT.CE,Nitrous oxide emissions in energy sector (thousand metric tons of CO2 equivalent),topics,Energy & Mining,5
+EN.ATM.NOXE.EG.ZS,Nitrous oxide emissions in energy sector (% of total),topics,Energy & Mining,5
+EN.ATM.NOXE.EI.ZS,Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions),sources,WDI Database Archives,57
+EN.ATM.NOXE.IN.KT.CE,Industrial nitrous oxide emissions (thousand metric tons of CO2 equivalent),sources,WDI Database Archives,57
+EN.ATM.NOXE.IN.ZS,Nitrous oxide emissions in industrial and energy processes (% of total nitrous oxide emissions),topics,Environment,6
+EN.ATM.NOXE.KT.CE,Nitrous oxide emissions (thousand metric tons of CO2 equivalent),topics,Environment,6
+EN.ATM.NOXE.MT.CE,Nitrous oxide emissions (metric tons of CO2 equivalent),sources,WDI Database Archives,57
+EN.ATM.NOXE.PC,Nitrous oxide emissions (metric tons of CO2 equivalent per capita),sources,WDI Database Archives,57
+EN.ATM.NOXE.ZG,Nitrous oxide emissions (% change from 1990),topics,Environment,6
+EN.ATM.PFCG.KT.CE,PFC gas emissions (thousand metric tons of CO2 equivalent),topics,Environment,6
+EN.ATM.PM10.MC.M3,"PM10, country level (micrograms per cubic meter)",sources,Africa Development Indicators,11
+EN.ATM.PM25.MC.M3,"PM2.5 air pollution, mean annual exposure (micrograms per cubic meter)",topics,Environment,6
+EN.ATM.PM25.MC.T1.ZS,"PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-1 value (% of total)",topics,Environment,6
+EN.ATM.PM25.MC.T2.ZS,"PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-2 value (% of total)",topics,Environment,6
+EN.ATM.PM25.MC.T3.ZS,"PM2.5 pollution, population exposed to levels exceeding WHO Interim Target-3 value (% of total)",topics,Environment,6
+EN.ATM.PM25.MC.ZS,"PM2.5 air pollution, population exposed to levels exceeding WHO guideline value (% of total)",topics,Environment,6
+EN.ATM.SF6G.KT.CE,SF6 gas emissions (thousand metric tons of CO2 equivalent),topics,Environment,6
+EN.BIR.THRD.NO,"Bird species, threatened",topics,Environment,6
+EN.BIR.TOTL.NO,"Bird species, total known",sources,WDI Database Archives,57
+EN.CLC.CDDY.XD,Cooling Degree Days,sources,"Environment, Social and Governance (ESG) Data",75
+EN.CLC.CSTP.ZS,Coastal protection,sources,"Environment, Social and Governance (ESG) Data",75
+EN.CLC.DRSK.XQ,Disaster risk reduction progress score (1-5 scale; 5=best),topics,Environment,6
+EN.CLC.GHGR.MT.CE,GHG net emissions/removals by LUCF (Mt of CO2 equivalent),topics,Environment,6
+EN.CLC.HDDY.XD,Heating Degree Days,sources,"Environment, Social and Governance (ESG) Data",75
+EN.CLC.HEAT.XD,Heat Index 35,sources,"Environment, Social and Governance (ESG) Data",75
+EN.CLC.MDAT.ZS,"Droughts, floods, extreme temperatures (% of population, average 1990-2009)",topics,Environment,6
+EN.CLC.SPEI.XD,Standardised Precipitation-Evapotranspiration Index,sources,"Environment, Social and Governance (ESG) Data",75
+EN.CO2.BLDG.MT,CO2 emissions from residential buildings and commercial and public services (million metric tons),sources,WDI Database Archives,57
+EN.CO2.BLDG.ZS,CO2 emissions from residential buildings and commercial and public services (% of total fuel combustion),topics,Environment,6
+EN.CO2.ETOT.MT,"CO2 emissions from electricity and heat production, total (million metric tons)",sources,WDI Database Archives,57
+EN.CO2.ETOT.ZS,"CO2 emissions from electricity and heat production, total (% of total fuel combustion)",topics,Environment,6
+EN.CO2.MANF.MT,CO2 emissions from manufacturing industries and construction (million metric tons),sources,WDI Database Archives,57
+EN.CO2.MANF.ZS,CO2 emissions from manufacturing industries and construction (% of total fuel combustion),topics,Environment,6
+EN.CO2.OTHX.MT,"CO2 emissions from other sectors, excluding residential buildings and commercial and public services (million metric tons)",sources,WDI Database Archives,57
+EN.CO2.OTHX.ZS,"CO2 emissions from other sectors, excluding residential buildings and commercial and public services (% of total fuel combustion)",topics,Environment,6
+EN.CO2.TRAN.MT,CO2 emissions from transport (million metric tons),sources,WDI Database Archives,57
+EN.CO2.TRAN.ZS,CO2 emissions from transport (% of total fuel combustion),topics,Environment,6
+EN.EGY.PROD.KT.OE,Commercial energy production (kt of oil equivalent),sources,WDI Database Archives,57
+EN.ELC.PROD.GWH,Electric power production (million kwh),sources,WDI Database Archives,57
+EN.ELC.PROD.LOSS.ZS,Electric power transmission and distribution losses (% of output),sources,WDI Database Archives,57
+EN.FSH.THRD.NO,"Fish species, threatened",topics,Environment,6
+EN.GHG.ALL.LU.MT.CE.AR5,Total greenhouse gas emissions including LULUCF (Mt CO2e),topics,Environment,6
+EN.GHG.ALL.MT.CE.AR5,Total greenhouse gas emissions excluding LULUCF (Mt CO2e),topics,Environment,6
+EN.GHG.ALL.PC.CE.AR5,Total greenhouse gas emissions excluding LULUCF per capita (t CO2e/capita),topics,Environment,6
+EN.GHG.CH4.AG.MT.CE.AR5,Methane (CH4) emissions from Agriculture (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.BU.MT.CE.AR5,Methane (CH4) emissions from Building (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.FE.MT.CE.AR5,Methane (CH4) emissions from Fugitive Emissions (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.IC.MT.CE.AR5,Methane (CH4) emissions from Industrial Combustion (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.IP.MT.CE.AR5,Methane (CH4) emissions from Industrial Processes (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.MT.CE.AR5,Methane (CH4) emissions (total) excluding LULUCF (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.PI.MT.CE.AR5,Methane (CH4) emissions from Power Industry (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.TR.MT.CE.AR5,Methane (CH4) emissions from Transport (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.WA.MT.CE.AR5,Methane (CH4) emissions from Waste (Mt CO2e),topics,Environment,6
+EN.GHG.CH4.ZG.AR5,Methane (CH4) emissions (total) excluding LULUCF (% change from 1990),topics,Environment,6
+EN.GHG.CO2.AG.MT.CE.AR5,Carbon dioxide (CO2) emissions from Agriculture (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.BU.MT.CE.AR5,Carbon dioxide (CO2) emissions from Building (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.FE.MT.CE.AR5,Carbon dioxide (CO2) emissions from Fugitive Emissions (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.IC.MT.CE.AR5,Carbon dioxide (CO2) emissions from Industrial Combustion (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.IP.MT.CE.AR5,Carbon dioxide (CO2) emissions from Industrial Processes (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.LU.DF.MT.CE.AR5,Carbon dioxide (CO2) net fluxes from LULUCF - Deforestation (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.LU.FL.MT.CE.AR5,Carbon dioxide (CO2) net fluxes from LULUCF - Forest Land (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.LU.MT.CE.AR5,Carbon dioxide (CO2) net fluxes from LULUCF - Total excluding non-tropical fires (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.LU.OL.MT.CE.AR5,Carbon dioxide (CO2) net fluxes from LULUCF - Other Land (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.LU.OS.MT.CE.AR5,Carbon dioxide (CO2) net fluxes from LULUCF - Organic Soil (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.MT.CE.AR5,Carbon dioxide (CO2) emissions (total) excluding LULUCF (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.PC.CE.AR5,Carbon dioxide (CO2) emissions excluding LULUCF per capita (t CO2e/capita),topics,Environment,6
+EN.GHG.CO2.PI.MT.CE.AR5,Carbon dioxide (CO2) emissions from Power Industry (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.RT.GDP.KD,Carbon intensity of GDP (kg CO2e per constant 2015 US$ of GDP),topics,Environment,6
+EN.GHG.CO2.RT.GDP.PP.KD,Carbon intensity of GDP (kg CO2e per 2021 PPP $ of GDP),topics,Environment,6
+EN.GHG.CO2.TR.MT.CE.AR5,Carbon dioxide (CO2) emissions from Transport (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.WA.MT.CE.AR5,Carbon dioxide (CO2) emissions from Waste (Mt CO2e),topics,Environment,6
+EN.GHG.CO2.ZG.AR5,Carbon dioxide (CO2) emissions (total) excluding LULUCF (% change from 1990),topics,Environment,6
+EN.GHG.FGAS.IP.MT.CE.AR5,F-gases emissions from Industrial Processes (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.AG.MT.CE.AR5,Nitrous oxide (N2O) emissions from Agriculture (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.BU.MT.CE.AR5,Nitrous oxide (N2O) emissions from Building (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.FE.MT.CE.AR5,Nitrous oxide (N2O) emissions from Fugitive Emissions (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.IC.MT.CE.AR5,Nitrous oxide (N2O) emissions from Industrial Combustion (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.IP.MT.CE.AR5,Nitrous oxide (N2O) emissions from Industrial Processes (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.MT.CE.AR5,Nitrous oxide (N2O) emissions (total) excluding LULUCF (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.PI.MT.CE.AR5,Nitrous oxide (N2O) emissions from Power Industry (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.TR.MT.CE.AR5,Nitrous oxide (N2O) emissions from Transport (Energy) (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.WA.MT.CE.AR5,Nitrous oxide (N2O) emissions from Waste (Mt CO2e),topics,Environment,6
+EN.GHG.N2O.ZG.AR5,Nitrous oxide (N2O) emissions (total) excluding LULUCF (% change from 1990),topics,Environment,6
+EN.GHG.TOT.ZG.AR5,Total greenhouse gas emissions excluding LULUCF (% change from 1990),topics,Environment,6
+EN.H2O.BDYS.ZS,Proportion of bodies of water with good ambient water quality,sources,"Environment, Social and Governance (ESG) Data",75
+EN.HPT.THRD.NO,"Plant species (higher), threatened",topics,Environment,6
+EN.HPT.TOTL.NO,"Plant species (higher), total known",sources,WDI Database Archives,57
+EN.LAND.CRP,"Land use, cropland (sq km)",sources,WDI Database Archives,57
+EN.LAND.CRP.ZS,"Land use, cropland (% of land area)",sources,WDI Database Archives,57
+EN.LAND.OTH,"Land use, other (sq km)",sources,WDI Database Archives,57
+EN.LAND.OTH.ZS,"Land use, other (% of land area)",sources,WDI Database Archives,57
+EN.LAND.PPS,"Land use, permanent pasture (sq km)",sources,WDI Database Archives,57
+EN.LAND.PPS.ZS,"Land use, permanent pasture (% of land area)",sources,WDI Database Archives,57
+EN.LAND.TOTL,Land area (sq km),sources,WDI Database Archives,57
+EN.LND.IRIG.AR.ZS,Irrigated land (% of arable land),sources,WDI Database Archives,57
+EN.LND.LTMP.DC,Land Surface Temperature,sources,"Environment, Social and Governance (ESG) Data",75
+EN.MAM.THRD.NO,"Mammal species, threatened",topics,Environment,6
+EN.NAGR.EMPL.IN,"Non-agricultural population (FAO, number)",sources,Africa Development Indicators,11
+EN.POP.DNST,Population density (people per sq. km of land area),topics,Urban Development,16
+EN.POP.EL5M.RU.ZS,Rural population living in areas where elevation is below 5 meters (% of total population),topics,Agriculture & Rural Development,1
+EN.POP.EL5M.UR.ZS,Urban population living in areas where elevation is below 5 meters (% of total population),topics,Environment,6
+EN.POP.EL5M.ZS,Population living in areas where elevation is below 5 meters (% of total population),topics,Environment,6
+EN.POP.SLUM.UR.ZS,Population living in slums (% of urban population),topics,Environment,6
+EN.PRD.ELEC,Electricity production (million kwh),sources,WDI Database Archives,57
+EN.PRD.ELEC.POP.ZS,Electricity production (kwh per capita),sources,WDI Database Archives,57
+EN.ROD.ACCT,Traffic accidents,sources,WDI Database Archives,57
+EN.RUR.DNST,Rural population density (rural population per sq. km of arable land),sources,Africa Development Indicators,11
+EN.RUR.DNST.TOTL,"Population density, rural (people per sq km)",sources,WDI Database Archives,57
+EN.TDF.COMP,Traditional fuel use (kt of oil equivalent),sources,WDI Database Archives,57
+EN.TDF.COMP.ZS,Traditional fuel use (% of total energy use),sources,WDI Database Archives,57
+EN.URB.LCTY,Population in largest city,topics,Urban Development,16
+EN.URB.LCTY.UR.ZS,Population in the largest city (% of urban population),topics,Urban Development,16
+EN.URB.MCTY,Population in urban agglomerations of more than 1 million,topics,Urban Development,16
+EN.URB.MCTY.TL.ZS,Population in urban agglomerations of more than 1 million (% of total population),topics,Urban Development,16
+ENF.CONT.COEN.ATDR,Enforcing contracts: Alternative dispute resolution (0-3) (DB16-20 methodology),sources,Doing Business,1
+ENF.CONT.COEN.ATFE.PR,Enforcing contracts: Attorney fees (% of claim),sources,Doing Business,1
+ENF.CONT.COEN.COST.ZS,Enforcing contracts: Cost (% of claim),sources,Doing Business,1
+ENF.CONT.COEN.COST.ZS.DFRN,Enforcing contracts: Cost (% of claim) - Score,sources,Doing Business,1
+ENF.CONT.COEN.CSMG,Enforcing contracts: Case management (0-6) (DB16-20 methodology),sources,Doing Business,1
+ENF.CONT.COEN.CTAU,Enforcing contracts: Court automation (0-4) (DB17-20 methodology),sources,Doing Business,1
+ENF.CONT.COEN.CTFE.PR,Enforcing contracts: Court fees (% of claim),sources,Doing Business,1
+ENF.CONT.COEN.CTSP.DB1719,Enforcing contracts: Court structure and proceedings (0-5) (DB17-20 methodology),sources,Doing Business,1
+ENF.CONT.COEN.DB0415.DFRN,Enforcing contracts (DB04-15 methodology) - Score,sources,Doing Business,1
+ENF.CONT.COEN.DB1719.DFRN,Enforcing contracts (DB17-20 methodology) - Score,sources,Doing Business,1
+ENF.CONT.COEN.ENFE.PR,Enforcing contracts: Enforcement fees (% of claim),sources,Doing Business,1
+ENF.CONT.COEN.ENJU.DY,Enforcing contracts: Enforcement of judgment (days),sources,Doing Business,1
+ENF.CONT.COEN.FLSR.DY,Enforcing contracts: Filing and service (days),sources,Doing Business,1
+ENF.CONT.COEN.PROC.NO,Enforcing contracts: Procedures (number),sources,Doing Business,1
+ENF.CONT.COEN.PROC.NO.DFRN,Enforcing contracts: Procedures (number) - Score,sources,Doing Business,1
+ENF.CONT.COEN.QUJP.DB16.DFRN,Enforcing contracts: Quality of the judicial processes index (0-19) (DB17-20 methodology) - Score,sources,Doing Business,1
+ENF.CONT.COEN.QUJP.XD,Enforcing contracts: Quality of the judicial processes index (0-18) (DB17-20 methodology),sources,Doing Business,1
+ENF.CONT.COEN.RK.DB19,Rank: Enforcing contracts (1=most business-friendly regulations),sources,Doing Business,1
+ENF.CONT.COEN.TRJU.DY,Enforcing contracts: Trial and judgment (days),sources,Doing Business,1
+ENF.CONT.DURS.DY,Enforcing contracts: Time (days),sources,Doing Business,1
+ENF.CONT.DURS.DY.DFRN,Enforcing contracts: Time (days) - Score,sources,Doing Business,1
+EP.CPI.1996,Consumer Price Index in 42 cities base 1996,sources,Indonesia Database for Policy and Economic Research,45
+EP.CPI.2002,Consumer Price Index in 45 cities base 2002,sources,Indonesia Database for Policy and Economic Research,45
+EP.CPI.2007,Consumer Price Index in 66 cities base 2007,sources,Indonesia Database for Policy and Economic Research,45
+EP.CPI.2012,Consumer Price Index in 82 cities base 2012,sources,Indonesia Database for Policy and Economic Research,45
+EP.CPI.2018,Consumer Price Index in 90 cities base 2018,sources,Indonesia Database for Policy and Economic Research,45
+EP.PMP.DESL.CD,Pump price for diesel fuel (US$ per liter),topics,Energy & Mining,5
+EP.PMP.SGAS.CD,Pump price for gasoline (US$ per liter),topics,Energy & Mining,5
+EP.PPR.BRED.XD,Bread and cereals price in PPP terms (U.S. price = 100),sources,WDI Database Archives,57
+EP.PPR.MAIZ.CD,"Agricultural producer price, maize ($ per metric ton)",sources,WDI Database Archives,57
+EP.PPR.MEAT.XD,Meat price in PPP terms (U.S. price = 100),sources,WDI Database Archives,57
+EP.PPR.WHEA.CD,"Agricultural producer price, wheat ($ per metric ton)",sources,WDI Database Archives,57
+ER.BDV.TOTL.XQ,GEF benefits index for biodiversity (0 = no biodiversity potential to 100 = maximum),sources,Africa Development Indicators,11
+ER.FSH.AQUA.MT,Aquaculture production (metric tons),topics,Environment,6
+ER.FSH.CAPT.MT,Capture fisheries production (metric tons),topics,Environment,6
+ER.FSH.PROD.MT,Total fisheries production (metric tons),topics,Environment,6
+ER.FST.DFST.ZG,Annual deforestation (% of change),sources,IDA Results Measurement System,18
+ER.GDP.FWTL.M3.KD,"Water productivity, total (constant 2015 US$ GDP per cubic meter of total freshwater withdrawal)",topics,Environment,6
+ER.H2O.FWAG.ZS,"Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)",topics,Agriculture & Rural Development,1
+ER.H2O.FWDM.ZS,"Annual freshwater withdrawals, domestic (% of total freshwater withdrawal)",topics,Environment,6
+ER.H2O.FWIN.ZS,"Annual freshwater withdrawals, industry (% of total freshwater withdrawal)",topics,Environment,6
+ER.H2O.FWST.ZS,Level of water stress: freshwater withdrawal as a proportion of available freshwater resources,topics,Environment,6
+ER.H2O.FWTL.K3,"Annual freshwater withdrawals, total (billion cubic meters)",topics,Environment,6
+ER.H2O.FWTL.ZS,"Annual freshwater withdrawals, total (% of internal resources)",topics,Environment,6
+ER.H2O.INTR.K3,"Renewable internal freshwater resources, total (billion cubic meters)",topics,Environment,6
+ER.H2O.INTR.PC,Renewable internal freshwater resources per capita (cubic meters),topics,Environment,6
+ER.LND.PTLD.K2,Terrestrial protected areas (sq. km),sources,Africa Development Indicators,11
+ER.LND.PTLD.TR.NO,Terrestrial protected areas (number),sources,WDI Database Archives,57
+ER.LND.PTLD.TR.ZS,Terrestrial protected areas (% of total surface area),sources,WDI Database Archives,57
+ER.LND.PTLD.ZS,Terrestrial protected areas (% of total land area),topics,Environment,6
+ER.MRN.PTMR.K2,Marine protected areas (sq. km),sources,Africa Development Indicators,11
+ER.MRN.PTMR.NO,Marine protected areas (number),sources,WDI Database Archives,57
+ER.MRN.PTMR.ZS,Marine protected areas (% of territorial waters),topics,Environment,6
+ER.PTD.TOTL.ZS,Terrestrial and marine protected areas (% of total territorial area),topics,Environment,6
+EU.EGY.IMPT.CO.ZS,"Energy imports, net (% of commercial energy use)",sources,WDI Database Archives,57
+EU.EGY.USES.GDP,GDP per unit of energy use (1987 US$ per kg of oil equivalent),sources,WDI Database Archives,57
+EU.EGY.USES.KG.OE.PC,Commercial energy use (kg of oil equivalent per capita),sources,WDI Database Archives,57
+EU.EGY.USES.KT.OE,Commercial energy use (kt of oil equivalent),sources,WDI Database Archives,57
+FA.LBL.RCUR.CN,Currency Outside Banks (local),sources,WDI Database Archives,57
+FB.AST.FRNO.ZS,Banking assets held by foreign-owned banks (% of total banking assets),sources,WDI Database Archives,57
+FB.AST.LOAN.CB.P3,"Loan accounts, commercial banks (per 1,000 adults)",topics,Financial Sector,7
+FB.AST.LOAN.CO.P3,"Loan accounts, cooperatives (per 1,000 adults)",sources,WDI Database Archives,57
+FB.AST.LOAN.MF.P3,"Loan accounts, microfinance institutions (per 1,000 adults)",topics,Financial Sector,7
+FB.AST.LOAN.SF.P3,"Loan accounts, specialized state financial institutions (per 1,000 adults)",sources,WDI Database Archives,57
+FB.AST.NPER.ZS,Bank nonperforming loans to total gross loans (%),topics,Financial Sector,7
+FB.AST.PUBO.ZS,Banking assets held by government-owned banks (% of total banking assets),sources,WDI Database Archives,57
+FB.ATM.TOTL.P5,"Automated teller machines (ATMs) (per 100,000 adults)",topics,Financial Sector,7
+FB.BNK.BRCH.CB.P5,"Branches, commercial banks (per 100,000 adults)",sources,WDI Database Archives,57
+FB.BNK.BRCH.CO.P5,"Branches, cooperatives (per 100,000 adults)",sources,WDI Database Archives,57
+FB.BNK.BRCH.MF.P5,"Branches, microfinance institutions (per 100,000 adults)",sources,WDI Database Archives,57
+FB.BNK.BRCH.P5,"Bank branches (per 100,000 people)",sources,WDI Database Archives,57
+FB.BNK.BRCH.SF.P5,"Branches, specialized state financial institutions (per 100,000 adults)",sources,WDI Database Archives,57
+FB.BNK.CAPA.ZS,Bank capital to assets ratio (%),topics,Financial Sector,7
+FB.CAP.INST.ST.DM,"656_Does a dedicated, national, multi-stakeholder structure exist to promote and coordinate provision of financial education?_#VHQB_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.MS.AL,"660_Does government, industry, and NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.MS.GI,659_Does government and industry only participate in the multi-stakeholder structure to promote and coordinate financial education?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.MS.GP,657_Does government participate in the multi-stakeholder structure to promote and coordinate financial education?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.MS.IO,658_Does industry only participate in the multi-stakeholder structure to promote and coordinate financial education?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.MS.WB,"661_Does government, industry, or NGOs participate in the multi-stakeholder structure to promote and coordinate financial education?_#VHQC_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.CAP.INST.ST.MU,655_Are there multiple agencies responsible for financial education policy and programs?_#VHQA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.INST.ST.SG,654_Is there a single agency responsible for financial education policy and programs?_#VHQA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.LEGL.DF.FE,653_Does this country have a formal definition for financial education or financial literacy or financial capability? _#VHPA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.FE.CTR.WS,"685_Does the government itself or with partners maintain a website with educational content, tools, and resources for broader financial education?_#VHXA_01",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.G2P.FE,674_Is financial education integrated into any government-provided social assistance programs? _#VHVA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.GL.AP,669_Has the government issued written guidelines directed to all providers of financial education on content and/or methodology?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.GL.SP,668_Has the government issued written guidelines directed to a limited set of providers of financial education on content and/or methodology?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.GL.WP,"670_Has the government issued written guidelines directed to all, some, or none of the providers of financial education on content and/or methodology?_#VHUA_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.CAP.POLI.NM.5Y,"662_Has the government, either by itself or with partners, undertaken a national mapping of financial education activities in the past five years? _#VHRA_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.NS.BF.5Y,667_Has a nationally representative broader survey with a component on financial capability of individuals or households been conducted in the past five years?_#VHTA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.NS.FC.5Y,666_Has a nationally representative dedicated survey of financial capability of individuals or households been conducted in the past five years?_#VHTA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.CD.2Y,678_Is financial education at the stage of curriculum development planned within the next 1-2 years within public school curriculums?_#VHWA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.DT.FE,675_Is financial education included in public school curriculums as a distinct topic or subject?_#VHWA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.IP.2Y,677_Is financial education at the stage of implementation planned within the next 1-2 years within public school curriculums?_#VHWA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.JS.FE,681_Is financial education currently or soon to be included as a topic in public school curriculums at junior secondary level?_#VHWB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.NI,679_Is financial education at the stage of not being included in public school curriculums?_#VHWA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.PR.FE,680_Is financial education currently or soon to be included as a topic in public school curriculums at primary level?_#VHWB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.SS.FE,682_Is financial education currently or soon to be included as a topic in public school curriculums at senior secondary level?_#VHWB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.ST.FE,676_Is financial education included in public school curriculums as a subtopic integrated into one or multiple other topics or subjects?_#VHWA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PSC.UN.FE,683_Is financial education currently or soon to be included as a topic in public school curriculums at university level?_#VHWB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.PTC.INF.WS,684_Does the government itself or with partners maintain a website to disclose pricing and terms and conditions information?_#VHXA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.RE.AP,672_Does the government explicitly require all financial service providers to offer financial education?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.RE.SP,671_Does the government explicitly require a limited set of financial service providers to offer financial education?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.RE.WP,"673_Does the government explicitly require all, some, or none of the financial service providers to offer financial education?_#VHUB_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.CAP.POLI.RG.DC.AP,664_Does the government regularly collect data from all known providers of financial education on the reach of their programs?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.RG.DC.SP,663_Does the government regularly collect data from a limited set of providers of financial education on the reach of their programs?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.CAP.POLI.RG.DC.WP,"665_Does the government regularly collect data from all, some, or none of the known providers of financial education on the reach of their programs?_#VHSA_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.CBK.BRCH.P5,"Commercial bank branches (per 100,000 adults)",topics,Financial Sector,7
+FB.CBK.BRWR.P3,"Borrowers from commercial banks (per 1,000 adults)",topics,Financial Sector,7
+FB.CBK.DPTR.P3,"Depositors with commercial banks (per 1,000 adults)",topics,Financial Sector,7
+FB.DPT.INSU.PC.ZS,Deposit insurance coverage (% of GDP per capita),sources,WDI Database Archives,57
+FB.FCP.BREG.AL.CO.NP,593_Do laws and regulations allow consumers a cooling-off period during which they can withdraw from a product or service without a penalty?_#VHHA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.EB.AR,"583_Do laws and regulations require assessment of borrower's ability to repay, without specific borrowing limits?_#VHFA_01",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.EB.EL,582_Do laws and regulations set explicit limits on excessive borrowing?_#VHFA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.EB.NP,585_Do laws and regulations contain no provisions to restrict excessive borrowing?_#VHFA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.EB.OR,584_Do laws and regulations set other restrictions on excessive borrowing?_#VHFA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.AG,600_Are financial institutions required to have a minimum level of professional competence/training for agents and intermediaries?_#VHIB_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.AP,595_Are financial institutions required to have a minimum level of professional competence/training for all relevant personnel dealing with consumers?_#VHIA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.CO,599_Are financial institutions required to have a minimum level of professional competence/training for complaints officers?_#VHIB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.CR,596_Are financial institutions required to have a minimum level of professional competence/training for credit officers?_#VHIB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.CS,601_Are financial institutions required to have a minimum level of professional competence/training for customer service representatives?_#VHIB_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.MS,598_Are financial institutions required to have a minimum level of professional competence/training for marketing staff?_#VHIB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.ML.PC.RO,597_Are financial institutions required to have a minimum level of professional competence/training for recovery officers?_#VHIB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.MS.DC,602_Do laws or regulations require minimum standards for debt collection practices?_#VHJA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.BU.ND,590_Do laws and regulations prohibit or restrict bundling and tying services and products in a manner that unduly restricts the choice of consumers?_#VHGA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.DI.SC,"589_Do laws and regulations prohibit or restrict discriminating consumers based on gender, ethnicity, faith, political affiliation, or appearance? _#VHGA_03",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.EF.AC,591_Do laws and regulations limit fees and charges for account closure that impede customer mobility between financial institutions?_#VHHA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.EF.RP,594_Do laws and regulations limit early repayment penalties that impede customer mobility between financial institutions?_#VHHA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.EP.AC,592_Do laws and regulations prohibit extra burdening procedures for account closure that limit customer mobility between financial institutions?_#VHHA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.TC.RC,588_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the right of the consumer? _#VHGA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.TC.RL,587_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that excludes or restricts the liability of the financial service provider? _#VHGA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.BREG.PR.TC.UF,"586_Do laws and regulations prohibit or restrict the use in consumer agreements of any term or condition that is unfair, excessively unbalanced or abusive? _#VHGA_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.AD,629_Does the alternative dispute resolution (ADR) entity analyze the complaints data to identify trends?_#VHMF_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.AN,619_Does the alternative dispute resolution (ADR) entity also cover non-financial services? _#VHMB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.BM,612_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides both binding decisions and mediation services?_#VHLA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.BO,613_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides binding decisions only?_#VHLA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.CI,627_Does the alternative dispute resolution (ADR) entity require that consumers first submit their complaints to the relevant financial institution?_#VHME_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.CT,630_Does the alternative dispute resolution (ADR) entity communicate complaint trends to the regulator?_#VHMF_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.DC,628_Does the alternative dispute resolution (ADR) entity maintain a database of registered/recorded complaints?_#VHMF_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FA,623_Is the alternative dispute resolution (ADR) entity funded from the budget of a specific government agency?_#VHMD_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FC,626_Is the alternative dispute resolution (ADR) entity funded by a combination of government and other sources?_#VHMD_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FG,622_Is the alternative dispute resolution (ADR) entity funded from a budget allocated by the central government?_#VHMD_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FI,624_Is the alternative dispute resolution (ADR) entity funded by a financial industry association?_#VHMD_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FM,625_Is the alternative dispute resolution (ADR) entity funded by direct contributions of its members?_#VHMD_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.FO,618_Does the alternative dispute resolution (ADR) entity focus only on financial services?_#VHMB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.AG,639_Are agents among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.AT,638_Are ATM transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.BL,637_Is bundling or tying of products among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.CA,649_Are current accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.CC,643_Are credit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.CL,646_Are consumer loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.DA,648_Are deposit accounts among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.DC,644_Are debit cards among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.EC,634_Are excessive interest or fees among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.EM,652_Are e-money products among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_09,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.FD,635_Is fraud among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.HL,645_Are mortgage or housing loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.LI,650_Is life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.ML,647_Are micro loans among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.NI,651_Is non-life insurance among the top-three products complained about to the alternative dispute resolution (ADR) entity?_#VHOA_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.OT,642_Are other issues among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_09,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.PC,641_Is product switching or closure among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.UC,633_Are unclear interest or fees among the top three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.UI,640_Are unpaid insurance claims among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IC.UT,636_Are mistaken or unauthorized transactions among the top-three issues complained about to the alternative dispute resolution (ADR) entity?_#VHNA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.IR,621_Is the alternative dispute resolution (ADR) entity independent from the financial sector regulator?_#VHMC_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.MI,"617_Is the alternative dispute resolution (ADR) entity a mandatory, industry-based entity?_#VHMA_02",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.MO,614_Is there an out-of-court alternative dispute resolution (ADR) scheme that provides mediation services only?_#VHLA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.PS,631_Does the alternative dispute resolution (ADR) entity regularly publish complaint statistics?_#VHMF_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.RS,632_Does the alternative dispute resolution (ADR) entity report complaint statistics to the regulator?_#VHMF_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.RT,611_Is there an out-of-court alternative dispute resolution (ADR) entity that provides consumers of financial services affordable and efficient recourse with a third party?_#VHLA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.SE,615_Is the alternative dispute resolution (ADR) entity a statutory entity?_#VHMA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.VI,"616_Is the alternative dispute resolution (ADR) entity a voluntary, industry-based entity?_#VHMA_01",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.AS.WR,620_Is the alternative dispute resolution (ADR) entity established within the financial sector regulator?_#VHMC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.AC,607_Do laws or regulations set standards for accessibility in resolving customer complaints? _#VHKB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.DU,605_Do laws or regulations require financial institutions to have a designated office or unit for resolving customer complaints? _#VHKB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.EM,610_Do laws or regulations set standards for providing consumers the details of a relevant external dispute resolution mechanism (if any)? _#VHKB_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.IP,604_Do laws or regulations require implementing procedures and processes to resolve customer complaints? _#VHKB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.RG,609_Do laws or regulations set standards for reporting complaints data to a government agency? _#VHKB_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.RK,608_Do laws or regulations set standards for record-keeping of customer complaints? _#VHKB_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.ST,603_Do laws or regulations set standards for complaints resolution and handling by financial institutions? _#VHKA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.DISR.CH.TR,606_Do laws or regulations set standards for timeliness of response to customer complaints by financial institutions? _#VHKB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DR.AF,407_Do disclosure requirements for commercial banks include any form requirements?_#VGYA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DR.LL,406_Do disclosure requirements for commercial banks include a local language requirement?_#VGYA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DR.PL,405_Do disclosure requirements for commercial banks include a plain language requirement?_#VGYA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DR.RR,408_Do disclosure requirements for commercial banks include information on recourse rights and processes?_#VGYA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DS.AS,338_Are commercial banks required to provide customers with specific types of product information at the advertisement stage?_#VGWA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DS.CS,341_Are commercial banks required to provide customers with specific types of product information at the contractual stage?_#VGWA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DS.PS,340_Are commercial banks required to provide customers with specific types of product information at the precontractual stage?_#VGWA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DS.SS,339_Are commercial banks required to provide customers with specific types of product information at the shopping stage?_#VGWA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.DS.UR,342_Are commercial banks required to provide customers with specific types of product information upon request?_#VGWA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.CF,432_Are commercial banks required to disclose account closure fees at the shopping and/or pre-contractual stage?_#VGZA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.CM,461_Are commercial banks required to disclose computation method at the shopping and/or pre-contractual stage?_#VHAA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.DI,433_Are commercial banks required to disclose deposit insurance coverage availability at the shopping and/or pre-contractual stage?_#VGZA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.ER,459_Are commercial banks required to disclose effective interest rate at the shopping and/or pre-contractual stage?_#VHAA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.FP,460_Are commercial banks required to disclose fees and penalties at the shopping and/or pre-contractual stage?_#VHAA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.MB,429_Are commercial banks required to disclose minimum balance requirements at the shopping and/or pre-contractual stage?_#VGZA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.MF,431_Are commercial banks required to disclose account maintenance fee at the shopping and/or pre-contractual stage?_#VGZA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.OF,430_Are commercial banks required to disclose account opening fee at the shopping and/or pre-contractual stage?_#VGZA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.RI,462_Are commercial banks required to disclose required insurance at the shopping and/or pre-contractual stage?_#VHAA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.PD.SW,463_Are commercial banks required to disclose specific warnings at the shopping and/or pre-contractual stage?_#VHAA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.CB.SF.AS,398_Are commercial banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.IF,334_Does the financial consumer protection (FCP) agency have enforcement powers to impose fines and penalties?_#VGVB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.IN,335_Does the financial consumer protection (FCP) agency have enforcement powers to issue public notice of violations?_#VGVB_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.IS,337_Does the financial consumer protection (FCP) agency have enforcement powers to issue administrative sanctions to senior management?_#VGVB_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.IW,331_Does the financial consumer protection (FCP) agency have enforcement powers to issue warnings to financial institutions?_#VGVB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.RF,332_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to refund fees and charges?_#VGVB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.RL,336_Does the financial consumer protection (FCP) agency have enforcement powers to revoke or recommend to revoke license?_#VGVB_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.EP.WA,333_Does the financial consumer protection (FCP) agency have enforcement powers to require providers to withdraw misleading advertisements?_#VGVB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ES.AF.10,313_Was the financial consumer protection (FCP) unit in this country established after the year 2010?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ES.BF.2K,311_Was the financial consumer protection (FCP) unit in this country established before the year 2000?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ES.BW.01,312_Was the financial consumer protection (FCP) unit in this country established between the years 2000 and 2010?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ES.WH.EN,314_When was the financial consumer protection (FCP) unit in this country established?_#VGUF_00,sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.FCP.INST.FC.SF.AS,400_Are financial cooperatives required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.MC.SF.AS,402_Are microcredit institutions (MCIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.NB.SF.AS,403_Are non-bank e-money issuers (NBEIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.NS.BW.LC,317_Does the financial consumer protection (FCP) unit in this country have the staff of between 50 and 99 people?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.NS.BW.XL,316_Does the financial consumer protection (FCP) unit in this country have the staff of between 10 and 49 people?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.NS.HW.MY,319_How many staff work in the financial consumer protection (FCP) unit in this country?_#VGUG_00,sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.FCP.INST.NS.LS.XP,315_Does the financial consumer protection (FCP) unit in this country have the staff of less than 10 people?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.NS.MT.CM,318_Does the financial consumer protection (FCP) unit in this country have the staff of 100 or more people?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.OB.SF.AS,399_Are other banks required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.OD.SF.AS,401_Are other deposit taking institutions (ODTIs) required to provide customers with specific types of product information in a standardized format at any stage?_#VGXG_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.CH,321_Is complaints handling one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.EI,328_Are off-site inspection of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.FE,330_Is financial education one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_10,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.II,327_Are on-site inspection and investigation of financial institutions one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.IR,320_Is drafting or providing inputs into regulation one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.MM,325_Is market monitoring one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.MR,326_Is market research by studying consumer behavior one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.MS,324_Is mystery/incognito shopping one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.NC,322_Is collecting data from financial institutions on the number of complaints received one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.RF,323_Is collecting data from financial institutions on the rates and fees for financial services one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SA.MA.TR,329_Are thematic reviews one of the main activities of the financial consumer protection (FCP) unit?_#VGVA_09,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.SI.SF.AS,404_Are at least some financial institutions required to provide customers with specific types of product information in a standardized format?_#VGXH_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.DP,"302_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a dedicated financial consumer protection authority model?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.GP,"303_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a general consumer protection authority model?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.IA,"300_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated single financial sector authority model?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.IS,"301_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have an integrated sectoral financial sector authority model?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.SH,"304_In terms of institutional structure for financial consumer protection (FCP) regulation and supervision, does this country have a shared financial and general consumer protection authority model?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.INST.ST.RS.WT,305_What type of institutional structure for financial consumer protection (FCP) regulation and supervision is implemented in this country?_#VGUC_00,sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.FCP.INST.ST.UA.DF,"306_Under the agency overseeing financial consumer protection (FCP) in this country, is there a dedicated FCP unit?_#VGUD_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.FL.SA.EX,295_Is there a stand-alone financial consumer protection law in place?_#VGUA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.FR.CP.EX,299_Are consumer protection provisions in place within broader financial sector regulations?_#VGUB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.GL.EF.EX,294_Is there a general consumer protection law with explicit reference to financial services in place?_#VGUA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.GL.NF.EX,293_Is there a general consumer protection law without explicit reference to financial services in place?_#VGUA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.NP.NF.NE,297_Is there no legal framework for financial consumer protection in this country?_#VGUA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.PR.SA.EX,298_Are stand-alone financial consumer protection (FCP) regulations in place?_#VGUB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FCP.LEGL.SL.PP.EX,296_Are there consumer protection provisions in place within broader financial sector laws?_#VGUA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.FIN.INFO.XQ,Financial information infrastructure index (0=less developed to 10=more developed),sources,WDI Database Archives,57
+FB.INC.BNKG.AC.SC.MC,287_Is the ceiling on the minimum balance for savings/current accounts regulated in this country?_#VGTA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.MM,288_Are the maximum maintenance fees for savings/current accounts regulated in this country?_#VGTA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.MO,289_Are the maximum overdraft penalty or below minimum balance penalty regulated in this country?_#VGTA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.MX,286_Is the maximum cost to open a savings/current account regulated in this country?_#VGTA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.NC,292_Is there no cost for customers to open a savings/current account as per regulation in this country?_#VGTA_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.NL,291_Is there no law or regulation regarding the cost of customer accounts in this country?_#VGTA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.BNKG.AC.SC.OF,290_Are other factors in the cost of customer accounts regulated in this country?_#VGTA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.NB.IN.PM,231_Are non-bank e-money issuers (NBEIs) permitted to pay interest on customers' e-money accounts?_#VGOA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.NB.IP.NP,233_Are non-bank e-money issuers (NBEIs) not permitted to pay interest or share profits with their e-money customers?_#VGOA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.NB.PU.RR,230_Are non-bank e-money issuers (NBEIs) prohibited from using customer funds for purposes other than redeeming e-money and executing fund transfers?_#VGNA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.NB.SP.PM,232_Are non-bank e-money issuers (NBEIs) permitted to share profits with their e-money customers?_#VGOA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.CB,227_Is the use of accounts at the central bank required to safeguard e-money funds?_#VGMA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.EA,225_Is the use of escrow accounts required to safeguard e-money funds?_#VGMA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.ND,228_Is the type of accounts to safeguard e-money funds not defined?_#VGMA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.OT,229_Is some other type of accounts (not mentioned above) required to safeguard e-money funds?_#VGMA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.RA,226_Is the use of regular accounts required to safeguard e-money funds?_#VGMA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SF.TA.TA,224_Is the use of trust accounts required to safeguard e-money funds?_#VGMA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SP.IF.AM,"220_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at more than one prudentially regulated financial institution, possibly the central bank and others?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SP.IF.AO,"219_Are 100% of customers' e-money funds required to be separated from e-money issuer's funds and kept at a single prudentially regulated financial institution, possibly the central bank?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SP.IF.NR,222_Is it not required that customers' e-money funds are separated from e-money issuer's funds?,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SP.IF.SM,"221_Is only a fraction of customers' e-money funds required to be separated from e-money issuer's funds and kept at one or more prudentially regulated financial institutions, possibly the central bank and others?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.EMNY.SP.IF.WH,223_What fraction of customers' e-money funds is required to be separated from e-money issuer's funds and kept at how many prudentially regulated financial institutions?_#VGLA_00,sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.CB.AU.AR,"192_For commercial banks, is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.AU.NR,"194_For commercial banks, is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.AU.SR,"193_For commercial banks, is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.AU.WR,"195_For commercial banks, is authorization of new or modified financial products explicitly required?_#VGJA_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.CB.CD.SE,"266_For commercial banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.CRB.CR,162_Are commercial banks required to check/report to credit bureau for some/all loans?_#VGHA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LN.AL,"168_For commercial banks, is all lending subject to interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LN.NL,"169_For commercial banks, are there no interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LN.SL,"170_For commercial banks, are there some interest rate caps or pricing limits that apply to certain products or segments?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LN.WL,"171_For commercial banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_00",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.CB.LT.NF,271_Are commercial banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LT.NI,270_Are commercial banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LT.OE,273_Are commercial banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.LT.SM,272_Are commercial banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.CB.TP.LI,123_Are commercial banks liable for any actions or omissions of their agents?_#VGFA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.AU.AR,"200_For financial cooperatives, is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.AU.NR,"202_For financial cooperatives, is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.AU.SR,"201_For financial cooperatives, is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.AU.WR,"203_For financial cooperatives, is authorization of new or modified financial products explicitly required?_#VGJA_02",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.FC.CD.SE,"268_For financial cooperatives, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_02",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.CRB.CR,164_Are financial cooperatives required to check/report to credit bureau for some/all loans?_#VGHA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LN.AL,"176_For financial cooperatives, is all lending subject to interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LN.NL,"177_For financial cooperatives, are there no interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LN.SL,"178_For financial cooperatives, are there some interest rate caps or pricing limits that apply to certain products or segments?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LN.WL,"179_For financial cooperatives, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_02",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.FC.LT.NF,279_Are financial cooperatives allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSC_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LT.NI,278_Are financial cooperatives allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LT.OE,281_Are financial cooperatives allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSC_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.LT.SM,280_Are financial cooperatives allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSC_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FC.TP.LI,131_Are financial cooperatives liable for any actions or omissions of their agents?_#VGFC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FP.AU.CR,218_Are consumer risks assessed during authorization process for modified or new financial products?_#VGKA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FP.AU.LR,217_Are AML/CFT risks assessed during authorization process for modified or new financial products?_#VGKA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FP.AU.OR,216_Are operational risks assessed during authorization process for modified or new financial products?_#VGKA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.CB,001_Does a regulatory/supervisory framework exist for commercial banks?_#VGAA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.FC,003_Does a regulatory/supervisory framework exist for financial cooperatives?_#VGAA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.MC,005_Does a regulatory/supervisory framework exist for microcredit institutions (MCIs)?_#VGAA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.NB,006_Does a regulatory/supervisory framework exist for non-bank e-money issuers (NBEIs)?_#VGAA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.OB,002_Does a regulatory/supervisory framework exist for other banks?_#VGAA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.FW.OD,004_Does a regulatory/supervisory framework exist for other deposit taking institutions (ODTIs)?_#VGAA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.AU.AR,"208_For microcredit institutions (MCIs), is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.AU.NR,"210_For microcredit institutions (MCIs), is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.AU.SR,"209_For microcredit institutions (MCIs), is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.AU.WR,"211_For microcredit institutions (MCIs), is authorization of new or modified financial products explicitly required?_#VGJA_04",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.MC.CRB.CR,166_Are microcredit institutions (MCIs) required to check/report to credit bureau for some/all loans?_#VGHA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.LN.AL,"184_For microcredit institutions (MCIs), is all lending subject to interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.LN.NL,"185_For microcredit institutions (MCIs), are there no interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.LN.SL,"186_For microcredit institutions (MCIs), are there some interest rate caps or pricing limits that apply to certain products or segments?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.MC.LN.WL,"187_For microcredit institutions (MCIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_04",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.MC.TP.LI,139_Are microcredit institutions (MCIs) liable for any actions or omissions of their agents?_#VGFE_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.NB.AU.AR,"212_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.NB.AU.NR,"214_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.NB.AU.SR,"213_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.NB.AU.WR,"215_For non-bank e-money issuers (NBEIs), is authorization of new or modified financial products explicitly required?_#VGJA_05",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.NB.CRB.CR,167_Are non-bank e-money issuers (NBEIs) required to check/report to credit bureau for some/all loans?_#VGHA_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.NB.TP.LI,143_Are non-bank e-money issuers (NBEIs) liable for any actions or omissions of their agents?_#VGFF_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.AU.AR,"196_For other banks, is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.AU.NR,"198_For other banks, is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.AU.SR,"197_For other banks, is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.AU.WR,"199_For other banks, is authorization of new or modified financial products explicitly required?_#VGJA_01",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.OB.CD.SE,"267_For other banks, are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_01",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.CRB.CR,163_Are other banks required to check/report to credit bureau for some/all loans?_#VGHA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LN.AL,"172_For other banks, is all lending subject to interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LN.NL,"173_For other banks, are there no interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LN.SL,"174_For other banks, are there some interest rate caps or pricing limits that apply to certain products or segments?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LN.WL,"175_For other banks, is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_01",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.OB.LT.NF,275_Are other banks allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LT.NI,274_Are other banks allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LT.OE,277_Are other banks allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.LT.SM,276_Are other banks allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OB.TP.LI,127_Are other banks liable for any actions or omissions of their agents?_#VGFB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.AU.AR,"204_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products always explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.AU.NR,"206_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products never explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.AU.SR,"205_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products only in some cases explicitly required?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.AU.WR,"207_For other deposit taking institutions (ODTIs), is authorization of new or modified financial products explicitly required?_#VGJA_03",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.OD.CD.SE,"269_For other deposit taking institutions (ODTIs), are there simplifications or exceptions to the documentation requirements for some types of applicants or deposit account products?_#VGRA_03",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.CRB.CR,165_Are other deposit taking institutions (ODTIs) required to check/report to credit bureau for some/all loans?_#VGHA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LN.AL,"180_For other deposit taking institutions (ODTIs), is all lending subject to interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LN.NL,"181_For other deposit taking institutions (ODTIs), are there no interest rate caps or pricing limits?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LN.SL,"182_For other deposit taking institutions (ODTIs), are there some interest rate caps or pricing limits that apply to certain products or segments?",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LN.WL,"183_For other deposit taking institutions (ODTIs), is all, some, or no lending subject to interest rate caps or pricing limits?_#VGIA_03",sources,Global Financial Inclusion and Consumer Protection Survey (Internal),73
+FB.INC.INST.OD.LT.NF,283_Are other deposit taking institutions (ODTIs) allowed to implement non-face-to-face customer due diligence (CDD) under the risk-based approach to AML/CFT regulation?_#VGSD_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LT.NI,282_Are other deposit taking institutions (ODTIs) allowed to accept non-standard id documents under the risk-based approach to AML/CFT regulation?_#VGSD_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LT.OE,285_Are other deposit taking institutions (ODTIs) allowed to implement other elements under the risk-based approach to AML/CFT regulation?_#VGSD_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.LT.SM,284_Are other deposit taking institutions (ODTIs) allowed to implement simplified transaction monitoring under the risk-based approach to AML/CFT regulation?_#VGSD_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.OD.TP.LI,135_Are other deposit taking institutions (ODTIs) liable for any actions or omissions of their agents?_#VGFD_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.AG,028_Are commercial banks permitted to act as an agent of a financial provider?_#VGDA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.CA,026_Are commercial banks permitted to provide checking or current accounts?_#VGDA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.EM,032_Are commercial banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDA_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.IN,033_Are commercial banks permitted to distribute insurance?_#VGDA_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.PC,"031_Are commercial banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDA_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.PN,034_Are commercial banks permitted to distribute pension products?_#VGDA_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.CB.TP,027_Are commercial banks permitted to contract with retail agents as third-party delivery channels?_#VGDA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.AG,046_Are financial cooperatives permitted to act as an agent of a financial provider?_#VGDC_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.CA,044_Are financial cooperatives permitted to provide checking or current accounts?_#VGDC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.EM,050_Are financial cooperatives permitted to issue e-money (including prepaid e-money cards) ?_#VGDC_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.IN,051_Are financial cooperatives permitted to distribute insurance?_#VGDC_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.PC,"049_Are financial cooperatives permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDC_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.PN,052_Are financial cooperatives permitted to distribute pension products?_#VGDC_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.FC.TP,045_Are financial cooperatives permitted to contract with retail agents as third-party delivery channels?_#VGDC_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.AG,064_Are microcredit institutions (MCIs) permitted to act as an agent of a financial provider?_#VGDE_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.CA,062_Are microcredit institutions (MCIs) permitted to provide checking or current accounts?_#VGDE_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.EM,068_Are microcredit institutions (MCIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDE_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.IN,069_Are microcredit institutions (MCIs) permitted to distribute insurance?_#VGDE_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.PC,"067_Are microcredit institutions (MCIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDE_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.PN,070_Are microcredit institutions (MCIs) permitted to distribute pension products?_#VGDE_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.MC.TP,063_Are microcredit institutions (MCIs) permitted to contract with retail agents as third-party delivery channels?_#VGDE_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.AG,073_Are non-bank e-money issuers (NBEIs) permitted to act as an agent of a financial provider?_#VGDF_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.CA,071_Are non-bank e-money issuers (NBEIs) permitted to provide checking or current accounts?_#VGDF_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.EM,077_Are non-bank e-money issuers (NBEIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDF_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.IN,078_Are non-bank e-money issuers (NBEIs) permitted to distribute insurance?_#VGDF_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.PC,"076_Are non-bank e-money issuers (NBEIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDF_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.PN,079_Are non-bank e-money issuers (NBEIs) permitted to distribute pension products?_#VGDF_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.NB.TP,072_Are non-bank e-money issuers (NBEIs) permitted to contract with retail agents as third-party delivery channels?_#VGDF_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.AG,037_Are other banks permitted to act as an agent of a financial provider?_#VGDB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.CA,035_Are other banks permitted to provide checking or current accounts?_#VGDB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.EM,041_Are other banks permitted to issue e-money (including prepaid e-money cards) ?_#VGDB_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.IN,042_Are other banks permitted to distribute insurance?_#VGDB_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.PC,"040_Are other banks permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDB_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.PN,043_Are other banks permitted to distribute pension products?_#VGDB_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OB.TP,036_Are other banks permitted to contract with retail agents as third-party delivery channels?_#VGDB_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.AG,055_Are other deposit taking institutions (ODTIs) permitted to act as an agent of a financial provider?_#VGDD_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.CA,053_Are other deposit taking institutions (ODTIs) permitted to provide checking or current accounts?_#VGDD_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.EM,059_Are other deposit taking institutions (ODTIs) permitted to issue e-money (including prepaid e-money cards) ?_#VGDD_06,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.IN,060_Are other deposit taking institutions (ODTIs) permitted to distribute insurance?_#VGDD_07,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.PC,"058_Are other deposit taking institutions (ODTIs) permitted to issue payment cards (credit, debit, and other non-prepaid cards) ?_#VGDD_05",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.PN,061_Are other deposit taking institutions (ODTIs) permitted to distribute pension products?_#VGDD_08,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.PA.OD.TP,054_Are other deposit taking institutions (ODTIs) permitted to contract with retail agents as third-party delivery channels?_#VGDD_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.SU.MN.NB,007_Are any non-bank e-money issuers subsidiaries of mobile network operators?_#VGAB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.CB.ID,081_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of commercial banks?_#VGEB_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.CB.LA,083_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of commercial banks?_#VGEB_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.CB.OA,084_Are third parties such as retail agents allowed to open a customer account on behalf of commercial banks?_#VGEB_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.CB.RD,086_Are third parties such as retail agents allowed to receive deposits on behalf of commercial banks?_#VGEB_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.FC.ID,095_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of financial cooperatives?_#VGED_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.FC.LA,097_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of financial cooperatives?_#VGED_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.FC.OA,098_Are third parties such as retail agents allowed to open a customer account on behalf of financial cooperatives?_#VGED_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.FC.RD,100_Are third parties such as retail agents allowed to receive deposits on behalf of financial cooperatives?_#VGED_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.MC.ID,109_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of microcredit institutions (MCIs)?_#VGEF_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.MC.LA,111_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of microcredit institutions (MCIs)?_#VGEF_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.MC.OA,112_Are third parties such as retail agents allowed to open a customer account on behalf of microcredit institutions (MCIs)?_#VGEF_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.MC.RD,114_Are third parties such as retail agents allowed to receive deposits on behalf of microcredit institutions (MCIs)?_#VGEF_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.NB.ID,116_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.NB.LA,118_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.NB.OA,119_Are third parties such as retail agents allowed to open a customer account on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.NB.RD,121_Are third parties such as retail agents allowed to receive deposits on behalf of non-bank e-money issuers (NBEIs)?_#VGEG_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OB.ID,088_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other banks?_#VGEC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OB.LA,090_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other banks?_#VGEC_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OB.OA,091_Are third parties such as retail agents allowed to open a customer account on behalf of other banks?_#VGEC_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OB.RD,093_Are third parties such as retail agents allowed to receive deposits on behalf of other banks?_#VGEC_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OD.ID,102_Are third parties such as retail agents allowed to identify and/or verify the identity of the customer on behalf of other deposit taking institutions (ODTIs)?_#VGEE_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OD.LA,104_Are third parties such as retail agents allowed to receive and submit to the institution a loan application on behalf of other deposit taking institutions (ODTIs)?_#VGEE_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OD.OA,105_Are third parties such as retail agents allowed to open a customer account on behalf of other deposit taking institutions (ODTIs)?_#VGEE_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.OD.RD,107_Are third parties such as retail agents allowed to receive deposits on behalf of other deposit taking institutions (ODTIs)?_#VGEE_05,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.INST.TP.RA,080_Are at least some financial service providers permitted to use retail agents as third-party delivery channels?_#VGEA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.LEGL.DF.MC,148_Is the term of microcredit explicitly defined in law or regulation?_#VGGA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.LEGL.DF.MF,147_Is the term of microfinance explicitly defined in law or regulation?_#VGGA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.LEGL.DF.MS,149_Is the term of microsavings explicitly defined in law or regulation?_#VGGA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.FC.DV,018_Is a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) under development?_#VGAG_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.FC.LN,017_Has a national financial capability/literacy/education strategy (NFCS/NFLS/NFES) already been launched?_#VGAG_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.FI.DV,009_Is a national financial inclusion strategy (NFIS) under development?_#VGAC_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.FI.LN,008_Has a national financial inclusion strategy (NFIS) already been launched?_#VGAC_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.GF.FI.DV,012_Is a general financial sector development strategy with a financial inclusion component (GFSDS/FI) under development?_#VGAD_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.GF.FI.LN,011_Has a general financial sector development strategy with a financial inclusion component (GFSDS/FI) already been launched?_#VGAD_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.MF.DV,016_Is a national microfinance strategy (NMS) under development?_#VGAF_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.MF.LN,015_Has a national microfinance strategy (NMS) already been launched?_#VGAF_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.ND.FI.DV,014_Is a national development strategy with a financial inclusion component (NDS/FI) under development?_#VGAE_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.NSTR.ND.FI.LN,013_Has a national development strategy with a financial inclusion component (NDS/FI) already been launched?_#VGAE_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.POLI.FI.DT.BP,022_Are deposit-taking institutions required to offer basic financial products to promote financial inclusion?_#VGBA_03,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.POLI.FI.GT.FA,023_Are recipients of government transfers encouraged or mandated to open an account to receive their funds?_#VGBA_04,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.POLI.FI.PL,020_Are priority lending policies in place to promote financial inclusion?_#VGBA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.POLI.FI.RE,"019_Are requirements, exceptions, tax incentives, or subsidies policies in place to promote financial inclusion?_#VGBA_00",sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.POLI.FI.TI,021_Are tax incentive savings schemes in place to promote financial inclusion?_#VGBA_02,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.SURV.AF.FR,025_Has a survey of firms including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_01,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.INC.SURV.AF.HH,024_Has a survey of households or individuals including questions on financial inclusion or access to finance been conducted in the last 3 years?_#VGCA_00,sources,Global Financial Inclusion and Consumer Protection Survey,69
+FB.LBL.DDPT.CB.P3,"Deposit accounts, commercial banks (per 1,000 adults)",sources,WDI Database Archives,57
+FB.LBL.DDPT.CO.P3,"Deposit accounts, cooperatives (per 1,000 adults)",sources,WDI Database Archives,57
+FB.LBL.DDPT.MF.P3,"Deposit accounts, microfinance institutions (per 1,000 adults)",sources,WDI Database Archives,57
+FB.LBL.DDPT.P3,"Bank deposit accounts (per 1,000 people)",sources,WDI Database Archives,57
+FB.LBL.DDPT.SF.P3,"Deposit accounts, specialized state financial institutions (per 1,000 adults)",sources,WDI Database Archives,57
+FB.POS.TOTL.P5,"Point-of-sale terminals (per 100,000 adults)",topics,Financial Sector,7
+FC.XPD.ADMN.CR,General administration function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.AGR.CR,Agriculture function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.ECON.CR,Economy function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.EDU.CR,Education function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.ENVR.CR,Environment function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.HE.CR,Health function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.HOUS.CR,Housing and public facilities function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.INFR.CR,Infrastructure function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.PROT.CR,Social protection function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.PUBL.CR,"Public, law and order function expenditure (in IDR)",sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.RELG.CR,Religious function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FC.XPD.TOUR.CR,Tourism and culture function expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+FD.AST.PRVT.GD.ZS,Domestic credit to private sector by banks (% of GDP),topics,Financial Sector,7
+FD.RES.LIQU.AS.ZS,Bank liquid reserves to bank assets ratio (%),topics,Financial Sector,7
+FI.RES.GOLD.CD,Gold Holdings at London market price (US$ end period),sources,WDI Database Archives,57
+FI.RES.GOLD.CD.WB,"Gold, valued at year-end London prices (current US$)",sources,Africa Development Indicators,11
+FI.RES.TOTL.CD,"Total reserves (includes gold, current US$)",topics,Economy & Growth,3
+FI.RES.TOTL.CD.WB,Total reserves including gold valued at London gold price (current US$),sources,Africa Development Indicators,11
+FI.RES.TOTL.CD.ZS,Total reserves includes gold (% of GDP),sources,Africa Development Indicators,11
+FI.RES.TOTL.DT.ZS,Total reserves (% of total external debt),topics,Financial Sector,7
+FI.RES.TOTL.MO,Total reserves in months of imports,topics,Financial Sector,7
+FI.RES.TOTL.MO.WB,Total reserves in months of imports of goods and services,sources,Africa Development Indicators,11
+FI.RES.XGLD.CD,Total reserves minus gold (current US$),topics,Economy & Growth,3
+FM.ASC.DOMO.CN,"Claims on private sector, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.DOMS.CN,"Net domestic credit, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.DOMS.ZS,Net domestic credit as % of M2 (annual % change),sources,WDI Database Archives,57
+FM.ASC.GOVT.CN,"Net domestic credit to government, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.GOVT.ZS,"Claims on governments, etc. as % of M2 (annual % change)",sources,WDI Database Archives,57
+FM.ASC.NCGV.CN,"Claims on central government, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.NFGD.CN,"Total assets, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.NFRG.CN,"Net foreign assets, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.NFRG.ZS,Net foreign assets as % of M2 (annual % change),sources,WDI Database Archives,57
+FM.ASC.OFFO.CN,"Claims on other official entities, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.OFIN.CN,"Claims on nonmonetary financial institutions, flow (current LCU)",sources,Africa Development Indicators,11
+FM.ASC.PRVT.ZS,Claims on private sector as % of M2 (annual % change),sources,WDI Database Archives,57
+FM.ASC.TOTP.CN,"Claims on private sector and other financial institutions, flow (current LCU)",sources,Africa Development Indicators,11
+FM.AST.CGOV.ZG.M3,Claims on central government (annual growth as % of broad money),topics,Financial Sector,7
+FM.AST.DOMO.CN,"Net domestic credit to private sector, stock (current LCU)",sources,Africa Development Indicators,11
+FM.AST.DOMO.ZG.M3,Claims on other sectors of the domestic economy (annual growth as % of broad money),topics,Financial Sector,7
+FM.AST.DOMS.CN,Net domestic credit (current LCU),topics,Financial Sector,7
+FM.AST.GOVT.CN,Claims on governments and other public entities (current LCU),topics,Financial Sector,7
+FM.AST.GOVT.CN.ZS,Claims on governments and other public entities (% of GDP),sources,Africa Development Indicators,11
+FM.AST.GOVT.ZG.M2,"Claims on governments, etc. (annual growth as % of M2)",topics,Financial Sector,7
+FM.AST.NCGV.CN,Claims on central government (current LCU),sources,Africa Development Indicators,11
+FM.AST.NFGD.CN,Total assets (current LCU),sources,Africa Development Indicators,11
+FM.AST.NFRG.CD,Net foreign assets (current US$),sources,Africa Development Indicators,11
+FM.AST.NFRG.CN,Net foreign assets (current LCU),topics,Financial Sector,7
+FM.AST.OFFO.CN,"Net domestic credit to other official entities, stock (current LCU)",sources,Africa Development Indicators,11
+FM.AST.OFIN.CN,"Net domestic credit to other private financial institutions, stock (current LCU)",sources,Africa Development Indicators,11
+FM.AST.PRVT.CN,Banking survey: claims on private sector (net) (current LCU),sources,WDI Database Archives,57
+FM.AST.PRVT.GD.ZS,Monetary Sector credit to private sector (% GDP),topics,Financial Sector,7
+FM.AST.PRVT.ZG.M2,Claims on private sector (annual growth as % of M2),topics,Financial Sector,7
+FM.AST.PRVT.ZG.M3,Claims on private sector (annual growth as % of broad money),topics,Financial Sector,7
+FM.AST.PUBL.CN,Claims on governments and other public entities (current LCU),sources,WDI Database Archives,57
+FM.AST.PUBL.ZG.M2,"Claims on governments, etc. (annual growth as % of M2)",sources,WDI Database Archives,57
+FM.AST.TOTP.CN,"Net domestic credit to rest of economy, stock (current LCU)",sources,Africa Development Indicators,11
+FM.LBC.MQMY.CN,"Money and quasi money (M2), flow (current LCU)",sources,Africa Development Indicators,11
+FM.LBC.XMQM.CN,"Other liabilities excluding M2, flow (current LCU)",sources,Africa Development Indicators,11
+FM.LBL.BMNY.CN,Broad money (current LCU),topics,Financial Sector,7
+FM.LBL.BMNY.GD.ZS,Broad money (% of GDP),topics,Financial Sector,7
+FM.LBL.BMNY.IR.ZS,Broad money to total reserves ratio,topics,Financial Sector,7
+FM.LBL.BMNY.ZG,Broad money growth (annual %),topics,Financial Sector,7
+FM.LBL.DDPT.CN,Demand Deposits (local),sources,WDI Database Archives,57
+FM.LBL.MONY.CN,Money (current LCU),sources,Africa Development Indicators,11
+FM.LBL.MQMY.CN,Money and quasi money (M2) (current LCU),sources,Africa Development Indicators,11
+FM.LBL.MQMY.CN.WB,"Money Supply, Broadly Defined (local)",sources,WDI Database Archives,57
+FM.LBL.MQMY.GD.ZS,Money and quasi money (M2) as % of GDP,sources,Africa Development Indicators,11
+FM.LBL.MQMY.GDP.ZS,Money and quasi money (M2) as % of GDP,sources,WDI Database Archives,57
+FM.LBL.MQMY.IR.ZS,Money and quasi money (M2) to total reserves ratio,sources,WDI Database Archives,57
+FM.LBL.MQMY.XD,Income velocity of money (GDP/M2),sources,WDI Database Archives,57
+FM.LBL.MQMY.ZG,Money and quasi money growth (annual %),sources,WDI Database Archives,57
+FM.LBL.NBNK.CN,Currency Ouside Banks (local),sources,WDI Database Archives,57
+FM.LBL.QMNY.CN,Quasi money (current LCU),sources,WDI Database Archives,57
+FM.LBL.QMNY.CN.WB,Quasi-Monetary Liabilities (local),sources,WDI Database Archives,57
+FM.LBL.QMNY.GDP.ZS,Quasi-liquid liabilities (% of GDP),sources,WDI Database Archives,57
+FM.LBL.SEIG.GDP.ZS,Seignorage (% of GDP),sources,WDI Database Archives,57
+FM.LBL.XMQM.CN,Other liabilities excluding M2 (current LCU),sources,Africa Development Indicators,11
+FN.CRED.AGR.TOTL,"Total Credit by Sector: Agriculture (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.BUS.TOTL,"Total Credit by Sector: Business (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.CNSP.TOTL,"Total Credit by Utilization: Consumption (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.CNST.TOTL,"Total Credit by Sector: Construction (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.INVS.TOTL,"Total credit by Utilization: Investment (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.MINQ.TOTL,"Total Credit by Sector: Mining and Quarrying (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.MNF.TOTL,"Total Credit by Sector: Manufacture (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.SRV.OTHR.TOTL,"Total Credit by Sector: Other Services (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.SRV.SOCL.TOTL,"Total Credit by Sector: Social Services (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.TRAD.TOTL,"Total Credit by Sector: Trade (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.TRAN.TOTL,"Total Credit by Sector: Transportation (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.UTL.TOTL,"Total Credit by Sector: Utilities (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.CRED.WCAP.TOTL,"Total Credit by Utilization: Working Capital (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.DPST.TOTL,"Total Deposits (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FN.INR.CBIR,Central bank intervention rate (%),sources,Africa Development Indicators,11
+FN.LOAN.CBK.TOTL,"Total Commercial and Rural Banks Loans Rupiah and Foreign Currency (province level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+FP.CPI.TOTL,Consumer price index (2010 = 100),topics,Financial Sector,7
+FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",topics,Economy & Growth,3
+FP.FPI.TOTL,Food price index (2000 = 100),sources,WDI Database Archives,57
+FP.FPI.TOTL.ZG,"Inflation, food prices (annual %)",sources,WDI Database Archives,57
+FP.WPI.TOTL,Wholesale price index (2010 = 100),topics,Financial Sector,7
+FP.WPI.TOTL.ZG,"Inflation, wholesale prices (annual %)",sources,WDI Database Archives,57
+FR.INR.DPST,Deposit interest rate (%),topics,Financial Sector,7
+FR.INR.DPST.DP,Real deposit interest rate (%),sources,Africa Development Indicators,11
+FR.INR.GBND,Bond interest rate (%),sources,Africa Development Indicators,11
+FR.INR.IMPL,"International interest rate, implicit (%)",sources,Africa Development Indicators,11
+FR.INR.LEND,Lending interest rate (%),topics,Financial Sector,7
+FR.INR.LEND.DPST.DF,Interest rate spread (lending rate minus deposit),sources,WDI Database Archives,57
+FR.INR.LEND.LIBOR3.DF,Interest rate spread (lending rate minus LIBOR),sources,WDI Database Archives,57
+FR.INR.LNDP,"Interest rate spread (lending rate minus deposit rate, %)",topics,Financial Sector,7
+FR.INR.LNLB,"Interest rate spread (lending rate minus LIBOR, %)",sources,WDI Database Archives,57
+FR.INR.MMKT,Money market rate (%),sources,Africa Development Indicators,11
+FR.INR.RINR,Real interest rate (%),topics,Financial Sector,7
+FR.INR.RISK,"Risk premium on lending (lending rate minus treasury bill rate, %)",topics,Financial Sector,7
+FR.INR.TDPT,Time deposits interest rate (%),sources,Africa Development Indicators,11
+FR.INR.TDPT.RL,Real interest on time deposit (%),sources,Africa Development Indicators,11
+FR.INR.USA.LIBOR3,LIBOR rate (%),sources,WDI Database Archives,57
+FS.AST.CGOV.GD.ZS,"Claims on central government, etc. (% GDP)",topics,Financial Sector,7
+FS.AST.DOMO.GD.ZS,Claims on other sectors of the domestic economy (% of GDP),topics,Financial Sector,7
+FS.AST.DOMS.GD.ZS,Domestic credit provided by financial sector (% of GDP),topics,Financial Sector,7
+FS.AST.DTOT.ZS,Domestic credit provided by banking sector (% of GDP),sources,WDI Database Archives,57
+FS.AST.PRVT.CN,Banking survey: claims on private sector (current LCU),sources,Africa Development Indicators,11
+FS.AST.PRVT.GD.ZS,Domestic credit to private sector (% of GDP),topics,Financial Sector,7
+FS.AST.PRVT.GDP.ZS,Credit to private sector (% of GDP),sources,WDI Database Archives,57
+FS.LBL.LIQU.GD.ZS,Liquid liabilities (M3) as % of GDP,sources,WDI Database Archives,57
+FS.LBL.LIQU.GDP.ZS,Liquid liabilities (M3) as % of GDP,sources,WDI Database Archives,57
+FS.LBL.QLIQ.GD.ZS,Quasi-liquid liabilities (% of GDP),sources,WDI Database Archives,57
+FS.XPC.DDPT.CN,Demand deposits (current LCU),sources,Africa Development Indicators,11
+FS.XPC.TDPT.CN,Time deposits (current LCU),sources,Africa Development Indicators,11
+FX.OWN.TOTL.40.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, poorest 40% (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.60.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, richest 60% (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.FE.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, female (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.MA.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, male (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.OL.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, older adults (% of population ages 25+)",topics,Financial Sector,7
+FX.OWN.TOTL.PL.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, primary education or less (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.SO.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, secondary education or more (% of population ages 15+)",topics,Financial Sector,7
+FX.OWN.TOTL.YG.ZS,"Account ownership at a financial institution or with a mobile-money-service provider, young adults (% of population ages 15-24)",topics,Financial Sector,7
+FX.OWN.TOTL.ZS,Account ownership at a financial institution or with a mobile-money-service provider (% of population ages 15+),topics,Financial Sector,7
+GB.AMA.ABRD.CN,Adjustments to foreign scheduled principal repayments (current LCU),sources,Africa Development Indicators,11
+GB.BAL.CIGR.CN,"Current budget balance, including grants (current LCU)",sources,Africa Development Indicators,11
+GB.BAL.OVRL.CN,"Overall budget balance, including grants (current LCU)",sources,Africa Development Indicators,11
+GB.BAL.OVRL.GD.ZS,"Overall budget balance, including grants (% of GDP)",sources,WDI Database Archives,57
+GB.BAL.OVRL.GDP.ZS,"Overall budget deficit, including grants (% of GDP)",sources,WDI Database Archives,57
+GB.BAL.OVRX.CN,"Overall surplus/deficit, excluding current grants (current LCU)",sources,Africa Development Indicators,11
+GB.BAL.OVXG.CN,"Overall surplus/deficit, excluding all grants (current LCU)",sources,Africa Development Indicators,11
+GB.BAL.XINT.CN,"Primary balance, excluding interest (current LCU)",sources,Africa Development Indicators,11
+GB.DOD.DMSY.CN,"Central government debt, monetary system credit (current LCU)",sources,Africa Development Indicators,11
+GB.DOD.DNMS.CN,"Central government debt, other domestic (current LCU)",sources,Africa Development Indicators,11
+GB.DOD.FRGN.CD,"External debt, end year (current US$)",sources,Africa Development Indicators,11
+GB.DOD.FRGN.CN,"External debt, end year (current LCU)",sources,Africa Development Indicators,11
+GB.DOD.TOTL.CN,Total government debt (current LCU),sources,Africa Development Indicators,11
+GB.DOD.TOTL.GD.ZS,"Central government debt, total (% of GDP)",sources,WDI Database Archives,57
+GB.DOD.TOTL.GDP.ZS,"Central government debt, total (% of GDP)",sources,WDI Database Archives,57
+GB.DTA.DOMS.CN,Central government arrears on domestic debt (current LCU),sources,Africa Development Indicators,11
+GB.DTA.FRGN.CN,Central government arrears on external debt (current LCU),sources,Africa Development Indicators,11
+GB.FIN.ABRD.CN,"External borrowing, net (current LCU)",sources,Africa Development Indicators,11
+GB.FIN.ABRD.GD.ZS,Financing from abroad (% of GDP),sources,WDI Database Archives,57
+GB.FIN.ABRD.GDP.ZS,Financing from abroad (% of GDP),sources,WDI Database Archives,57
+GB.FIN.DMSY.CN,"Domestic financing, monetary system credit (current LCU)",sources,Africa Development Indicators,11
+GB.FIN.DNMS.CN,Other domestic borrowing (current LCU),sources,Africa Development Indicators,11
+GB.FIN.DOMS.CN,"Domestic financing, total (current LCU)",sources,WDI Database Archives,57
+GB.FIN.DOMS.GD.ZS,"Domestic financing, total (% of GDP)",sources,WDI Database Archives,57
+GB.FIN.DOMS.GDP.ZS,Domestic finanacing (% of GDP),sources,WDI Database Archives,57
+GB.FIN.IKFR.CN,"Financing, including external capital grants (current LCU)",sources,Africa Development Indicators,11
+GB.GRT.CTOT.CN,Total current grants (current LCU),sources,Africa Development Indicators,11
+GB.GRT.KFRN.CN,External capital grants (current LCU),sources,Africa Development Indicators,11
+GB.GRT.TOTL.CN,Grants (local currency),sources,WDI Database Archives,57
+GB.INT.DECT.RV.ZS,Interest payments (% of current revenue),sources,WDI Database Archives,57
+GB.NTX.CIGR.CN,Nontax receipts (current LCU),sources,Africa Development Indicators,11
+GB.NTX.TOTL.RV.ZS,Nontax revenue (% of current revenue),sources,WDI Database Archives,57
+GB.NTX.TOTL.ZS,Nontax revenue (% of current revenue),sources,WDI Database Archives,57
+GB.REV.CTOT.CN,"Current revenue, excluding grants (current LCU)",sources,WDI Database Archives,57
+GB.REV.CTOT.GD.ZS,"Current revenue, excluding grants (% of GDP)",sources,WDI Database Archives,57
+GB.REV.IGRT.CN,Total revenue including current grants (current LCU),sources,Africa Development Indicators,11
+GB.REV.TOTL.CN,Current revenue (local currency),sources,WDI Database Archives,57
+GB.REV.TOTL.GDP.ZS,Current revenue (% of GDP),sources,WDI Database Archives,57
+GB.REV.XAGT.CN,Central government revenue excluding all grants (current LCU),sources,Africa Development Indicators,11
+GB.REV.XAGT.CN.ZS,"Central government revenues, excluding all grants (% of GDP)",sources,Africa Development Indicators,11
+GB.RVC.IGRT.CN,Total currrent revenues including current grants (current LCU),sources,Africa Development Indicators,11
+GB.RVC.TOTL.CN,"Current revenue, excluding grants (current LCU)",sources,Africa Development Indicators,11
+GB.RVC.TOTL.GD.ZS,"Current revenue, excluding grants (% of GDP)",sources,WDI Database Archives,57
+GB.RVK.TOTL.CN,Capital revenue (current LCU),sources,Africa Development Indicators,11
+GB.SOE.DECT.ZS,SOE external debt (% of GDP),sources,WDI Database Archives,57
+GB.SOE.DOMS.ZS,"State-owned enterprises, credit (% of gross domestic credit)",sources,WDI Database Archives,57
+GB.SOE.ECON.GD.ZS,"State-owned enterprises, economic activity (% of GDP)",sources,WDI Database Archives,57
+GB.SOE.ECON.GDP.ZS,SOE economic activity (% of GDP),sources,WDI Database Archives,57
+GB.SOE.EMPL.ZS,"State-owned enterprises, employment (% of total)",sources,WDI Database Archives,57
+GB.SOE.GDIV.ZS,"State-owned enterprises, investment (% of GDI)",sources,WDI Database Archives,57
+GB.SOE.NFLW.GD.ZS,"State-owned enterprises, net financial flows from government (% of GDP)",sources,WDI Database Archives,57
+GB.SOE.NFLW.GDP.ZS,SOE net financial flows from government (% of GDP),sources,WDI Database Archives,57
+GB.SOE.OVRL.GD.ZS,"State-owned enterprises, overall balance before transfers (% of GDP)",sources,WDI Database Archives,57
+GB.SOE.OVRL.GDP.ZS,SOE overall balance before transfers (% of total),sources,WDI Database Archives,57
+GB.SOE.PRVZ.CD,Privatization proceeds (current US$),sources,WDI Database Archives,57
+GB.TAX.CMAR.ZS,"Highest marginal tax rate, corporate rate (%)",topics,Public Sector,13
+GB.TAX.DRCT.CN,Direct taxes (current LCU),sources,Africa Development Indicators,11
+GB.TAX.EXPT.BX.ZS,Export duties (% of exports),sources,WDI Database Archives,57
+GB.TAX.EXPT.ZS,Export duties (% of tax revenue),sources,WDI Database Archives,57
+GB.TAX.GSRV.CN,"Taxes on goods and services, GB (current LCU)",sources,Africa Development Indicators,11
+GB.TAX.GSRV.NAGR.ZS,Taxes on goods and services (% value added of industry and srv.),sources,WDI Database Archives,57
+GB.TAX.GSRV.RV.ZS,Taxes on goods and services (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.GSRV.VA.ZS,Taxes on goods and services (% value added of industry and services),sources,WDI Database Archives,57
+GB.TAX.GSRV.ZS,Taxes on goods and services (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.IDRT.CN,Indirect taxes less subsidies (current LCU),sources,Africa Development Indicators,11
+GB.TAX.IMAR.CD,"Highest marginal tax rate, individual (on income exceeding, US$)",sources,WDI Database Archives,57
+GB.TAX.IMAR.ZS,"Highest marginal tax rate, individual rate (%)",sources,WDI Database Archives,57
+GB.TAX.IMPT.BM.ZS,Import duties (% of imports),sources,WDI Database Archives,57
+GB.TAX.IMPT.ZS,Import duties (% of tax revenue),sources,WDI Database Archives,57
+GB.TAX.INCM.ZS,"Income, profit, and capital gains taxes (% of current revenue)",sources,WDI Database Archives,57
+GB.TAX.INTT.CN,"Taxes on international trade, GB (current LCU)",sources,Africa Development Indicators,11
+GB.TAX.INTT.RV.ZS,Taxes on international trade (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.INTT.ZS,Taxes on international trade (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.OTHR.RV.ZS,Other taxes (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.OTHR.ZS,Other taxes (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.SSEC.RV.ZS,Social security taxes (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.SSEC.ZS,Social security taxes (% of current revenue),sources,WDI Database Archives,57
+GB.TAX.TOTL.CN,Tax revenue (current LCU),sources,WDI Database Archives,57
+GB.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),sources,WDI Database Archives,57
+GB.TAX.TOTL.GDP.ZS,Tax revenue (% of GDP),sources,WDI Database Archives,57
+GB.TAX.YPKG.RV.ZS,"Taxes on income, profits and capital gains (% of current revenue)",sources,WDI Database Archives,57
+GB.TAX.YPKG.ZS,"Taxes on income, profits and capital gains (% of total taxes)",sources,WDI Database Archives,57
+GB.TDS.ABRD.CN,Adjustments to foreign scheduled debt service (current LCU),sources,Africa Development Indicators,11
+GB.TDS.FRGN.CN,"Central government debt service, external (current LCU)",sources,Africa Development Indicators,11
+GB.XPC.GSRV.CN,Government consumption (current LCU),sources,Africa Development Indicators,11
+GB.XPC.GSRV.ZS,Goods and services expenditure (% of total expenditure),sources,WDI Database Archives,57
+GB.XPC.INTD.CN,Interest on domestic debt (current LCU),sources,Africa Development Indicators,11
+GB.XPC.INTE.CN,Interest on external debt (current LCU),sources,Africa Development Indicators,11
+GB.XPC.INTP.REV.ZS,Interest payment (% of current revenue),sources,WDI Database Archives,57
+GB.XPC.INTP.ZS,Interest payments (% of total expenditure),sources,WDI Database Archives,57
+GB.XPC.SUBS.CN,"Subsidies (GFS, current LCU)",sources,Africa Development Indicators,11
+GB.XPC.TOTL.CN,"Current expenditure, total (current LCU)",sources,Africa Development Indicators,11
+GB.XPC.TRFO.CN,Other current transfers (current LCU),sources,Africa Development Indicators,11
+GB.XPC.TRFT.ZS,Subsidies and other current transfers (% of total expenditure),sources,WDI Database Archives,57
+GB.XPC.WAGE.CN,Wages and salaries (current LCU),sources,Africa Development Indicators,11
+GB.XPC.WAGE.ZS,Wages and salaries (% of total expenditure),sources,WDI Database Archives,57
+GB.XPD.DEFN.CN,Defense expenditure (current LCU),sources,Africa Development Indicators,11
+GB.XPD.DEFN.GDP.ZS,Defense expenditure (% of GDP),sources,WDI Database Archives,57
+GB.XPD.INLD.CN,Total expenditure and net lending (current LCU),sources,Africa Development Indicators,11
+GB.XPD.RD.GNP.ZS,Expenditures for research and development (% of GNP),sources,WDI Database Archives,57
+GB.XPD.RSDV.GD.ZS,Research and development expenditure (% of GDP),topics,Science & Technology,14
+GB.XPD.RSDV.GN.ZS,Research and development expenditure (% of GNI),sources,WDI Database Archives,57
+GB.XPD.TOTL.CN,"Expenditure, total (current LCU)",sources,WDI Database Archives,57
+GB.XPD.TOTL.GD.ZS,"Expenditure, total (% of GDP)",sources,WDI Database Archives,57
+GB.XPD.TOTL.GDP.ZS,Total expenditure (% of GDP),sources,WDI Database Archives,57
+GB.XPK.INLD.CN,Total capital expenditure and net lending (current LCU),sources,Africa Development Indicators,11
+GB.XPK.RINV.CN,Budgetary investment (current LCU),sources,Africa Development Indicators,11
+GB.XPK.TOTL.CN,Capital expenditure (current LCU),sources,WDI Database Archives,57
+GB.XPK.TOTL.ZS,Capital expenditure (% of total expenditure),sources,WDI Database Archives,57
+GB.XPL.TRNL.CN,Capital transfers (current LCU),sources,Africa Development Indicators,11
+GC.AST.TOTL.CN,Net acquisition of financial assets (current LCU),topics,Public Sector,13
+GC.AST.TOTL.GD.ZS,Net acquisition of financial assets (% of GDP),topics,Public Sector,13
+GC.BAL.CASH.CD,"Fiscal balance, cash surplus/deficit (current US$)",sources,Africa Development Indicators,11
+GC.BAL.CASH.CN,Cash surplus/deficit (current LCU),sources,Africa Development Indicators,11
+GC.BAL.CASH.GD.ZS,Cash surplus/deficit (% of GDP),sources,Africa Development Indicators,11
+GC.BAL.CIGR.CN,Government Current Budget Balance (local),sources,WDI Database Archives,57
+GC.BAL.CURI.CN,Gov. Current Budget Balance (+C&K Grants)(Local),sources,WDI Database Archives,57
+GC.BAL.OVRL.CN,Government Deficit (-) or Surplus (local),sources,WDI Database Archives,57
+GC.DOD.TOTL.CN,"Central government debt, total (current LCU)",topics,Public Sector,13
+GC.DOD.TOTL.GD.ZS,"Central government debt, total (% of GDP)",topics,Economy & Growth,3
+GC.EKL.TOTL.CN,Gov. Capital Payments (+Net lend.)(Local),sources,WDI Database Archives,57
+GC.EXC.TOTL.CN,Gov. Current Expenditure (Local),sources,WDI Database Archives,57
+GC.FIN.DOMS.CN,"Net incurrence of liabilities, domestic (current LCU)",sources,Africa Development Indicators,11
+GC.FIN.DOMS.GD.ZS,"Net incurrence of liabilities, domestic (% of GDP)",sources,Africa Development Indicators,11
+GC.FIN.FRGN.CN,"Net incurrence of liabilities, foreign (current LCU)",sources,Africa Development Indicators,11
+GC.FIN.FRGN.GD.ZS,"Net incurrence of liabilities, foreign (% of GDP)",sources,Africa Development Indicators,11
+GC.LBL.TOTL.CN,"Net incurrence of liabilities, total (current LCU)",topics,Public Sector,13
+GC.LBL.TOTL.GD.ZS,"Net incurrence of liabilities, total (% of GDP)",topics,Public Sector,13
+GC.NFN.TOTL.CN,Net investment in nonfinancial assets (current LCU),topics,Public Sector,13
+GC.NFN.TOTL.GD.ZS,Net investment in nonfinancial assets (% of GDP),topics,Public Sector,13
+GC.NLD.TOTL.CN,Net lending (+) / net borrowing (-) (current LCU),topics,Public Sector,13
+GC.NLD.TOTL.GD.ZS,Net lending (+) / net borrowing (-) (% of GDP),topics,Public Sector,13
+GC.REV.CIGR.CN,Government Current Revenue (local),sources,WDI Database Archives,57
+GC.REV.GOTR.CN,Grants and other revenue (current LCU),topics,Public Sector,13
+GC.REV.GOTR.ZS,Grants and other revenue (% of revenue),topics,Public Sector,13
+GC.REV.KTOT.CN,Government Capital Receipts (local),sources,WDI Database Archives,57
+GC.REV.SOCL.CN,Social contributions (current LCU),topics,Public Sector,13
+GC.REV.SOCL.ZS,Social contributions (% of revenue),topics,Public Sector,13
+GC.REV.TOTL.CD,Total revenue (current US$),sources,Africa Development Indicators,11
+GC.REV.TOTL.CN,Total revenue (current LCU),sources,Africa Development Indicators,11
+GC.REV.XGRT.CD,"Revenue, excluding grants (current US$)",sources,Africa Development Indicators,11
+GC.REV.XGRT.CN,"Revenue, excluding grants (current LCU)",topics,Public Sector,13
+GC.REV.XGRT.GD.ZS,"Revenue, excluding grants (% of GDP)",topics,Economy & Growth,3
+GC.RVG.CURI.CN,Gov. Current Revenue (+C&K Grants)(Local),sources,WDI Database Archives,57
+GC.RVK.TOTL.CN,Gov. Capital Receipts (Local),sources,WDI Database Archives,57
+GC.TAX.EXPT.CN,Taxes on exports (current LCU),topics,Public Sector,13
+GC.TAX.EXPT.ZS,Taxes on exports (% of tax revenue),topics,Public Sector,13
+GC.TAX.GSRV.CN,Taxes on goods and services (current LCU),topics,Public Sector,13
+GC.TAX.GSRV.RV.ZS,Taxes on goods and services (% of revenue),topics,Public Sector,13
+GC.TAX.GSRV.VA.ZS,Taxes on goods and services (% value added of industry and services),topics,Public Sector,13
+GC.TAX.IMPT.CN,Customs and other import duties (current LCU),topics,Public Sector,13
+GC.TAX.IMPT.ZS,Customs and other import duties (% of tax revenue),topics,Public Sector,13
+GC.TAX.INTT.CN,Taxes on international trade (current LCU),topics,Public Sector,13
+GC.TAX.INTT.RV.ZS,Taxes on international trade (% of revenue),topics,Public Sector,13
+GC.TAX.OTHR.CN,Other taxes (current LCU),topics,Public Sector,13
+GC.TAX.OTHR.RV.ZS,Other taxes (% of revenue),topics,Public Sector,13
+GC.TAX.TOTL.CN,Tax revenue (current LCU),topics,Public Sector,13
+GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),topics,Public Sector,13
+GC.TAX.YPKG.CN,"Taxes on income, profits and capital gains (current LCU)",topics,Public Sector,13
+GC.TAX.YPKG.RV.ZS,"Taxes on income, profits and capital gains (% of revenue)",topics,Public Sector,13
+GC.TAX.YPKG.ZS,"Taxes on income, profits and capital gains (% of total taxes)",topics,Public Sector,13
+GC.XPC.TOTL.CN,Government Current Expenditure (local),sources,WDI Database Archives,57
+GC.XPK.INLD.CN,Government Capital Payments (local),sources,WDI Database Archives,57
+GC.XPN.COMP.CN,Compensation of employees (current LCU),topics,Public Sector,13
+GC.XPN.COMP.ZS,Compensation of employees (% of expense),topics,Public Sector,13
+GC.XPN.GSRV.CN,Goods and services expense (current LCU),topics,Public Sector,13
+GC.XPN.GSRV.ZS,Goods and services expense (% of expense),topics,Public Sector,13
+GC.XPN.INTP.CN,Interest payments (current LCU),topics,Public Sector,13
+GC.XPN.INTP.RV.ZS,Interest payments (% of revenue),topics,Public Sector,13
+GC.XPN.INTP.ZS,Interest payments (% of expense),topics,Public Sector,13
+GC.XPN.OTHR.CN,Other expense (current LCU),topics,Public Sector,13
+GC.XPN.OTHR.ZS,Other expense (% of expense),topics,Public Sector,13
+GC.XPN.TOTL.CD,Expense (current US$),sources,Africa Development Indicators,11
+GC.XPN.TOTL.CN,Expense (current LCU),topics,Public Sector,13
+GC.XPN.TOTL.GD.ZS,Expense (% of GDP),topics,Economy & Growth,3
+GC.XPN.TRFT.CN,Subsidies and other transfers (current LCU),topics,Public Sector,13
+GC.XPN.TRFT.ZS,Subsidies and other transfers (% of expense),topics,Public Sector,13
+GCI.10THPILLAR.XQ,10th pillar: Market size,sources,Africa Development Indicators,11
+GCI.11THPILLAR.XQ,11th pillar: Business sophistication,sources,Africa Development Indicators,11
+GCI.12THPILLAR.XQ,12th pillar: Innovation,sources,Africa Development Indicators,11
+GCI.1STPILLAR.XQ,1st pillar: Institutions,sources,Africa Development Indicators,11
+GCI.2NDPILLAR.XQ,2nd pillar: Infrastructure,sources,Africa Development Indicators,11
+GCI.3RDPILLAR.XQ,3rd pillar: Macroeconomic stability,sources,Africa Development Indicators,11
+GCI.4THPILLAR.XQ,4th pllar: Health and primary education,sources,Africa Development Indicators,11
+GCI.5THPILLAR.XQ,5th pillar: Higher education and training,sources,Africa Development Indicators,11
+GCI.6THPILLAR.XQ,6th pillar: Goods market efficiency,sources,Africa Development Indicators,11
+GCI.7THPILLAR.XQ,7th pillar: Labor market efficiency,sources,Africa Development Indicators,11
+GCI.8THPILLAR.XQ,8th pillar: Financial market sophistication,sources,Africa Development Indicators,11
+GCI.9THPILLAR.XQ,9th pillar: Techonological readiness,sources,Africa Development Indicators,11
+GCI.INDEX.XQ,Global Competitiveness Index (GCI),sources,Africa Development Indicators,11
+GCI.PILLAR11TO12.XQ,Innovation and sophistication factors (weighted index 11th pillar to 12 th pillar),sources,Africa Development Indicators,11
+GCI.PILLAR1TO4.XQ,Basic requirements (weighted index 1st pillar to 4th pillar),sources,Africa Development Indicators,11
+GCI.PILLAR5TO10.XQ,Efficiency enhancers (weighted index 5th to 10th pillar),sources,Africa Development Indicators,11
+GCI.RANK.XQ,Global Competitive Index (GCI) rank,sources,Africa Development Indicators,11
+GE.EST,Government Effectiveness: Estimate,topics,Public Sector,13
+GE.NO.SRC,Government Effectiveness: Number of Sources,topics,Public Sector,13
+GE.PER.RNK,Government Effectiveness: Percentile Rank,topics,Public Sector,13
+GE.PER.RNK.LOWER,"Government Effectiveness: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+GE.PER.RNK.UPPER,"Government Effectiveness: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+GE.STD.ERR,Government Effectiveness: Standard Error,topics,Public Sector,13
+GF.XPD.BUDG.ZS,Primary government expenditures as a proportion of original approved budget (%),topics,Public Sector,13
+GFDD.AI.01,"Bank accounts per 1,000 adults",topics,Financial Sector,7
+GFDD.AI.02,"Bank branches per 100,000 adults",topics,Financial Sector,7
+GFDD.AI.03,Firms with a bank loan or line of credit (%),topics,Financial Sector,7
+GFDD.AI.04,Small firms with a bank loan or line of credit (%),topics,Financial Sector,7
+GFDD.AI.05,Account at a formal financial institution (% age 15+),topics,Financial Sector,7
+GFDD.AI.06,Saved at a financial institution in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.07,Loan from a financial institution in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.08,Account used for business purposes (% age 15+),topics,Financial Sector,7
+GFDD.AI.09,Account used to receive government payments (% age 15+),topics,Financial Sector,7
+GFDD.AI.10,Account used to receive remittances (% age 15+),topics,Financial Sector,7
+GFDD.AI.11,Account used to receive wages (% age 15+),topics,Financial Sector,7
+GFDD.AI.12,Saved any money in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.13,Saved using a savings club in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.14,Loan in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.15,Loan from a private lender in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.16,Loan from an employer in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.17,Loan through store credit in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.18,Loan from family or friends in the past year (% age 15+),topics,Financial Sector,7
+GFDD.AI.19,Checks used to make payments (% age 15+),topics,Financial Sector,7
+GFDD.AI.20,Credit card (% age 15+),topics,Financial Sector,7
+GFDD.AI.21,Debit card (% age 15+),topics,Financial Sector,7
+GFDD.AI.22,Electronic payments used to make payments (% age 15+),topics,Financial Sector,7
+GFDD.AI.23,Mobile phone used to pay bills (% age 15+),topics,Financial Sector,7
+GFDD.AI.24,Mobile phone used to send money (% age 15+),topics,Financial Sector,7
+GFDD.AI.25,"ATMs per 100,000 adults",topics,Financial Sector,7
+GFDD.AI.26,Depositing/withdrawing at least once in a typical month (% age 15+),topics,Financial Sector,7
+GFDD.AI.27,Firms with a checking or savings account (%),topics,Financial Sector,7
+GFDD.AI.28,Firms using banks to finance investments (%),topics,Financial Sector,7
+GFDD.AI.29,Firms using banks to finance working capital (%),topics,Financial Sector,7
+GFDD.AI.30,Loans requiring collateral (%),topics,Financial Sector,7
+GFDD.AI.31,Value of collateral needed for a loan (% of the loan amount),topics,Financial Sector,7
+GFDD.AI.32,Firms not needing a loan (%),topics,Financial Sector,7
+GFDD.AI.33,Firms whose recent loan application was rejected (%),topics,Financial Sector,7
+GFDD.AI.34,Investments financed by banks (%),topics,Financial Sector,7
+GFDD.AI.35,Working capital financed by banks (%),topics,Financial Sector,7
+GFDD.AI.36,Firms identifying access to finance as a major constraint (%),topics,Financial Sector,7
+GFDD.AM.01,Value traded excluding top 10 traded companies to total value traded (%),topics,Financial Sector,7
+GFDD.AM.02,Market capitalization excluding top 10 companies to total market capitalization (%),topics,Financial Sector,7
+GFDD.AM.03,Nonfinancial corporate bonds to total bonds and notes outstanding (%),topics,Financial Sector,7
+GFDD.DI.01,Private credit by deposit money banks to GDP (%),topics,Financial Sector,7
+GFDD.DI.02,Deposit money banks'' assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.03,Nonbank financial institutions’ assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.04,Deposit money bank assets to deposit money bank assets and central bank assets (%),topics,Financial Sector,7
+GFDD.DI.05,Liquid liabilities to GDP (%),topics,Financial Sector,7
+GFDD.DI.06,Central bank assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.07,Mutual fund assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.08,Financial system deposits to GDP (%),topics,Financial Sector,7
+GFDD.DI.09,Life insurance premium volume to GDP (%),topics,Financial Sector,7
+GFDD.DI.10,Non-life insurance premium volume to GDP (%),topics,Financial Sector,7
+GFDD.DI.11,Insurance company assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.12,Private credit by deposit money banks and other financial institutions to GDP (%),topics,Financial Sector,7
+GFDD.DI.13,Pension fund assets to GDP (%),topics,Financial Sector,7
+GFDD.DI.14,Domestic credit to private sector (% of GDP),topics,Financial Sector,7
+GFDD.DM.01,Stock market capitalization to GDP (%),topics,Financial Sector,7
+GFDD.DM.02,Stock market total value traded to GDP (%),topics,Financial Sector,7
+GFDD.DM.03,Outstanding domestic private debt securities to GDP (%),topics,Financial Sector,7
+GFDD.DM.04,Outstanding domestic public debt securities to GDP (%),topics,Financial Sector,7
+GFDD.DM.05,Outstanding international private debt securities to GDP (%),topics,Financial Sector,7
+GFDD.DM.06,Outstanding international public debt securities to GDP (%),topics,Financial Sector,7
+GFDD.DM.07,International debt issues to GDP (%),topics,Financial Sector,7
+GFDD.DM.08,Gross portfolio equity liabilities to GDP (%),topics,Financial Sector,7
+GFDD.DM.09,Gross portfolio equity assets to GDP (%),topics,Financial Sector,7
+GFDD.DM.10,Gross portfolio debt liabilities to GDP (%),topics,Financial Sector,7
+GFDD.DM.11,Gross portfolio debt assets to GDP (%),sources,Global Financial Development,32
+GFDD.DM.12,Syndicated loan issuance volume to GDP (%),sources,Global Financial Development,32
+GFDD.DM.13,Corporate bond issuance volume to GDP (%),sources,Global Financial Development,32
+GFDD.DM.14,Syndicated loan average maturity (years),sources,Global Financial Development,32
+GFDD.DM.15,Corporate bond average maturity (years),sources,Global Financial Development,32
+GFDD.DM.16,Credit flows by fintech and bigtech companies to GDP (%),sources,Global Financial Development,32
+GFDD.EI.01,Bank net interest margin (%),topics,Financial Sector,7
+GFDD.EI.02,Bank lending-deposit spread,topics,Financial Sector,7
+GFDD.EI.03,Bank noninterest income to total income (%),topics,Financial Sector,7
+GFDD.EI.04,Bank overhead costs to total assets (%),topics,Financial Sector,7
+GFDD.EI.05,"Bank return on assets (%, after tax)",topics,Financial Sector,7
+GFDD.EI.06,"Bank return on equity (%, after tax)",topics,Financial Sector,7
+GFDD.EI.07,Bank cost to income ratio (%),topics,Financial Sector,7
+GFDD.EI.08,Credit to government and state-owned enterprises to GDP (%),topics,Financial Sector,7
+GFDD.EI.09,"Bank return on assets (%, before tax)",topics,Financial Sector,7
+GFDD.EI.10,"Bank return on equity (%, before tax)",topics,Financial Sector,7
+GFDD.EM.01,Stock market turnover ratio (%),topics,Financial Sector,7
+GFDD.OI.01,Bank concentration (%),topics,Financial Sector,7
+GFDD.OI.02,Bank deposits to GDP (%),topics,Financial Sector,7
+GFDD.OI.06,5-bank asset concentration,topics,Financial Sector,7
+GFDD.OI.07,Liquid liabilities in millions USD (2000 constant),topics,Financial Sector,7
+GFDD.OI.08,Loans from nonresident banks (net) to GDP (%),topics,Financial Sector,7
+GFDD.OI.09,Loans from nonresident banks (amounts outstanding) to GDP (%),topics,Financial Sector,7
+GFDD.OI.10,External loans and deposits of reporting banks vis-à-vis the banking sector (% of domestic bank deposits),topics,Financial Sector,7
+GFDD.OI.11,External loans and deposits of reporting banks vis-à-vis the nonbanking sectors (% of domestic bank deposits),topics,Financial Sector,7
+GFDD.OI.12,External loans and deposits of reporting banks vis-à-vis all sectors (% of domestic bank deposits),topics,Financial Sector,7
+GFDD.OI.13,Remittance inflows to GDP (%),topics,Financial Sector,7
+GFDD.OI.14,Consolidated foreign claims of BIS reporting banks to GDP (%),topics,Financial Sector,7
+GFDD.OI.15,Foreign banks among total banks (%),topics,Financial Sector,7
+GFDD.OI.16,Foreign bank assets among total bank assets (%),topics,Financial Sector,7
+GFDD.OI.16a,Foreign bank assets among total banks assets (%),sources,Global Financial Development,32
+GFDD.OI.17,Global leasing volume to GDP (%),topics,Financial Sector,7
+GFDD.OI.18,Total factoring volume to GDP (%),topics,Financial Sector,7
+GFDD.OI.19,"Banking crisis dummy (1=banking crisis, 0=none)",topics,Financial Sector,7
+GFDD.OI.20a,Government bank assets among total bank assets (%),sources,Global Financial Development,32
+GFDD.OM.01,"Number of listed companies per 1,000,000 people",topics,Financial Sector,7
+GFDD.OM.02,"Stock market return (%, year-on-year)",topics,Financial Sector,7
+GFDD.SI.01,Bank Z-score,topics,Financial Sector,7
+GFDD.SI.02,Bank non-performing loans to gross loans (%),topics,Financial Sector,7
+GFDD.SI.03,Bank capital to total assets (%),topics,Financial Sector,7
+GFDD.SI.04,Bank credit to bank deposits (%),topics,Financial Sector,7
+GFDD.SI.05,Bank regulatory capital to risk-weighted assets (%),topics,Financial Sector,7
+GFDD.SI.06,Liquid assets to deposits and short term funding (%),topics,Financial Sector,7
+GFDD.SI.07,Provisions to nonperforming loans (%),topics,Financial Sector,7
+GFDD.SM.01,Stock price volatility,topics,Financial Sector,7
+GPFI1_TOTL,Financial knowledge score (0-3),sources,G20 Financial Inclusion Indicators,33
+GPFI2,Disclosure index (0-5),sources,G20 Financial Inclusion Indicators,33
+GPFI3,Dispute resolution index (0-1),sources,G20 Financial Inclusion Indicators,33
+GPFI4,Getting credit: Distance to frontier (0-100),sources,G20 Financial Inclusion Indicators,33
+GPSS,Interoperability of ATM networks and interoperability of POS terminals (0-1),sources,G20 Financial Inclusion Indicators,33
+GPSS_1,"E-money accounts per 1,000 adults",sources,G20 Financial Inclusion Indicators,33
+GPSS_2,"Retail cashless transactions per 1,000 adults",sources,G20 Financial Inclusion Indicators,33
+GPSS_3,"Agents of payment service providers per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+GPSS_4,"POS terminals per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+GPSS_5,"Debit cards per 1,000 adults",sources,G20 Financial Inclusion Indicators,33
+GV.BAL.OVRL.CN,Government Deficit (-) or Surplus (local),sources,WDI Database Archives,57
+GV.CONT.CO.ES,Control of Corruption (estimate),sources,Africa Development Indicators,11
+GV.CONT.CO.NO,Control of Corruption (number of surveys/polls),sources,Africa Development Indicators,11
+GV.CONT.CO.SE,Control of Corruption (standard error),sources,Africa Development Indicators,11
+GV.GOVT.EF.ES,Government Effectiveness (estimate),sources,Africa Development Indicators,11
+GV.GOVT.EF.NO,Government Effectiveness (number of surveys/polls),sources,Africa Development Indicators,11
+GV.GOVT.EF.SE,Government Effectiveness (standard error),sources,Africa Development Indicators,11
+GV.POLI.ST.ES,Political Stability/No Violence (estimate),sources,Africa Development Indicators,11
+GV.POLI.ST.NO,Political Stability/No Violence (number of surveys/polls),sources,Africa Development Indicators,11
+GV.POLI.ST.SE,Political Stability/No Violence (standard error),sources,Africa Development Indicators,11
+GV.REGL.LA.ES,Regulatory Quality (estimate),sources,Africa Development Indicators,11
+GV.REGL.LA.NO,Regulatory Quality (number of surveys/polls),sources,Africa Development Indicators,11
+GV.REGL.LA.SE,Regulatory Quality (standard error),sources,Africa Development Indicators,11
+GV.RULE.LW.ES,Rule of Law (estimate),sources,Africa Development Indicators,11
+GV.RULE.LW.NO,Rule of Law (number off surveys/polls),sources,Africa Development Indicators,11
+GV.RULE.LW.SE,Rule of Law (standard error),sources,Africa Development Indicators,11
+GV.TI.RANK.IDX,Corruption Perceptions Index (rank),sources,Africa Development Indicators,11
+GV.TI.SCOR.IDX,Corruption Perceptions Index (score),sources,Africa Development Indicators,11
+GV.VOIC.AC.ES,Voice and Accountability (estimate),sources,Africa Development Indicators,11
+GV.VOIC.AC.NO,Voice and Accountability (number of surveys/polls),sources,Africa Development Indicators,11
+GV.VOIC.AC.SE,Voice and Accountability (standard error),sources,Africa Development Indicators,11
+HD.HCI.AMRT,Survival Rate from Age 15-60,sources,Education Statistics,12
+HD.HCI.AMRT.FE,"Survival Rate from Age 15-60, Female",sources,Education Statistics,12
+HD.HCI.AMRT.MA,"Survival Rate from Age 15-60, Male",sources,Education Statistics,12
+HD.HCI.EYRS,Expected Years of School,sources,Education Statistics,12
+HD.HCI.EYRS.FE,"Expected Years of School, Female",sources,Education Statistics,12
+HD.HCI.EYRS.MA,"Expected Years of School, Male",sources,Education Statistics,12
+HD.HCI.HLOS,Harmonized Test Scores,sources,Education Statistics,12
+HD.HCI.HLOS.FE,"Harmonized Test Scores, Female",sources,Education Statistics,12
+HD.HCI.HLOS.MA,"Harmonized Test Scores, Male",sources,Education Statistics,12
+HD.HCI.LAYS,Learning-Adjusted Years of School,sources,Education Statistics,12
+HD.HCI.LAYS.FE,"Learning-Adjusted Years of School, Female",sources,Education Statistics,12
+HD.HCI.LAYS.MA,"Learning-Adjusted Years of School, Male",sources,Education Statistics,12
+HD.HCI.MORT,Probability of Survival to Age 5,sources,Education Statistics,12
+HD.HCI.MORT.FE,"Probability of Survival to Age 5, Female",sources,Education Statistics,12
+HD.HCI.MORT.MA,"Probability of Survival to Age 5, Male",sources,Education Statistics,12
+HD.HCI.OVRL,Human Capital Index (HCI) (scale 0-1),topics,Public Sector,13
+HD.HCI.OVRL.FE,"Human Capital Index (HCI), Female (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.LB,"Human Capital Index (HCI), Lower Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.LB.FE,"Human Capital Index (HCI), Female, Lower Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.LB.MA,"Human Capital Index (HCI), Male, Lower Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.MA,"Human Capital Index (HCI), Male (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.UB,"Human Capital Index (HCI), Upper Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.UB.FE,"Human Capital Index (HCI), Female, Upper Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.OVRL.UB.MA,"Human Capital Index (HCI), Male, Upper Bound (scale 0-1)",topics,Public Sector,13
+HD.HCI.STNT,Fraction of Children Under 5 Not Stunted,sources,Education Statistics,12
+HD.HCI.STNT.FE,"Fraction of Children Under 5 Not Stunted, Female",sources,Education Statistics,12
+HD.HCI.STNT.MA,"Fraction of Children Under 5 Not Stunted, Male",sources,Education Statistics,12
+HF.CON.AIDS.FE.ZS,Condom use in last intercourse (% of females at risk population),sources,Health Equity and Financial Protection Indicators,65
+HF.CON.AIDS.FE.ZS.Q1,Condom use in last intercourse (% of females at risk population): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.CON.AIDS.FE.ZS.Q2,Condom use in last intercourse (% of females at risk population): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.CON.AIDS.FE.ZS.Q3,Condom use in last intercourse (% of females at risk population): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.CON.AIDS.FE.ZS.Q4,Condom use in last intercourse (% of females at risk population): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.CON.AIDS.FE.ZS.Q5,Condom use in last intercourse (% of females at risk population): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS,"Prevalence of HIV, total (% of population ages 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS.Q1,"Prevalence of HIV, total (% of population ages 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS.Q2,"Prevalence of HIV, total (% of population ages 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS.Q3,"Prevalence of HIV, total (% of population ages 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS.Q4,"Prevalence of HIV, total (% of population ages 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.AIDS.ZS.Q5,"Prevalence of HIV, total (% of population ages 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS,"Contraceptive prevalence, modern methods (% of females ages 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS.Q1,"Contraceptive prevalence, modern methods (% of females ages 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS.Q2,"Contraceptive prevalence, modern methods (% of females ages 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS.Q3,"Contraceptive prevalence, modern methods (% of females ages 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS.Q4,"Contraceptive prevalence, modern methods (% of females ages 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.CONM.ZS.Q5,"Contraceptive prevalence, modern methods (% of females ages 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN,"Mortality rate, infant (per 1,000 live births)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN.Q1,"Mortality rate, infant (per 1,000 live births): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN.Q2,"Mortality rate, infant (per 1,000 live births): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN.Q3,"Mortality rate, infant (per 1,000 live births): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN.Q4,"Mortality rate, infant (per 1,000 live births): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.IMRT.IN.Q5,"Mortality rate, infant (per 1,000 live births): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT,"Mortality rate, under-5 (per 1,000)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT.Q1,"Mortality rate, under-5 (per 1,000): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT.Q2,"Mortality rate, under-5 (per 1,000): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT.Q3,"Mortality rate, under-5 (per 1,000): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT.Q4,"Mortality rate, under-5 (per 1,000): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.MORT.Q5,"Mortality rate, under-5 (per 1,000): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA,Pap smear in last 5 years (% of females 30-49),sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA.Q1,Pap smear in last 5 years (% of females 30-49): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA.Q2,Pap smear in last 5 years (% of females 30-49): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA.Q3,Pap smear in last 5 years (% of females 30-49): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA.Q4,Pap smear in last 5 years (% of females 30-49): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.DYN.SMEA.Q5,Pap smear in last 5 years (% of females 30-49): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL,"Immunization, full (% of children ages 15-23 months)",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL.Q1,"Immunization, full (% of children ages 15-23 months): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL.Q2,"Immunization, full (% of children ages 15-23 months): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL.Q3,"Immunization, full (% of children ages 15-23 months): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL.Q4,"Immunization, full (% of children ages 15-23 months): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.FULL.Q5,"Immunization, full (% of children ages 15-23 months): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS,"Immunization, measles (% of children ages 15-23 months)",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS.Q1,"Immunization, measles (% of children ages 15-23 months): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS.Q2,"Immunization, measles (% of children ages 15-23 months): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS.Q3,"Immunization, measles (% of children ages 15-23 months): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS.Q4,"Immunization, measles (% of children ages 15-23 months): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.IMM.MEAS.Q5,"Immunization, measles (% of children ages 15-23 months): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS,Use of insecticide-treated bed nets (% of under-5 population),sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS.Q1,Use of insecticide-treated bed nets (% of under-5 population): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS.Q2,Use of insecticide-treated bed nets (% of under-5 population): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS.Q3,Use of insecticide-treated bed nets (% of under-5 population): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS.Q4,Use of insecticide-treated bed nets (% of under-5 population): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.MLR.NETS.ZS.Q5,Use of insecticide-treated bed nets (% of under-5 population): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS,Pregnant women receiving prenatal care of at least four visits (% of pregnant women),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS.Q1,Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS.Q2,Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS.Q3,Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS.Q4,Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ANV4.ZS.Q5,Pregnant women receiving prenatal care of at least four visits (% of pregnant women): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS.Q1,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS.Q2,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS.Q3,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS.Q4,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ARIC.ZS.Q5,Acute respiratory infections treated (% of children under 5 with cough and rapid breathing): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS,Blood sugar measured in last 5 years (% of population at risk of diabetes),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS.Q1,Blood sugar measured in last 5 years (% of population at risk of diabetes): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS.Q2,Blood sugar measured in last 5 years (% of population at risk of diabetes): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS.Q3,Blood sugar measured in last 5 years (% of population at risk of diabetes): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS.Q4,Blood sugar measured in last 5 years (% of population at risk of diabetes): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BLSG.ZS.Q5,Blood sugar measured in last 5 years (% of population at risk of diabetes): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE,"Mean BMI, female (ages 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE.Q1,"Mean BMI, female (ages 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE.Q2,"Mean BMI, female (ages 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE.Q3,"Mean BMI, female (ages 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE.Q4,"Mean BMI, female (ages 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM15.FE.Q5,"Mean BMI, female (ages 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18,"Mean BMI, adults (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE,"Mean BMI, female (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE.Q1,"Mean BMI, female (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE.Q2,"Mean BMI, female (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE.Q3,"Mean BMI, female (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE.Q4,"Mean BMI, female (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.FE.Q5,"Mean BMI, female (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.Q1,"Mean BMI, adults (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.Q2,"Mean BMI, adults (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.Q3,"Mean BMI, adults (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.Q4,"Mean BMI, adults (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BM18.Q5,"Mean BMI, adults (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA,"Mean BMI, male (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA.Q1,"Mean BMI, male (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA.Q2,"Mean BMI, male (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA.Q3,"Mean BMI, male (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA.Q4,"Mean BMI, male (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BMIN.MA.Q5,"Mean BMI, male (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS,Blood pressure measured in last 12 months (% of population age 18+),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS.Q1,Blood pressure measured in last 12 months (% of population age 18+): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS.Q2,Blood pressure measured in last 12 months (% of population age 18+): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS.Q3,Blood pressure measured in last 12 months (% of population age 18+): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS.Q4,Blood pressure measured in last 12 months (% of population age 18+): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BP18.ZS.Q5,Blood pressure measured in last 12 months (% of population age 18+): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI,"Mean diastolic blood pressure, adult population (mmHg)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI.Q1,"Mean diastolic blood pressure, adult population (mmHg): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI.Q2,"Mean diastolic blood pressure, adult population (mmHg): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI.Q3,"Mean diastolic blood pressure, adult population (mmHg): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI.Q4,"Mean diastolic blood pressure, adult population (mmHg): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPDI.Q5,"Mean diastolic blood pressure, adult population (mmHg): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS,High blood pressure or being treated for high blood pressure (% of adult population),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS.Q1,High blood pressure or being treated for high blood pressure (% of adult population): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS.Q2,High blood pressure or being treated for high blood pressure (% of adult population): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS.Q3,High blood pressure or being treated for high blood pressure (% of adult population): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS.Q4,High blood pressure or being treated for high blood pressure (% of adult population): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPHT.ZS.Q5,High blood pressure or being treated for high blood pressure (% of adult population): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY,"Mean systolic blood pressure, adult population (mmHg)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY.Q1,"Mean systolic blood pressure, adult population (mmHg): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY.Q2,"Mean systolic blood pressure, adult population (mmHg): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY.Q3,"Mean systolic blood pressure, adult population (mmHg): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY.Q4,"Mean systolic blood pressure, adult population (mmHg): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPSY.Q5,"Mean systolic blood pressure, adult population (mmHg): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS,Treated for high blood pressure (% of adult population),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS.Q1,Treated for high blood pressure (% of adult population): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS.Q2,Treated for high blood pressure (% of adult population): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS.Q3,Treated for high blood pressure (% of adult population): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS.Q4,Treated for high blood pressure (% of adult population): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BPTR.ZS.Q5,Treated for high blood pressure (% of adult population): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS,Births attended by skilled health staff (% of total),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS.Q1,Births attended by skilled health staff (% of total): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS.Q2,Births attended by skilled health staff (% of total): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS.Q3,Births attended by skilled health staff (% of total): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS.Q4,Births attended by skilled health staff (% of total): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.BRTC.ZS.Q5,Births attended by skilled health staff (% of total): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOL,"Mean cholesterol, adult population (mmol/L)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOL.ZS,High cholesterol or on treatment for high cholesterol (% of adult population),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS,Cholesterol measured in last five years (% of population at risk of high cholesterol),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS.Q1,Cholesterol measured in last five years (% of population at risk of high cholesterol): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS.Q2,Cholesterol measured in last five years (% of population at risk of high cholesterol): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS.Q3,Cholesterol measured in last five years (% of population at risk of high cholesterol): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS.Q4,Cholesterol measured in last five years (% of population at risk of high cholesterol): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.CHOM.ZS.Q5,Cholesterol measured in last five years (% of population at risk of high cholesterol): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS,Treated for raised blood glucose or diabetes (% of adult population),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS.Q1,Treated for raised blood glucose or diabetes (% of adult population): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS.Q2,Treated for raised blood glucose or diabetes (% of adult population): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS.Q3,Treated for raised blood glucose or diabetes (% of adult population): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS.Q4,Treated for raised blood glucose or diabetes (% of adult population): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.DIAB.ZS.Q5,Treated for raised blood glucose or diabetes (% of adult population): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.GLUC,"Mean fasting blood glucose, adult population (mmol/L)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.GLYC.ZS,Impaired fasting glycaemia (% of adult population),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE,"Mean height in meters, female, (age 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE.Q1,"Mean height in meters, female, (age 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE.Q2,"Mean height in meters, female, (age 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE.Q3,"Mean height in meters, female, (age 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE.Q4,"Mean height in meters, female, (age 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE15.FE.Q5,"Mean height in meters, female, (age 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18,"Mean height in meters, adults (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE,"Mean height in meters, female (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE.Q1,"Mean height in meters, female (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE.Q2,"Mean height in meters, female (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE.Q3,"Mean height in meters, female (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE.Q4,"Mean height in meters, female (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.FE.Q5,"Mean height in meters, female (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA,"Mean height in meters, male (age 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA.Q1,"Mean height in meters, male (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA.Q2,"Mean height in meters, male (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA.Q3,"Mean height in meters, male (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA.Q4,"Mean height in meters, male (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.MA.Q5,"Mean height in meters, male (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.Q1,"Mean height in meters, adults (age 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.Q2,"Mean height in meters, adults (age 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.Q3,"Mean height in meters, adults (age 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.Q4,"Mean height in meters, adults (age 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.HE18.Q5,"Mean height in meters, adults (age 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS,Inpatient care use in last 12 months (% of population 18+),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS.Q1,Inpatient care use in last 12 months (% of population 18+): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS.Q2,Inpatient care use in last 12 months (% of population 18+): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS.Q3,Inpatient care use in last 12 months (% of population 18+): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS.Q4,Inpatient care use in last 12 months (% of population 18+): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.INPT.ZS.Q5,Inpatient care use in last 12 months (% of population 18+): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS,"Prevalence of underweight, weight for age (% of children under 5)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS.Q1,"Prevalence of underweight, weight for age (% of children under 5): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS.Q2,"Prevalence of underweight, weight for age (% of children under 5): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS.Q3,"Prevalence of underweight, weight for age (% of children under 5): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS.Q4,"Prevalence of underweight, weight for age (% of children under 5): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MALN.ZS.Q5,"Prevalence of underweight, weight for age (% of children under 5): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS,"Mammography in last 2 years, (% of females 50-69)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS.Q1,"Mammography in last 2 years, (% of females 50-69): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS.Q2,"Mammography in last 2 years, (% of females 50-69): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS.Q3,"Mammography in last 2 years, (% of females 50-69): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS.Q4,"Mammography in last 2 years, (% of females 50-69): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.MAMO.ZS.Q5,"Mammography in last 2 years, (% of females 50-69): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS,"Prevalence of obesity, female, BMI > 30 (% of population 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS.Q1,"Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS.Q2,"Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS.Q3,"Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS.Q4,"Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB15.FE.ZS.Q5,"Prevalence of obesity, female, BMI > 30 (% of population 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS,"Prevalence of obesity, female, BMI > 30 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS.Q1,"Prevalence of obesity, female, BMI > 30 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS.Q2,"Prevalence of obesity, female, BMI > 30 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS.Q3,"Prevalence of obesity, female, BMI > 30 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS.Q4,"Prevalence of obesity, female, BMI > 30 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.FE.ZS.Q5,"Prevalence of obesity, female, BMI > 30 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS,"Prevalence of obesity, male, BMI > 30 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS.Q1,"Prevalence of obesity, male, BMI > 30 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS.Q2,"Prevalence of obesity, male, BMI > 30 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS.Q3,"Prevalence of obesity, male, BMI > 30 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS.Q4,"Prevalence of obesity, male, BMI > 30 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.MA.ZS.Q5,"Prevalence of obesity, male, BMI > 30 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS,"Prevalence of obesity, BMI > 30 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS.Q1,"Prevalence of obesity, BMI > 30 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS.Q2,"Prevalence of obesity, BMI > 30 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS.Q3,"Prevalence of obesity, BMI > 30 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS.Q4,"Prevalence of obesity, BMI > 30 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OB18.ZS.Q5,"Prevalence of obesity, BMI > 30 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS,Diarrhea treatment (% of children under 5 who received ORS),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS.Q1,Diarrhea treatment (% of children under 5 who received ORS): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS.Q2,Diarrhea treatment (% of children under 5 who received ORS): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS.Q3,Diarrhea treatment (% of children under 5 who received ORS): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS.Q4,Diarrhea treatment (% of children under 5 who received ORS): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.STA.ORTH.ZS.Q5,Diarrhea treatment (% of children under 5 who received ORS): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS.Q1,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS.Q2,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS.Q3,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS.Q4,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW15.FE.ZS.Q5,"Prevalence of overweight, female, BMI > 25 (% of population ages 15-49): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS,"Prevalence of overweight, female, BMI > 25 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS.Q1,"Prevalence of overweight, female, BMI > 25 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS.Q2,"Prevalence of overweight, female, BMI > 25 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS.Q3,"Prevalence of overweight, female, BMI > 25 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS.Q4,"Prevalence of overweight, female, BMI > 25 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.FE.ZS.Q5,"Prevalence of overweight, female, BMI > 25 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS,"Prevalence of overweight, male, BMI > 25 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS.Q1,"Prevalence of overweight, male, BMI > 25 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS.Q2,"Prevalence of overweight, male, BMI > 25 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS.Q3,"Prevalence of overweight, male, BMI > 25 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS.Q4,"Prevalence of overweight, male, BMI > 25 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.MA.ZS.Q5,"Prevalence of overweight, male, BMI > 25 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS,"Prevalence of overweight, BMI > 25 (% of population 18+)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS.Q1,"Prevalence of overweight, BMI > 25 (% of population 18+): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS.Q2,"Prevalence of overweight, BMI > 25 (% of population 18+): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS.Q3,"Prevalence of overweight, BMI > 25 (% of population 18+): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS.Q4,"Prevalence of overweight, BMI > 25 (% of population 18+): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.OW18.ZS.Q5,"Prevalence of overweight, BMI > 25 (% of population 18+): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS,"Prevalence of stunting, height for age (% of children under 5)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS.Q1,"Prevalence of stunting, height for age (% of children under 5): Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS.Q2,"Prevalence of stunting, height for age (% of children under 5): Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS.Q3,"Prevalence of stunting, height for age (% of children under 5): Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS.Q4,"Prevalence of stunting, height for age (% of children under 5): Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.STA.STNT.ZS.Q5,"Prevalence of stunting, height for age (% of children under 5): Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS.Q1,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS.Q2,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS.Q3,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS.Q4,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.CONS.ZS.Q5,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.CG,"Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $1.90 poverty line",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS.Q1,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS.Q2,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS.Q3,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS.Q4,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP1.ZS.Q5,Proportion of population pushed below the $1.90 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.CG,"Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $3.20 poverty line",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS.Q1,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS.Q2,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS.Q3,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS.Q4,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP2.ZS.Q5,Proportion of population pushed below the $3.20 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.CG,"Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $5.50 poverty line",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS.Q1,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS.Q2,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS.Q3,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS.Q4,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP3.ZS.Q5,Proportion of population pushed below the $5.50 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.CG,"Change in poverty gap due to out-of-pocket health spending ($ 2011 PPP), $21.70 poverty line",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS.Q1,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS.Q2,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS.Q3,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS.Q4,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOP4.ZS.Q5,Proportion of population pushed below the $21.70 ($ 2011 PPP) poverty line by out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%)",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS.Q1,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%) : Q1 (lowest)",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS.Q2,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%) : Q2",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS.Q3,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%) : Q3",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS.Q4,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%) : Q4",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.NOPX.ZS.Q5,"Proportion of population pushed by out-of-pocket health care expenditure below the societal poverty line, defined as the higher of the $1.90 ($ 2011 PPP) poverty line and a 50% of median consumption poverty line (%) : Q5 (highest)",sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.CG,Mean household per capita out-of-pocket health spending ($ 2011 PPP),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS,Mean share of household consumption or income used on out-of-pocket health spending (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS.Q1,Mean share of household consumption or income used on out-of-pocket health spending (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS.Q2,Mean share of household consumption or income used on out-of-pocket health spending (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS.Q3,Mean share of household consumption or income used on out-of-pocket health spending (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS.Q4,Mean share of household consumption or income used on out-of-pocket health spending (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOP.ZS.Q5,Mean share of household consumption or income used on out-of-pocket health spending (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS.Q1,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS.Q2,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS.Q3,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS.Q4,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.10.ZS.Q5,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS.Q1,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS.Q2,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS.Q3,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS.Q4,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UHC.OOPC.25.ZS.Q5,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT,Unmet need for contraception (% of females ages 15-49),sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT.Q1,Unmet need for contraception (% of females ages 15-49): Q1 (lowest),sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT.Q2,Unmet need for contraception (% of females ages 15-49): Q2,sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT.Q3,Unmet need for contraception (% of females ages 15-49): Q3,sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT.Q4,Unmet need for contraception (% of females ages 15-49): Q4,sources,Health Equity and Financial Protection Indicators,65
+HF.UWT.TFRT.Q5,Unmet need for contraception (% of females ages 15-49): Q5 (highest),sources,Health Equity and Financial Protection Indicators,65
+HH.DHS.GAR.456,DHS: Gross attendance rate. Post Secondary,sources,Education Statistics,12
+HH.DHS.GAR.456.F,DHS: Gross attendance rate. Post Secondary. Female,sources,Education Statistics,12
+HH.DHS.GAR.456.M,DHS: Gross attendance rate. Post Secondary. Male,sources,Education Statistics,12
+HH.DHS.GAR.456.Q1,DHS: Gross attendance rate. Post Secondary. Quintile 1,sources,Education Statistics,12
+HH.DHS.GAR.456.Q2,DHS: Gross attendance rate. Post Secondary. Quintile 2,sources,Education Statistics,12
+HH.DHS.GAR.456.Q3,DHS: Gross attendance rate. Post Secondary. Quintile 3,sources,Education Statistics,12
+HH.DHS.GAR.456.Q4,DHS: Gross attendance rate. Post Secondary. Quintile 4,sources,Education Statistics,12
+HH.DHS.GAR.456.Q5,DHS: Gross attendance rate. Post Secondary. Quintile 5,sources,Education Statistics,12
+HH.DHS.GAR.456.R,DHS: Gross attendance rate. Post Secondary. Rural,sources,Education Statistics,12
+HH.DHS.GAR.456.U,DHS: Gross attendance rate. Post Secondary. Urban,sources,Education Statistics,12
+HH.DHS.NAR.1,DHS: Net attendance rate. Primary,sources,Education Statistics,12
+HH.DHS.NAR.1.F,DHS: Net attendance rate. Primary. Female,sources,Education Statistics,12
+HH.DHS.NAR.1.M,DHS: Net attendance rate. Primary. Male,sources,Education Statistics,12
+HH.DHS.NAR.1.Q1,DHS: Net attendance rate. Primary. Quintile 1,sources,Education Statistics,12
+HH.DHS.NAR.1.Q2,DHS: Net attendance rate. Primary. Quintile 2,sources,Education Statistics,12
+HH.DHS.NAR.1.Q3,DHS: Net attendance rate. Primary. Quintile 3,sources,Education Statistics,12
+HH.DHS.NAR.1.Q4,DHS: Net attendance rate. Primary. Quintile 4,sources,Education Statistics,12
+HH.DHS.NAR.1.Q5,DHS: Net attendance rate. Primary. Quintile 5,sources,Education Statistics,12
+HH.DHS.NAR.1.R,DHS: Net attendance rate. Primary. Rural,sources,Education Statistics,12
+HH.DHS.NAR.1.U,DHS: Net attendance rate. Primary. Urban,sources,Education Statistics,12
+HH.DHS.NAR.23,DHS: Net attendance rate. Secondary,sources,Education Statistics,12
+HH.DHS.NAR.23.F,DHS: Net attendance rate. Secondary. Female,sources,Education Statistics,12
+HH.DHS.NAR.23.M,DHS: Net attendance rate. Secondary. Male,sources,Education Statistics,12
+HH.DHS.NAR.23.Q1,DHS: Net attendance rate. Secondary. Quintile 1,sources,Education Statistics,12
+HH.DHS.NAR.23.Q2,DHS: Net attendance rate. Secondary. Quintile 2,sources,Education Statistics,12
+HH.DHS.NAR.23.Q3,DHS: Net attendance rate. Secondary. Quintile 3,sources,Education Statistics,12
+HH.DHS.NAR.23.Q4,DHS: Net attendance rate. Secondary. Quintile 4,sources,Education Statistics,12
+HH.DHS.NAR.23.Q5,DHS: Net attendance rate. Secondary. Quintile 5,sources,Education Statistics,12
+HH.DHS.NAR.23.R,DHS: Net attendance rate. Secondary. Rural,sources,Education Statistics,12
+HH.DHS.NAR.23.U,DHS: Net attendance rate. Secondary. Urban,sources,Education Statistics,12
+HH.DHS.NIR.1,DHS: Net intake rate for the first grade of primary education,sources,Education Statistics,12
+HH.DHS.NIR.1.F,DHS: Net intake rate for the first grade of primary education. Female,sources,Education Statistics,12
+HH.DHS.NIR.1.M,DHS: Net intake rate for the first grade of primary education. Male,sources,Education Statistics,12
+HH.DHS.NIR.1.Q1,DHS: Net intake rate for the first grade of primary education. Quintile 1,sources,Education Statistics,12
+HH.DHS.NIR.1.Q2,DHS: Net intake rate for the first grade of primary education. Quintile 2,sources,Education Statistics,12
+HH.DHS.NIR.1.Q3,DHS: Net intake rate for the first grade of primary education. Quintile 3,sources,Education Statistics,12
+HH.DHS.NIR.1.Q4,DHS: Net intake rate for the first grade of primary education. Quintile 4,sources,Education Statistics,12
+HH.DHS.NIR.1.Q5,DHS: Net intake rate for the first grade of primary education. Quintile 5,sources,Education Statistics,12
+HH.DHS.NIR.1.R,DHS: Net intake rate for the first grade of primary education. Rural,sources,Education Statistics,12
+HH.DHS.NIR.1.U,DHS: Net intake rate for the first grade of primary education. Urban,sources,Education Statistics,12
+HH.DHS.OOS.1,DHS: Proportion of out-of-school. Primary,sources,Education Statistics,12
+HH.DHS.OOS.1.F,DHS: Proportion of out-of-school. Primary. Female,sources,Education Statistics,12
+HH.DHS.OOS.1.M,DHS: Proportion of out-of-school. Primary. Male,sources,Education Statistics,12
+HH.DHS.OOS.1.Q1,DHS: Proportion of out-of-school. Primary. Quintile 1,sources,Education Statistics,12
+HH.DHS.OOS.1.Q2,DHS: Proportion of out-of-school. Primary. Quintile 2,sources,Education Statistics,12
+HH.DHS.OOS.1.Q3,DHS: Proportion of out-of-school. Primary. Quintile 3,sources,Education Statistics,12
+HH.DHS.OOS.1.Q4,DHS: Proportion of out-of-school. Primary. Quintile 4,sources,Education Statistics,12
+HH.DHS.OOS.1.Q5,DHS: Proportion of out-of-school. Primary. Quintile 5,sources,Education Statistics,12
+HH.DHS.OOS.1.R,DHS: Proportion of out-of-school. Primary. Rural,sources,Education Statistics,12
+HH.DHS.OOS.1.U,DHS: Proportion of out-of-school. Primary. Urban,sources,Education Statistics,12
+HH.DHS.OOST.DO,DHS: Typology of out-of-school children. Primary. Dropped out,sources,Education Statistics,12
+HH.DHS.OOST.DO.F,DHS: Typology of out-of-school children. Primary. Dropped out. Female,sources,Education Statistics,12
+HH.DHS.OOST.DO.M,DHS: Typology of out-of-school children. Primary. Dropped out. Male,sources,Education Statistics,12
+HH.DHS.OOST.DO.Q1,DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 1,sources,Education Statistics,12
+HH.DHS.OOST.DO.Q2,DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 2,sources,Education Statistics,12
+HH.DHS.OOST.DO.Q3,DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 3,sources,Education Statistics,12
+HH.DHS.OOST.DO.Q4,DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 4,sources,Education Statistics,12
+HH.DHS.OOST.DO.Q5,DHS: Typology of out-of-school children. Primary. Dropped out. Quintile 5,sources,Education Statistics,12
+HH.DHS.OOST.DO.R,DHS: Typology of out-of-school children. Primary. Dropped out. Rural,sources,Education Statistics,12
+HH.DHS.OOST.DO.U,DHS: Typology of out-of-school children. Primary. Dropped out. Urban,sources,Education Statistics,12
+HH.DHS.OOST.L,DHS: Typology of out-of-school children. Primary. Late entry,sources,Education Statistics,12
+HH.DHS.OOST.L.F,DHS: Typology of out-of-school children. Primary. Late entry. Female,sources,Education Statistics,12
+HH.DHS.OOST.L.M,DHS: Typology of out-of-school children. Primary. Late entry. Male,sources,Education Statistics,12
+HH.DHS.OOST.L.Q1,DHS: Typology of out-of-school children. Primary. Late entry. Quintile 1,sources,Education Statistics,12
+HH.DHS.OOST.L.Q2,DHS: Typology of out-of-school children. Primary. Late entry. Quintile 2,sources,Education Statistics,12
+HH.DHS.OOST.L.Q3,DHS: Typology of out-of-school children. Primary. Late entry. Quintile 3,sources,Education Statistics,12
+HH.DHS.OOST.L.Q4,DHS: Typology of out-of-school children. Primary. Late entry. Quintile 4,sources,Education Statistics,12
+HH.DHS.OOST.L.Q5,DHS: Typology of out-of-school children. Primary. Late entry. Quintile 5,sources,Education Statistics,12
+HH.DHS.OOST.L.R,DHS: Typology of out-of-school children. Primary. Late entry. Rural,sources,Education Statistics,12
+HH.DHS.OOST.L.U,DHS: Typology of out-of-school children. Primary. Late entry. Urban,sources,Education Statistics,12
+HH.DHS.OOST.X,DHS: Typology of out-of-school children. Primary. Never in school,sources,Education Statistics,12
+HH.DHS.OOST.X.F,DHS: Typology of out-of-school children. Primary. Never in school. Female,sources,Education Statistics,12
+HH.DHS.OOST.X.M,DHS: Typology of out-of-school children. Primary. Never in school. Male,sources,Education Statistics,12
+HH.DHS.OOST.X.Q1,DHS: Typology of out-of-school children. Primary. Never in school. Quintile 1,sources,Education Statistics,12
+HH.DHS.OOST.X.Q2,DHS: Typology of out-of-school children. Primary. Never in school. Quintile 2,sources,Education Statistics,12
+HH.DHS.OOST.X.Q3,DHS: Typology of out-of-school children. Primary. Never in school. Quintile 3,sources,Education Statistics,12
+HH.DHS.OOST.X.Q4,DHS: Typology of out-of-school children. Primary. Never in school. Quintile 4,sources,Education Statistics,12
+HH.DHS.OOST.X.Q5,DHS: Typology of out-of-school children. Primary. Never in school. Quintile 5,sources,Education Statistics,12
+HH.DHS.OOST.X.R,DHS: Typology of out-of-school children. Primary. Never in school. Rural,sources,Education Statistics,12
+HH.DHS.OOST.X.U,DHS: Typology of out-of-school children. Primary. Never in school. Urban,sources,Education Statistics,12
+HH.DHS.PCR,DHS: Primary completion rate,sources,Education Statistics,12
+HH.DHS.PCR.F,DHS: Primary completion rate. Female,sources,Education Statistics,12
+HH.DHS.PCR.M,DHS: Primary completion rate. Male,sources,Education Statistics,12
+HH.DHS.PCR.Q1,DHS: Primary completion rate. Quintile 1,sources,Education Statistics,12
+HH.DHS.PCR.Q2,DHS: Primary completion rate. Quintile 2,sources,Education Statistics,12
+HH.DHS.PCR.Q3,DHS: Primary completion rate. Quintile 3,sources,Education Statistics,12
+HH.DHS.PCR.Q4,DHS: Primary completion rate. Quintile 4,sources,Education Statistics,12
+HH.DHS.PCR.Q5,DHS: Primary completion rate. Quintile 5,sources,Education Statistics,12
+HH.DHS.PCR.R,DHS: Primary completion rate. Rural,sources,Education Statistics,12
+HH.DHS.PCR.U,DHS: Primary completion rate. Urban,sources,Education Statistics,12
+HH.DHS.SCR,DHS: Secondary completion rate,sources,Education Statistics,12
+HH.DHS.SCR.F,DHS: Secondary completion rate. Female,sources,Education Statistics,12
+HH.DHS.SCR.M,DHS: Secondary completion rate. Male,sources,Education Statistics,12
+HH.DHS.SCR.Q1,DHS: Secondary completion rate. Quintile 1,sources,Education Statistics,12
+HH.DHS.SCR.Q2,DHS: Secondary completion rate. Quintile 2,sources,Education Statistics,12
+HH.DHS.SCR.Q3,DHS: Secondary completion rate. Quintile 3,sources,Education Statistics,12
+HH.DHS.SCR.Q4,DHS: Secondary completion rate. Quintile 4,sources,Education Statistics,12
+HH.DHS.SCR.Q5,DHS: Secondary completion rate. Quintile 5,sources,Education Statistics,12
+HH.DHS.SCR.R,DHS: Secondary completion rate. Rural,sources,Education Statistics,12
+HH.DHS.SCR.U,DHS: Secondary completion rate. Urban,sources,Education Statistics,12
+HH.DHS.TR.12,DHS: Transition rate. Primary to Secondary,sources,Education Statistics,12
+HH.DHS.TR.12.F,DHS: Transition rate. Primary to Secondary. Female,sources,Education Statistics,12
+HH.DHS.TR.12.M,DHS: Transition rate. Primary to Secondary. Male,sources,Education Statistics,12
+HH.DHS.TR.12.Q1,DHS: Transition rate. Primary to Secondary. Quintile 1,sources,Education Statistics,12
+HH.DHS.TR.12.Q2,DHS: Transition rate. Primary to Secondary. Quintile 2,sources,Education Statistics,12
+HH.DHS.TR.12.Q3,DHS: Transition rate. Primary to Secondary. Quintile 3,sources,Education Statistics,12
+HH.DHS.TR.12.Q4,DHS: Transition rate. Primary to Secondary. Quintile 4,sources,Education Statistics,12
+HH.DHS.TR.12.Q5,DHS: Transition rate. Primary to Secondary. Quintile 5,sources,Education Statistics,12
+HH.DHS.TR.12.R,DHS: Transition rate. Primary to Secondary. Rural,sources,Education Statistics,12
+HH.DHS.TR.12.U,DHS: Transition rate. Primary to Secondary. Urban,sources,Education Statistics,12
+HH.DHS.YRS.1519,DHS: Average years of schooling by age group. Age 15-19,sources,Education Statistics,12
+HH.DHS.YRS.1519.F,DHS: Average years of schooling by age group. Age 15-19. Female,sources,Education Statistics,12
+HH.DHS.YRS.1519.M,DHS: Average years of schooling by age group. Age 15-19. Male,sources,Education Statistics,12
+HH.DHS.YRS.1519.Q1,DHS: Average years of schooling by age group. Age 15-19. Quintile 1,sources,Education Statistics,12
+HH.DHS.YRS.1519.Q2,DHS: Average years of schooling by age group. Age 15-19. Quintile 2,sources,Education Statistics,12
+HH.DHS.YRS.1519.Q3,DHS: Average years of schooling by age group. Age 15-19. Quintile 3,sources,Education Statistics,12
+HH.DHS.YRS.1519.Q4,DHS: Average years of schooling by age group. Age 15-19. Quintile 4,sources,Education Statistics,12
+HH.DHS.YRS.1519.Q5,DHS: Average years of schooling by age group. Age 15-19. Quintile 5,sources,Education Statistics,12
+HH.DHS.YRS.1519.R,DHS: Average years of schooling by age group. Age 15-19. Rural,sources,Education Statistics,12
+HH.DHS.YRS.1519.U,DHS: Average years of schooling by age group. Age 15-19. Urban,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN,DHS: Gini coefficient of average years of schooling. Age 15+,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.F,DHS: Gini coefficient of average years of schooling. Age 15+. Female,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.M,DHS: Gini coefficient of average years of schooling. Age 15+. Male,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.Q1,DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 1,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.Q2,DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 2,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.Q3,DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 3,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.Q4,DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 4,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.Q5,DHS: Gini coefficient of average years of schooling. Age 15+. Quintile 5,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.R,DHS: Gini coefficient of average years of schooling. Age 15+. Rural,sources,Education Statistics,12
+HH.DHS.YRS.15UP.GIN.U,DHS: Gini coefficient of average years of schooling. Age 15+. Urban,sources,Education Statistics,12
+HH.MICS.GAR.456,MICS: Gross attendance rate. Post Secondary,sources,Education Statistics,12
+HH.MICS.GAR.456.F,MICS: Gross attendance rate. Post Secondary. Female,sources,Education Statistics,12
+HH.MICS.GAR.456.M,MICS: Gross attendance rate. Post Secondary. Male,sources,Education Statistics,12
+HH.MICS.GAR.456.Q1,MICS: Gross attendance rate. Post Secondary. Quintile 1,sources,Education Statistics,12
+HH.MICS.GAR.456.Q2,MICS: Gross attendance rate. Post Secondary. Quintile 2,sources,Education Statistics,12
+HH.MICS.GAR.456.Q3,MICS: Gross attendance rate. Post Secondary. Quintile 3,sources,Education Statistics,12
+HH.MICS.GAR.456.Q4,MICS: Gross attendance rate. Post Secondary. Quintile 4,sources,Education Statistics,12
+HH.MICS.GAR.456.Q5,MICS: Gross attendance rate. Post Secondary. Quintile 5,sources,Education Statistics,12
+HH.MICS.GAR.456.R,MICS: Gross attendance rate. Post Secondary. Rural,sources,Education Statistics,12
+HH.MICS.GAR.456.U,MICS: Gross attendance rate. Post Secondary. Urban,sources,Education Statistics,12
+HH.MICS.NAR.1,MICS: Net attendance rate. Primary,sources,Education Statistics,12
+HH.MICS.NAR.1.F,MICS: Net attendance rate. Primary. Female,sources,Education Statistics,12
+HH.MICS.NAR.1.M,MICS: Net attendance rate. Primary. Male,sources,Education Statistics,12
+HH.MICS.NAR.1.Q1,MICS: Net attendance rate. Primary. Quintile 1,sources,Education Statistics,12
+HH.MICS.NAR.1.Q2,MICS: Net attendance rate. Primary. Quintile 2,sources,Education Statistics,12
+HH.MICS.NAR.1.Q3,MICS: Net attendance rate. Primary. Quintile 3,sources,Education Statistics,12
+HH.MICS.NAR.1.Q4,MICS: Net attendance rate. Primary. Quintile 4,sources,Education Statistics,12
+HH.MICS.NAR.1.Q5,MICS: Net attendance rate. Primary. Quintile 5,sources,Education Statistics,12
+HH.MICS.NAR.1.R,MICS: Net attendance rate. Primary. Rural,sources,Education Statistics,12
+HH.MICS.NAR.1.U,MICS: Net attendance rate. Primary. Urban,sources,Education Statistics,12
+HH.MICS.NAR.23,MICS: Net attendance rate. Secondary,sources,Education Statistics,12
+HH.MICS.NAR.23.F,MICS: Net attendance rate. Secondary. Female,sources,Education Statistics,12
+HH.MICS.NAR.23.M,MICS: Net attendance rate. Secondary. Male,sources,Education Statistics,12
+HH.MICS.NAR.23.Q1,MICS: Net attendance rate. Secondary. Quintile 1,sources,Education Statistics,12
+HH.MICS.NAR.23.Q2,MICS: Net attendance rate. Secondary. Quintile 2,sources,Education Statistics,12
+HH.MICS.NAR.23.Q3,MICS: Net attendance rate. Secondary. Quintile 3,sources,Education Statistics,12
+HH.MICS.NAR.23.Q4,MICS: Net attendance rate. Secondary. Quintile 4,sources,Education Statistics,12
+HH.MICS.NAR.23.Q5,MICS: Net attendance rate. Secondary. Quintile 5,sources,Education Statistics,12
+HH.MICS.NAR.23.R,MICS: Net attendance rate. Secondary. Rural,sources,Education Statistics,12
+HH.MICS.NAR.23.U,MICS: Net attendance rate. Secondary. Urban,sources,Education Statistics,12
+HH.MICS.OOS.1,MICS: Proportion of out-of-school. Primary,sources,Education Statistics,12
+HH.MICS.OOS.1.F,MICS: Proportion of out-of-school. Primary. Female,sources,Education Statistics,12
+HH.MICS.OOS.1.M,MICS: Proportion of out-of-school. Primary. Male,sources,Education Statistics,12
+HH.MICS.OOS.1.Q1,MICS: Proportion of out-of-school. Primary. Quintile 1,sources,Education Statistics,12
+HH.MICS.OOS.1.Q2,MICS: Proportion of out-of-school. Primary. Quintile 2,sources,Education Statistics,12
+HH.MICS.OOS.1.Q3,MICS: Proportion of out-of-school. Primary. Quintile 3,sources,Education Statistics,12
+HH.MICS.OOS.1.Q4,MICS: Proportion of out-of-school. Primary. Quintile 4,sources,Education Statistics,12
+HH.MICS.OOS.1.Q5,MICS: Proportion of out-of-school. Primary. Quintile 5,sources,Education Statistics,12
+HH.MICS.OOS.1.R,MICS: Proportion of out-of-school. Primary. Rural,sources,Education Statistics,12
+HH.MICS.OOS.1.U,MICS: Proportion of out-of-school. Primary. Urban,sources,Education Statistics,12
+HH.MICS.OOST.DO,MICS: Typology of out-of-school children. Primary. Dropped out,sources,Education Statistics,12
+HH.MICS.OOST.DO.F,MICS: Typology of out-of-school children. Primary. Dropped out. Female,sources,Education Statistics,12
+HH.MICS.OOST.DO.M,MICS: Typology of out-of-school children. Primary. Dropped out. Male,sources,Education Statistics,12
+HH.MICS.OOST.DO.Q1,MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 1,sources,Education Statistics,12
+HH.MICS.OOST.DO.Q2,MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 2,sources,Education Statistics,12
+HH.MICS.OOST.DO.Q3,MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 3,sources,Education Statistics,12
+HH.MICS.OOST.DO.Q4,MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 4,sources,Education Statistics,12
+HH.MICS.OOST.DO.Q5,MICS: Typology of out-of-school children. Primary. Dropped out. Quintile 5,sources,Education Statistics,12
+HH.MICS.OOST.DO.R,MICS: Typology of out-of-school children. Primary. Dropped out. Rural,sources,Education Statistics,12
+HH.MICS.OOST.DO.U,MICS: Typology of out-of-school children. Primary. Dropped out. Urban,sources,Education Statistics,12
+HH.MICS.OOST.L,MICS: Typology of out-of-school children. Primary. Late entry,sources,Education Statistics,12
+HH.MICS.OOST.L.F,MICS: Typology of out-of-school children. Primary. Late entry. Female,sources,Education Statistics,12
+HH.MICS.OOST.L.M,MICS: Typology of out-of-school children. Primary. Late entry. Male,sources,Education Statistics,12
+HH.MICS.OOST.L.Q1,MICS: Typology of out-of-school children. Primary. Late entry. Quintile 1,sources,Education Statistics,12
+HH.MICS.OOST.L.Q2,MICS: Typology of out-of-school children. Primary. Late entry. Quintile 2,sources,Education Statistics,12
+HH.MICS.OOST.L.Q3,MICS: Typology of out-of-school children. Primary. Late entry. Quintile 3,sources,Education Statistics,12
+HH.MICS.OOST.L.Q4,MICS: Typology of out-of-school children. Primary. Late entry. Quintile 4,sources,Education Statistics,12
+HH.MICS.OOST.L.Q5,MICS: Typology of out-of-school children. Primary. Late entry. Quintile 5,sources,Education Statistics,12
+HH.MICS.OOST.L.R,MICS: Typology of out-of-school children. Primary. Late entry. Rural,sources,Education Statistics,12
+HH.MICS.OOST.L.U,MICS: Typology of out-of-school children. Primary. Late entry. Urban,sources,Education Statistics,12
+HH.MICS.OOST.X,MICS: Typology of out-of-school children. Primary. Never in school,sources,Education Statistics,12
+HH.MICS.OOST.X.F,MICS: Typology of out-of-school children. Primary. Never in school. Female,sources,Education Statistics,12
+HH.MICS.OOST.X.M,MICS: Typology of out-of-school children. Primary. Never in school. Male,sources,Education Statistics,12
+HH.MICS.OOST.X.Q1,MICS: Typology of out-of-school children. Primary. Never in school. Quintile 1,sources,Education Statistics,12
+HH.MICS.OOST.X.Q2,MICS: Typology of out-of-school children. Primary. Never in school. Quintile 2,sources,Education Statistics,12
+HH.MICS.OOST.X.Q3,MICS: Typology of out-of-school children. Primary. Never in school. Quintile 3,sources,Education Statistics,12
+HH.MICS.OOST.X.Q4,MICS: Typology of out-of-school children. Primary. Never in school. Quintile 4,sources,Education Statistics,12
+HH.MICS.OOST.X.Q5,MICS: Typology of out-of-school children. Primary. Never in school. Quintile 5,sources,Education Statistics,12
+HH.MICS.OOST.X.R,MICS: Typology of out-of-school children. Primary. Never in school. Rural,sources,Education Statistics,12
+HH.MICS.OOST.X.U,MICS: Typology of out-of-school children. Primary. Never in school. Urban,sources,Education Statistics,12
+HH.MICS.PCR,MICS: Primary completion rate,sources,Education Statistics,12
+HH.MICS.PCR.F,MICS: Primary completion rate. Female,sources,Education Statistics,12
+HH.MICS.PCR.M,MICS: Primary completion rate. Male,sources,Education Statistics,12
+HH.MICS.PCR.Q1,MICS: Primary completion rate. Quintile 1,sources,Education Statistics,12
+HH.MICS.PCR.Q2,MICS: Primary completion rate. Quintile 2,sources,Education Statistics,12
+HH.MICS.PCR.Q3,MICS: Primary completion rate. Quintile 3,sources,Education Statistics,12
+HH.MICS.PCR.Q4,MICS: Primary completion rate. Quintile 4,sources,Education Statistics,12
+HH.MICS.PCR.Q5,MICS: Primary completion rate. Quintile 5,sources,Education Statistics,12
+HH.MICS.PCR.R,MICS: Primary completion rate. Rural,sources,Education Statistics,12
+HH.MICS.PCR.U,MICS: Primary completion rate. Urban,sources,Education Statistics,12
+HH.MICS.SCR,MICS: Secondary completion rate,sources,Education Statistics,12
+HH.MICS.SCR.F,MICS: Secondary completion rate. Female,sources,Education Statistics,12
+HH.MICS.SCR.M,MICS: Secondary completion rate. Male,sources,Education Statistics,12
+HH.MICS.SCR.Q1,MICS: Secondary completion rate. Quintile 1,sources,Education Statistics,12
+HH.MICS.SCR.Q2,MICS: Secondary completion rate. Quintile 2,sources,Education Statistics,12
+HH.MICS.SCR.Q3,MICS: Secondary completion rate. Quintile 3,sources,Education Statistics,12
+HH.MICS.SCR.Q4,MICS: Secondary completion rate. Quintile 4,sources,Education Statistics,12
+HH.MICS.SCR.Q5,MICS: Secondary completion rate. Quintile 5,sources,Education Statistics,12
+HH.MICS.SCR.R,MICS: Secondary completion rate. Rural,sources,Education Statistics,12
+HH.MICS.SCR.U,MICS: Secondary completion rate. Urban,sources,Education Statistics,12
+HH.MICS.TR.12,MICS: Transition rate. Primary to Secondary,sources,Education Statistics,12
+HH.MICS.TR.12.F,MICS: Transition rate. Primary to Secondary. Female,sources,Education Statistics,12
+HH.MICS.TR.12.M,MICS: Transition rate. Primary to Secondary. Male,sources,Education Statistics,12
+HH.MICS.TR.12.Q1,MICS: Transition rate. Primary to Secondary. Quintile 1,sources,Education Statistics,12
+HH.MICS.TR.12.Q2,MICS: Transition rate. Primary to Secondary. Quintile 2,sources,Education Statistics,12
+HH.MICS.TR.12.Q3,MICS: Transition rate. Primary to Secondary. Quintile 3,sources,Education Statistics,12
+HH.MICS.TR.12.Q4,MICS: Transition rate. Primary to Secondary. Quintile 4,sources,Education Statistics,12
+HH.MICS.TR.12.Q5,MICS: Transition rate. Primary to Secondary. Quintile 5,sources,Education Statistics,12
+HH.MICS.TR.12.R,MICS: Transition rate. Primary to Secondary. Rural,sources,Education Statistics,12
+HH.MICS.TR.12.U,MICS: Transition rate. Primary to Secondary. Urban,sources,Education Statistics,12
+HH.MICS.YRS.1519,MICS: Average years of schooling by age group. Age 15-19,sources,Education Statistics,12
+HH.MICS.YRS.1519.F,MICS: Average years of schooling by age group. Age 15-19. Female,sources,Education Statistics,12
+HH.MICS.YRS.1519.M,MICS: Average years of schooling by age group. Age 15-19. Male,sources,Education Statistics,12
+HH.MICS.YRS.1519.Q1,MICS: Average years of schooling by age group. Age 15-19. Quintile 1,sources,Education Statistics,12
+HH.MICS.YRS.1519.Q2,MICS: Average years of schooling by age group. Age 15-19. Quintile 2,sources,Education Statistics,12
+HH.MICS.YRS.1519.Q3,MICS: Average years of schooling by age group. Age 15-19. Quintile 3,sources,Education Statistics,12
+HH.MICS.YRS.1519.Q4,MICS: Average years of schooling by age group. Age 15-19. Quintile 4,sources,Education Statistics,12
+HH.MICS.YRS.1519.Q5,MICS: Average years of schooling by age group. Age 15-19. Quintile 5,sources,Education Statistics,12
+HH.MICS.YRS.1519.R,MICS: Average years of schooling by age group. Age 15-19. Rural,sources,Education Statistics,12
+HH.MICS.YRS.1519.U,MICS: Average years of schooling by age group. Age 15-19. Urban,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN,MICS: Gini coefficient of average years of schooling. Age 15+,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.F,MICS: Gini coefficient of average years of schooling. Age 15+. Female,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.M,MICS: Gini coefficient of average years of schooling. Age 15+. Male,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.Q1,MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 1,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.Q2,MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 2,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.Q3,MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 3,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.Q4,MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 4,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.Q5,MICS: Gini coefficient of average years of schooling. Age 15+. Quintile 5,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.R,MICS: Gini coefficient of average years of schooling. Age 15+. Rural,sources,Education Statistics,12
+HH.MICS.YRS.15UP.GIN.U,MICS: Gini coefficient of average years of schooling. Age 15+. Urban,sources,Education Statistics,12
+HOU.ELC.ACSN.ZS,Household Access to Electricity: Total (in % of total household),sources,Indonesia Database for Policy and Economic Research,45
+HOU.H2O.ACSN.ZS,Household Access to Safe Water (in % of total household),sources,Indonesia Database for Policy and Economic Research,45
+HOU.MLT.MAIN.ZS,Household Access to Fixed Line Phone Connection (in % of total Household),sources,Indonesia Database for Policy and Economic Research,45
+HOU.STA.ACSN.ZS,Household Access to safe Sanitation (in % of total Household),sources,Indonesia Database for Policy and Economic Research,45
+HOU.XPD.EDU.PC.CR,Monthly Per Capita Household Education Expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+HOU.XPD.HE.PC.CR,Monthly Per Capita Household Health Expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+HOU.XPD.PC.CR,Household per capita expenditure (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+HOU.XPD.TOTL.20POOR.CR,Monthly Per Capita TOTAL Household Expenditure for The Poorest 20 percent (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+IBP.OBI.XQ,Open Budget Index Overall Country Score,sources,Africa Development Indicators,11
+IC.BRE.BE.OS,B-READY: Business Entry: Overall Score,sources,World Development Indicators,2
+IC.BRE.BE.P1,B-READY: Business Entry Pillar 1: Quality of Regulations for Business Entry,sources,World Development Indicators,2
+IC.BRE.BE.P2,B-READY: Business Entry Pillar 2: Digital Public Services and Transparency of Information for Business Entry,sources,World Development Indicators,2
+IC.BRE.BE.P3,B-READY: Business Entry Pillar 3: Operational Efficiency of Business Entry,sources,World Development Indicators,2
+IC.BRE.BI.OS,B-READY: Business Insolvency: Overall Score,sources,World Development Indicators,2
+IC.BRE.BI.P1,B-READY: Business Insolvency Pillar 1: Quality of Regulations for Judicial Insolvency Proceedings,sources,World Development Indicators,2
+IC.BRE.BI.P2,B-READY: Business Insolvency Pillar 2: Quality of Institutional and Operational Infrastructure for Judicial Insolvency Proceedings,sources,World Development Indicators,2
+IC.BRE.BI.P3,B-READY: Business Insolvency Pillar 3: Operational Efficiency of Resolving Judicial Insolvency Proceedings,sources,World Development Indicators,2
+IC.BRE.BL.OS,B-READY: Business Location: Overall Score,sources,World Development Indicators,2
+IC.BRE.BL.P1,B-READY: Business Location Pillar 1: Quality of Regulations for Business Location,sources,World Development Indicators,2
+IC.BRE.BL.P2,B-READY: Business Location Pillar 2: Quality of Public Services and Transparency of Information for Business Location,sources,World Development Indicators,2
+IC.BRE.BL.P3,B-READY: Business Location Pillar 3: Operational Efficiency of Establishing a Business Location,sources,World Development Indicators,2
+IC.BRE.DR.OS,B-READY: Dispute Resolution: Overall Score,sources,World Development Indicators,2
+IC.BRE.DR.P1,B-READY: Dispute Resolution Pillar 1: Quality of Regulations for Dispute Resolution,sources,World Development Indicators,2
+IC.BRE.DR.P2,B-READY: Dispute Resolution Pillar 2: Public Services for Dispute Resolution,sources,World Development Indicators,2
+IC.BRE.DR.P3,B-READY: Dispute Resolution Pillar 3: Ease of Resolving a Commercial Dispute,sources,World Development Indicators,2
+IC.BRE.FS.OS,B-READY: Financial Services: Overall Score,sources,World Development Indicators,2
+IC.BRE.FS.P1,B-READY: Financial Services Pillar 1: Quality of Regulations for Financial Services,sources,World Development Indicators,2
+IC.BRE.FS.P2,B-READY: Financial Services Pillar 2: Accessibility of Information in Credit Infrastructure,sources,World Development Indicators,2
+IC.BRE.FS.P3,B-READY: Financial Services Pillar 3: Operational Efficiency of Receiving Financial Services,sources,World Development Indicators,2
+IC.BRE.IT.OS,B-READY: International Trade: Overall Score,sources,World Development Indicators,2
+IC.BRE.IT.P1,B-READY: International Trade Pillar 1: Quality of Regulations for International Trade,sources,World Development Indicators,2
+IC.BRE.IT.P2,B-READY: International Trade Pillar 2: Quality of Public Services for the Facilitation of International Trade,sources,World Development Indicators,2
+IC.BRE.IT.P3,"B-READY: International Trade Pillar 3: Efficiency of Importing Goods, Exporting Goods, and Engaging in Digital Trade",sources,World Development Indicators,2
+IC.BRE.LB.OS,B-READY: Labor: Overall Score,sources,World Development Indicators,2
+IC.BRE.LB.P1,B-READY: Labor Pillar 1: Quality of Labor Regulations,sources,World Development Indicators,2
+IC.BRE.LB.P2,B-READY: Labor Pillar 2: Adequacy of Public Services for Labor,sources,World Development Indicators,2
+IC.BRE.LB.P3,B-READY: Labor Pillar 3: Operational Efficiency of Labor Regulations and Public Services in Practice,sources,World Development Indicators,2
+IC.BRE.MC.OS,B-READY: Market Competition: Overall Score,sources,World Development Indicators,2
+IC.BRE.MC.P1,B-READY: Market Competition Pillar 1: Quality of Regulations that Promote Market Competition,sources,World Development Indicators,2
+IC.BRE.MC.P2,B-READY: Market Competition Pillar 2: Public Services that Promote Market Competition,sources,World Development Indicators,2
+IC.BRE.MC.P3,B-READY: Market Competition Pillar 3: Implementation of Key Services Promoting Market Competition,sources,World Development Indicators,2
+IC.BRE.P1.RF,B-READY: Pillar 1: Regulatory Framework,sources,World Development Indicators,2
+IC.BRE.P2.PS,B-READY: Pillar 2: Public Services,sources,World Development Indicators,2
+IC.BRE.P3.OE,B-READY: Pillar 3: Operational Efficiency,sources,World Development Indicators,2
+IC.BRE.TX.OS,B-READY: Taxation: Overall Score,sources,World Development Indicators,2
+IC.BRE.TX.P1,B-READY: Taxation Pillar 1: Quality of Regulations on Taxation,sources,World Development Indicators,2
+IC.BRE.TX.P2,B-READY: Taxation Pillar 2: Public Services Provided by the Tax Administration,sources,World Development Indicators,2
+IC.BRE.TX.P3,B-READY: Taxation Pillar 3: Operational Efficiency of Tax Systems in Practice,sources,World Development Indicators,2
+IC.BRE.US.OS,B-READY: Utility Services: Overall Score,sources,World Development Indicators,2
+IC.BRE.US.P1,B-READY: Utility Services Pillar 1: Quality of Regulations on Utility Services,sources,World Development Indicators,2
+IC.BRE.US.P2,B-READY: Utility Services Pillar 2: Quality of Governance and Transparency of Utility Services,sources,World Development Indicators,2
+IC.BRE.US.P3,B-READY: Utility Services Pillar 3: Operational Efficiency of Utility Service Provision,sources,World Development Indicators,2
+IC.BUS.DFRN.XQ,Distance to frontier score (0=lowest performance to 100=frontier),topics,Private Sector,12
+IC.BUS.DIR.XQ,"Protecting investors, director liability index",sources,Africa Development Indicators,11
+IC.BUS.DISC.XQ,Business extent of disclosure index (0=less disclosure to 10=more disclosure),topics,Private Sector,12
+IC.BUS.EASE.DFRN.DB1014,Global: Ease of doing business score (DB10-14 methodology),sources,Doing Business,1
+IC.BUS.EASE.DFRN.DB16,Global: Ease of doing business score (DB15 methodology),sources,Doing Business,1
+IC.BUS.EASE.DFRN.XQ.DB1719,Global: Ease of doing business score (DB17-20 methodology),sources,Doing Business,1
+IC.BUS.EASE.XQ,Ease of doing business index (1=most business-friendly regulations),topics,Private Sector,12
+IC.BUS.INVS.XQ,"Protecting investors, investor protection index",sources,Africa Development Indicators,11
+IC.BUS.NDNS.ZS,"New business density (new registrations per 1,000 people ages 15-64)",topics,Private Sector,12
+IC.BUS.NREG,New businesses registered (number),topics,Private Sector,12
+IC.BUS.NREG.ZS,Business entry rate (new registrations as % of total),sources,WDI Database Archives,57
+IC.BUS.SHR.XQ,"Protecting investors, shareholder suits index",sources,Africa Development Indicators,11
+IC.BUS.TOTL,Total businesses registered (number),sources,WDI Database Archives,57
+IC.BUS.XQ,Protecting investors (rank),sources,Africa Development Indicators,11
+IC.CLS.COST.EST.ZS,"Closing a business, cost (% of estate)",sources,Africa Development Indicators,11
+IC.CLS.DURS,"Closing a business, time (years)",sources,Africa Development Indicators,11
+IC.CLS.REC.CD,"Closing a business, recovery rate (cents on the dollar)",sources,Africa Development Indicators,11
+IC.CLS.XQ,Closing a business (rank),sources,Africa Development Indicators,11
+IC.CNS.CORR.ZS,Corruption (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.CRIM.ZS,Crime (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.ELEC.ZS,Electricity (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.FINA.ZS,Finance (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.GEN.ZS,Firms that share or own their own generator (% of firms),sources,Africa Development Indicators,11
+IC.CNS.IMP.DURS,Days to Obtain Import License,sources,Africa Development Indicators,11
+IC.CNS.INFM.ZS,Practices Informal Sector (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LAND.ZS,Access to Land (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LBRG.ZS,Labor regulations (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LBSK.ZS,Labor skills (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LEGL.ZS,Courts (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LIC.ZS,Licenses & Permits (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.LOSS.ZS,"Losses Due to Theft, Robbery, Vandalism, and Arson Against the Firm (% of Sales)",sources,Africa Development Indicators,11
+IC.CNS.PER.DURS,Days to Obtain Construction-related Permit,sources,Africa Development Indicators,11
+IC.CNS.POLC.ZS,Policy uncertainty (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.TAXAD.ZS,Tax administration (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.TAXR.ZS,Tax rates (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.TRAD.ZS,Customs & trade regulations (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNS.TRSP.ZS,Transportation (% of managers surveyed ranking this as a major constraint),sources,Africa Development Indicators,11
+IC.CNST.LIR.XD.02.DB1619,Dealing with construction permits: Liability and insurance regimes index (0-2) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PC.XD.04.DB1619,Dealing with construction permits: Professional certifications index (0-4) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PRMT.BQCI.015.DB1619.DFRN,Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology) - Score,sources,Doing Business,1
+IC.CNST.PRMT.COST.WRH.VAL,Dealing with construction permits: Cost (% of Warehouse value),sources,Doing Business,1
+IC.CNST.PRMT.COST.WRH.VAL.DFRN,Dealing with construction permits: Cost (% of Warehouse value) - Score,sources,Doing Business,1
+IC.CNST.PRMT.DFRN.DB0615,Dealing with construction permits (DB06-15 methodology) - Score,sources,Doing Business,1
+IC.CNST.PRMT.DFRN.DB1619,Dealing with construction permits (DB16-20 methodology) - Score,sources,Doing Business,1
+IC.CNST.PRMT.PROC.NO,Dealing with construction permits: Procedures (number),sources,Doing Business,1
+IC.CNST.PRMT.PROC.NO.DFRN,Dealing with construction permits: Procedures (number) - Score,sources,Doing Business,1
+IC.CNST.PRMT.QBR.XD.02.DB1619,Dealing with construction permits: Quality of building regulations index (0-2) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PRMT.QCAC.XD.DB1619,Dealing with construction permits: Quality control after construction index (0-3) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PRMT.QCBC.XD.01.DB1619,Dealing with construction permits: Quality control before construction index (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PRMT.QCDC.XD.03.DB1619,Dealing with construction permits: Quality control during construction index (0-3) (DB16-20 methodology),sources,Doing Business,1
+IC.CNST.PRMT.RK,Rank: Dealing with construction permits (1=most business-friendly regulations),sources,Doing Business,1
+IC.CNST.PRMT.TM.DY,Dealing with construction permits: Time (days),sources,Doing Business,1
+IC.CNST.PRMT.TM.DY.DFRN,Dealing with construction permits: Time (days) - Score,sources,Doing Business,1
+IC.CON.GIFT.ZS,Expected to give gifts to get a Construction Permit (% of firms),sources,Africa Development Indicators,11
+IC.CRD.INFO.XQ,Depth of credit information index (0=low to 8=high),topics,Financial Sector,7
+IC.CRD.LGL.XQ,"Getting credit, legal rights index",sources,Africa Development Indicators,11
+IC.CRD.PRVT.P3,"Private credit bureau coverage (borrowers per 1,000 adults)",sources,WDI Database Archives,57
+IC.CRD.PRVT.ZS,Private credit bureau coverage (% of adults),topics,Financial Sector,7
+IC.CRD.PUBL.P3,"Public credit registry coverage (borrowers per 1,000 adults)",sources,WDI Database Archives,57
+IC.CRD.PUBL.ZS,Public credit registry coverage (% of adults),topics,Financial Sector,7
+IC.CRD.XQ,Getting credit (rank),sources,Africa Development Indicators,11
+IC.CRED.ACC.ACES.DB0514,Getting Credit total score (DB05-14 methodology),sources,Doing Business,1
+IC.CRED.ACC.ACES.DB1519,Getting Credit total score (DB15-20 methodology),sources,Doing Business,1
+IC.CRED.ACC.CRD.DB0514.DFRN,Getting credit (DB05-14 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.CRD.DB1519.DFRN,Getting credit (DB15-20 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.CRD.RK,Rank: Getting credit (1=most business-friendly regulations),sources,Doing Business,1
+IC.CRED.ACC.DPTH.CISI.XD.06.DB0514,Getting credit: Depth of credit information index (0-6) (DB05-14 methodology),sources,Doing Business,1
+IC.CRED.ACC.DPTH.CISI.XD.06.DB0514.DFRN,Getting credit: Depth of credit information index (0-6) (DB05-14 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.DPTH.CISI.XD.08.DB1519,Getting credit: Depth of credit information index (0-8) (DB15-20 methodology),sources,Doing Business,1
+IC.CRED.ACC.DPTH.CISI.XD.08.DB1519.DFRN,Getting credit: Depth of credit information index (0-8) (DB15-20 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.LGL.RGHT.010.XD.DB0514.DFRN,Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.LGL.RGHT.012.XD.DB1519.DFRN,Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology) - Score,sources,Doing Business,1
+IC.CRED.ACC.LGL.RGHT.XD.010.DB0514,Getting credit: Strength of legal rights index (0-10) (DB05-14 methodology),sources,Doing Business,1
+IC.CRED.ACC.LGL.RGHT.XD.012.DB1519,Getting credit: Strength of legal rights index (0-12) (DB15-20 methodology),sources,Doing Business,1
+IC.CRED.ACC.PRVT.CRD.ZS,Getting credit: Credit bureau coverage (% of adults),sources,Doing Business,1
+IC.CRED.ACC.PUBL.CRD.REG.COVR.ZS,Getting credit: Credit registry coverage (% of adults),sources,Doing Business,1
+IC.CUS.DURS.EX,Average time to clear exports through customs (days),topics,Private Sector,12
+IC.CUS.DURS.IM,Average time to clear imports through customs (days),sources,World Development Indicators,2
+IC.DCP.BQC.XD.015.DB1619,Dealing with construction permits: Building quality control index (0-15) (DB16-20 methodology),sources,Doing Business,1
+IC.DMKT.BRK.ZS,Products shipped to supply domestic markets lost due to breakage or spoilage (%),sources,Africa Development Indicators,11
+IC.DMKT.LOSS.ZS,Products shipped to supply domestic markets lost due to theft (%),sources,Africa Development Indicators,11
+IC.ELC.ACES.DFRN.DB1015,Getting electricity (DB10-15 methodology) - Score,sources,Doing Business,1
+IC.ELC.ACES.DFRN.DB1619,Getting electricity (DB16-20 methodology) - Score,sources,Doing Business,1
+IC.ELC.ACES.RK.DB19,Rank: Getting electricity (1=most business-friendly regulations),sources,Doing Business,1
+IC.ELC.ACS.COST,Getting electricity: Cost to get electricity (% of income per capita),sources,Doing Business,1
+IC.ELC.ACS.COST.DFRN,Getting electricity: Cost to get electricity (% of income per capita) - Score,sources,Doing Business,1
+IC.ELC.COMM.TRFF.CG.01.DB1619,Getting electricity: Communication of tariffs and tariff changes (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.DURS,Time to obtain an electrical connection (days),topics,Energy & Mining,5
+IC.ELC.GEN.ZS,Electricity from Generator (%),sources,Africa Development Indicators,11
+IC.ELC.GIFT.ZS,Expected to give gifts to get an electrical connection (% of firms),sources,Africa Development Indicators,11
+IC.ELC.LMTG.OUTG.01.DB1619,Getting electricity: Financial deterrents aimed at limiting outages (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.MONT.OUTG.01.DB1619,Getting electricity: Mechanisms for monitoring outages (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.OUTG,Power outages in firms in a typical month (number),topics,Private Sector,12
+IC.ELC.OUTG.DY,Electrical outages (days),sources,WDI Database Archives,57
+IC.ELC.OUTG.FREQ.DURS.03.DB1619,Getting electricity: Total duration and frequency of outages per customer a year (0-3) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.OUTG.HR,Average duration of power outages (hours),sources,Africa Development Indicators,11
+IC.ELC.OUTG.MN.DB1619,Getting electricity: Minimum outage time (in minutes) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.OUTG.ZS,Firms experiencing electrical outages (% of firms),topics,Private Sector,12
+IC.ELC.PRI.KH.DB1619,Getting electricity: Price of electricity (US cents per kWh) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.PROC.NO,Getting electricity: Procedures (number),sources,Doing Business,1
+IC.ELC.PROC.NO.DFRN,Getting electricity: Procedures (number) - Score,sources,Doing Business,1
+IC.ELC.REGU.MONT.01.DB1619,Getting electricity: Regulatory monitoring (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.RSTOR.01.DB1619,Getting electricity: Mechanisms for restoring service (0-1) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.RSTT.XD.08.DB1619,Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.RSTT.XD.08.DFRN.DB1619,Getting electricity: Reliability of supply and transparency of tariff index (0-8) (DB16-20 methodology) - Score,sources,Doing Business,1
+IC.ELC.SAID.XD.DB1619,Getting electricity: System average interruption duration index (SAIDI) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.SAIF.XD.DB1619,Getting electricity: System average interruption frequency index (SAIFI) (DB16-20 methodology),sources,Doing Business,1
+IC.ELC.TIME,Time required to get electricity (days),topics,Energy & Mining,5
+IC.ELC.TIME.DFRN,Getting electricity: Time (days) - Score,sources,Doing Business,1
+IC.ELEC.COST.PC.ZS,Cost to get electricity connection (% of income per capita),topics,Private Sector,12
+IC.ELEC.PROC,Procedures required to get electricity (number),topics,Private Sector,12
+IC.ELEC.TIME,Time required to get electricity (days),topics,Private Sector,12
+IC.ELEC.XQ,Getting electricity (rank),topics,Private Sector,12
+IC.EMP.FIRE.WK,Firing cost (weeks of wages),sources,WDI Database Archives,57
+IC.EMPL.FTRNG.ZS,Employees offered formal training (%),sources,Africa Development Indicators,11
+IC.EXP.COST.CD,Cost to export (US$ per container),topics,Private Sector,12
+IC.EXP.CSBC.CD,"Cost to export, border compliance (US$)",topics,Private Sector,12
+IC.EXP.CSDC.CD,"Cost to export, documentary compliance (US$)",topics,Private Sector,12
+IC.EXP.DOCS,Documents to export (number),topics,Private Sector,12
+IC.EXP.DURS,Time to export (days),topics,Private Sector,12
+IC.EXP.TMBC,"Time to export, border compliance (hours)",topics,Private Sector,12
+IC.EXP.TMDC,"Time to export, documentary compliance (hours)",topics,Private Sector,12
+IC.FRM.ACC.ZS,Firms with a Checking or Savings Account (% of firms),sources,Africa Development Indicators,11
+IC.FRM.AGE.YR,Age of firm (years),sources,Africa Development Indicators,11
+IC.FRM.AUDIT.ZS,Firms with annual Financial Statement reviewed by External Auditor (% of firms),sources,Africa Development Indicators,11
+IC.FRM.BKWC.ZS,Firms using banks to finance working capital (% of firms),topics,Private Sector,12
+IC.FRM.BNKL.ZS,Firms with a bank loan/line of credit (% of firms),sources,World Development Indicators,2
+IC.FRM.BNKS.ZS,Firms using banks to finance investment (% of firms),topics,Energy & Mining,5
+IC.FRM.BRIB.GRAFT2,Bribery depth (% of public transactions where a gift or informal payment was requested),sources,Enterprise Surveys,13
+IC.FRM.BRIB.GRAFT3,Bribery incidence (percent of firms experiencing at least one bribe payment request),sources,Enterprise Surveys,13
+IC.FRM.BRIB.ZS,Bribery incidence (% of firms experiencing at least one bribe payment request),topics,Private Sector,12
+IC.FRM.CDP.ZS,Firms that use a third party to resolve commercial disputes (% of firms),sources,World Development Indicators,2
+IC.FRM.CMPU.ZS,Firms competing against unregistered firms (% of firms),topics,Private Sector,12
+IC.FRM.CO2.ZS,Firms monitoring own CO2 emissions (% of firms),sources,World Development Indicators,2
+IC.FRM.COMP.ZS,Firms identifying practices of competitors in the Informal Sector as a major constraint (% of firms),sources,Africa Development Indicators,11
+IC.FRM.COR.ZS,Firms identifying corruption as a major constraint (% of firms),sources,Africa Development Indicators,11
+IC.FRM.CORR.CORR1,Percent of firms expected to give gifts in meetings with tax officials,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR10,Percent of firms expected to give gifts to get an operating license,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR11,Percent of firms identifying corruption as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR2,Percent of firms expected to give gifts to secure government contract,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR3,Value of gift expected to secure a government contract (% of contract value),sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR4,"Percent of firms expected to give gifts to public officials ""to get things done""",sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR6,Percent of firms expected to give gifts to get an electrical connection,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR7,Percent of firms expected to give gifts to get a water connection,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR8,Percent of firms expected to give gifts to get a construction permit,sources,Enterprise Surveys,13
+IC.FRM.CORR.CORR9,Percent of firms expected to give gifts to get an import license,sources,Enterprise Surveys,13
+IC.FRM.CORR.CRIME9,Percent of firms identifying the courts system as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.CORR.ZS,Informal payments to public officials (% of firms),topics,Private Sector,12
+IC.FRM.COST.PC.ZS,"Dealing with construction permits, cost (% of income per capita)",sources,Africa Development Indicators,11
+IC.FRM.CRD.ZS,Firms with Line of Credit or Loans from Financial Institutions (% of firms),sources,Africa Development Indicators,11
+IC.FRM.CRDC.FL.ZS,Firms that are fully credit constrained (% of firms),sources,World Development Indicators,2
+IC.FRM.CRDC.PT.ZS,Firms that are partially credit constrained (% of firms),sources,World Development Indicators,2
+IC.FRM.CRIM.ZS,Losses due to theft and vandalism (% of annual sales for affected firms),topics,Private Sector,12
+IC.FRM.CRM.CRIME1,Percent of firms paying for security,sources,Enterprise Surveys,13
+IC.FRM.CRM.CRIME10,Percent of firms experiencing losses due to theft and vandalism,sources,Enterprise Surveys,13
+IC.FRM.CRM.CRIME2_C,"If the establishment pays for security, average security costs (% of annual sales)",sources,Enterprise Surveys,13
+IC.FRM.CRM.CRIME3_C,"If there were losses, average losses due to theft and vandalism (% of annual sales)",sources,Enterprise Surveys,13
+IC.FRM.CRM.CRIME5,Products shipped to supply domestic markets that were lost due to theft (% of product value),sources,Enterprise Surveys,13
+IC.FRM.CRM.CRIME8,"Percent of firms identifying crime, theft and disorder as a major constraint",sources,Enterprise Surveys,13
+IC.FRM.CRT.ZS,"Believing the court system is fair, impartial and uncorrupted (% of firms identifying this as a major contraint)",sources,Africa Development Indicators,11
+IC.FRM.CUS.ZS,Firms that trade identifying customs & trade regulations as a major constraint (% of firms),sources,Africa Development Indicators,11
+IC.FRM.DURS,Time required to obtain an operating license (days),topics,Private Sector,12
+IC.FRM.ELEC.ZS,Electricity (% of firms identifying this as a major constraint),sources,Africa Development Indicators,11
+IC.FRM.EMAIL.ZS,Firms using email to communicate with clients/suppliers (% of firms),sources,Africa Development Indicators,11
+IC.FRM.EMP.GROW.PEFT2,Annual employment growth (%),sources,Enterprise Surveys,13
+IC.FRM.EMPL.PERM,"Average number of permanent, full time employees",sources,Africa Development Indicators,11
+IC.FRM.EMPL.SKILL,Average number of skilled production employees,sources,Africa Development Indicators,11
+IC.FRM.EMPL.TEMP,"Average number of seasonal/temporary, full-time employees",sources,Africa Development Indicators,11
+IC.FRM.EMPL.UNSKILL,Average number of unskilled production workers,sources,Africa Development Indicators,11
+IC.FRM.ENGM.ZS,Firms adopting energy management measures to reduce emissions (% of firms),sources,World Development Indicators,2
+IC.FRM.EXP.ZS,Exporter firms (% of firms),sources,Africa Development Indicators,11
+IC.FRM.EXS.ZS,Firms exporting directly at least 10% of sales (% of firms),sources,World Development Indicators,2
+IC.FRM.FCHAR.CAR1,Age of the establishment (years),sources,Enterprise Surveys,13
+IC.FRM.FCHAR.CAR2,Proportion of private domestic ownership in a firm (%),sources,Enterprise Surveys,13
+IC.FRM.FCHAR.CAR7,Percent of firms with at least 10% of foreign ownership,sources,Enterprise Surveys,13
+IC.FRM.FCHAR.CAR8,Percent of firms with at least 10% of government/state ownership,sources,Enterprise Surveys,13
+IC.FRM.FCHAR.LFORM3,Percent of firms with legal status of Sole Proprietorship,sources,Enterprise Surveys,13
+IC.FRM.FEMM.ZS,Firms with female top manager (% of firms),topics,Private Sector,12
+IC.FRM.FEMO.ZS,Firms with female participation in ownership (% of firms),topics,Private Sector,12
+IC.FRM.FEMW.ZS,Full time female workers (%),sources,Africa Development Indicators,11
+IC.FRM.FIAS.PEFT4,Percent of firms buying fixed assets,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN1,Proportion of investment financed internally (%),sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN10,Value of collateral needed for a loan (% of the loan amount),sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN11,Proportion of loans requiring collateral (%),sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN12,Percent of firms using banks to finance investments,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN13,Percent of firms using banks to finance working capital,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN14,Percent of firms with a bank loan/line of credit,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN15,Percent of firms with a checking or savings account,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN16,Percent of firms identifying access to finance as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN2,Proportion of investment financed by banks (%),sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN20,Percent of firms not needing a loan,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN21,Percent of firms whose recent loan application was rejected,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN22,Percent of firms using supplier/customer credit to finance working capital,sources,Enterprise Surveys,13
+IC.FRM.FIN.FIN7,Proportion of working capital financed by banks (%),sources,Enterprise Surveys,13
+IC.FRM.FINA.ZS,Access to finance (% of firms identifying this as a major constraint),sources,Africa Development Indicators,11
+IC.FRM.FINPUT.ZS,Firms that use material inputs and/or supplies of foreign origin,sources,Africa Development Indicators,11
+IC.FRM.FO.ZS,Firms with at least 10% foreign ownership,sources,World Development Indicators,2
+IC.FRM.FREG.ZS,Firms formally registered when operations started (% of firms),topics,Private Sector,12
+IC.FRM.GEN.GEND1,Percent of firms with female participation in ownership,sources,Enterprise Surveys,13
+IC.FRM.GEN.GEND2,Proportion of permanent full-time workers that are female (%),sources,Enterprise Surveys,13
+IC.FRM.GEN.GEND3,Proportion of permanent full-time non-production workers that are female (%),sources,Enterprise Surveys,13
+IC.FRM.GEN.GEND4,Percent of firms with a female top manager,sources,Enterprise Surveys,13
+IC.FRM.GEN.GEND5,Proportion of permanent full-time production workers that are female (%),sources,Enterprise Surveys,13
+IC.FRM.GEN.GEND6,Percent of firms with majority female ownership,sources,Enterprise Surveys,13
+IC.FRM.INFM.ZS,Firms that do not report all sales for tax purposes (% of firms),topics,Private Sector,12
+IC.FRM.INFOR.INFOR1,Percent of firms competing against unregistered or informal firms,sources,Enterprise Surveys,13
+IC.FRM.INFOR.INFOR2,Percent of firms identifying practices of competitors in the informal sector as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.INFOR.INFOR4,Percent of firms formally registered when they started operations in the country,sources,Enterprise Surveys,13
+IC.FRM.INFOR.INFOR5,Number of years firm operated without formal registration,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN1,Days to obtain an electrical connection (upon application),sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN10_C,"If a generator is used, average proportion of electricity from a generator (%)",sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN11,Percent of firms identifying transportation as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN12,Percent of firms identifying electricity as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN14,Proportion of products lost to breakage or spoilage during shipping to domestic markets (%),sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN16,Percent of firms experiencing electrical outages,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN17,Percent of firms experiencing water insufficiencies,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN2,Number of electrical outages in a typical month,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN3_C,"If there were outages, average duration of a typical electrical outage (hours)",sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN4_C,"If there were outages, average losses due to electrical outages (% of annual sales)",sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN6,Number of water insufficiencies in a typical month,sources,Enterprise Surveys,13
+IC.FRM.INFRA.IN9,Percent of firms owning or sharing a generator,sources,Enterprise Surveys,13
+IC.FRM.INFRM.ZS,Services firms competing against unregistered or informal firms (% of service firms),sources,Africa Development Indicators,11
+IC.FRM.INNOV.T1,Percent of firms with an internationally-recognized quality certification,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T10,Percent of firms that spend on R&D,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T2,Percent of firms with an annual financial statement reviewed by external auditors,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T3,Capacity utilization (%),sources,Enterprise Surveys,13
+IC.FRM.INNOV.T4,Percent of firms using technology licensed from foreign companies,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T5,Percent of firms having their own Web site,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T6,Percent of firms using e-mail to interact with clients/suppliers,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T7,Percent of firms that introduced a new product/service,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T8,Percent of firms whose new product/service is also new to the main market,sources,Enterprise Surveys,13
+IC.FRM.INNOV.T9,Percent of firms that introduced a process innovation,sources,Enterprise Surveys,13
+IC.FRM.ISOC.ZS,Internationally-recognized quality certification (% of firms),topics,Private Sector,12
+IC.FRM.LBRG.ZS,Labor regulations (% of firms identifying this as a major constraint),sources,Africa Development Indicators,11
+IC.FRM.LBSK.ZS,Labor skill level (% of firms identifying this as a major constraint),sources,Africa Development Indicators,11
+IC.FRM.LIC.ZS,Business Licensing and Permits (% of firms Identifying this as major constraint),sources,Africa Development Indicators,11
+IC.FRM.LOTM.ZS,Firms where largest owner is also the top manager (% of firms),sources,World Development Indicators,2
+IC.FRM.METG.ZS,Firms visited or required meetings with tax officials (% of firms),topics,Private Sector,12
+IC.FRM.MGR.EXP,Years of experience of the Top Manager working in the firm's sector,sources,Africa Development Indicators,11
+IC.FRM.NPRD.ZS,"Firms that introduced a new product/service and process, and spent on R&D",sources,World Development Indicators,2
+IC.FRM.OBS.OBST1,Percent of firms choosing access to finance as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST10,Percent of firms choosing labor regulations as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST11,Percent of firms choosing political instability as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST12,Percent of firms choosing practices of the informal sector as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST13,Percent of firms choosing tax administration as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST14,Percent of firms choosing tax rates as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST15,Percent of firms choosing transportation as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST2,Percent of firms choosing access to land as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST3,Percent of firms choosing business licensing and permits as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST4,Percent of firms choosing corruption as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST5,Percent of firms choosing courts as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST6,"Percent of firms choosing crime, theft and disorder as their biggest obstacle",sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST7,Percent of firms choosing customs and trade regulations as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST8,Percent of firms choosing electricity as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OBS.OBST9,Percent of firms choosing inadequately educated workforce as their biggest obstacle,sources,Enterprise Surveys,13
+IC.FRM.OUTG.ZS,Value lost due to electrical outages (% of sales for affected firms),topics,Energy & Mining,5
+IC.FRM.OWN.GOV.ZS,Enterprise ownership - Government/state (%),sources,Africa Development Indicators,11
+IC.FRM.OWN.PFOR.ZS,Enterprise ownership - Private Foreign (%),sources,Africa Development Indicators,11
+IC.FRM.OWN.PLOC.ZS,Enterprise ownership - Private Domestic (%),sources,Africa Development Indicators,11
+IC.FRM.OWN.ZS,Largest shareholder ownership (%),sources,Africa Development Indicators,11
+IC.FRM.PROC,"Dealing with construction, procedures (number)",sources,Africa Development Indicators,11
+IC.FRM.PROD.GROW.PEFT3,Real annual labor productivity growth (%),sources,Enterprise Surveys,13
+IC.FRM.REG.BUS1,Days to obtain an import license,sources,Enterprise Surveys,13
+IC.FRM.REG.BUS2,Days to obtain an operating license,sources,Enterprise Surveys,13
+IC.FRM.REG.BUS3,Days to obtain a construction-related permit,sources,Enterprise Surveys,13
+IC.FRM.REG.BUS5,Percent of firms identifying business licensing and permits as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.REG.REG1,Senior management time spent dealing with the requirements of government regulation (%),sources,Enterprise Surveys,13
+IC.FRM.REG.REG2_C,"If there were visits, average number of visits or required meetings with tax officials",sources,Enterprise Surveys,13
+IC.FRM.REG.REG4,Percent of firms identifying tax rates as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.REG.REG5,Percent of firms identifying tax administration as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.REG.REG6,Percent of firms visited or required to meet with tax officials,sources,Enterprise Surveys,13
+IC.FRM.REG.ZS,Firms Formally Registered when Started Operations in the Country (% of firms),sources,Africa Development Indicators,11
+IC.FRM.RSDV.ZS,Firms that spend on R&D (% of firms),topics,Private Sector,12
+IC.FRM.SEC.ZS,Firms Paying for Security (% of firms),sources,Africa Development Indicators,11
+IC.FRM.SECR.ZS,Security costs (% of sales),sources,Africa Development Indicators,11
+IC.FRM.SLS.GROW.PEFT1,Real annual sales growth (%),sources,Enterprise Surveys,13
+IC.FRM.TAXAD.ZS,Tax Administration (% of firms identifying this as major constraint),sources,Africa Development Indicators,11
+IC.FRM.TAXE.ZS,Firms filling taxes electronically (% of firms),sources,World Development Indicators,2
+IC.FRM.TAXR.ZS,Tax rates (% of firms identifying this as major constraint),sources,Africa Development Indicators,11
+IC.FRM.TECH.ZS,Firms using technology licensed from foreign companies (% of firms),sources,Africa Development Indicators,11
+IC.FRM.THEV.ZS,Firms experiencing losses due to theft and vandalism (% of firms),topics,Private Sector,12
+IC.FRM.TIME,Time required to deal with construction permits (days),topics,Private Sector,12
+IC.FRM.TRD.TR1,Days to clear direct exports through customs,sources,Enterprise Surveys,13
+IC.FRM.TRD.TR11,Percent of firms using material inputs and/or supplies of foreign origin,sources,Enterprise Surveys,13
+IC.FRM.TRD.TR16,Percent of firms exporting directly (at least 10% of sales),sources,Enterprise Surveys,13
+IC.FRM.TRD.TR17,Percent of firms exporting directly or indirectly (at least 10% of sales),sources,Enterprise Surveys,13
+IC.FRM.TRD.TR2,Days to clear imports from customs,sources,Enterprise Surveys,13
+IC.FRM.TRD.TR5,Proportion of total sales that are exported directly (%),sources,Enterprise Surveys,13
+IC.FRM.TRD.TR8,Proportion of total inputs that are of foreign origin (%),sources,Enterprise Surveys,13
+IC.FRM.TRD.TR9,Percent of firms identifying customs and trade regulations as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.TRNG.ZS,Firms offering formal training (% of firms),topics,Private Sector,12
+IC.FRM.TRSP.ZS,Transportation (% of firms identifying this as a major constraint),sources,Africa Development Indicators,11
+IC.FRM.WEB.ZS,Firms using its own website (% of firms),sources,Africa Development Indicators,11
+IC.FRM.WRKF.WK1,Percent of firms offering formal training,sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK10,Percent of firms identifying an inadequately educated workforce as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK14,Number of workers,sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK15,Proportion of production workers (out of all permanent workers),sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK17,Proportion of temporary workers (out of all workers),sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK18,Proportion of permanent workers (out of all workers),sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK19,Proportion of skilled workers (out of all production workers) (%),sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK2,Proportion of workers offered formal training (%),sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK8,Years of the top manager's experience working in the firm's sector,sources,Enterprise Surveys,13
+IC.FRM.WRKF.WK9,Percent of firms identifying labor regulations as a major constraint,sources,Enterprise Surveys,13
+IC.FRM.WTLIC.DURS,Number of years firms operated without formal registration,sources,Africa Development Indicators,11
+IC.FRM.XQ,Dealing with construction permits (rank),sources,Africa Development Indicators,11
+IC.GCON.GIFT.ZS,Expected to give gifts to secure a Government contract (% of firms),sources,Africa Development Indicators,11
+IC.GOV.DURS.ZS,Time spent dealing with the requirements of government regulations (% of senior management time),topics,Private Sector,12
+IC.GRAFT.XQ,Incidence of Graft index,sources,Africa Development Indicators,11
+IC.IMP.COST.CD,Cost to import (US$ per container),topics,Private Sector,12
+IC.IMP.CSBC.CD,"Cost to import, border compliance (US$)",topics,Private Sector,12
+IC.IMP.CSDC.CD,"Cost to import, documentary compliance (US$)",topics,Private Sector,12
+IC.IMP.DOCS,Documents to import (number),topics,Private Sector,12
+IC.IMP.DURS,Time to import (days),topics,Private Sector,12
+IC.IMP.GIFT.ZS,Expected to give gifts to get an Import License (% of firms),sources,Africa Development Indicators,11
+IC.IMP.TMBC,"Time to import, border compliance (hours)",topics,Private Sector,12
+IC.IMP.TMDC,"Time to import, documentary compliance (hours)",topics,Private Sector,12
+IC.ISV.DURS,Time to resolve insolvency (years),topics,Private Sector,12
+IC.LGL.CONT.XQ,Enforcing contracts (rank),sources,Africa Development Indicators,11
+IC.LGL.COST.DEBT.ZS,"Enforcing contracts, cost (% of claim)",sources,Africa Development Indicators,11
+IC.LGL.CRED.XQ,Strength of legal rights index (0=weak to 12=strong),topics,Financial Sector,7
+IC.LGL.DURS,Time required to enforce a contract (days),topics,Private Sector,12
+IC.LGL.EMPL.XQ,Rigidity of employment index (0=less rigid to 100=more rigid),sources,WDI Database Archives,57
+IC.LGL.LACK.ZS,Courts (% of managers surveyed lacking confidence in courts to uphold property rights),sources,WDI Database Archives,57
+IC.LGL.PROC,Procedures to enforce a contract (number),sources,Africa Development Indicators,11
+IC.LOAN.COL.ZS,Loans requiring collateral (%),sources,Africa Development Indicators,11
+IC.MNG.IND,Management practices index,sources,World Development Indicators,2
+IC.OPER.GIFT.ZS,Expected to give gifts to get an Operating License (% of firms),sources,Africa Development Indicators,11
+IC.PRP.COST.PROP.ZS,Cost of registering property (% of property value),sources,Africa Development Indicators,11
+IC.PRP.DURS,Time required to register property (days),topics,Private Sector,12
+IC.PRP.PROC,Procedures to register property (number),topics,Private Sector,12
+IC.PRP.XQ,Registering property (rank),sources,Africa Development Indicators,11
+IC.REG.CAP.PC.ZS,Minimum capital for starting a business (% of income per capita),sources,Africa Development Indicators,11
+IC.REG.COST.PC.FE.ZS,"Cost of business start-up procedures, female (% of GNI per capita)",topics,Private Sector,12
+IC.REG.COST.PC.FE.ZS.DRFN,Starting a business: Cost - Women (% of income per capita) - Score,sources,Doing Business,1
+IC.REG.COST.PC.MA.ZS,"Cost of business start-up procedures, male (% of GNI per capita)",topics,Private Sector,12
+IC.REG.COST.PC.MA.ZS.DFRN,Starting a business: Cost - Men (% of income per capita) - Score,sources,Doing Business,1
+IC.REG.COST.PC.ZS,Cost of business start-up procedures (% of GNI per capita),topics,Private Sector,12
+IC.REG.DFRN.PC.DFRN,Starting a business: Paid-in Minimum capital (% of income per capita) - Score,sources,Doing Business,1
+IC.REG.DURS,Time required to start a business (days),topics,Private Sector,12
+IC.REG.DURS.FE,"Time required to start a business, female (days)",topics,Private Sector,12
+IC.REG.DURS.FE.DY,Starting a business: Time - Women (days),sources,Doing Business,1
+IC.REG.DURS.FE.DY.DRFN,Starting a business: Time - Women (days)- Score,sources,Doing Business,1
+IC.REG.DURS.MA,"Time required to start a business, male (days)",topics,Private Sector,12
+IC.REG.DURS.MA.DY,Starting a business: Time - Men (days),sources,Doing Business,1
+IC.REG.DURS.MA.DY.DFRN,Starting a business: Time - Men (days) - Score,sources,Doing Business,1
+IC.REG.MIN.CAP,Starting a business: Minimum capital (% of income per capita),sources,Doing Business,1
+IC.REG.PROC,Start-up procedures to register a business (number),topics,Private Sector,12
+IC.REG.PROC.FE,"Start-up procedures to register a business, female (number)",topics,Private Sector,12
+IC.REG.PROC.FE.NO,Starting a business: Procedures required - Women (number),sources,Doing Business,1
+IC.REG.PROC.FE.NO.DFRN,Starting a business: Procedures required - Women (number) - Score,sources,Doing Business,1
+IC.REG.PROC.MA,"Start-up procedures to register a business, male (number)",topics,Private Sector,12
+IC.REG.PROC.MA.NO,Starting a business: Procedures required - Men (number),sources,Doing Business,1
+IC.REG.PROC.MA.NO.DFRN,Starting a business: Procedures required - Men (number) - Score,sources,Doing Business,1
+IC.REG.PRRT.COST.PRT.VAL,Registering property: Cost (% of property value),sources,Doing Business,1
+IC.REG.PRRT.COST.PRT.VAL.DFRN,Registering property: Cost (% of property value) - Score,sources,Doing Business,1
+IC.REG.PRRT.DFRN.DB0515,Registering property (DB05-15 methodology) - Score,sources,Doing Business,1
+IC.REG.PRRT.DFRN.DB1719,Registering property (DB17-20 methodology) - Score,sources,Doing Business,1
+IC.REG.PRRT.DURS.TM,Registering property: Time (days),sources,Doing Business,1
+IC.REG.PRRT.DURS.TM.DRFN,Registering property: Time (days) - Score,sources,Doing Business,1
+IC.REG.PRRT.EQACCS.XD.08.DB1619,Registering property: Equal access to property rights index (-2-0) (DB17-20 methodology),sources,Doing Business,1
+IC.REG.PRRT.GEO.COVR.XD.08.DB1619,Registering property: Geographic coverage index (0-8) (DB16-20 methodology),sources,Doing Business,1
+IC.REG.PRRT.LAND.DISP.XD.08.DB1619,Registering property: Land dispute resolution index (0-8) (DB16-20 methodology),sources,Doing Business,1
+IC.REG.PRRT.PROC.NO,Registering property: Procedures (number),sources,Doing Business,1
+IC.REG.PRRT.PROC.NO.DFRN,Registering property: Procedures (number) - Score,sources,Doing Business,1
+IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16,Registering property: Quality of land administration index (0-30) (DB17-20 methodology),sources,Doing Business,1
+IC.REG.PRRT.QUAL.LNDADM.XD.030.DB16.DFRN,Registering property: Quality of land administration index (0-30) (DB17-20 methodology) - Score,sources,Doing Business,1
+IC.REG.PRRT.REG.RK.DB19,Rank: Registering property (1=most business-friendly regulations),sources,Doing Business,1
+IC.REG.PRRT.RELI.INFR.XD.09.DB1619,Registering property: Reliability of infrastructure index (0-8) (DB16-20 methodology),sources,Doing Business,1
+IC.REG.PRRT.TRAP.INFO.XD.06.DB1619,Registering property: Transparency of information index (0-6) (DB16-20 methodology),sources,Doing Business,1
+IC.REG.STRT.BUS.DFRN,Starting a business - Score,sources,Doing Business,1
+IC.REG.STRT.BUS.RK.DB19,Rank: Starting a business (1=most business-friendly regulations),sources,Doing Business,1
+IC.REG.XQ,Starting a business (rank),sources,Africa Development Indicators,11
+IC.SALE.DOM.ZS,Domestic Sales (% sales),sources,Africa Development Indicators,11
+IC.SME.EMPL.ZS,MSME employment (% of total employment),sources,WDI Database Archives,57
+IC.SME.TOTL,"Micro, small and medium enterprises (number)",sources,WDI Database Archives,57
+IC.SME.TOTL.P3,"Micro, small and medium enterprises (per 1,000 people)",sources,WDI Database Archives,57
+IC.TAX.DURS,Time to prepare and pay taxes (hours),topics,Private Sector,12
+IC.TAX.GIFT.ZS,Firms expected to give gifts in meetings with tax officials (% of firms),topics,Private Sector,12
+IC.TAX.LABR.CP.ZS,Labor tax and contributions (% of commercial profits),topics,Private Sector,12
+IC.TAX.LBR.ZS,"Paying taxes, labor tax and contributions (%)",sources,Africa Development Indicators,11
+IC.TAX.METG,Number of visits or required meetings with tax officials (average for affected firms),topics,Private Sector,12
+IC.TAX.OTH.ZS,"Paying taxes, other taxes (%)",sources,Africa Development Indicators,11
+IC.TAX.OTHR.CP.ZS,Other taxes payable by businesses (% of commercial profits),topics,Private Sector,12
+IC.TAX.PAYM,Tax payments (number),topics,Private Sector,12
+IC.TAX.PFT.ZS,"Paying taxes, profit tax (%)",sources,Africa Development Indicators,11
+IC.TAX.PRFT.CP.ZS,Profit tax (% of commercial profits),topics,Private Sector,12
+IC.TAX.TOTL.CP.ZS,Total tax rate (% of commercial profits),topics,Private Sector,12
+IC.TAX.TOTL.GP.ZS,Total tax payable by businesses (% of gross profit),sources,WDI Database Archives,57
+IC.TAX.XQ,Paying taxes (rank),sources,Africa Development Indicators,11
+IC.TEL.DURS,Delay in obtaining a mainline telephone connection (days),sources,Africa Development Indicators,11
+IC.TEL.GIFT.ZS,Expected to give gifts to get a phone connection (% of firms),sources,Africa Development Indicators,11
+IC.TRD.XQ,Trading across borders (rank),sources,Africa Development Indicators,11
+IC.VAL.COL.ZS,Value of collateral needed for a loan (% of the loan amount),sources,Africa Development Indicators,11
+IC.VALG.GIFT.ZS,Value of gift expected to secure Government Contract (% of Contract),sources,Africa Development Indicators,11
+IC.WAT.DURS,Delay in obtaining a water connections (days),sources,Africa Development Indicators,11
+IC.WAT.GIFT.ZS,Expected to give gifts to get a water connection (% of firms),sources,Africa Development Indicators,11
+IC.WEF.LLCD.FE,Number of female directors,topics,Private Sector,12
+IC.WEF.LLCD.FE.ZS,Share of female directors (% of total directors),topics,Private Sector,12
+IC.WEF.LLCD.MA,Number of male directors,topics,Private Sector,12
+IC.WEF.LLCD.MA.ZS,Share of male directors (% of total directors),topics,Private Sector,12
+IC.WEF.LLCO.FE,Number of female business owners,topics,Private Sector,12
+IC.WEF.LLCO.FE.ZS,Share of female business owners (% of total business owners),topics,Private Sector,12
+IC.WEF.LLCO.MA,Number of male business owners,topics,Private Sector,12
+IC.WEF.LLCO.MA.ZS,Share of male business owners (% of total business owners),topics,Private Sector,12
+IC.WEF.SOLO.FE,Number of female sole proprietors,topics,Private Sector,12
+IC.WEF.SOLO.FE.ZS,Share of female sole proprietors (% of sole proprietors),topics,Private Sector,12
+IC.WEF.SOLO.MA,Number of male sole proprietors,topics,Private Sector,12
+IC.WEF.SOLO.MA.ZS,Share of male sole proprietors (% of sole proprietors),topics,Private Sector,12
+IC.WRH.DURS,Time required to build a warehouse (days),topics,Private Sector,12
+IC.WRH.PROC,Procedures to build a warehouse (number),topics,Private Sector,12
+ID.OWN.TOTL.FE.ZS,"ID ownership, female (% of female population ages 15+)",sources,Gender Statistics,14
+ID.OWN.TOTL.MA.ZS,"ID ownership, male (% of male population ages 15+)",sources,Gender Statistics,14
+IDX.HDI,Human Development Index,sources,Indonesia Database for Policy and Economic Research,45
+IDX.HDI.REV,"Human Development Index, revised method",sources,Indonesia Database for Policy and Economic Research,45
+IE.ICT.PCAP.CD,Information and communication technology expenditure per capita (current US$),topics,Infrastructure,9
+IE.ICT.TOTL.CD,Information and communication technology expenditure (current US$),topics,Infrastructure,9
+IE.ICT.TOTL.GD.ZS,Information and communication technology expenditure (% of GDP),topics,Infrastructure,9
+IE.PPI.ENGY.CD,Investment in energy with private participation (current US$),topics,Energy & Mining,5
+IE.PPI.ICTI.CD,Investment in ICT with private participation (current US$),topics,Infrastructure,9
+IE.PPI.TELE.CD,Investment in telecoms with private participation (current US$),topics,Infrastructure,9
+IE.PPI.TRAN.CD,Investment in transport with private participation (current US$),topics,Infrastructure,9
+IE.PPI.WATR.CD,Investment in water and sanitation with private participation (current US$),topics,Infrastructure,9
+IE.PPN.ENGY.CD,Public private partnerships investment in energy (current US$),topics,Infrastructure,9
+IE.PPN.ICTI.CD,Public private partnerships investment in ICT (current US$),topics,Infrastructure,9
+IE.PPN.TELE.CD,Public private partnerships investment in telecom (current US$),topics,Infrastructure,9
+IE.PPN.TRAN.CD,Public private partnerships investment in transport (current US$),topics,Infrastructure,9
+IE.PPN.WATR.CD,Public private partnerships investment in water and sanitation (current US$),topics,Infrastructure,9
+IMPCOV,"Foreign Reserves, Months Import Cover, Goods",sources,Global Economic Monitor,15
+IN.AGR.GR.IRRIG.AREA,Gross Irrigated Area under all crops ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.AGR.YLD.ALL,Yield - All Foodgrains (Kgs/Hectare),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.AGR.YLD.RICE,Yield - Rice (Kgs/Hectare),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.AGR.YLD.SUGRCANE,Yield - Sugarcane (Kgs/Hectare),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.NOM.INR,Nominal GSDP Per Capita (INR),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.NOM.USD,Nominal GSDP Per Capita (USD),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.REAL.INR,Real GSDP Per Capita (INR),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.REAL.INR.GRWTHRAT,Real GSDP Per Capita (INR) Growth Rate,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.REAL.USD,Real GSDP Per Capita (USD),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.GSDP.PERCAP.REAL.USD.GRWTHRAT,Real GSDP Per Capita (USD) Growth Rate,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.GRWTHRAT,Decadal Growth of Population (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.GRWTHRAT.RURL,"Decadal Growth of Population, Rural (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.GRWTHRAT.URBN,"Decadal Growth of Population, Urban (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.RURL,"Population, Rural (Thousands)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.RURL.PCT,"Population, Rural (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.TOTL,Population (Thousands),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EC.POP.URBN.PCT,"Population, Urban (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.ENROL.GEN,Enrolment by Caste-General (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.ENROL.MSLM,Enrolment by Caste-Muslim (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.ENROL.OBC,Enrolment by Caste-OBC (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.ENROL.SC,Enrolment by Caste-SC (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.ENROL.ST,Enrolment by Caste-ST (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.GR.ENRL.RATIO,Gross Enrolment Ratio (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.NET.ENRL.RATIO,Net Enrolment Ratio (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.PUPIL.TCHR,Pupil-Teacher Ratio,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.TCHR.NUM,Teachers (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.EDU.TCHRTRNG.NUM,"Teacher Education Institutes (DIETs, CTEs, IASEs)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.ELEC.CAP,Total- Installed Capacity (MW),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.ELEC.GEN,Total-Electricity Generated Gross (GWh),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.ELEC.PERCAP.CONSMPN,Utilities/Non Utilities Per Capita Consumption (KWh),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.ELEC.PERCAP.CONSMPN.NONUTLTS,Non Utilities Per Capita Consumption (KWh),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.ELEC.PERCAP.CONSMPN.TOTL,Total (Utilities & Non-Utilities) Per Capita Consumption (KWh),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.GRID.RENEW.CAP,Grid interactive renewable power installed capacity (MW),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.TOWNS.ELECTRFIED.NUM,Number of Towns Electrified (Per 2001 Census),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.TOWNS.ELECTRFIED.PERCENT,Number of Towns Electrified (Percentage),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.TOWNS.TOTL,Number of Towns Total (Per 2001 Census),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.VILLAG.ELECTRFIED,Number of Villages Electrified,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.VILLAG.ELECTRFIED.PERCENT,Number of Villages Electrified (Percentage),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENRGY.VILLAG.TOTL,Number of Villages Total (Per 2001 Census),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.CO2.CONC,CO2 Emission (in thousand metric tons of Carbon),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.CO2.PERCAP.CONC,Per Capita Emission ( metric tons of Carbon),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.AGRILAND.AREA,Agricultural land (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.AGRILAND.PCT,Ratio: Agricultural land to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.BUILT.AREA,Built-up land (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.BUILT.PCT,Ratio: Built-up land to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.FOREST.AREA,Forest (Non- tidal)/ Plantation (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.FOREST.PCT,Ratio: Forest (Non- tidal)/ Plantation to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.OTHFEATURES.AREA,Other features (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.OTHFEATURES.PCT,Ratio: Other features to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.SHORELAND.AREA,Shore land (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.SHORELAND.PCT,Ratio: Shore land to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WASTELAND.AREA,Barren wasteland (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WASTELAND.PCT,Ratio: Barren/ wasteland to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WATERBODIES.AREA,Water bodies (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WATERBODIES.PCT,Ratio: Water bodies to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WETLAND.AREA,Wetlands (SQ KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.COASTALZONE.WETLAND.PCT,Ratio: Wetland to total coastal area of state (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.CROPINTENSIT.PCT,Cropping Intensity (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.FOREST.AREA,Forest Cover ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.FOREST.PCT,Forest Cover (Percent of Geographical Area),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.GEO.AREA,Geographical Area ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.GROSS.IRRIG.AREA,Gross Irrigated Area ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.IRRIGTOCROPPED.PCT,Ratio: Gross Irrigated to Total Cropped Area (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.NET.IRRIG.AREA,Net Irrigated Area ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.NO2.CONC,AIr Quality: Nitrogen Oxide (Micrograms/Cubic Meter),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.NOCULTIVATION.AREA,Area not available for cultivation ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.OTHR.UNCULTIVABL.AREA,Other uncultivated (excl. fallow land) ('000 hectares),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.PM.CONC,AIr Quality: Particulate Matter (Micrograms/Cubic Meter),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.ENV.SO2.CONC,AIr Quality: Sulfur Dioxide (Micrograms/Cubic Meter),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.COMMBANK.NUM,Commercial Bank Offices (Total),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.FININCL.INDX,Financial Inclusion Index (CRISIL Method),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.BNKG.SRVC.RURL,Total number of households availing banking services - Rural,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.BNKG.SRVC.TOTL,Total number of households availing banking services,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.BNKG.SRVC.URBN,Total number of households availing banking services - Urban,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.RURL,Total number of households -Rural,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.TOTL,Total number of households,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.HH.URBN,Total number of households - Urban,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.FIN.POP.PERBANK,Average Population Per Bank Office (In Thousands),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.AUXNURSE.NUM,Auxiliary nursing midwives,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.CHC.NUM,Number of Community Health Centers (CHCs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.DISTHOSPTL.NUM,Number of District Hospitals,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.DOCS.PER100K,"Number of Government Allopathic Doctors Per 100,000 Population",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.GOVHOSPTL.BEDS.NUM,Government Hospitals Number of beds,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.GOVHOSPTL.BEDS.PER100K,"Government Hospitals Number of beds Per 100,000 Population",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.GOVHOSPTL.NUM,Government Hospitals (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.GOVHOSPTL.PER100K,"Government Hospitals (Number) Per 100,000 Population",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.HIVDEATH.EST,HIV/AIDS Related Death Estimates,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.HIVINFECTION.EST,HIV Infection Estimates,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.HLTHSTAFF.NUM,Health visitors & Health supervisors,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.MALARIA.CASES,Malaria - Cases,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.MALARIA.DEATH,Malaria - Deaths,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.HLTH.SUBCTR.NUM,Number of Sub-Centers (SCs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.ELEC.KM,Electrified Route Kilometres,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.FRGT.LEAD,Freight Traffic (revenue earning) - Lead (Average no. of KMs per tonne),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.FRGT.RATE,"Average Freight Rate per Tonne-KM (in Paise, for all commodities)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.FRGT.RVENU.NET.TON.KM,Freight Traffic (revenue earning) -Net Tonne Kilometers (millions),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.FRGT.SPEED,Speed of Freight Trains (KMs/hour),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.FRGT.TONS.ORIG,Freight Traffic - Tonnes originating (Millions),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.LOCO.NO,Locomotives - Number in service,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.LOCO.TRACT.KG3,Locomotives -Total tractive effort ('000 Kgs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.PASG.KM.NONSUB,"Passenger-Kilometers Traffic (Non-Suburban), in millions",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.PASG.KM.SUB,"Passenger-Kilometers Traffic (Suburban), in millions",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.PASG.KM.TOTL,"Total Passenger-Kilometers Traffic, in millions",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.RUN.KM,Running Track Kilometres,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.TOTL.KM,Total Route Kilometers,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.TRKDENSITY.NTKM,Net tonnes Kms. per Route Km. per Annum (' 000s),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.TRKDENSITY.TRAIN,Train Kms. per Running Track Km. per Day,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.WAGN.LEAD,Wagon Usage: Avergae Wagon Lead during run (in Tonnes),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.WAGN.NTKM.PER.WAGNDAY,Wagon Usage: Net Tonne-KMs/Weagon Day,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.WAGN.USAGE,Wagon Usage (KMs/Wagon Day),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRS.WAGON.NO,Number of wagons in service (All Gauges),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.IS.RRSTRKDENSITY.PASG,Passenger Kms. per Route Km. per Annum 000s,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LABR.MYS,Labor Force ages 15+ Rural & Urban: Mean Years of Schooling,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL,LFPR per 1000 for ages 15+ Rural & Urban: Level All Levels,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.DIPL,LFPR per 1000 for ages 15+ Rural & Urban: Level Diploma/Cert,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.HSCNDRY,LFPR per 1000 for ages 15+ Rural & Urban: Level Hr. Secondary,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.MIDDL,LFPR per 1000 for ages 15+ Rural & Urban: Level Middle,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.NOTLITRT,LFPR per 1000 for ages 15+ Rural & Urban: Level Not Literate,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.PG,LFPR per 1000 for ages 15+ Rural & Urban: Level Degree + Post Graduate,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.PRIMRY,LFPR per 1000 for ages 15+ Rural & Urban: Level Literacy upto Primary,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.LABR.LFPR.TOTL.SCNDRY,LFPR per 1000 for ages 15+ Rural & Urban: Level Secondary,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.ASSETS.LANDMOBILE.PCT,"Households with telephones (Landline & Mobile, %)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HCR.EST.RURL,Poverty HCR Estimates (%) - Rural,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HCR.EST.TOTL,Poverty HCR Estimates (%) - Total,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HCR.EST.URBN,Poverty HCR Estimates (%) - Urban,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.COMP.INTERNET.PCT,"Households having computer laptops (w/Internet, %)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.COMP.NOINTERNET.PCT,"Households having computer laptops (w/o Internet, %)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.COMPUTERS.PCT,Households having computer laptops (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.LANDLINEPHONE.PCT,"Households with telephones (Landline, %)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.MOBILEPHONE.PCT,"Households with telephones (Mobile, %)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.NUM,Households with assets (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.ASSETS.PHONE.PCT,Households with telephones (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRKNGWATER,Total households with drinking water facility,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRKNGWATER.AWAY,Availability of drinking water from a source away,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRKNGWATER.NEAR,Availability of drinking water source near the premises,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRKNGWATER.WITHIN,Availability of drinking water source within the premises,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRNKNGWATER.RURL.PCT,Households Access to Safe Drinking Water - Rural (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRNKNGWATER.TOTL.PCT,Households Access to Safe Drinking Water - Total (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.DRNKNGWATER.URBN.PCT,Households Access to Safe Drinking Water - Urban (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HH.SLUMS.NUM,Households in Slums (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.HOUSNG.URBN.NUM,"Urban housing - approved (number, cumulative total)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.INF.MORTRATE,"Infant Mortality Rate (per 1,000)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.INF.MORTRATE.UNDR5,"Under 5 Mortality Rate (Per 1,000)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.FEMALE,Literacy Rate Female (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.MALE,Literacy Rate Male (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.RURL,"Literacy rate, Rural (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.SLUMS.FEMALE.PCT,Literacy Rate in Slums-Female (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.SLUMS.MALE.PCT,Literacy Rate in Slums - Male (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.SLUMS.TOTL.PCT,Literacy Rate in Slums - Total (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.TOTL,Literacy Rate (%),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LIT.RAT.URBN,"Literacy rate, Urban (%)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LTRIN.POV.AWAY,Latrine not available within premises,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.LTRIN.POV.WITHIN,Latrine facility available within premises,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.5TO9YEARS.NUM,"Migrants, Total: 5 to 9 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.FEMALE.1TO4YEARS.NUM,"Migrants, Female 1 to 4 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.FEMALE.5TO9YEARS.NUM,"Migrants, Female: 5 to 9 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.FEMALE.NUM,Migrants - Female (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.FEMALE.UNDER1YEAR.NUM,"Migrants, Female: less than 1 Year residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.MALE.1TO4YEARS.NUM,"Migrants, Male: 1 to 4 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.MALE.5TO9YEARS.NUM,"Migrants, Male: 5 to 9 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.MALE.NUM,Migrants - Male (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.MALE.UNDER1YEAR.NUM,"Migrants, Male: less than 1 Year residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.TOTL.1TO4YEARS.NUM,"Migrants, Total: 1 to 4 years residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.TOTL.NUM,"Migrants, Total (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.MIGRNTS.TOTL.UNDER1YEAR.NUM,"Migrants, Total: less than 1 Year residence (Number)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.SLUM.POP.FEMALE.NUM,Total Slum Population - Female (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.SLUM.POP.MALE.NUM,Total Slum Population - Male (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.SLUM.POP.TOTL.NUM,Total Slum Population (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.WORKERS.SLUMS.FEMALE.NUM,Total Workers in Slums - Female (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.WORKERS.SLUMS.MALE.NUM,Total Workers in Slums - Male (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.POV.WORKERS.SLUMS.TOTL.NUM,Total Workers in Slums (Number),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.NATLHWY.BELOWSTD,National Highways (surfaced length) - Below standard single lane (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.NATLHWY.DBLLANE,National Highways (surfaced length) - Standard double lane (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.NATLHWY.MULTLANE,National Highways (surfaced length) - Standard multi lane (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.NATLHWY.ONELANESTD,National Highways (surfaced length) - Standard single lane (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.NATLHWY.TOTL,National Highways (surfaced length) - Total (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RD.URBN,Urban Roads (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RD.URBN.BTCC.SURFACE,"Urban Roads, B.T/C.C surface (KMs)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RD.URBN.SURFACED,Urban Roads Surfaced (KMs),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RD.URBN.WBM.SURFACE,"Urban Roads, W.B.M. surface (KMs)",sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RDCRASH.INJURD.NUM,Number of seriously injured in road traffic crashes,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RDCRASH.NUM,Number of road crashes,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.RURLRD.DENSIT,Rural Road Density (KMs/1000 Population),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.TRAFDEATH.NUM,Number of road traffic deaths,sources,Country Partnership Strategy for India (FY2013 - 17),41
+IN.TRANSPORT.URBNRD.DENSIT,Urban Road Density (KMs Per 1000 Population),sources,Country Partnership Strategy for India (FY2013 - 17),41
+IP.IDS.NRCT,"Industrial design applications, nonresident, by count",topics,Infrastructure,9
+IP.IDS.RSCT,"Industrial design applications, resident, by count",topics,Infrastructure,9
+IP.JRN.ARTC.SC,Scientific and technical journal articles,topics,Science & Technology,14
+IP.PAT.NRES,"Patent applications, nonresidents",topics,Science & Technology,14
+IP.PAT.RESD,"Patent applications, residents",topics,Science & Technology,14
+IP.TMK.AGGD,"Trademark applications, aggregate direct",sources,WDI Database Archives,57
+IP.TMK.MDRD,"Trademark applications, Madrid",sources,WDI Database Archives,57
+IP.TMK.NRCT,"Trademark applications, nonresident, by count",topics,Infrastructure,9
+IP.TMK.NRES,"Trademark applications, direct nonresident",topics,Science & Technology,14
+IP.TMK.RESD,"Trademark applications, direct resident",topics,Science & Technology,14
+IP.TMK.RSCT,"Trademark applications, resident, by count",topics,Infrastructure,9
+IP.TMK.TOTL,"Trademark applications, total",topics,Science & Technology,14
+IPTOTNSKD,"Industrial Production, constant US$",sources,Global Economic Monitor,15
+IPTOTSAKD,"Industrial Production, constant US$, seas. adj.",sources,Global Economic Monitor,15
+IQ.CPA.BREG.XQ,CPIA business regulatory environment rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.DEBT.XQ,CPIA debt policy rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.ECON.XQ,CPIA economic management cluster average (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.ENVR.XQ,CPIA policy and institutions for environmental sustainability rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.FINQ.XQ,CPIA quality of budgetary and financial management rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.FINS.XQ,CPIA financial sector rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.FISP.XQ,CPIA fiscal policy rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.GNDR.XQ,CPIA gender equality rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.HRES.XQ,CPIA building human resources rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.IRAI.XQ,IDA resource allocation index (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.MACR.XQ,CPIA macroeconomic management rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.PADM.XQ,CPIA quality of public administration rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.PRES.XQ,CPIA equity of public resource use rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.PROP.XQ,CPIA property rights and rule-based governance rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.PROT.XQ,CPIA social protection rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.PUBS.XQ,CPIA public sector management and institutions cluster average (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.REVN.XQ,CPIA efficiency of revenue mobilization rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.SOCI.XQ,CPIA policies for social inclusion/equity cluster average (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.STRC.XQ,CPIA structural policies cluster average (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.TRAD.XQ,CPIA trade rating (1=low to 6=high),topics,Public Sector,13
+IQ.CPA.TRAN.XQ,"CPIA transparency, accountability, and corruption in the public sector rating (1=low to 6=high)",topics,Public Sector,13
+IQ.ICR.RISK.XQ,ICRG composite risk rating (0=highest risk to 100=lowest),sources,WDI Database Archives,57
+IQ.PPN.REGQ.S0,Assessment of country’s adherence to the best regulatory practices at the preparation stage of PPP project (scale 1-100),sources,PPPs Regulatory Quality,61
+IQ.PPN.REGQ.S1,Assessment of country’s adherence to the best regulatory practices at the procurement stage of PPP project (scale 1-100),sources,PPPs Regulatory Quality,61
+IQ.PPN.REGQ.S2,Assessment of country’s adherence to the best regulatory practices at the management stage of PPP project (scale 1-100),sources,PPPs Regulatory Quality,61
+IQ.PPN.REGQ.S3,"Assessment of country’s adherence to the best regulatory practices, procurement of unsolicited proposals (scale 1-100)",sources,PPPs Regulatory Quality,61
+IQ.SCI.MTHD,Methodology assessment of statistical capacity (scale 0 - 100),topics,Public Sector,13
+IQ.SCI.OVRL,Overall level of statistical capacity (scale 0 - 100),topics,Public Sector,13
+IQ.SCI.PRDC,Periodicity and timeliness assessment of statistical capacity (scale 0 - 100),topics,Public Sector,13
+IQ.SCI.SRCE,Source data assessment of statistical capacity (scale 0 - 100),topics,Public Sector,13
+IQ.SPI.OVRL,Statistical performance indicators (SPI): Overall score (scale 0-100),topics,Public Sector,13
+IQ.SPI.PIL1,Statistical performance indicators (SPI): Pillar 1 data use score (scale 0-100),topics,Public Sector,13
+IQ.SPI.PIL2,Statistical performance indicators (SPI): Pillar 2 data services score (scale 0-100),topics,Public Sector,13
+IQ.SPI.PIL3,Statistical performance indicators (SPI): Pillar 3 data products score (scale 0-100),topics,Public Sector,13
+IQ.SPI.PIL4,Statistical performance indicators (SPI): Pillar 4 data sources score (scale 0-100),topics,Public Sector,13
+IQ.SPI.PIL5,Statistical performance indicators (SPI): Pillar 5 data infrastructure score (scale 0-100),topics,Public Sector,13
+IQ.WEF.CUST.XQ,"Burden of customs procedure, WEF (1=extremely inefficient to 7=extremely efficient)",topics,Private Sector,12
+IQ.WEF.PORT.XQ,"Quality of port infrastructure, WEF (1=extremely underdeveloped to 7=well developed and efficient by international standards)",topics,Infrastructure,9
+IS.AIR.DPRT,"Air transport, registered carrier departures worldwide",topics,Infrastructure,9
+IS.AIR.DPRT.P3,Aircraft departures (thousands),sources,WDI Database Archives,57
+IS.AIR.GOOD.MT.K1,"Air transport, freight (million ton-km)",topics,Infrastructure,9
+IS.AIR.PSGR,"Air transport, passengers carried",topics,Infrastructure,9
+IS.AIR.PSGR.P3,"Air transport, passengers carried (thousands)",sources,WDI Database Archives,57
+IS.ROD.DESL.KT,Road sector diesel fuel consumption (kt of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.DESL.PC,Road sector diesel fuel consumption per capita (kg of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.DNST.K2,Road density (km of road per 100 sq. km of land area),topics,Infrastructure,9
+IS.ROD.ENGY.KT,Road sector energy consumption (kt of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.ENGY.PC,Road sector energy consumption per capita (kg of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.ENGY.ZS,Road sector energy consumption (% of total energy consumption),sources,WDI Database Archives,57
+IS.ROD.GOOD.MT.K6,"Roads, goods transported (million ton-km)",topics,Infrastructure,9
+IS.ROD.PAVE.ZS,"Roads, paved (% of total roads)",topics,Infrastructure,9
+IS.ROD.PSGR.K6,"Roads, passengers carried (million passenger-km)",topics,Infrastructure,9
+IS.ROD.SGAS.KT,Road sector gasoline fuel consumption (kt of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.SGAS.PC,Road sector gasoline fuel consumption per capita (kg of oil equivalent),sources,WDI Database Archives,57
+IS.ROD.TOTL.KM,"Roads, total network (km)",topics,Infrastructure,9
+IS.RRS.DESL.ZS,Diesel locomotives available (in service as % of total diesel locomotives),sources,WDI Database Archives,57
+IS.RRS.DNST,Rail traffic density (passengers and freight/km),sources,WDI Database Archives,57
+IS.RRS.ELEC.KM,"Rail lines, electric (km)",sources,WDI Database Archives,57
+IS.RRS.EMPL.TU.ZS,Railway employee productivity (traffic units per employee),sources,WDI Database Archives,57
+IS.RRS.GOOD.KM,"Railways, good hauled (ton-km)",sources,WDI Database Archives,57
+IS.RRS.GOOD.KM.PP.ZS,"Railways, goods transported (ton-km per PPP $ million of GDP)",sources,WDI Database Archives,57
+IS.RRS.GOOD.MT.K6,"Railways, goods transported (million ton-km)",topics,Infrastructure,9
+IS.RRS.PASG.K2.PP.ZS,"Railways, passenger-km (per PPP $ million of GDP)",sources,WDI Database Archives,57
+IS.RRS.PASG.KM,"Railways, passengers carried (million passenger-km)",topics,Infrastructure,9
+IS.RRS.TOTL.KM,Rail lines (total route-km),topics,Infrastructure,9
+IS.RRS.TRFF.PF,Ratio of rail passenger tariffs to freight tariffs,sources,WDI Database Archives,57
+IS.SHP.GCNW.XQ,Liner shipping connectivity index (maximum value in 2004 = 100),topics,Infrastructure,9
+IS.SHP.GOOD.TU,Container port traffic (TEU: 20 foot equivalent units),topics,Infrastructure,9
+IS.VEH.NVEH.P3,"Motor vehicles (per 1,000 people)",topics,Infrastructure,9
+IS.VEH.PCAR.P3,"Passenger cars (per 1,000 people)",topics,Infrastructure,9
+IS.VEH.ROAD.K1,Vehicles (per km of road),topics,Infrastructure,9
+IT.BBD.USEC.CD,Fixed broadband Internet access tariff (US$ per month),sources,WDI Database Archives,57
+IT.CEL.COVR.ZS,Population covered by mobile cellular network (%),sources,WDI Database Archives,57
+IT.CEL.SETS,Mobile cellular subscriptions,topics,Infrastructure,9
+IT.CEL.SETS.P2,Mobile cellular subscriptions (per 100 people),topics,Infrastructure,9
+IT.CEL.SETS.P3,"Mobile phone subscribers (per 1,000 people)",sources,Africa Development Indicators,11
+IT.CEL.USEC.CD,Price basket for mobile (US$ per month),sources,WDI Database Archives,57
+IT.CELL.3MIN.CD.OP,Mobile cellular - price of 3-minute local call (off-peak rate - current US$),sources,Africa Development Indicators,11
+IT.CELL.3MIN.CD.PK,Mobile cellular - price of 3-minute local call (peak rate - current US$),sources,Africa Development Indicators,11
+IT.CELL.3MIN.CN.OP,Mobile cellular - price of 3-minute local call (off-peak rate - current LCU),sources,Africa Development Indicators,11
+IT.CELL.3MIN.CN.PK,Mobile cellular - price of 3-minute local call (peak rate - current LCU),sources,Africa Development Indicators,11
+IT.CELL.MSUB.CD,Mobile cellular monthly subscription (current US$),sources,Africa Development Indicators,11
+IT.CELL.MSUB.CN,Mobile cellular monthly subscription (current LCU),sources,Africa Development Indicators,11
+IT.CELL.PO.CONN.CD,Mobile cellular postpaid connection charge (current US$),sources,Africa Development Indicators,11
+IT.CELL.PO.CONN.CN,Mobile cellular postpaid connection charge (current LCU),sources,Africa Development Indicators,11
+IT.CELL.PR.CONN.CD,Mobile cellular prepaid connection charge (current US$),sources,Africa Development Indicators,11
+IT.CELL.PR.CONN.CN,Mobile cellular prepaid connection charge (current LCU),sources,Africa Development Indicators,11
+IT.CMP.PCMP,Personal computers,sources,WDI Database Archives,57
+IT.CMP.PCMP.ED,Personal computers installed in education,sources,WDI Database Archives,57
+IT.CMP.PCMP.P2,Personal computers (per 100 people),topics,Infrastructure,9
+IT.CMP.PCMP.P3,"Personal computers (per 1,000 people)",sources,WDI Database Archives,57
+IT.FAX.MACH.P3,"Fax machines (per 1,000 people)",sources,WDI Database Archives,57
+IT.INT.TRAF.MN,"International telecom, outgoing traffic (minutes per subscriber)",sources,WDI Database Archives,57
+IT.INT.TRAF.MN.PS,"International telecom, outgoing traffic (minutes per subscriber)",sources,WDI Database Archives,57
+IT.INT.TTRF.MN,"International voice traffic, total fixed and mobile (out and in, minutes)",sources,WDI Database Archives,57
+IT.INT.TTRF.MN.PC,"International voice traffic, total fixed and mobile (minutes per person)",sources,WDI Database Archives,57
+IT.MBL.USEC.CD,Mobile cellular prepaid tariff (US$ per month),sources,WDI Database Archives,57
+IT.MLT.3MIN.CD.OP,Price of a 3-minute fixed telephone local call (off-peak rate - current US$),sources,Africa Development Indicators,11
+IT.MLT.3MIN.CD.PK,Price of a 3-minute fixed telephone local call (peak rate - current US$),sources,Africa Development Indicators,11
+IT.MLT.3MIN.CD.US,Telephone average cost of call to US (US$ per three minutes),sources,Africa Development Indicators,11
+IT.MLT.3MIN.CN.OP,Price of a 3-minute fixed telephone local call (off-peak rate - current LCU),sources,Africa Development Indicators,11
+IT.MLT.3MIN.CN.PK,Price of a 3-minute fixed telephone local call (peak rate - current LCU),sources,Africa Development Indicators,11
+IT.MLT.BCONN.CD,Business telephone connection charge (current US$),sources,Africa Development Indicators,11
+IT.MLT.BCONN.CN,Business telephone connection charge (current LCU),sources,Africa Development Indicators,11
+IT.MLT.BSUB.CD,Business telephone monthly subscription (current US$),sources,Africa Development Indicators,11
+IT.MLT.BSUB.CN,Business telephone monthly subscription (current LCU),sources,Africa Development Indicators,11
+IT.MLT.CLCL.CD,Telephone average cost of local call (US$ per three minutes),sources,WDI Database Archives,57
+IT.MLT.CONN.CD,Residential telephone connection charge (current US$),sources,Africa Development Indicators,11
+IT.MLT.CONN.CN,Residential telephone connection charge (current LCU),sources,Africa Development Indicators,11
+IT.MLT.EMPL,Telephone mainlines per employee,sources,WDI Database Archives,57
+IT.MLT.FALT.CL,Telephone faults cleared by next working day (%),sources,Africa Development Indicators,11
+IT.MLT.FALT.M2,Telephone faults (per 100 mainlines),sources,Africa Development Indicators,11
+IT.MLT.INVS.CD,Fixed telephone service investment (current US$),sources,Africa Development Indicators,11
+IT.MLT.INVS.CN,Fixed telephone service investment (current LCU),sources,Africa Development Indicators,11
+IT.MLT.LCTY.P3,"Telephone mainlines in largest city (per 1,000 people)",sources,WDI Database Archives,57
+IT.MLT.MAIN,Fixed telephone subscriptions,topics,Infrastructure,9
+IT.MLT.MAIN.P2,Fixed telephone subscriptions (per 100 people),topics,Infrastructure,9
+IT.MLT.MAIN.P3,"Telephone mainlines (per 1,000 people)",sources,Africa Development Indicators,11
+IT.MLT.REVN.CD,Revenue from fixed telephone service (current US$),sources,Africa Development Indicators,11
+IT.MLT.REVN.CN,Revenue from fixed telephone service (current LCU),sources,Africa Development Indicators,11
+IT.MLT.REVN.ZS,Telephone revenue per mainline (current US$),sources,WDI Database Archives,57
+IT.MLT.RSUB.CD,Residential monthly telephone subscription (current US$),sources,Africa Development Indicators,11
+IT.MLT.RSUB.CN,Residential monthly telephone subscription (current LCU),sources,Africa Development Indicators,11
+IT.MLT.USEC.CD,Price basket for residential fixed line (US$ per month),sources,WDI Database Archives,57
+IT.MLT.WAIT,"Telephone mainlines, waiting list",sources,WDI Database Archives,57
+IT.MLT.WAIT.P3,"Telephone mainlines, waiting list (thousands)",sources,WDI Database Archives,57
+IT.MLT.WAIT.YR,Invalid Code,sources,WDI Database Archives,57
+IT.MOB.COV.ZS,Population coverage of mobile cellular telephony (%),sources,Africa Development Indicators,11
+IT.MOB.INVS.CD,Mobile communication investment (current US$),sources,Africa Development Indicators,11
+IT.MOB.INVS.CN,Mobile communication investment (current LCU),sources,Africa Development Indicators,11
+IT.MOB.REVN.CD,Revenue from mobile communication (current US$),sources,Africa Development Indicators,11
+IT.MOB.REVN.CN,Revenue from mobile communication (current LCU),sources,Africa Development Indicators,11
+IT.NET.BBND,Fixed broadband subscriptions,topics,Infrastructure,9
+IT.NET.BBND.P2,Fixed broadband subscriptions (per 100 people),topics,Infrastructure,9
+IT.NET.BBND.P3,"Broadband subscribers (per 1,000 people)",sources,Africa Development Indicators,11
+IT.NET.BNDW,International Internet bandwidth (Mbps),topics,Infrastructure,9
+IT.NET.BNDW.PC,International Internet bandwidth (bits per person),topics,Infrastructure,9
+IT.NET.CONN.CD,Fixed broadband Internet connection charge (current US$),sources,Africa Development Indicators,11
+IT.NET.CONN.CN,Fixed broadband Internet connection charge (current LCU),sources,Africa Development Indicators,11
+IT.NET.EDUC.ZS,Schools connected to the Internet (%),sources,WDI Database Archives,57
+IT.NET.HOST.P4,"Internet hosts (per 10,000 people)",sources,WDI Database Archives,57
+IT.NET.ISPC.CD,Internet service provider access charges ($ per 30 off-peak hours),sources,WDI Database Archives,57
+IT.NET.SECR,Secure Internet servers,topics,Infrastructure,9
+IT.NET.SECR.P6,Secure Internet servers (per 1 million people),topics,Infrastructure,9
+IT.NET.SUB.CD,Fixed broadband Internet monthly subscription (current US$),sources,Africa Development Indicators,11
+IT.NET.SUB.CN,Fixed broadband Internet monthly subscription (current LCU),sources,Africa Development Indicators,11
+IT.NET.TELC.CD,Internet telephone access charges ($ per 30 off-peak hours),sources,WDI Database Archives,57
+IT.NET.USEC.CD,Price basket for Internet (US$ per month),sources,WDI Database Archives,57
+IT.NET.USEC.ZS,Internet total monthly price (% of monthly GNI per capita),sources,WDI Database Archives,57
+IT.NET.USER,Internet users,sources,Africa Development Indicators,11
+IT.NET.USER.FE.ZS,"Individuals using the Internet, female (% of female population)",topics,Infrastructure,9
+IT.NET.USER.MA.ZS,"Individuals using the Internet, male (% of male population)",topics,Infrastructure,9
+IT.NET.USER.P2,Internet users (per 100 people),topics,Infrastructure,9
+IT.NET.USER.P3,"Internet users (per 1,000 people)",sources,Africa Development Indicators,11
+IT.NET.USER.ZS,Individuals using the Internet (% of population),topics,Infrastructure,9
+IT.PAY.PHONES,Public payphones,sources,Africa Development Indicators,11
+IT.PAY.PHONES.P3,"Public payphones (per 1,000 people)",sources,Africa Development Indicators,11
+IT.PC.HOUS.ZS,Homes with a personal computer (%),sources,Africa Development Indicators,11
+IT.PRT.NEWS.P3,"Daily newspapers (per 1,000 people)",topics,Infrastructure,9
+IT.RAD.HOUS.ZS,Households with a radio (%),sources,Africa Development Indicators,11
+IT.RAD.SETS,Number of radio sets,sources,Africa Development Indicators,11
+IT.RAD.SETS.P3,"Radio sets (per 1,000 people)",sources,Africa Development Indicators,11
+IT.RES.USEC.CD,Residential fixed line telephone tariff (US$ per month),sources,WDI Database Archives,57
+IT.TEL.EMPL.TO,"Telephone employees, total",sources,WDI Database Archives,57
+IT.TEL.HOUS.ZS,Households with a telephone (%),sources,Africa Development Indicators,11
+IT.TEL.INVS.CD,Total annual investment in telecom (current US$),sources,Africa Development Indicators,11
+IT.TEL.INVS.CN,Telecommunications investment (current LCU),topics,Infrastructure,9
+IT.TEL.INVS.RV.ZS,Telecommunications investment (% of revenue),topics,Infrastructure,9
+IT.TEL.REVN.CD,Total revenue from all telecommunication services (current US$),sources,Africa Development Indicators,11
+IT.TEL.REVN.CN,Telecommunications revenue (current LCU),topics,Infrastructure,9
+IT.TEL.REVN.GD.ZS,Telecommunications revenue (% GDP),topics,Infrastructure,9
+IT.TEL.TOTL,Mobile and fixed-line telephone subscribers,topics,Infrastructure,9
+IT.TEL.TOTL.EM,Fixed line and mobile cellular subscriptions per employee,sources,WDI Database Archives,57
+IT.TEL.TOTL.P2,Fixed line and mobile cellular subscriptions (per 100 people),topics,Infrastructure,9
+IT.TEL.TOTL.P3,"Telephone (mainlines and mobile phone) subscribers (per 1,000 people)",sources,Africa Development Indicators,11
+IT.TEL.UNMT.ZS,Unmet demand (% of waiting list to number main fixed telephone lines in operation),sources,Africa Development Indicators,11
+IT.TELC.IM.CD,Telecommunication equipment - import (current US$),sources,Africa Development Indicators,11
+IT.TELC.XP.CD,Telecommunication equipment - export (current US$),sources,Africa Development Indicators,11
+IT.TVS.CABL.P3,"Cable television subscribers (per 1,000 people)",sources,WDI Database Archives,57
+IT.TVS.HOUS.ZS,Households with television (%),topics,Infrastructure,9
+IT.TVS.SETS.P3,"Television sets (per 1,000 people)",sources,WDI Database Archives,57
+Internet,Has access to the Internet (% age 15+),sources,Gender Statistics,14
+LND.TOTL.K2,Total Area (in Km²),sources,Indonesia Database for Policy and Economic Research,45
+LO.EGRA.CLPM.AFA.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.AFA.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.AMH.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.AMH.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.BMN.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.BOM.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.CHC.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.CHC.4GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.ENG.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.ENG.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.ENG.4GRD,EGRA: Correct Letter Names Read Per Minute (Mean). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.FLF.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.FRN.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.HAR.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.HAR.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SID.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SID.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SNG.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SOM.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SOM.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SPN.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SPN.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.SPN.4GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.TIG.2GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLPM.TIG.3GRD,EGRA: Correct Letter Names Read Per Minute (Mean). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.AKU.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ARB.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ARB.3GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.AST.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.CHI.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.CIN.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.DAG.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.DAGB.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.DAN.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ENG.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ENG.3GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ENG.4GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ENG.6GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.EWE.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.FAN.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.FLP.3GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.GA.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.GON.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.ICI.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.IND.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.KAS.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.KII.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.KNY.4GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.KNY.6GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.LUN.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.LUV.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.NZE.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CLSPM.SIL.2GRD,EGRA: Correct Letter Sounds Read Per Minute (Mean). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.AFA.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.AFA.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.AMH.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.AMH.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ARB.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.BMN.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.BOM.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.CHC.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.CHC.4GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ENG.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ENG.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ENG.4GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ENG.6GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.FLF.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.FLP.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.HAR.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.HAR.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.KIS.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.KNY.4GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.KNY.6GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SID.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SID.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SNG.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SOM.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SOM.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SPN.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SPN.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.SPN.4GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.TIG.2GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.TIG.3GRD,EGRA: Correct Isolated Words Read Per Minute (Mean). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AFA.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AFA.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AKU.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AMH.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AMH.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ARB.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ARB.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.AST.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.BMN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.BOM.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.CHC.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.CHC.4GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.CHI.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.CIN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.DAG.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.DAGB.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.DAN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ENG.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ENG.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ENG.4GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ENG.6GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.EWE.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.FAN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.FLF.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.FLP.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.FRN.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.GA.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.GON.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.HAR.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.HAR.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.ICI.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.IND.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.KAS.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.KII.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.KIS.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.KNY.4GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.KNY.6GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.LUN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.LUV.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.NZE.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SID.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SID.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SIL.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SNG.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SOM.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SOM.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SPN.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SPN.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.SPN.4GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.TIG.2GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.CWPM.ZERO.TIG.3GRD,EGRA: Oral Reading Fluency - Share of students with a zero score (%). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.BMN.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.BOM.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.CHC.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.CHC.4GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.ENG.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.ENG.3GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.ENG.4GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.ENG.6GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.FLF.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.KNY.4GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.KNY.6GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.SNG.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.SPN.2GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.SPN.3GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.INIT.0.SPN.4GRD,EGRA: Identification of the Initial Sound of a Spoken Word - Share of students with a zero score (%). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AFA.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AFA.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AKU.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AMH.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AMH.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ARB.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ARB.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.AST.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.BMN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.BOM.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.CHC.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.CHC.4GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.CHI.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.CIN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.DAG.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.DAGB.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.DAN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ENG.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ENG.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ENG.4GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ENG.6GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.EWE.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.FAN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.FLF.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.FLP.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.GA.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.GON.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.HAR.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.HAR.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.ICI.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.IND.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.KAS.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.KII.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.KIS.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.KNY.4GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.KNY.6GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.LUN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.LUV.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.NZE.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SID.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SID.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SIL.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SNG.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SOM.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SOM.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SPN.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SPN.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.SPN.4GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.TIG.2GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.LSTN.0.TIG.3GRD,EGRA: Listening Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AFA.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AFA.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AKU.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AMH.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AMH.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ARB.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ARB.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.AST.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.BMN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.BOM.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.CHC.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.CHC.4GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.CHI.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.CIN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.DAG.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.DAGB.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.DAN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ENG.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ENG.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ENG.4GRD,EGRA: Correct Non-Words Read Per Minute (Mean). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ENG.6GRD,EGRA: Correct Non-Words Read Per Minute (Mean). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.EWE.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.FAN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.FLF.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.FLP.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.FRN.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.GA.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.GON.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.HAR.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.HAR.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.ICI.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.IND.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.KAS.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.KII.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.KIS.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.KNY.4GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.KNY.6GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.LUN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.LUV.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.NZE.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SID.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SID.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SIL.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SNG.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SOM.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SOM.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SPN.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SPN.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.SPN.4GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.TIG.2GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.NCWPM.TIG.3GRD,EGRA: Correct Non-Words Read Per Minute (Mean). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AFA.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AFA.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AKU.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AMH.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AMH.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ARB.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ARB.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.AST.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.BMN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.BOM.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.CHC.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.CHC.4GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.CHI.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.CIN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.DAG.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.DAGB.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.DAN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ENG.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ENG.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ENG.4GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ENG.6GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.EWE.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.FAN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.FLF.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.FLP.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.FRN.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.GA.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.GON.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.HAR.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.HAR.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.ICI.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.IND.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.KAS.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.KII.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.KIS.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.KNY.4GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.KNY.6GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.LUN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.LUV.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.NZE.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SID.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SID.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SIL.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SNG.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SOM.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SOM.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SPN.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SPN.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.SPN.4GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.ORF.TIG.2GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.ORF.TIG.3GRD,EGRA: Oral Reading Fluency - Correct Words Read Per Minute (Mean). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AFA.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AFA.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AKU.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AMH.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AMH.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ARB.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ARB.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.AST.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.BMN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.BOM.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.CHC.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.CHC.4GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.CHI.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.CIN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.DAG.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.DAGB.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.DAN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ENG.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ENG.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ENG.4GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ENG.6GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.EWE.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.FAN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.FLF.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.FLP.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.FRN.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.GA.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.GON.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.HAR.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.HAR.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.ICI.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.IND.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.KAS.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.KII.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.KIS.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.KNY.4GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.KNY.6GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.LUN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.LUV.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.NZE.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SID.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SID.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SIL.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SNG.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SOM.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SOM.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SPN.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SPN.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.SPN.4GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.TIG.2GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.0.TIG.3GRD,EGRA: Reading Comprehension - Share of students with a zero score (%). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AFA.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AFA.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Afan Oromo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AKU.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Akuapem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AMH.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AMH.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Amharic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ARB.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ARB.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Arabic. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.AST.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Asante Twi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.BMN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bamanankan. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.BOM.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Bomu. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.CHC.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.CHC.ADV.4GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chichewa. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.CHI.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Chitonga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.CIN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Cinyanja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.DAG.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagaare. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.DAGB.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dagbani. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.DAN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Dangme. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ENG.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ENG.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ENG.ADV.4GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.ENG.ADV.6GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). English. 6th Grade,sources,Education Statistics,12
+LO.EGRA.READ.EWE.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ewe. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.FAN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fante. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.FLF.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Fulfulde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.FLP.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Filipino. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.FRN.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). French. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.GA.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Ga. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.GON.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Gonja. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.HAR.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.HAR.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Hararigna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.ICI.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Icibemba. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.IND.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Indonesian. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.KAS.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kasem. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.KII.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiikaonde. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.KIS.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kiswahili. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.KNY.ADV.4GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.KNY.ADV.6GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Kinyarwanda. 6th Grade,sources,Education Statistics,12
+LO.EGRA.READ.LUN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Lunda. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.LUV.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Luvale. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.NZE.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Nzema. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SID.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SID.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Sidaamu Afoo. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SIL.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Silozi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SNG.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Songhoi. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SOM.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SOM.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Somaligna. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SPN.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SPN.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 3rd Grade,sources,Education Statistics,12
+LO.EGRA.READ.SPN.ADV.4GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Spanish. 4th Grade,sources,Education Statistics,12
+LO.EGRA.READ.TIG.ADV.2GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 2nd Grade,sources,Education Statistics,12
+LO.EGRA.READ.TIG.ADV.3GRD,EGRA: Reading Comprehension - Share of students scoring at least 80 percent (%). Tigrinya. 3rd Grade,sources,Education Statistics,12
+LO.LLECE.MAT3,"LLECE: Mean performance on the mathematics scale for 3rd grade students, total",topics,Education,4
+LO.LLECE.MAT3.0,LLECE: 3rd grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.0.FE,LLECE: Female 3rd grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.0.MA,LLECE: Male 3rd grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.1,LLECE: 3rd grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.1.FE,LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.1.MA,LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT3.2,LLECE: 3rd grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT3.2.FE,LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT3.2.MA,LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT3.3,LLECE: 3rd grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT3.3.FE,LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT3.3.MA,LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT3.4,LLECE: 3rd grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT3.4.FE,LLECE: Female 3rd grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT3.4.MA,LLECE: Male 3rd grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT3.FE,"LLECE: Mean performance on the mathematics scale for 3rd grade students, female",topics,Education,4
+LO.LLECE.MAT3.MA,"LLECE: Mean performance on the mathematics scale for 3rd grade students, male",topics,Education,4
+LO.LLECE.MAT3.P10,LLECE: Distribution of 3rd Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT3.P25,LLECE: Distribution of 3rd Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT3.P50,LLECE: Distribution of 3rd Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT3.P75,LLECE: Distribution of 3rd Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT3.P90,LLECE: Distribution of 3rd Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT4,"LLECE: Mean performance on the mathematics scale for 4th grade students, total",topics,Education,4
+LO.LLECE.MAT4.P10,LLECE: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT4.P25,LLECE: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT4.P50,LLECE: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT4.P75,LLECE: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT4.P90,LLECE: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT6,"LLECE: Mean performance on the mathematics scale for 6th grade students, total",topics,Education,4
+LO.LLECE.MAT6.0,LLECE: 6th grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.0.FE,LLECE: Female 6th grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.0.MA,LLECE: Male 6th grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.1,LLECE: 6th grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.1.FE,LLECE: Female 6th grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.1.MA,LLECE: Male 6th grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.MAT6.2,LLECE: 6th grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT6.2.FE,LLECE: Female 6th grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT6.2.MA,LLECE: Male 6th grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.MAT6.3,LLECE: 6th grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT6.3.FE,LLECE: Female 6th grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT6.3.MA,LLECE: Male 6th grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.MAT6.4,LLECE: 6th grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT6.4.FE,LLECE: Female 6th grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT6.4.MA,LLECE: Male 6th grade students by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.MAT6.FE,"LLECE: Mean performance on the mathematics scale for 6th grade students, female",topics,Education,4
+LO.LLECE.MAT6.MA,"LLECE: Mean performance on the mathematics scale for 6th grade students, male",topics,Education,4
+LO.LLECE.MAT6.P10,LLECE: Distribution of 6th Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT6.P25,LLECE: Distribution of 6th Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT6.P50,LLECE: Distribution of 6th Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT6.P75,LLECE: Distribution of 6th Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.MAT6.P90,LLECE: Distribution of 6th Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA3,"LLECE: Mean performance on the reading scale for 3rd grade students, total",topics,Education,4
+LO.LLECE.REA3.0,LLECE: 3rd grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.0.FE,LLECE: Female 3rd grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.0.MA,LLECE: Male 3rd grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.1,LLECE: 3rd grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.1.FE,LLECE: Female 3rd grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.1.MA,LLECE: Male 3rd grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA3.2,LLECE: 3rd grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA3.2.FE,LLECE: Female 3rd grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA3.2.MA,LLECE: Male 3rd grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA3.3,LLECE: 3rd grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA3.3.FE,LLECE: Female 3rd grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA3.3.MA,LLECE: Male 3rd grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA3.4,LLECE: 3rd grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA3.4.FE,LLECE: Female 3rd grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA3.4.MA,LLECE: Male 3rd grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA3.FE,"LLECE: Mean performance on the reading scale for 3rd grade students, female",topics,Education,4
+LO.LLECE.REA3.MA,"LLECE: Mean performance on the reading scale for 3rd grade students, male",topics,Education,4
+LO.LLECE.REA3.P10,LLECE: Distribution of 3rd Grade Reading Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA3.P25,LLECE: Distribution of 3rd Grade Reading Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA3.P50,LLECE: Distribution of 3rd Grade Reading Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA3.P75,LLECE: Distribution of 3rd Grade Reading Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA3.P90,LLECE: Distribution of 3rd Grade Reading Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA4,"LLECE: Mean performance on the reading scale for 4th grade students, total",topics,Education,4
+LO.LLECE.REA4.P10,LLECE: Distribution of 4th Grade Reading Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA4.P25,LLECE: Distribution of 4th Grade Reading Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA4.P50,LLECE: Distribution of 4th Grade Reading Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA4.P75,LLECE: Distribution of 4th Grade Reading Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA4.P90,LLECE: Distribution of 4th Grade Reading Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA6,"LLECE: Mean performance on the reading scale for 6th grade students, total",topics,Education,4
+LO.LLECE.REA6.0,LLECE: 6th grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.0.FE,LLECE: Female 6th grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.0.MA,LLECE: Male 6th grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.1,LLECE: 6th grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.1.FE,LLECE: Female 6th grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.1.MA,LLECE: Male 6th grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.REA6.2,LLECE: 6th grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA6.2.FE,LLECE: Female 6th grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA6.2.MA,LLECE: Male 6th grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.REA6.3,LLECE: 6th grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA6.3.FE,LLECE: Female 6th grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA6.3.MA,LLECE: Male 6th grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.REA6.4,LLECE: 6th grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA6.4.FE,LLECE: Female 6th grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA6.4.MA,LLECE: Male 6th grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.REA6.FE,"LLECE: Mean performance on the reading scale for 6th grade students, female",topics,Education,4
+LO.LLECE.REA6.MA,"LLECE: Mean performance on the reading scale for 6th grade students, male",topics,Education,4
+LO.LLECE.REA6.P10,LLECE: Distribution of 6th Grade Reading Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA6.P25,LLECE: Distribution of 6th Grade Reading Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA6.P50,LLECE: Distribution of 6th Grade Reading Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA6.P75,LLECE: Distribution of 6th Grade Reading Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.REA6.P90,LLECE: Distribution of 6th Grade Reading Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.LLECE.SCI6,"LLECE: Mean performance on the science scale for 6th grade students, total",topics,Education,4
+LO.LLECE.SCI6.0,LLECE: 6th grade students by science proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.0.FE,LLECE: Female 6th grade students by science proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.0.MA,LLECE: Male 6th grade students by science proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.1,LLECE: 6th grade students by science proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.1.FE,LLECE: Female 6th grade students by science proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.1.MA,LLECE: Male 6th grade students by science proficiency level (%). Level 1,sources,Education Statistics,12
+LO.LLECE.SCI6.2,LLECE: 6th grade students by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.SCI6.2.FE,LLECE: Female 6th grade students by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.SCI6.2.MA,LLECE: Male 6th grade students by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.LLECE.SCI6.3,LLECE: 6th grade students by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.SCI6.3.FE,LLECE: Female 6th grade students by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.SCI6.3.MA,LLECE: Male 6th grade students by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.LLECE.SCI6.4,LLECE: 6th grade students by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.SCI6.4.FE,LLECE: Female 6th grade students by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.SCI6.4.MA,LLECE: Male 6th grade students by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.LLECE.SCI6.FE,"LLECE: Mean performance on the science scale for 6th grade students, female",topics,Education,4
+LO.LLECE.SCI6.MA,"LLECE: Mean performance on the science scale for 6th grade students, male",topics,Education,4
+LO.LLECE.SCI6.P10,LLECE: Distribution of 6th Grade Science Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.LLECE.SCI6.P25,LLECE: Distribution of 6th Grade Science Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.LLECE.SCI6.P50,LLECE: Distribution of 6th Grade Science Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.LLECE.SCI6.P75,LLECE: Distribution of 6th Grade Science Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.LLECE.SCI6.P90,LLECE: Distribution of 6th Grade Science Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P05,PASEC: Distribution of 5th Grade French Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P10,PASEC: Distribution of 5th Grade French Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P25,PASEC: Distribution of 5th Grade French Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P50,PASEC: Distribution of 5th Grade French Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P75,PASEC: Distribution of 5th Grade French Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P90,PASEC: Distribution of 5th Grade French Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE.P95,PASEC: Distribution of 5th Grade French Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.FRE5,PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Total,topics,Education,4
+LO.PASEC.FRE5.FE,PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Female,topics,Education,4
+LO.PASEC.FRE5.HIG,"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), total",topics,Education,4
+LO.PASEC.FRE5.HIG.FE,"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), female",topics,Education,4
+LO.PASEC.FRE5.HIG.MA,"PASEC: 5th grade students above the Knowledge Base Rate on the French language scale (above 40% of answers correct) (%), male",topics,Education,4
+LO.PASEC.FRE5.LO,"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), total",topics,Education,4
+LO.PASEC.FRE5.LO.FE,"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), female",topics,Education,4
+LO.PASEC.FRE5.LO.MA,"PASEC: 5th grade students at the lowest level of proficiency on the French language scale (less than 25% of answers correct) (%), male",topics,Education,4
+LO.PASEC.FRE5.MA,PASEC: Mean performance on the French language scale (100 points) for 5th grade students. Male,topics,Education,4
+LO.PASEC.MAT.2,PASEC: Mean performance on the mathematics scale for 2nd grade students. Total,sources,Education Statistics,12
+LO.PASEC.MAT.2.ADD1,PASEC: Percentage of 2nd grade students correcting answering the addition problem: 8+5,sources,Education Statistics,12
+LO.PASEC.MAT.2.ADD2,PASEC: Percentage of 2nd grade students correcting answering the addition problem: 14+23,sources,Education Statistics,12
+LO.PASEC.MAT.2.ADD3,PASEC: Percentage of 2nd grade students correcting answering the addition problem: 39+26,sources,Education Statistics,12
+LO.PASEC.MAT.2.CNT.0T60,PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 0 to 60,sources,Education Statistics,12
+LO.PASEC.MAT.2.CNT.61T80,PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 61 to 80,sources,Education Statistics,12
+LO.PASEC.MAT.2.CNT.80UP,PASEC: Distribution of 2nd grade students by last number reached when counting out loud. 80+,sources,Education Statistics,12
+LO.PASEC.MAT.2.FE,PASEC: Mean performance on the mathematics scale for 2nd grade students. Female,sources,Education Statistics,12
+LO.PASEC.MAT.2.L0,PASEC: 2nd grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PASEC.MAT.2.L1,PASEC: 2nd grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PASEC.MAT.2.L2,PASEC: 2nd grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PASEC.MAT.2.L3,PASEC: 2nd grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PASEC.MAT.2.MA,PASEC: Mean performance on the mathematics scale for 2nd grade students. Male,sources,Education Statistics,12
+LO.PASEC.MAT.2.MG.GAP,PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.2.NPP,PASEC: Mean performance on the mathematics scale for 2nd grade students who did not attend pre-primary education,sources,Education Statistics,12
+LO.PASEC.MAT.2.P05,PASEC: Distribution of 2nd grade mathematics scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P1,PASEC: Distribution of 2nd grade mathematics scores: 1st Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P10,PASEC: Distribution of 2nd grade mathematics scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P25,PASEC: Distribution of 2nd grade mathematics scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P50,PASEC: Distribution of 2nd grade mathematics scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P75,PASEC: Distribution of 2nd grade mathematics scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P90,PASEC: Distribution of 2nd grade mathematics scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P95,PASEC: Distribution of 2nd grade mathematics scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.P99,PASEC: Distribution of 2nd grade mathematics scores: 99th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.2.PP,PASEC: Mean performance on the mathematics scale for 2nd grade students who attended pre-primary education,sources,Education Statistics,12
+LO.PASEC.MAT.2.PP.GAP,PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.2.PRI.GAP,PASEC: Average performance gap between 2nd grade students in private and public education. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.2.RU.GAP,PASEC: Average performance gap between 2nd grade students in rural and urban areas. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.2.SUB1,PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 13-7,sources,Education Statistics,12
+LO.PASEC.MAT.2.SUB2,PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 34-11,sources,Education Statistics,12
+LO.PASEC.MAT.2.SUB3,PASEC: Percentage of 2nd grade students correcting answering the subtraction problem: 50-18,sources,Education Statistics,12
+LO.PASEC.MAT.6,PASEC: Mean performance on the mathematics scale for 6th grade students. Total,sources,Education Statistics,12
+LO.PASEC.MAT.6.FE,PASEC: Mean performance on the mathematics scale for 6th grade students. Female,sources,Education Statistics,12
+LO.PASEC.MAT.6.L0,PASEC: 6th grade students by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PASEC.MAT.6.L1,PASEC: 6th grade students by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PASEC.MAT.6.L2,PASEC: 6th grade students by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PASEC.MAT.6.L3,PASEC: 6th grade students by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PASEC.MAT.6.MA,PASEC: Mean performance on the mathematics scale for 6th grade students. Male,sources,Education Statistics,12
+LO.PASEC.MAT.6.MG.GAP,PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.6.NPP,PASEC: Mean performance on the mathematics scale for 6th grade students who did not attend pre-primary education,sources,Education Statistics,12
+LO.PASEC.MAT.6.P05,PASEC: Distribution of 6th grade mathematics scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P1,PASEC: Distribution of 6th grade mathematics scores: 1st Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P10,PASEC: Distribution of 6th grade mathematics scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P25,PASEC: Distribution of 6th grade mathematics scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P50,PASEC: Distribution of 6th grade mathematics scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P75,PASEC: Distribution of 6th grade mathematics scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P90,PASEC: Distribution of 6th grade mathematics scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P95,PASEC: Distribution of 6th grade mathematics scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.P99,PASEC: Distribution of 6th grade mathematics scores: 99th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.6.PP,PASEC: Mean performance on the mathematics scale for 6th grade students who attended pre-primary education,sources,Education Statistics,12
+LO.PASEC.MAT.6.PP.GAP,PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.6.PRI.GAP,PASEC: Average performance gap between 6th grade students in private and public education. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.6.RU.GAP,PASEC: Average performance gap between 6th grade students in rural and urban areas. Mathematics,sources,Education Statistics,12
+LO.PASEC.MAT.P05,PASEC: Distribution of 5th Grade Mathematics Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P10,PASEC: Distribution of 5th Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P25,PASEC: Distribution of 5th Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P50,PASEC: Distribution of 5th Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P75,PASEC: Distribution of 5th Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P90,PASEC: Distribution of 5th Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT.P95,PASEC: Distribution of 5th Grade Mathematics Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.MAT5,PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Total,topics,Education,4
+LO.PASEC.MAT5.FE,PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Female,topics,Education,4
+LO.PASEC.MAT5.HIG,"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), total",topics,Education,4
+LO.PASEC.MAT5.HIG.FE,"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), female",topics,Education,4
+LO.PASEC.MAT5.HIG.MA,"PASEC: 5th grade students above the Knowledge Base Rate on the mathematics scale (above 40% of answers correct) (%), male",topics,Education,4
+LO.PASEC.MAT5.LO,"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), total",topics,Education,4
+LO.PASEC.MAT5.LO.FE,"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), female",topics,Education,4
+LO.PASEC.MAT5.LO.MA,"PASEC: 5th grade students at the lowest level of proficiency on the mathematics scale (less than 25% of answers correct) (%), male",topics,Education,4
+LO.PASEC.MAT5.MA,PASEC: Mean performance on the mathematics scale (100 points) for 5th grade students. Male,topics,Education,4
+LO.PASEC.REA.2,PASEC: Mean performance on the language scale for 2nd grade students. Total,sources,Education Statistics,12
+LO.PASEC.REA.2.FE,PASEC: Mean performance on the language scale for 2nd grade students. Female,sources,Education Statistics,12
+LO.PASEC.REA.2.L0,PASEC: 2nd grade students by language proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PASEC.REA.2.L1,PASEC: 2nd grade students by language proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PASEC.REA.2.L2,PASEC: 2nd grade students by language proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PASEC.REA.2.L3,PASEC: 2nd grade students by language proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PASEC.REA.2.L4,PASEC: 2nd grade students by language proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PASEC.REA.2.LTR.0T5,PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 0 to 5 Letters,sources,Education Statistics,12
+LO.PASEC.REA.2.LTR.11T20,PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 11 to 20 Letters,sources,Education Statistics,12
+LO.PASEC.REA.2.LTR.20UP,PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 20+ Letters,sources,Education Statistics,12
+LO.PASEC.REA.2.LTR.6T10,PASEC: Distribution of 2nd grade students by average number of letters read accurately in one minute. 6 to 10 Letters,sources,Education Statistics,12
+LO.PASEC.REA.2.MA,PASEC: Mean performance on the language scale for 2nd grade students. Male,sources,Education Statistics,12
+LO.PASEC.REA.2.MG.GAP,PASEC: Average performance gap between 2nd grade students in multigrade and standard classes. Language,sources,Education Statistics,12
+LO.PASEC.REA.2.NPP,PASEC: Mean performance on the language scale for 2nd grade students who did not attend pre-primary education,sources,Education Statistics,12
+LO.PASEC.REA.2.P05,PASEC: Distribution of 2nd grade language scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P1,PASEC: Distribution of 2nd grade language scores: 1st Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P10,PASEC: Distribution of 2nd grade language scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P25,PASEC: Distribution of 2nd grade language scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P50,PASEC: Distribution of 2nd grade language scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P75,PASEC: Distribution of 2nd grade language scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P90,PASEC: Distribution of 2nd grade language scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P95,PASEC: Distribution of 2nd grade language scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.P99,PASEC: Distribution of 2nd grade language scores: 99th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.2.PP,PASEC: Mean performance on the language scale for 2nd grade students who attended pre-primary education,sources,Education Statistics,12
+LO.PASEC.REA.2.PP.GAP,PASEC: Average performance gap between 2nd grade students who attended/did not attend pre-primary education. Language,sources,Education Statistics,12
+LO.PASEC.REA.2.PRI.GAP,PASEC: Average performance gap between 2nd grade students in private and public education. Language,sources,Education Statistics,12
+LO.PASEC.REA.2.RU.GAP,PASEC: Average performance gap between 2nd grade students in rural and urban areas. Language,sources,Education Statistics,12
+LO.PASEC.REA.2.WRD.0,PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 0 Words,sources,Education Statistics,12
+LO.PASEC.REA.2.WRD.11T20,PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 11 to 20 Words,sources,Education Statistics,12
+LO.PASEC.REA.2.WRD.1T5,PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 1 to 5 Words,sources,Education Statistics,12
+LO.PASEC.REA.2.WRD.20UP,PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 20+ Words,sources,Education Statistics,12
+LO.PASEC.REA.2.WRD.6T10,PASEC: Distribution of 2nd grade students by average number of words read accurately in one minute. 6 to 10 Words,sources,Education Statistics,12
+LO.PASEC.REA.6,PASEC: Mean performance on the reading scale for 6th grade students. Total,sources,Education Statistics,12
+LO.PASEC.REA.6.FE,PASEC: Mean performance on the reading scale for 6th grade students. Female,sources,Education Statistics,12
+LO.PASEC.REA.6.L0,PASEC: 6th grade students by reading proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PASEC.REA.6.L1,PASEC: 6th grade students by reading proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PASEC.REA.6.L2,PASEC: 6th grade students by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PASEC.REA.6.L3,PASEC: 6th grade students by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PASEC.REA.6.L4,PASEC: 6th grade students by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PASEC.REA.6.MA,PASEC: Mean performance on the reading scale for 6th grade students. Male,sources,Education Statistics,12
+LO.PASEC.REA.6.MG.GAP,PASEC: Average performance gap between 6th grade students in multigrade and standard classes. Reading,sources,Education Statistics,12
+LO.PASEC.REA.6.NPP,PASEC: Mean performance on the reading scale for 6th grade students who did not attend pre-primary education,sources,Education Statistics,12
+LO.PASEC.REA.6.P05,PASEC: Distribution of 6th grade reading scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P1,PASEC: Distribution of 6th grade reading scores: 1st Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P10,PASEC: Distribution of 6th grade reading scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P25,PASEC: Distribution of 6th grade reading scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P50,PASEC: Distribution of 6th grade reading scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P75,PASEC: Distribution of 6th grade reading scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P90,PASEC: Distribution of 6th grade reading scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P95,PASEC: Distribution of 6th grade reading scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.P99,PASEC: Distribution of 6th grade reading scores: 99th Percentile Score,sources,Education Statistics,12
+LO.PASEC.REA.6.PP,PASEC: Mean performance on the reading scale for 6th grade students who attended pre-primary education,sources,Education Statistics,12
+LO.PASEC.REA.6.PP.GAP,PASEC: Average performance gap between 6th grade students who attended/did not attend pre-primary education. Reading,sources,Education Statistics,12
+LO.PASEC.REA.6.PRI.GAP,PASEC: Average performance gap between 6th grade students in private and public education. Reading,sources,Education Statistics,12
+LO.PASEC.REA.6.RU.GAP,PASEC: Average performance gap between 6th grade students in rural and urban areas. Reading,sources,Education Statistics,12
+LO.PIAAC.LIT,PIAAC: Mean Adult Literacy Proficiency. Total,sources,Education Statistics,12
+LO.PIAAC.LIT.1,PIAAC: Adults by literacy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.2,PIAAC: Adults by literacy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.LIT.3,PIAAC: Adults by literacy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.LIT.4,PIAAC: Adults by literacy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.LIT.5,PIAAC: Adults by literacy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.LIT.BE,PIAAC: Adults by literacy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.FE,PIAAC: Mean Adult Literacy Proficiency. Female,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.1,PIAAC: Female adults by literacy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.2,PIAAC: Female adults by literacy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.3,PIAAC: Female adults by literacy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.4,PIAAC: Female adults by literacy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.45,PIAAC: Female adults by literacy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.5,PIAAC: Female adults by literacy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.LIT.FE.BE,PIAAC: Female adults by literacy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.MA,PIAAC: Mean Adult Literacy Proficiency. Male,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.1,PIAAC: Male adults by literacy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.2,PIAAC: Male adults by literacy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.3,PIAAC: Male adults by literacy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.4,PIAAC: Male adults by literacy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.45,PIAAC: Male adults by literacy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.5,PIAAC: Male adults by literacy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.LIT.MA.BE,PIAAC: Male adults by literacy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.P05,PIAAC: Distribution of Adult Literacy Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P10,PIAAC: Distribution of Adult Literacy Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P25,PIAAC: Distribution of Adult Literacy Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P50,PIAAC: Distribution of Adult Literacy Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P75,PIAAC: Distribution of Adult Literacy Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P90,PIAAC: Distribution of Adult Literacy Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.P95,PIAAC: Distribution of Adult Literacy Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU,PIAAC: Mean Young Adult Literacy Proficiency. Total,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.1,PIAAC: Young adults by literacy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.2,PIAAC: Young adults by literacy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.3,PIAAC: Young adults by literacy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.4,PIAAC: Young adults by literacy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.45,PIAAC: Young adults by literacy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.5,PIAAC: Young adults by literacy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.BE,PIAAC: Young adults by literacy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.FE,PIAAC: Mean Young Adult Literacy Proficiency. Female,sources,Education Statistics,12
+LO.PIAAC.LIT.YOU.MA,PIAAC: Mean Young Adult Literacy Proficiency. Male,sources,Education Statistics,12
+LO.PIAAC.NUM,PIAAC: Mean Adult Numeracy Proficiency. Total,sources,Education Statistics,12
+LO.PIAAC.NUM.1,PIAAC: Adults by numeracy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.2,PIAAC: Adults by numeracy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.NUM.3,PIAAC: Adults by numeracy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.NUM.4,PIAAC: Adults by numeracy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.NUM.5,PIAAC: Adults by numeracy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.NUM.BE,PIAAC: Adults by numeracy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.FE,PIAAC: Mean Adult Numeracy Proficiency. Female,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.1,PIAAC: Female adults by numeracy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.2,PIAAC: Female adults by numeracy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.3,PIAAC: Female adults by numeracy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.4,PIAAC: Female adults by numeracy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.45,PIAAC: Female adults by numeracy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.5,PIAAC: Female adults by numeracy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.NUM.FE.BE,PIAAC: Female adults by numeracy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.MA,PIAAC: Mean Adult Numeracy Proficiency. Male,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.1,PIAAC: Male adults by numeracy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.2,PIAAC: Male adults by numeracy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.3,PIAAC: Male adults by numeracy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.4,PIAAC: Male adults by numeracy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.45,PIAAC: Male adults by numeracy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.5,PIAAC: Male adults by numeracy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.NUM.MA.BE,PIAAC: Male adults by numeracy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.P05,PIAAC: Distribution of Adult Numeracy Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P10,PIAAC: Distribution of Adult Numeracy Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P25,PIAAC: Distribution of Adult Numeracy Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P50,PIAAC: Distribution of Adult Numeracy Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P75,PIAAC: Distribution of Adult Numeracy Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P90,PIAAC: Distribution of Adult Numeracy Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.P95,PIAAC: Distribution of Adult Numeracy Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU,PIAAC: Mean Young Adult Numeracy Proficiency. Total,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.1,PIAAC: Young adults by numeracy proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.2,PIAAC: Young adults by numeracy proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.3,PIAAC: Young adults by numeracy proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.4,PIAAC: Young adults by numeracy proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.45,PIAAC: Young adults by numeracy proficiency level (%). Level 4 & 5,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.5,PIAAC: Young adults by numeracy proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.BE,PIAAC: Young adults by numeracy proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.FE,PIAAC: Mean Young Adult Numeracy Proficiency. Female,sources,Education Statistics,12
+LO.PIAAC.NUM.YOU.MA,PIAAC: Mean Young Adult Numeracy Proficiency. Male,sources,Education Statistics,12
+LO.PIAAC.TEC.1,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.2,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.TEC.3,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.TEC.BE,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.FAIL,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Failed the ICT Core Test,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.1,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.2,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.3,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.BE,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.FAIL,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.FAILNO,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.NO,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). No computer experience,sources,Education Statistics,12
+LO.PIAAC.TEC.FE.OPT,PIAAC: Female adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.1,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.2,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.3,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.BE,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.FAIL,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.FAILNO,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.NO,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). No computer experience,sources,Education Statistics,12
+LO.PIAAC.TEC.MA.OPT,PIAAC: Male adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment,sources,Education Statistics,12
+LO.PIAAC.TEC.NO,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). No computer experience,sources,Education Statistics,12
+LO.PIAAC.TEC.OPT,PIAAC: Adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment,sources,Education Statistics,12
+LO.PIAAC.TEC.P05,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P10,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P25,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P50,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P75,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P90,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.P95,PIAAC: Distribution of Adult Problem Solving in Technology-Rich Environments Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.1,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.2,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 2,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.3,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Level 3,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.BE,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Below Level 1,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.FAIL,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Failed ICT Core Test,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.FAILNO,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience or failed the ICT core test,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.NO,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). No computer experience,sources,Education Statistics,12
+LO.PIAAC.TEC.YOU.OPT,PIAAC: Young adults by proficiency level in problem solving in technology-rich environments (%). Opted out of computer-based assessment,sources,Education Statistics,12
+LO.PIRLS.REA,"PIRLS: Mean performance on the reading scale, total",topics,Education,4
+LO.PIRLS.REA.ADV,PIRLS: Fourth grade students reaching the advanced international benchmark in reading achievement (%),topics,Education,4
+LO.PIRLS.REA.ADV.FE,PIRLS: Female 4th grade students reaching the advanced international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.ADV.MA,PIRLS: Male 4th grade students reaching the advanced international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.BL,PIRLS: Fourth grade students who did not reach the low international benchmark in reading achievement (%),topics,Education,4
+LO.PIRLS.REA.BL.FE,PIRLS: Female 4th grade students who did not reach the low international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.BL.MA,PIRLS: Male 4th grade students who did not reach the low international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.FE,"PIRLS: Mean performance on the reading scale, female",topics,Education,4
+LO.PIRLS.REA.HI,PIRLS: Fourth grade students reaching the high international benchmark in reading achievement (%),topics,Education,4
+LO.PIRLS.REA.HI.FE,PIRLS: Female 4th grade students reaching the high international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.HI.MA,PIRLS: Male 4th grade students reaching the high international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.INT,PIRLS: Fourth grade students reaching the intermediate international benchmark in reading achievement (%),topics,Education,4
+LO.PIRLS.REA.INT.FE,PIRLS: Female 4th grade students reaching the intermediate international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.INT.MA,PIRLS: Male 4th grade students reaching the intermediate international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.LOW,PIRLS: Fourth grade students reaching the low international benchmark in reading achievement (%),topics,Education,4
+LO.PIRLS.REA.LOW.FE,PIRLS: Female 4th grade students reaching the low international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.LOW.MA,PIRLS: Male 4th grade students reaching the low international benchmark in reading achievement (%),sources,Education Statistics,12
+LO.PIRLS.REA.MA,"PIRLS: Mean performance on the reading scale, male",topics,Education,4
+LO.PIRLS.REA.P05,PIRLS: Distribution of Reading Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P10,PIRLS: Distribution of Reading Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P25,PIRLS: Distribution of Reading Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P50,PIRLS: Distribution of Reading Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P75,PIRLS: Distribution of Reading Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P90,PIRLS: Distribution of Reading Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PIRLS.REA.P95,PIRLS: Distribution of Reading Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT,PISA: Mean performance on the mathematics scale,topics,Education,4
+LO.PISA.MAT.0,PISA: 15-year-olds by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PISA.MAT.0.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PISA.MAT.0.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PISA.MAT.1,PISA: 15-year-olds by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PISA.MAT.1.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PISA.MAT.1.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 1,sources,Education Statistics,12
+LO.PISA.MAT.2,PISA: 15-year-olds by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.MAT.2.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.MAT.2.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.MAT.3,PISA: 15-year-olds by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.MAT.3.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.MAT.3.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.MAT.4,PISA: 15-year-olds by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.MAT.4.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.MAT.4.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.MAT.5,PISA: 15-year-olds by mathematics proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.MAT.5.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.MAT.5.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.MAT.6,PISA: 15-year-olds by mathematics proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.MAT.6.FE,PISA: Female 15-year-olds by mathematics proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.MAT.6.MA,PISA: Male 15-year-olds by mathematics proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.MAT.FE,PISA: Mean performance on the mathematics scale. Female,topics,Education,4
+LO.PISA.MAT.MA,PISA: Mean performance on the mathematics scale. Male,topics,Education,4
+LO.PISA.MAT.P05,PISA: Distribution of Mathematics Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P10,PISA: Distribution of Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P25,PISA: Distribution of Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P50,PISA: Distribution of Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P75,PISA: Distribution of Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P90,PISA: Distribution of Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PISA.MAT.P95,PISA: Distribution of Mathematics Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA,PISA: Mean performance on the reading scale,topics,Education,4
+LO.PISA.REA.0,PISA: 15-year-olds by reading proficiency level (%). Below Level 1B,sources,WDI Database Archives,57
+LO.PISA.REA.0.B1C,PISA: 15-year-olds by reading proficiency level (%). Below Level 1C,sources,Education Statistics,12
+LO.PISA.REA.0.B1C.FE,PISA: Female 15-year-olds by reading proficiency level (%). Below Level 1C,sources,Education Statistics,12
+LO.PISA.REA.0.B1C.MA,PISA: Male 15-year-olds by reading proficiency level (%). Below Level 1C,sources,Education Statistics,12
+LO.PISA.REA.1A,PISA: 15-year-olds by reading proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.REA.1A.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.REA.1A.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.REA.1B,PISA: 15-year-olds by reading proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.REA.1B.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.REA.1B.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.REA.1C,PISA: 15-year-olds by reading proficiency level (%). Level 1C,sources,Education Statistics,12
+LO.PISA.REA.1C.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 1C,sources,Education Statistics,12
+LO.PISA.REA.1C.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 1C,sources,Education Statistics,12
+LO.PISA.REA.2,PISA: 15-year-olds by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.REA.2.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.REA.2.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.REA.3,PISA: 15-year-olds by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.REA.3.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.REA.3.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.REA.4,PISA: 15-year-olds by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.REA.4.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.REA.4.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.REA.5,PISA: 15-year-olds by reading proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.REA.5.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.REA.5.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.REA.6,PISA: 15-year-olds by reading proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.REA.6.FE,PISA: Female 15-year-olds by reading proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.REA.6.MA,PISA: Male 15-year-olds by reading proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.REA.FE,PISA: Mean performance on the reading scale. Female,topics,Education,4
+LO.PISA.REA.MA,PISA: Mean performance on the reading scale. Male,topics,Education,4
+LO.PISA.REA.P05,PISA: Distribution of Reading Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P10,PISA: Distribution of Reading Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P25,PISA: Distribution of Reading Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P50,PISA: Distribution of Reading Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P75,PISA: Distribution of Reading Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P90,PISA: Distribution of Reading Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PISA.REA.P95,PISA: Distribution of Reading Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI,PISA: Mean performance on the science scale,topics,Education,4
+LO.PISA.SCI.0,PISA: 15-year-olds by science proficiency level (%). Below Level 1,sources,Education Statistics,12
+LO.PISA.SCI.0.FE,PISA: Female 15-year-olds by science proficiency level (%). Below Level 1B,sources,Education Statistics,12
+LO.PISA.SCI.0.MA,PISA: Male 15-year-olds by science proficiency level (%). Below Level 1B,sources,Education Statistics,12
+LO.PISA.SCI.1A,PISA: 15-year-olds by science proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.SCI.1A.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.SCI.1A.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 1A,sources,Education Statistics,12
+LO.PISA.SCI.1B,PISA: 15-year-olds by science proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.SCI.1B.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.SCI.1B.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 1B,sources,Education Statistics,12
+LO.PISA.SCI.2,PISA: 15-year-olds by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.SCI.2.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.SCI.2.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 2,sources,Education Statistics,12
+LO.PISA.SCI.3,PISA: 15-year-olds by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.SCI.3.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.SCI.3.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 3,sources,Education Statistics,12
+LO.PISA.SCI.4,PISA: 15-year-olds by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.SCI.4.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.SCI.4.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 4,sources,Education Statistics,12
+LO.PISA.SCI.5,PISA: 15-year-olds by science proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.SCI.5.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.SCI.5.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 5,sources,Education Statistics,12
+LO.PISA.SCI.6,PISA: 15-year-olds by science proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.SCI.6.FE,PISA: Female 15-year-olds by science proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.SCI.6.MA,PISA: Male 15-year-olds by science proficiency level (%). Level 6,sources,Education Statistics,12
+LO.PISA.SCI.FE,PISA: Mean performance on the science scale. Female,topics,Education,4
+LO.PISA.SCI.MA,PISA: Mean performance on the science scale. Male,topics,Education,4
+LO.PISA.SCI.P05,PISA: Distribution of Science Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P10,PISA: Distribution of Science Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P25,PISA: Distribution of Science Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P50,PISA: Distribution of Science Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P75,PISA: Distribution of Science Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P90,PISA: Distribution of Science Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.PISA.SCI.P95,PISA: Distribution of Science Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.SACMEQ.MAT,SACMEQ: Mean performance on the mathematics scale,topics,Education,4
+LO.SACMEQ.MAT.FE,"SACMEQ: Mean performance on the mathematics scale, female",topics,Education,4
+LO.SACMEQ.MAT.L1,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L1.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L1.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 1 - Pre-Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L2,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L2.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L2.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 2 - Emergent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L3,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L3.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L3.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 3 - Basic Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L4,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L4.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L4.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 4 - Beginning Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L5,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L5.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L5.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 5 - Competent Numeracy,sources,Education Statistics,12
+LO.SACMEQ.MAT.L6,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled,sources,Education Statistics,12
+LO.SACMEQ.MAT.L6.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled,sources,Education Statistics,12
+LO.SACMEQ.MAT.L6.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 6 - Mathematically Skilled,sources,Education Statistics,12
+LO.SACMEQ.MAT.L7,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.L7.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.L7.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 7 - Concrete Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.L8,SACMEQ: 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.L8.FE,SACMEQ: Female 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.L8.MA,SACMEQ: Male 6th grade students by mathematics proficiency level (%). Level 8 - Abstract Problem Solving,sources,Education Statistics,12
+LO.SACMEQ.MAT.MA,"SACMEQ: Mean performance on the mathematics scale, male",topics,Education,4
+LO.SACMEQ.REA,"SACMEQ: Mean performance on the reading scale, total",topics,Education,4
+LO.SACMEQ.REA.FE,"SACMEQ: Mean performance on the reading scale, female",topics,Education,4
+LO.SACMEQ.REA.L1,SACMEQ: 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L1.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L1.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 1 - Pre-Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L2,SACMEQ: 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L2.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L2.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 2 - Emergent Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L3,SACMEQ: 6th grade students by reading proficiency level (%). Level 3 - Basic Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L3.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 3 - Basic Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L3.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 3 - Basic Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L4,SACMEQ: 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning,sources,Education Statistics,12
+LO.SACMEQ.REA.L4.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning,sources,Education Statistics,12
+LO.SACMEQ.REA.L4.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 4 - Reading for Meaning,sources,Education Statistics,12
+LO.SACMEQ.REA.L5,SACMEQ: 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L5.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L5.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 5 - Interpretive Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L6,SACMEQ: 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L6.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L6.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 6 - Inferential Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L7,SACMEQ: 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L7.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L7.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 7 - Analytical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L8,SACMEQ: 6th grade students by reading proficiency level (%). Level 8 - Critical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L8.FE,SACMEQ: Female 6th grade students by reading proficiency level (%). Level 8 - Critical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.L8.MA,SACMEQ: Male 6th grade students by reading proficiency level (%). Level 8 - Critical Reading,sources,Education Statistics,12
+LO.SACMEQ.REA.MA,"SACMEQ: Mean performance on the reading scale, male",topics,Education,4
+LO.TIMSS.MAT4,"TIMSS: Mean performance on the mathematics scale for fourth grade students, total",topics,Education,4
+LO.TIMSS.MAT4.ADV,TIMSS: Fourth grade students reaching the advanced international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT4.ADV.FE,TIMSS: Female 4th grade students reaching the advanced international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.ADV.MA,TIMSS: Male 4th grade students reaching the advanced international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.BL,TIMSS: Fourth grade students who did not reach the low international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT4.BL.FE,TIMSS: Female 4th grade students who did not reach the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.BL.MA,TIMSS: Male 4th grade students who did not reach the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.FE,"TIMSS: Mean performance on the mathematics scale for fourth grade students, female",topics,Education,4
+LO.TIMSS.MAT4.HI,TIMSS: Fourth grade students reaching the high international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT4.HI.FE,TIMSS: Female 4th grade students reaching the high international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.HI.MA,TIMSS: Male 4th grade students reaching the high international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.INT,TIMSS: Fourth grade students reaching the intermediate international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT4.INT.FE,TIMSS: Female 4th grade students reaching the intermediate international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.INT.MA,TIMSS: Male 4th grade students reaching the intermediate international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.LOW,TIMSS: Fourth grade students reaching the low international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT4.LOW.FE,TIMSS: Female 4th grade students reaching the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.LOW.MA,TIMSS: Male 4th grade students reaching the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT4.MA,"TIMSS: Mean performance on the mathematics scale for fourth grade students, male",topics,Education,4
+LO.TIMSS.MAT4.P05,TIMSS: Distribution of 4th Grade Mathematics Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P10,TIMSS: Distribution of 4th Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P25,TIMSS: Distribution of 4th Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P50,TIMSS: Distribution of 4th Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P75,TIMSS: Distribution of 4th Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P90,TIMSS: Distribution of 4th Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT4.P95,TIMSS: Distribution of 4th Grade Mathematics Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8,"TIMSS: Mean performance on the mathematics scale for eighth grade students, total",topics,Education,4
+LO.TIMSS.MAT8.ADV,TIMSS: Eighth grade students reaching the advanced international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT8.ADV.FE,TIMSS: Female 8th grade students reaching the advanced international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.ADV.MA,TIMSS: Male 8th grade students reaching the advanced international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.BL,TIMSS: Eighth grade students who did not reach the low international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT8.BL.FE,TIMSS: Female 8th grade students who did not reach the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.BL.MA,TIMSS: Male 8th grade students who did not reach the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.FE,"TIMSS: Mean performance on the mathematics scale for eighth grade students, female",topics,Education,4
+LO.TIMSS.MAT8.HI,TIMSS: Eighth grade students reaching the high international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT8.HI.FE,TIMSS: Female 8th grade students reaching the high international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.HI.MA,TIMSS: Male 8th grade students reaching the high international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.INT,TIMSS: Eighth grade students reaching the intermediate international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT8.INT.FE,TIMSS: Female 8th grade students reaching the intermediate international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.INT.MA,TIMSS: Male 8th grade students reaching the intermediate international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.LOW,TIMSS: Eighth grade students reaching the low international benchmark of mathematics achievement (%),topics,Education,4
+LO.TIMSS.MAT8.LOW.FE,TIMSS: Female 8th grade students reaching the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.LOW.MA,TIMSS: Male 8th grade students reaching the low international benchmark of mathematics achievement (%),sources,Education Statistics,12
+LO.TIMSS.MAT8.MA,"TIMSS: Mean performance on the mathematics scale for eighth grade students, male",topics,Education,4
+LO.TIMSS.MAT8.P05,TIMSS: Distribution of 8th Grade Mathematics Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P10,TIMSS: Distribution of 8th Grade Mathematics Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P25,TIMSS: Distribution of 8th Grade Mathematics Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P50,TIMSS: Distribution of 8th Grade Mathematics Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P75,TIMSS: Distribution of 8th Grade Mathematics Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P90,TIMSS: Distribution of 8th Grade Mathematics Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.MAT8.P95,TIMSS: Distribution of 8th Grade Mathematics Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4,"TIMSS: Mean performance on the science scale for fourth grade students, total",topics,Education,4
+LO.TIMSS.SCI4.ADV,TIMSS: Fourth grade students reaching the advanced international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI4.ADV.FE,TIMSS: Female 4th grade students reaching the advanced international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.ADV.MA,TIMSS: Male 4th grade students reaching the advanced international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.BL,TIMSS: Fourth grade students who did not reach the low international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI4.BL.FE,TIMSS: Female 4th grade students who did not reach the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.BL.MA,TIMSS: Male 4th grade students who did not reach the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.FE,"TIMSS: Mean performance on the science scale for fourth grade students, female",topics,Education,4
+LO.TIMSS.SCI4.HI,TIMSS: Fourth grade students reaching the high international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI4.HI.FE,TIMSS: Female 4th grade students reaching the high international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.HI.MA,TIMSS: Male 4th grade students reaching the high international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.INT,TIMSS: Fourth grade students reaching the intermediate international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI4.INT.FE,TIMSS: Female 4th grade students reaching the intermediate international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.INT.MA,TIMSS: Male 4th grade students reaching the intermediate international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.LOW,TIMSS: Fourth grade students reaching the low international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI4.LOW.FE,TIMSS: Female 4th grade students reaching the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.LOW.MA,TIMSS: Male 4th grade students reaching the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI4.MA,"TIMSS: Mean performance on the science scale for fourth grade students, male",topics,Education,4
+LO.TIMSS.SCI4.P05,TIMSS: Distribution of 4th Grade Science Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P10,TIMSS: Distribution of 4th Grade Science Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P25,TIMSS: Distribution of 4th Grade Science Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P50,TIMSS: Distribution of 4th Grade Science Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P75,TIMSS: Distribution of 4th Grade Science Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P90,TIMSS: Distribution of 4th Grade Science Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI4.P95,TIMSS: Distribution of 4th Grade Science Scores: 95th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8,"TIMSS: Mean performance on the science scale for eighth grade students, total",topics,Education,4
+LO.TIMSS.SCI8.ADV,TIMSS: Eighth grade students reaching the advanced international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI8.ADV.FE,TIMSS: Female 8th grade students reaching the advanced international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.ADV.MA,TIMSS: Male 8th grade students reaching the advanced international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.BL,TIMSS: Eighth grade students who did not reach the low international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI8.BL.FE,TIMSS: Female 8th grade students who did not reach the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.BL.MA,TIMSS: Male 8th grade students who did not reach the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.FE,"TIMSS: Mean performance on the science scale for eighth grade students, female",topics,Education,4
+LO.TIMSS.SCI8.HI,TIMSS: Eighth grade students reaching the high international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI8.HI.FE,TIMSS: Female 8th grade students reaching the high international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.HI.MA,TIMSS: Male 8th grade students reaching the high international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.INT,TIMSS: Eighth grade students reaching the intermediate international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI8.INT.FE,TIMSS: Female 8th grade students reaching the intermediate international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.INT.MA,TIMSS: Male 8th grade students reaching the intermediate international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.LOW,TIMSS: Eighth grade students reaching the low international benchmark of science achievement (%),topics,Education,4
+LO.TIMSS.SCI8.LOW.FE,TIMSS: Female 8th grade students reaching the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.LOW.MA,TIMSS: Male 8th grade students reaching the low international benchmark of science achievement (%),sources,Education Statistics,12
+LO.TIMSS.SCI8.MA,"TIMSS: Mean performance on the science scale for eighth grade students, male",topics,Education,4
+LO.TIMSS.SCI8.P05,TIMSS: Distribution of 8th Grade Science Scores: 5th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P10,TIMSS: Distribution of 8th Grade Science Scores: 10th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P25,TIMSS: Distribution of 8th Grade Science Scores: 25th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P50,TIMSS: Distribution of 8th Grade Science Scores: 50th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P75,TIMSS: Distribution of 8th Grade Science Scores: 75th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P90,TIMSS: Distribution of 8th Grade Science Scores: 90th Percentile Score,sources,Education Statistics,12
+LO.TIMSS.SCI8.P95,TIMSS: Distribution of 8th Grade Science Scores: 95th Percentile Score,sources,Education Statistics,12
+LP.EXP.DURS.MD,"Lead time to export, median case (days)",topics,Private Sector,12
+LP.IMP.DURS.MD,"Lead time to import, median case (days)",topics,Private Sector,12
+LP.LPI.CUST.RK,"Efficiency of the clearance process, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.CUST.XQ,Logistics performance index: Efficiency of customs clearance process (1=low to 5=high),topics,Private Sector,12
+LP.LPI.INFR.RK,"Quality- of trade and transport-related infrastructure, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.INFR.XQ,Logistics performance index: Quality of trade and transport-related infrastructure (1=low to 5=high),topics,Private Sector,12
+LP.LPI.ITRN.RK,"Ease of arranging competitively priced international shipments, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.ITRN.XQ,Logistics performance index: Ease of arranging competitively priced shipments (1=low to 5=high),topics,Private Sector,12
+LP.LPI.LOGS.RK,"Competence and quality of logistics services, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.LOGS.XQ,Logistics performance index: Competence and quality of logistics services (1=low to 5=high),topics,Private Sector,12
+LP.LPI.OVRL.RK,Logistics performance index: Overall rank (1=highest performance),sources,Logistics Performance Index,66
+LP.LPI.OVRL.RK.LB,"Logistics performance index: Overall rank (1=highest performance), lower bound",sources,Logistics Performance Index,66
+LP.LPI.OVRL.RK.UB,"Logistics performance index: Overall rank (1=highest performance), upper bound",sources,Logistics Performance Index,66
+LP.LPI.OVRL.RK.ZS,Logistics performance index: Percent of highest performer),sources,Logistics Performance Index,66
+LP.LPI.OVRL.XQ,Logistics performance index: Overall (1=low to 5=high),topics,Private Sector,12
+LP.LPI.OVRL.XQ.LB,"Logistics performance index: Overall score (1=low to 5=high), lower bound",sources,Logistics Performance Index,66
+LP.LPI.OVRL.XQ.UB,"Logistics performance index: Overall score (1=low to 5=high), upper bound",sources,Logistics Performance Index,66
+LP.LPI.TIME.RK,"Frequency with which shipments reach consignee within scheduled or expected time, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.TIME.XQ,Logistics performance index: Frequency with which shipments reach consignee within scheduled or expected time (1=low to 5=high),topics,Private Sector,12
+LP.LPI.TRAC.RK,"Ability to track and trace consignments, rank (1=highest performer)",sources,Logistics Performance Index,66
+LP.LPI.TRAC.XQ,Logistics performance index: Ability to track and trace consignments (1=low to 5=high),topics,Private Sector,12
+MO.INDEX.ECON.XQ,Sustainable Economic Opportunity,sources,Africa Development Indicators,11
+MO.INDEX.HDEV.XQ,Human Development,sources,Africa Development Indicators,11
+MO.INDEX.PHR.XQ,Participation and Human Rights,sources,Africa Development Indicators,11
+MO.INDEX.SRLW.XQ,Safety and Rule of Law,sources,Africa Development Indicators,11
+MO.INDEX.XQ,Overall Mo Ibrahim index,sources,Africa Development Indicators,11
+MS.MIL.MPRT.KD,Arms imports (SIPRI trend indicator values),topics,Public Sector,13
+MS.MIL.MPRT.ZS,Arms imports (% of total imports),sources,WDI Database Archives,57
+MS.MIL.TOTL.P1,"Armed forces personnel, total",topics,Public Sector,13
+MS.MIL.TOTL.TF.ZS,Armed forces personnel (% of total labor force),topics,Public Sector,13
+MS.MIL.XPND.CD,Military expenditure (current USD),topics,Public Sector,13
+MS.MIL.XPND.CN,Military expenditure (current LCU),topics,Public Sector,13
+MS.MIL.XPND.GD.ZS,Military expenditure (% of GDP),topics,Public Sector,13
+MS.MIL.XPND.GN.ZS,Military expenditure (% of GNI),sources,WDI Database Archives,57
+MS.MIL.XPND.ZS,Military expenditure (% of general government expenditure),topics,Public Sector,13
+MS.MIL.XPRT.KD,Arms exports (SIPRI trend indicator values),topics,Public Sector,13
+MS.MIL.XPRT.ZS,Arms exports (% of total exports),sources,WDI Database Archives,57
+NA.GDP.ACC.FB.SNA08.CR,"GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.ACC.FB.SNA08.KR,"GDP on Accommodation & Food Beverages Activity Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.AGR.CR,"GDP on Agriculture Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.AGR.KR,"GDP on Agriculture Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.AGR.SNA08.CR,"GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.AGR.SNA08.KR,"GDP on Agriculture, Forestry & Fisheries Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.BUSS.SNA08.CR,"GDP on Business Services Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.BUSS.SNA08.KR,"GDP on Business Services Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.CNST.CR,"GDP on Construction Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.CNST.KR,"GDP on Construction Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.CNST.SNA08.CR,"GDP on Construction Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.CNST.SNA08.KR,"GDP on Construction Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.EDUS.SNA08.CR,"GDP on Education Services Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.EDUS.SNA08.KR,"GDP on Education Services Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.ELEC.GAS.SNA08.CR,"GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.ELEC.GAS.SNA08.KR,"GDP on Electricity & Gas Supply Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.EXC.OG.CR,"Total GDP excluding Oil and Gas (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.EXC.OG.KR,"Total GDP excluding Oil and Gas (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.FINS.CR,"GDP on Financial Service Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.FINS.KR,"GDP on Financial Service Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.FINS.SNA08.CR,"GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.FINS.SNA08.KR,"GDP on Financial & Insurance Activity Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.HLTH.SOCW.SNA08.CR,"GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.HLTH.SOCW.SNA08.KR,"GDP on Human Health & Social Work Activity Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INC.OG.CR,"Total GDP including Oil and Gas (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INC.OG.KR,"Total GDP including Oil and Gas (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INC.OG.SNA08.CR,"Total GDP including Oil and Gas (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INC.OG.SNA08.KR,"Total GDP including Oil and Gas (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INF.COMM.SNA08.CR,"GDP on Information & Communication Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.INF.COMM.SNA08.KR,"GDP on Information & Communication Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MINQ.CR,"GDP on Mining and Quarrying Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MINQ.KR,"GDP on Mining and Quarrying Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MINQ.SNA08.CR,"GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MINQ.SNA08.KR,"GDP on Mining & Quarrying Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MNF.CR,"GDP on Manufacturing Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MNF.KR,"GDP on Manufacturing Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MNF.SNA08.CR,"GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.MNF.SNA08.KR,"GDP on Manufacturing Industry Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.PADM.DEF.SNA08.CR,"GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.PADM.DEF.SNA08.KR,"GDP on Public Administration, Defense & Compulsory Social Security Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.REST.SNA08.CR,"GDP on Real Estate Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.REST.SNA08.KR,"GDP on Real Estate Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.SRV.OTHR.CR,"GDP on Other Service Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.SRV.OTHR.KR,"GDP on Other Service Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.SRV.OTHR.SNA08.CR,"GDP on Other Services Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.SRV.OTHR.SNA08.KR,"GDP on Other Services Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRAN.COMM.CR,"GDP on Transportation and Telecommunication Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRAN.COMM.KR,"GDP on Transportation and Telecommunication Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRAN.STOR.SNA08.CR,"GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRAN.STOR.SNA08.KR,"GDP on Transportation & Storage Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRD.HTL.CR,"GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRD.HTL.KR,"GDP on Trade, Hotel and Restaurant Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRD.SNA08.CR,"GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.TRD.SNA08.KR,"GDP on Wholesales & Retail Trade, Repair of Motor Vehicles & Motorcycles Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.UTL.CR,"GDP on Utilities Sector (in IDR Million), Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.UTL.KR,"GDP on Utilities Sector (in IDR Million), Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.WTR.WST.SNA08.CR,"GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NA.GDP.WTR.WST.SNA08.KR,"GDP on Water Supply, Sewerage, Waste & Recycling Management Sector (in IDR Million), SNA 2008, Constant Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.CON.GOVT.CD,General government final consumption expenditure (current US$),topics,Economy & Growth,3
+NE.CON.GOVT.CN,General government final consumption expenditure (current LCU),topics,Economy & Growth,3
+NE.CON.GOVT.KD,General government final consumption expenditure (constant 2015 US$),topics,Economy & Growth,3
+NE.CON.GOVT.KD.87,General government consumption (constant 1987 US$),sources,WDI Database Archives,57
+NE.CON.GOVT.KD.ZG,General government final consumption expenditure (annual % growth),topics,Economy & Growth,3
+NE.CON.GOVT.KN,General government final consumption expenditure (constant LCU),topics,Economy & Growth,3
+NE.CON.GOVT.KN.87,General government consumption (constant 1987 LCU),sources,WDI Database Archives,57
+NE.CON.GOVT.KN.87.ZG,General government consumption (annual % growth),sources,WDI Database Archives,57
+NE.CON.GOVT.ZS,General government final consumption expenditure (% of GDP),topics,Economy & Growth,3
+NE.CON.PCAP.CD,"Final consumption expenditure plus discrepancy, per capita (current US$)",sources,Africa Development Indicators,11
+NE.CON.PEPC.KD,Private consumption per capita (1987 US$),sources,WDI Database Archives,57
+NE.CON.PETC.CD,"Household final consumption expenditure, etc. (current US$)",topics,Economy & Growth,3
+NE.CON.PETC.CN,"Household final consumption expenditure, etc. (current LCU)",topics,Economy & Growth,3
+NE.CON.PETC.KD,"Household final consumption expenditure, etc. (constant 2010 US$)",topics,Economy & Growth,3
+NE.CON.PETC.KD.87,"Private consumption, etc. (constant 1987 US$)",sources,WDI Database Archives,57
+NE.CON.PETC.KD.ZG,"Household final consumption expenditure, etc. (annual % growth)",topics,Economy & Growth,3
+NE.CON.PETC.KN,"Household final consumption expenditure, etc. (constant LCU)",topics,Economy & Growth,3
+NE.CON.PETC.KN.87,"Private consumption, etc. (constant 1987 LCU)",sources,WDI Database Archives,57
+NE.CON.PETC.KN.87.ZG,"Private consumption, etc. (annual % growth)",sources,WDI Database Archives,57
+NE.CON.PETC.ZS,"Household final consumption expenditure, etc. (% of GDP)",topics,Economy & Growth,3
+NE.CON.PRVT.CD,Households and NPISHs Final consumption expenditure (current US$),topics,Economy & Growth,3
+NE.CON.PRVT.CN,Households and NPISHs Final consumption expenditure (current LCU),topics,Economy & Growth,3
+NE.CON.PRVT.CN.AD,Households and NPISHs final consumption expenditure: linked series (current LCU),topics,Economy & Growth,3
+NE.CON.PRVT.KD,Households and NPISHs Final consumption expenditure (constant 2015 US$),topics,Economy & Growth,3
+NE.CON.PRVT.KD.87,Private consumption (constant 1987 US$),sources,WDI Database Archives,57
+NE.CON.PRVT.KD.ZG,Households and NPISHs Final consumption expenditure (annual % growth),topics,Economy & Growth,3
+NE.CON.PRVT.KN,Households and NPISHs Final consumption expenditure (constant LCU),topics,Economy & Growth,3
+NE.CON.PRVT.KN.87,"Private consumption, (constant 1987 LCU)",sources,WDI Database Archives,57
+NE.CON.PRVT.KN.87.ZG,Private consumption (annual % growth),sources,WDI Database Archives,57
+NE.CON.PRVT.PC.KD,Households and NPISHs Final consumption expenditure per capita (constant 2015 US$),topics,Economy & Growth,3
+NE.CON.PRVT.PC.KD.ZG,Households and NPISHs Final consumption expenditure per capita growth (annual %),topics,Economy & Growth,3
+NE.CON.PRVT.PC.ZG,Private consumption per capita growth (annual %),sources,WDI Database Archives,57
+NE.CON.PRVT.PC.ZS,Private consumption per capita (constant 1995 US$),sources,WDI Database Archives,57
+NE.CON.PRVT.POP.ZG,Private consumption per capita growth (annual %),sources,WDI Database Archives,57
+NE.CON.PRVT.PP.CD,"Households and NPISHs Final consumption expenditure, PPP (current international $)",topics,Economy & Growth,3
+NE.CON.PRVT.PP.KD,"Households and NPISHs Final consumption expenditure, PPP (constant 2021 international $)",topics,Economy & Growth,3
+NE.CON.PRVT.ZS,Households and NPISHs final consumption expenditure (% of GDP),topics,Economy & Growth,3
+NE.CON.PVPC.KD,Private consumption per capita (1987 USD),sources,WDI Database Archives,57
+NE.CON.TETC.CD,"Final consumption expenditure, etc. (current US$)",topics,Economy & Growth,3
+NE.CON.TETC.CN,"Final consumption expenditure, etc. (current LCU)",topics,Economy & Growth,3
+NE.CON.TETC.KD,"Final consumption expenditure, etc. (constant 2010 US$)",topics,Economy & Growth,3
+NE.CON.TETC.KD.87,"Total consumption, etc. (constant 1987 US$)",sources,WDI Database Archives,57
+NE.CON.TETC.KD.ZG,"Final consumption expenditure, etc. (annual % growth)",topics,Economy & Growth,3
+NE.CON.TETC.KN,"Final consumption expenditure, etc. (constant LCU)",topics,Economy & Growth,3
+NE.CON.TETC.KN.87,"Total consumption, etc. (constant 1987 LCU)",sources,WDI Database Archives,57
+NE.CON.TETC.KN.87.ZG,"Total consumption, etc. (annual % growth)",sources,WDI Database Archives,57
+NE.CON.TETC.ZS,"Final consumption expenditure, etc. (% of GDP)",topics,Economy & Growth,3
+NE.CON.TOTL.CD,Final consumption expenditure (current US$),topics,Economy & Growth,3
+NE.CON.TOTL.CN,Final consumption expenditure (current LCU),topics,Economy & Growth,3
+NE.CON.TOTL.KD,Final consumption expenditure (constant 2015 US$),topics,Economy & Growth,3
+NE.CON.TOTL.KD.87,Total consumption (constant 1987 US$),sources,WDI Database Archives,57
+NE.CON.TOTL.KD.ZG,Final consumption expenditure (annual % growth),topics,Economy & Growth,3
+NE.CON.TOTL.KN,Final consumption expenditure (constant LCU),topics,Economy & Growth,3
+NE.CON.TOTL.KN.87,Total consumption (constant 1987 LCU),sources,WDI Database Archives,57
+NE.CON.TOTL.ZG,Total consumption: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NE.CON.TOTL.ZS,Final consumption expenditure (% of GDP),topics,Economy & Growth,3
+NE.DAB.DEFL.ZS,Gross national expenditure deflator (base year varies by country),topics,Economy & Growth,3
+NE.DAB.TOTL.CD,Gross national expenditure (current US$),topics,Economy & Growth,3
+NE.DAB.TOTL.CN,Gross national expenditure (current LCU),topics,Economy & Growth,3
+NE.DAB.TOTL.IN,Domestic Absorption Deflator,sources,WDI Database Archives,57
+NE.DAB.TOTL.KD,Gross national expenditure (constant 2015 US$),topics,Economy & Growth,3
+NE.DAB.TOTL.KD.87,Domestic absorption (constant 1987 US$),sources,WDI Database Archives,57
+NE.DAB.TOTL.KN,Gross national expenditure (constant LCU),topics,Economy & Growth,3
+NE.DAB.TOTL.KN.87,Domestic absorption (constant 1987 LCU),sources,WDI Database Archives,57
+NE.DAB.TOTL.XD,"Domestic Absorption deflator (1987=100,Index)",sources,WDI Database Archives,57
+NE.DAB.TOTL.ZS,Gross national expenditure (% of GDP),topics,Economy & Growth,3
+NE.EXP.CAPM.KN,KP Capacity to Import (Local),sources,WDI Database Archives,57
+NE.EXP.GNFS.CD,Exports of goods and services (current US$),topics,Economy & Growth,3
+NE.EXP.GNFS.CN,Exports of goods and services (current LCU),topics,Economy & Growth,3
+NE.EXP.GNFS.KD,Exports of goods and services (constant 2015 US$),topics,Economy & Growth,3
+NE.EXP.GNFS.KD.87,Exports of goods and services (constant 1987 US$),sources,WDI Database Archives,57
+NE.EXP.GNFS.KD.ZG,Exports of goods and services (annual % growth),topics,Economy & Growth,3
+NE.EXP.GNFS.KN,Exports of goods and services (constant LCU),topics,Economy & Growth,3
+NE.EXP.GNFS.KN.87,Exports of goods and services (constant 1987 LCU),sources,WDI Database Archives,57
+NE.EXP.GNFS.KN.87.ZG,Exports of goods and services (annual % growth),sources,WDI Database Archives,57
+NE.EXP.GNFS.KN.ZG,"Exports of goods and non-financial services, growth (%, constant LCU)",sources,Africa Development Indicators,11
+NE.EXP.GNFS.XN,"Export price index (goods and services, 2000=100)",sources,Africa Development Indicators,11
+NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),topics,Economy & Growth,3
+NE.EXP.TTEF.KN,KP Terms of Trade Adjustment (Local),sources,WDI Database Archives,57
+NE.GDI.CON.GOVT.CR,GDP expenditure on general government consumption (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.CON.GOVT.SNA08.CR,"GDP expenditure on general government consumption (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.CON.NPI.CR,GDP expenditure on non profit private institution consumption (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.CON.NPI.SNA08.CR,"GDP expenditure on non profit private institution consumption (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.CON.PRVT.CR,GDP expenditure on private consumption (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.CON.PRVT.SNA08.CR,"GDP expenditure on private consumption (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.EXPT.CR,GDP expenditure on exports (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.EXPT.SNA08.CR,"GDP expenditure on exports (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.FCGV.CD,GDFI - central government (current US$),sources,Africa Development Indicators,11
+NE.GDI.FCGV.CN,GDFI - central government (current LCU),sources,Africa Development Indicators,11
+NE.GDI.FCGV.KD,GDFI - central government (constant 2000 US$),sources,Africa Development Indicators,11
+NE.GDI.FCGV.KN,GDFI - central government (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FGOV.CD,GDFI - general government (current US$),sources,Africa Development Indicators,11
+NE.GDI.FGOV.CN,GDFI - general government (current LCU),sources,Africa Development Indicators,11
+NE.GDI.FGOV.KD,GDFI - general government (constant 2000 US$),sources,Africa Development Indicators,11
+NE.GDI.FGOV.KN,GDFI - general government (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FIXD.CN,CP Fixed Investment (Local),sources,WDI Database Archives,57
+NE.GDI.FIXD.KN,Fixed Investment (local) (Const. Price),sources,WDI Database Archives,57
+NE.GDI.FLGV.CD,GDFI - state and local government (current US$),sources,Africa Development Indicators,11
+NE.GDI.FLGV.CN,GDFI - state and local government (current LCU),sources,Africa Development Indicators,11
+NE.GDI.FLGV.KN,GDFI - state and local government (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FPBE.CD,GDFI - public enterprises (current US$),sources,Africa Development Indicators,11
+NE.GDI.FPBE.CN,GDFI - public enterprises (current LCU),sources,Africa Development Indicators,11
+NE.GDI.FPBE.KN,GDFI - public enterprises (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FPRV.CD,GDFI - private (current US$),sources,Africa Development Indicators,11
+NE.GDI.FPRV.CN,"Gross fixed capital formation, private sector (current LCU)",topics,Economy & Growth,3
+NE.GDI.FPRV.GI.ZS,Private fixed investment (% of GDFI),sources,WDI Database Archives,57
+NE.GDI.FPRV.GI.ZS.IC,Private fixed investment (% of gross domestic fixed investment),sources,WDI Database Archives,57
+NE.GDI.FPRV.IC.ZS,Private investment (% of GDFI),sources,WDI Database Archives,57
+NE.GDI.FPRV.IFC.ZS,Private investment (% of GDFI),sources,WDI Database Archives,57
+NE.GDI.FPRV.KD,GDFI - private sector (constant 2000 US$),sources,Africa Development Indicators,11
+NE.GDI.FPRV.KN,GDFI - private sector (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FPRV.ZS,"Gross fixed capital formation, private sector (% of GDP)",topics,Economy & Growth,3
+NE.GDI.FPUB.CD,GDFI - public sector (current US$),sources,Africa Development Indicators,11
+NE.GDI.FPUB.CN,"Gross fixed capital formation, public sector (current LCU)",sources,Africa Development Indicators,11
+NE.GDI.FPUB.KD,GDFI - public sector (constant 2000 US$),sources,Africa Development Indicators,11
+NE.GDI.FPUB.KN,GDFI - public sector (constant LCU),sources,Africa Development Indicators,11
+NE.GDI.FPUB.ZS,Gross public investment (% of GDP),sources,Africa Development Indicators,11
+NE.GDI.FTOT.CD,Gross fixed capital formation (current US$),topics,Economy & Growth,3
+NE.GDI.FTOT.CN,Gross fixed capital formation (current LCU),topics,Economy & Growth,3
+NE.GDI.FTOT.CR,GDP expenditure on gross fixed capital formation (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.FTOT.KD,Gross fixed capital formation (constant 2015 US$),topics,Economy & Growth,3
+NE.GDI.FTOT.KD.87,Gross domestic fixed investment (constant 1987 US$),sources,WDI Database Archives,57
+NE.GDI.FTOT.KD.ZG,Gross fixed capital formation (annual % growth),topics,Economy & Growth,3
+NE.GDI.FTOT.KN,Gross fixed capital formation (constant LCU),topics,Economy & Growth,3
+NE.GDI.FTOT.KN.87,Gross domestic fixed investment (constant 1987 LCU),sources,WDI Database Archives,57
+NE.GDI.FTOT.KN.87.ZG,Gross domestic fixed investment (annual % growth),sources,WDI Database Archives,57
+NE.GDI.FTOT.SNA08.CR,"GDP expenditure on gross fixed capital formation (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.FTOT.ZS,Gross fixed capital formation (% of GDP),topics,Economy & Growth,3
+NE.GDI.IMPT.CR,GDP expenditure on imports (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.IMPT.SNA08.CR,"GDP expenditure on imports (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.INEX.SNA08.CR,"GDP expenditure on inter-region net exports (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.PCAP.KD,Gross domestic investment per capita (1987 USD),sources,WDI Database Archives,57
+NE.GDI.PCAP.KD.87,Gross domestic investment per cap. (1987 US$),sources,WDI Database Archives,57
+NE.GDI.STKB.CD,Changes in inventories (current US$),topics,Economy & Growth,3
+NE.GDI.STKB.CN,Changes in inventories (current LCU),topics,Economy & Growth,3
+NE.GDI.STKB.CR,GDP expenditure on changes in stock (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.STKB.KD.87,Change in inventories (constant 1987 US$),sources,WDI Database Archives,57
+NE.GDI.STKB.KN,Changes in inventories (constant LCU),topics,Economy & Growth,3
+NE.GDI.STKB.KN.87,Change in inventories (constant 1987 LCU),sources,WDI Database Archives,57
+NE.GDI.STKB.SNA08.CR,"GDP expenditure on changes in stock (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.STPB.CD,Change in stocks public sector (current US$),sources,Africa Development Indicators,11
+NE.GDI.STPB.CN,Change in stocks public sector (current LCU),sources,Africa Development Indicators,11
+NE.GDI.STPB.KN,"Change in stocks, public sector (constant LCU)",sources,Africa Development Indicators,11
+NE.GDI.STPV.CD,"Change in stocks, private sector (current US$)",sources,Africa Development Indicators,11
+NE.GDI.STPV.CN,"Change in stocks, private sector (current LCU)",sources,Africa Development Indicators,11
+NE.GDI.STPV.KN,"Change in stocks, private sector (constant LCU)",sources,Africa Development Indicators,11
+NE.GDI.TOTL.CD,Gross capital formation (current US$),topics,Economy & Growth,3
+NE.GDI.TOTL.CN,Gross capital formation (current LCU),topics,Economy & Growth,3
+NE.GDI.TOTL.CR,Total GDP based on expenditure (in IDR Million),sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.TOTL.KD,Gross capital formation (constant 2015 US$),topics,Economy & Growth,3
+NE.GDI.TOTL.KD.87,Gross domestic investment (constant 1987 US$),sources,WDI Database Archives,57
+NE.GDI.TOTL.KD.ZG,Gross capital formation (annual % growth),topics,Economy & Growth,3
+NE.GDI.TOTL.KN,Gross capital formation (constant LCU),topics,Economy & Growth,3
+NE.GDI.TOTL.KN.87,Gross domestic investment (constant 1987 LCU),sources,WDI Database Archives,57
+NE.GDI.TOTL.KN.87.ZG,Gross domestic investment (annual % growth),sources,WDI Database Archives,57
+NE.GDI.TOTL.SNA08.CR,"Total GDP based on expenditure (in IDR Million), SNA 2008, Current Price",sources,Indonesia Database for Policy and Economic Research,45
+NE.GDI.TOTL.ZG,Gross domestic investment: contr. to growth of GDP(%),sources,WDI Database Archives,57
+NE.GDI.TOTL.ZS,Gross capital formation (% of GDP),topics,Economy & Growth,3
+NE.IMP.GNFS.CD,Imports of goods and services (current US$),topics,Economy & Growth,3
+NE.IMP.GNFS.CN,Imports of goods and services (current LCU),topics,Economy & Growth,3
+NE.IMP.GNFS.KD,Imports of goods and services (constant 2015 US$),topics,Economy & Growth,3
+NE.IMP.GNFS.KD.87,Imports of goods and services (constant 1987 US$),sources,WDI Database Archives,57
+NE.IMP.GNFS.KD.ZG,Imports of goods and services (annual % growth),topics,Economy & Growth,3
+NE.IMP.GNFS.KN,Imports of goods and services (constant LCU),topics,Economy & Growth,3
+NE.IMP.GNFS.KN.87,Imports of goods and services (constant 1987 LCU),sources,WDI Database Archives,57
+NE.IMP.GNFS.KN.87.ZG,Imports of goods and services (annual % growth),sources,WDI Database Archives,57
+NE.IMP.GNFS.XN,Import price index (goods and services 2000=100),sources,Africa Development Indicators,11
+NE.IMP.GNFS.ZS,Imports of goods and services (% of GDP),topics,Economy & Growth,3
+NE.MRCH.GDP.ZS,Merchandise trade to GDP ratio (%),sources,Africa Development Indicators,11
+NE.RSB.GNFS.CD,External balance on goods and services (current US$),topics,Economy & Growth,3
+NE.RSB.GNFS.CN,External balance on goods and services (current LCU),topics,Economy & Growth,3
+NE.RSB.GNFS.KD.87,Resource balance (constant 1987 US$),sources,WDI Database Archives,57
+NE.RSB.GNFS.KN,External balance on goods and services (constant LCU),topics,Economy & Growth,3
+NE.RSB.GNFS.KN.87,Resource balance (constant 1987 LCU),sources,WDI Database Archives,57
+NE.RSB.GNFS.ZG,Resource balance: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NE.RSB.GNFS.ZS,External balance on goods and services (% of GDP),topics,Economy & Growth,3
+NE.RSB.TOTL.KN,Resource Balance (local) (Const. Price),sources,WDI Database Archives,57
+NE.TRD.GNFS.CD,Trade of goods and services (current US$),sources,Africa Development Indicators,11
+NE.TRD.GNFS.ZS,Trade (% of GDP),topics,Economy & Growth,3
+NE.TRM.TRAD.XN,Terms of trade index (2000=100),sources,Africa Development Indicators,11
+NE.TRM.TRAD.XU,"Terms of trade (goods and services, 2000 = 100)",sources,Africa Development Indicators,11
+NEER,Nominal Effecive Exchange Rate,sources,Global Economic Monitor,15
+NP.AGR.TOTL.CN,"Agriculture, value added (local) (Curr. Price)",sources,WDI Database Archives,57
+NP.AGR.TOTL.IN,Agricultural Value Added Deflator,sources,WDI Database Archives,57
+NP.AGR.TOTL.KN,"Agriculture, value added (local) (Const. Price)",sources,WDI Database Archives,57
+NP.AGR.TOTL.ZG,Agriculture: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NP.IND.TOTL.CN,CP Value Added in Industry (Local),sources,WDI Database Archives,57
+NP.IND.TOTL.IN,Industrial Value Added Deflator,sources,WDI Database Archives,57
+NP.IND.TOTL.KN,"Industry, value added (local) (Const. Price)",sources,WDI Database Archives,57
+NP.IND.TOTL.ZG,Industry: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NP.MAN.TOTL.CN,CP Value Added in Manufacturing (Local),sources,WDI Database Archives,57
+NP.MAN.TOTL.IN,Manuf. Value Added Deflator,sources,WDI Database Archives,57
+NP.MAN.TOTL.KN,KP Value Added in Manufacturing (Local),sources,WDI Database Archives,57
+NP.SRV.TOTL.CN,"CP Value Added in Services, etc. (Local)",sources,WDI Database Archives,57
+NP.SRV.TOTL.KN,"KP Value Added in Services, etc. (Local)",sources,WDI Database Archives,57
+NP.SRV.TOTL.ZG,Services: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NRRV.SHR.FRST.CR,"Total Natural Resources Revenue Sharing from Forestry (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NRRV.SHR.FSH.CR,"Total Natural Resources Revenue Sharing from Fishery (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NRRV.SHR.GAS.CR,"Total Natural Resources Revenue Sharing from Gas (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NRRV.SHR.GEOT.CR,"Total Natural Resources Revenue Sharing from Geothermal Energy (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NRRV.SHR.MIN.CR,"Total Natural Resources Revenue Sharing from Mining (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NRRV.SHR.PETR.CR,"Total Natural Resources Revenue Sharing from Oil (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+NV.AGR.EMPL.KD,"Agriculture, forestry, and fishing, value added per worker (constant 2015 US$)",topics,Economy & Growth,3
+NV.AGR.PCAP.KD.ZG,Real agricultural GDP per capita growth rate (%),sources,Africa Development Indicators,11
+NV.AGR.TOTL.CD,"Agriculture, forestry, and fishing, value added (current US$)",topics,Agriculture & Rural Development,1
+NV.AGR.TOTL.CN,"Agriculture, forestry, and fishing, value added (current LCU)",topics,Economy & Growth,3
+NV.AGR.TOTL.KD,"Agriculture, forestry, and fishing, value added (constant 2015 US$)",topics,Economy & Growth,3
+NV.AGR.TOTL.KD.87,"Agriculture, value added (constant 1987 US$)",sources,WDI Database Archives,57
+NV.AGR.TOTL.KD.ZG,"Agriculture, forestry, and fishing, value added (annual % growth)",topics,Economy & Growth,3
+NV.AGR.TOTL.KN,"Agriculture, forestry, and fishing, value added (constant LCU)",topics,Economy & Growth,3
+NV.AGR.TOTL.KN.87,"Agriculture, value added (constant 1987 LCU)",sources,WDI Database Archives,57
+NV.AGR.TOTL.KN.87.ZG,"Agriculture, value added (annual % growth)",sources,WDI Database Archives,57
+NV.AGR.TOTL.XD,"Agriculture, val. added defl. (1987=100,Index)",sources,WDI Database Archives,57
+NV.AGR.TOTL.ZG,Real agricultural GDP growth rates (%),sources,Africa Development Indicators,11
+NV.AGR.TOTL.ZS,"Agriculture, forestry, and fishing, value added (% of GDP)",topics,Agriculture & Rural Development,1
+NV.FSM.TOTL.CN,Financial intermediary services indirectly Measured (FISIM) (current LCU),topics,Economy & Growth,3
+NV.FSM.TOTL.KN,Financial intermediary services indirectly Measured (FISIM) (constant LCU),topics,Economy & Growth,3
+NV.IND.CNST.CD,"Construction, value added (current US$)",sources,Africa Development Indicators,11
+NV.IND.CNST.CN,"Construction, value added (current LCU)",sources,Africa Development Indicators,11
+NV.IND.CNST.KN,"Construction, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.IND.EMPL.KD,"Industry (including construction), value added per worker (constant 2015 US$)",topics,Economy & Growth,3
+NV.IND.GELW.CD,"Electricity, gas and water supply, value added (current US$)",sources,Africa Development Indicators,11
+NV.IND.GELW.CN,"Electricity, gas and water supply, value added (current LCU)",sources,Africa Development Indicators,11
+NV.IND.GELW.KN,"Electricity, gas and water supply, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.IND.MANF.CD,"Manufacturing, value added (current US$)",topics,Economy & Growth,3
+NV.IND.MANF.CN,"Manufacturing, value added (current LCU)",topics,Economy & Growth,3
+NV.IND.MANF.KD,"Manufacturing, value added (constant 2015 US$)",topics,Economy & Growth,3
+NV.IND.MANF.KD.87,"Manufacturing, value added (constant 1987 US$)",sources,WDI Database Archives,57
+NV.IND.MANF.KD.ZG,"Manufacturing, value added (annual % growth)",topics,Economy & Growth,3
+NV.IND.MANF.KN,"Manufacturing, value added (constant LCU)",topics,Economy & Growth,3
+NV.IND.MANF.KN.87,"Manufacturing, value added (constant 1987 LCU)",sources,WDI Database Archives,57
+NV.IND.MANF.KN.87.ZG,"Manufacturing, value added (annual % growth)",sources,WDI Database Archives,57
+NV.IND.MANF.KN.ZG,"Value added, manufacturing growth rate (%)",sources,Africa Development Indicators,11
+NV.IND.MANF.XD,"Manufacturing, val. added defl.(1987=100,Index)",sources,WDI Database Archives,57
+NV.IND.MANF.ZS,"Manufacturing, value added (% of GDP)",topics,Economy & Growth,3
+NV.IND.MINQ.CD,"Mining and quarrying, value added (current US$)",sources,Africa Development Indicators,11
+NV.IND.MINQ.CN,"Mining and quarrying, value added (current LCU)",sources,Africa Development Indicators,11
+NV.IND.MINQ.KD,"Value added, mining and quarrying (constant 2000 US$)",sources,Africa Development Indicators,11
+NV.IND.MINQ.KN,"Mining and quarrying, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.IND.TOTL.CD,"Industry (including construction), value added (current US$)",topics,Economy & Growth,3
+NV.IND.TOTL.CN,"Industry (including construction), value added (current LCU)",topics,Economy & Growth,3
+NV.IND.TOTL.KD,"Industry (including construction), value added (constant 2015 US$)",topics,Economy & Growth,3
+NV.IND.TOTL.KD.87,"Industry, value added (constant 1987 US$)",sources,WDI Database Archives,57
+NV.IND.TOTL.KD.ZG,"Industry (including construction), value added (annual % growth)",topics,Economy & Growth,3
+NV.IND.TOTL.KN,"Industry (including construction), value added (constant LCU)",topics,Economy & Growth,3
+NV.IND.TOTL.KN.87,"Industry, value added (constant 1987 LCU)",sources,WDI Database Archives,57
+NV.IND.TOTL.KN.87.ZG,"Industry, value added (annual % growth)",sources,WDI Database Archives,57
+NV.IND.TOTL.XD,"Industry, val. added defl. (1987=100,Index)",sources,WDI Database Archives,57
+NV.IND.TOTL.ZG,Industry: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NV.IND.TOTL.ZS,"Industry (including construction), value added (% of GDP)",topics,Economy & Growth,3
+NV.MNF.CHEM.UN.ZS,Chemicals (% of value added in manufacturing),sources,WDI Database Archives,57
+NV.MNF.CHEM.ZS.UN,Chemicals (% of value added in manufacturing),topics,Economy & Growth,3
+NV.MNF.FBTO.UN.ZS,"Food, beverages, and tobacco (% of value added in mfg)",sources,WDI Database Archives,57
+NV.MNF.FBTO.ZS.UN,"Food, beverages and tobacco (% of value added in manufacturing)",topics,Economy & Growth,3
+NV.MNF.MTRN.UN.ZS,Machinery and transport equipment (% of value added in mfg),sources,WDI Database Archives,57
+NV.MNF.MTRN.ZS.UN,Machinery and transport equipment (% of value added in manufacturing),topics,Economy & Growth,3
+NV.MNF.OTHR.UN.ZS,Other manufacturing (% of value added in mfg),sources,WDI Database Archives,57
+NV.MNF.OTHR.ZS.UN,Other manufacturing (% of value added in manufacturing),topics,Economy & Growth,3
+NV.MNF.TECH.ZS.UN,Medium and high-tech manufacturing value added (% manufacturing value added),topics,Economy & Growth,3
+NV.MNF.TXTL.UN.ZS,Textiles and clothing (% of value added in mfg),sources,WDI Database Archives,57
+NV.MNF.TXTL.ZS.UN,Textiles and clothing (% of value added in manufacturing),topics,Economy & Growth,3
+NV.SRV.ADMN.CD,"Public administration and defence, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.ADMN.CN,"Public administration and defence, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.ADMN.KN,"Public administration and defence, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.BNKG.CD,"Financial and insurance activities (banking), value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.BNKG.CN,"Financial and insurance activities (banking), value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.BNKG.KN,"Financial and insurance activities (banking), value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.DISC.CD,"Discrepancy in GDP, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.DISC.CN,"Discrepancy in GDP, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.DISC.KN,"Discrepancy in GDP, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.DWEL.CD,"Ownership of dwellings, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.DWEL.CN,"Ownership of dwellings, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.DWEL.KN,"Ownership of dwellings, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.EMPL.KD,"Services, value added per worker (constant 2015 US$)",topics,Economy & Growth,3
+NV.SRV.OTHR.CD,"Other services, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.OTHR.CN,"Other services, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.OTHR.KN,"Other services, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.TETC.CD,"Services, etc., value added (current US$)",topics,Economy & Growth,3
+NV.SRV.TETC.CN,"Services, etc., value added (current LCU)",topics,Economy & Growth,3
+NV.SRV.TETC.KD,"Services, etc., value added (constant 2010 US$)",topics,Economy & Growth,3
+NV.SRV.TETC.KD.87,"Services, etc., value added (constant 1987 US$)",sources,WDI Database Archives,57
+NV.SRV.TETC.KD.ZG,"Services, etc., value added (annual % growth)",topics,Economy & Growth,3
+NV.SRV.TETC.KN,"Services, etc., value added (constant LCU)",topics,Economy & Growth,3
+NV.SRV.TETC.KN.87,"Services, etc., value added (constant 1987 LCU)",sources,WDI Database Archives,57
+NV.SRV.TETC.KN.87.ZG,"Services, etc., value added (annual % growth)",sources,WDI Database Archives,57
+NV.SRV.TETC.KN.ZG,"Value added, services and etc growth rate (%)",sources,Africa Development Indicators,11
+NV.SRV.TETC.ZG,Services: contribution to growth of GDP (%),sources,WDI Database Archives,57
+NV.SRV.TETC.ZS,"Services, etc., value added (% of GDP)",topics,Economy & Growth,3
+NV.SRV.TOTL.CD,"Services, value added (current US$)",topics,Economy & Growth,3
+NV.SRV.TOTL.CN,"Services, value added (current LCU)",topics,Economy & Growth,3
+NV.SRV.TOTL.KD,"Services, value added (constant 2015 US$)",topics,Economy & Growth,3
+NV.SRV.TOTL.KD.ZG,"Services, value added (annual % growth)",topics,Economy & Growth,3
+NV.SRV.TOTL.KN,"Services, value added (constant LCU)",topics,Economy & Growth,3
+NV.SRV.TOTL.ZS,"Services, value added (% of GDP)",topics,Economy & Growth,3
+NV.SRV.TRAD.CD,"Wholesale and retail trade, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.TRAD.CN,"Wholesale and retail trade, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.TRAD.KN,"Wholesale and retail trade, value added (constant LCU)",sources,Africa Development Indicators,11
+NV.SRV.TRAN.CD,"Transportation, storage and communication, value added (current US$)",sources,Africa Development Indicators,11
+NV.SRV.TRAN.CN,"Transportation, storage and communication, value added (current LCU)",sources,Africa Development Indicators,11
+NV.SRV.TRAN.KN,"Transportation, storage and communication, value added (constant LCU)",sources,Africa Development Indicators,11
+NW.DOW.PC,Domestic comprehensive wealth per capita index (real chained 2019 US$),sources,Wealth Accounts,59
+NW.DOW.PC.CD,Domestic comprehensive wealth per capita index (current US$),sources,Wealth Accounts,59
+NW.DOW.TO,Domestic comprehensive wealth index (real chained 2019 US$),sources,Wealth Accounts,59
+NW.DOW.TO.CD,Domestic comprehensive wealth index (current US$),sources,Wealth Accounts,59
+NW.HCA.FEMA.PC,"Human capital per capita, female (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.HCA.FEMA.PC.CD,"Human capital per capita, female (current US$)",sources,Wealth Accounts,59
+NW.HCA.FEMA.TO,"Human capital, female (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.HCA.FEMA.TO.CD,"Human capital, female (current US$)",sources,Wealth Accounts,59
+NW.HCA.MALE.PC,"Human capital per capita, male (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.HCA.MALE.PC.CD,"Human capital per capita, male (current US$)",sources,Wealth Accounts,59
+NW.HCA.MALE.TO,"Human capital, male (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.HCA.MALE.TO.CD,"Human capital, male (current US$)",sources,Wealth Accounts,59
+NW.HCA.PC,Human capital per capita (real chained 2019 US$),sources,Wealth Accounts,59
+NW.HCA.PC.CD,Human capital per capita (current US$),sources,Wealth Accounts,59
+NW.HCA.TO,Human capital (real chained 2019 US$),sources,Wealth Accounts,59
+NW.HCA.TO.CD,Human capital (current US$),sources,Wealth Accounts,59
+NW.NCA.AGRI.PC,"Renewable natural capital per capita, agricultural land (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.AGRI.PC.CD,"Renewable natural capital per capita, agricultural land (current US$)",sources,Wealth Accounts,59
+NW.NCA.AGRI.TO,"Renewable natural capital, agricultural land (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.AGRI.TO.CD,"Renewable natural capital, agricultural land (current US$)",sources,Wealth Accounts,59
+NW.NCA.CROP.PC.CD,"Renewable natural capital per capita, agricultural land: cropland (current US$)",sources,Wealth Accounts,59
+NW.NCA.CROP.TO.CD,"Renewable natural capital, agricultural land: cropland (current US$)",sources,Wealth Accounts,59
+NW.NCA.FISH.PC,"Renewable natural capital per capita, fisheries (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FISH.PC.CD,"Renewable natural capital per capita, fisheries (current US$)",sources,Wealth Accounts,59
+NW.NCA.FISH.TO,"Renewable natural capital, fisheries (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FISH.TO.CD,"Renewable natural capital, fisheries (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTC.PC,"Renewable natural capital per capita, forest recreation, hunting and fishing services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTC.PC.CD,"Renewable natural capital per capita, forest recreation, hunting and fishing services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTC.TO,"Renewable natural capital, forest recreation, hunting and fishing services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTC.TO.CD,"Renewable natural capital, forest recreation, hunting and fishing services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTP.PC,"Renewable natural capital per capita, nonwood forest protection ecosystem services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTP.PC.CD,"Renewable natural capital per capita, nonwood forest protection ecosystem services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTP.TO,"Renewable natural capital, nonwood forest protection ecosystem services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTP.TO.CD,"Renewable natural capital, nonwood forest protection ecosystem services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTW.PC,"Renewable natural capital per capita, forest water ecosystem services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTW.PC.CD,"Renewable natural capital per capita, forest water ecosystem services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FSTW.TO,"Renewable natural capital, forest water ecosystem services (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FSTW.TO.CD,"Renewable natural capital, forest water ecosystem services (current US$)",sources,Wealth Accounts,59
+NW.NCA.FTIM.PC,"Renewable natural capital per capita, timber (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FTIM.PC.CD,"Renewable natural capital per capita, timber (current US$)",sources,Wealth Accounts,59
+NW.NCA.FTIM.TO,"Renewable natural capital, timber (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.FTIM.TO.CD,"Renewable natural capital, timber (current US$)",sources,Wealth Accounts,59
+NW.NCA.HYDR.PC,"Renewable natural capital per capita, hydropower energy (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.HYDR.PC.CD,"Renewable natural capital per capita, hydropower energy (current US$)",sources,Wealth Accounts,59
+NW.NCA.HYDR.TO,"Renewable natural capital, hydropower energy (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.HYDR.TO.CD,"Renewable natural capital, hydropower energy (current US$)",sources,Wealth Accounts,59
+NW.NCA.MANG.PC,"Renewable natural capital per capita, mangroves (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MANG.PC.CD,"Renewable natural capital, mangroves (current US$)",sources,Wealth Accounts,59
+NW.NCA.MANG.TO,"Renewable natural capital, mangroves (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MANG.TO.CD,"Renewable natural capital per capita, mangroves (current US$)",sources,Wealth Accounts,59
+NW.NCA.MBAU.PC,"Nonrenewable natural capital per capita, metals and minerals: bauxite (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MBAU.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: bauxite (current US$)",sources,Wealth Accounts,59
+NW.NCA.MBAU.TO,"Nonrenewable natural capital, metals and minerals: bauxite (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MBAU.TO.CD,"Nonrenewable natural capital, metals and minerals: bauxite (current US$)",sources,Wealth Accounts,59
+NW.NCA.MCOB.PC,"Nonrenewable natural capital per capita, metals and minerals: cobalt (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MCOB.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: cobalt (current US$)",sources,Wealth Accounts,59
+NW.NCA.MCOB.TO,"Nonrenewable natural capital, metals and minerals: cobalt (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MCOB.TO.CD,"Nonrenewable natural capital, metals and minerals: cobalt (current US$)",sources,Wealth Accounts,59
+NW.NCA.MCOP.PC,"Nonrenewable natural capital per capita, metals and minerals: copper (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MCOP.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: copper (current US$)",sources,Wealth Accounts,59
+NW.NCA.MCOP.TO,"Nonrenewable natural capital, metals and minerals: copper (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MCOP.TO.CD,"Nonrenewable natural capital, metals and minerals: copper (current US$)",sources,Wealth Accounts,59
+NW.NCA.MGOL.PC,"Nonrenewable natural capital per capita, metals and minerals: gold (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MGOL.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: gold (current US$)",sources,Wealth Accounts,59
+NW.NCA.MGOL.TO,"Nonrenewable natural capital, metals and minerals: gold (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MGOL.TO.CD,"Nonrenewable natural capital, metals and minerals: gold (current US$)",sources,Wealth Accounts,59
+NW.NCA.MINR.PC,"Nonrenewable natural capital per capita, metals and minerals, sub-index, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MINR.PC.CD,"Nonrenewable natural capital per capita, metals and minerals, sub-index, total (current US$)",sources,Wealth Accounts,59
+NW.NCA.MINR.TO,"Nonrenewable natural capital, metals and minerals, sub-index, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MINR.TO.CD,"Nonrenewable natural capital, metals and minerals, sub-index, total (current US$)",sources,Wealth Accounts,59
+NW.NCA.MIRO.PC,"Nonrenewable natural capital per capita, metals and minerals: iron ore (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MIRO.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: iron ore (current US$)",sources,Wealth Accounts,59
+NW.NCA.MIRO.TO,"Nonrenewable natural capital, metals and minerals: iron ore (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MIRO.TO.CD,"Nonrenewable natural capital, metals and minerals: iron ore (current US$)",sources,Wealth Accounts,59
+NW.NCA.MLEA.PC,"Nonrenewable natural capital per capita, metals and minerals: lead (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MLEA.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: lead (current US$)",sources,Wealth Accounts,59
+NW.NCA.MLEA.TO,"Nonrenewable natural capital, metals and minerals: lead (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MLEA.TO.CD,"Nonrenewable natural capital, metals and minerals: lead (current US$)",sources,Wealth Accounts,59
+NW.NCA.MLIT.PC,"Nonrenewable natural capital per capita, metals and minerals: lithium (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MLIT.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: lithium (current US$)",sources,Wealth Accounts,59
+NW.NCA.MLIT.TO,"Nonrenewable natural capital, metals and minerals: lithium (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MLIT.TO.CD,"Nonrenewable natural capital, metals and minerals: lithium (current US$)",sources,Wealth Accounts,59
+NW.NCA.MMOL.PC,"Nonrenewable natural capital per capita, metals and minerals: molybdenum (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MMOL.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: molybdenum (current US$)",sources,Wealth Accounts,59
+NW.NCA.MMOL.TO,"Nonrenewable natural capital, metals and minerals: molybdenum (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MMOL.TO.CD,"Nonrenewable natural capital, metals and minerals: molybdenum (current US$)",sources,Wealth Accounts,59
+NW.NCA.MNIC.PC,"Nonrenewable natural capital per capita, metals and minerals: nickel (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MNIC.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: nickel (current US$)",sources,Wealth Accounts,59
+NW.NCA.MNIC.TO,"Nonrenewable natural capital, metals and minerals: nickel (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MNIC.TO.CD,"Nonrenewable natural capital, metals and minerals: nickel (current US$)",sources,Wealth Accounts,59
+NW.NCA.MPHO.PC,"Nonrenewable natural capital per capita, metals and minerals: phosphate (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MPHO.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: phosphate (current US$)",sources,Wealth Accounts,59
+NW.NCA.MPHO.TO,"Nonrenewable natural capital, metals and minerals: phosphate (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MPHO.TO.CD,"Nonrenewable natural capital, metals and minerals: phosphate (current US$)",sources,Wealth Accounts,59
+NW.NCA.MSIL.PC,"Nonrenewable natural capital per capita, metals and minerals: silver (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MSIL.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: silver (current US$)",sources,Wealth Accounts,59
+NW.NCA.MSIL.TO,"Nonrenewable natural capital, metals and minerals: silver (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MSIL.TO.CD,"Nonrenewable natural capital, metals and minerals: silver (current US$)",sources,Wealth Accounts,59
+NW.NCA.MTIN.PC,"Nonrenewable natural capital per capita, metals and minerals: tin (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MTIN.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: tin (current US$)",sources,Wealth Accounts,59
+NW.NCA.MTIN.TO,"Nonrenewable natural capital, metals and minerals: tin (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MTIN.TO.CD,"Nonrenewable natural capital, metals and minerals: tin (current US$)",sources,Wealth Accounts,59
+NW.NCA.MZIN.PC,"Nonrenewable natural capital per capita, metals and minerals: zinc (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MZIN.PC.CD,"Nonrenewable natural capital per capita, metals and minerals: zinc (current US$)",sources,Wealth Accounts,59
+NW.NCA.MZIN.TO,"Nonrenewable natural capital, metals and minerals: zinc (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.MZIN.TO.CD,"Nonrenewable natural capital, metals and minerals: zinc (current US$)",sources,Wealth Accounts,59
+NW.NCA.PAST.PC.CD,"Renewable natural capital per capita, agricultural land: pastureland (current US$)",sources,Wealth Accounts,59
+NW.NCA.PAST.TO.CD,"Renewable natural capital, agricultural land: pastureland (current US$)",sources,Wealth Accounts,59
+NW.NCA.SACO.PC,"Nonrenewable natural capital per capita, coal (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SACO.PC.CD,"Nonrenewable natural capital per capita, coal (current US$)",sources,Wealth Accounts,59
+NW.NCA.SACO.TO,"Nonrenewable natural capital, coal (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SACO.TO.CD,"Nonrenewable natural capital, coal (current US$)",sources,Wealth Accounts,59
+NW.NCA.SAGA.PC,"Nonrenewable natural capital per capita, natural gas (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SAGA.PC.CD,"Nonrenewable natural capital per capita, natural gas (current US$)",sources,Wealth Accounts,59
+NW.NCA.SAGA.TO,"Nonrenewable natural capital, natural gas (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SAGA.TO.CD,"Nonrenewable natural capital, natural gas (current US$)",sources,Wealth Accounts,59
+NW.NCA.SAOI.PC,"Nonrenewable natural capital per capita, oil (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SAOI.PC.CD,"Nonrenewable natural capital per capita, oil (current US$)",sources,Wealth Accounts,59
+NW.NCA.SAOI.TO,"Nonrenewable natural capital, oil (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SAOI.TO.CD,"Nonrenewable natural capital, oil (current US$)",sources,Wealth Accounts,59
+NW.NCA.SSOI.PC,"Nonrenewable natural capital per capita, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SSOI.PC.CD,"Nonrenewable natural capital per capita, total (current US$)",sources,Wealth Accounts,59
+NW.NCA.SSOI.TO,"Nonrenewable natural capital, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.SSOI.TO.CD,"Nonrenewable natural capital, total (current US$)",sources,Wealth Accounts,59
+NW.NCA.TOTL.PC,"Renewable natural capital per capita, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.TOTL.PC.CD,"Renewable natural capital per capita, total (current US$)",sources,Wealth Accounts,59
+NW.NCA.TOTL.TO,"Renewable natural capital, total (real chained 2019 US$)",sources,Wealth Accounts,59
+NW.NCA.TOTL.TO.CD,"Renewable natural capital, total (current US$)",sources,Wealth Accounts,59
+NW.NFA.PC,Foreign assets per capita (real chained 2019 US$),sources,Wealth Accounts,59
+NW.NFA.PC.CD,Foreign assets per capita (current US$),sources,Wealth Accounts,59
+NW.NFA.TO,Foreign assets (real chained 2019 US$),sources,Wealth Accounts,59
+NW.NFA.TO.CD,Foreign assets (current US$),sources,Wealth Accounts,59
+NW.NFL.PC,Foreign liabilities per capita (real chained 2019 US$),sources,Wealth Accounts,59
+NW.NFL.PC.CD,Foreign liabilities per capita (current US$),sources,Wealth Accounts,59
+NW.NFL.TO,Foreign liabilities (real chained 2019 US$),sources,Wealth Accounts,59
+NW.NFL.TO.CD,Foreign liabilities (current US$),sources,Wealth Accounts,59
+NW.PCA.PC,Produced capital per capita (real chained 2019 US$),sources,Wealth Accounts,59
+NW.PCA.PC.EX.CD,"Produced capital per capita, excluding urban land (current US$)",sources,Wealth Accounts,59
+NW.PCA.PC.IN.CD,"Produced capital per capita, including urban land (current US$)",sources,Wealth Accounts,59
+NW.PCA.TO,Produced capital (real chained 2019 US$),sources,Wealth Accounts,59
+NW.PCA.TO.EX.CD,"Produced capital, excluding urban land (current US$)",sources,Wealth Accounts,59
+NW.PCA.TO.IN.CD,"Produced capital, including urban land (current US$)",sources,Wealth Accounts,59
+NW.TOW.PC,National comprehensive wealth per capita index (real chained 2019 US$),sources,Wealth Accounts,59
+NW.TOW.PC.CD,National comprehensive wealth per capita (current US$),sources,Wealth Accounts,59
+NW.TOW.TO,National comprehensive wealth index (real chained 2019 US$),sources,Wealth Accounts,59
+NW.TOW.TO.CD,National comprehensive wealth (current US$),sources,Wealth Accounts,59
+NY.ADJ.AEDU.CD,Adjusted savings: education expenditure (current US$),topics,Economy & Growth,3
+NY.ADJ.AEDU.GN.ZS,Adjusted savings: education expenditure (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DCO2.CD,Adjusted savings: carbon dioxide damage (current US$),topics,Economy & Growth,3
+NY.ADJ.DCO2.GN.ZS,Adjusted savings: carbon dioxide damage (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DFOR.CD,Adjusted savings: net forest depletion (current US$),topics,Economy & Growth,3
+NY.ADJ.DFOR.GN.ZS,Adjusted savings: net forest depletion (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DKAP.CD,Adjusted savings: consumption of fixed capital (current US$),topics,Economy & Growth,3
+NY.ADJ.DKAP.GN.ZS,Adjusted savings: consumption of fixed capital (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DMIN.CD,Adjusted savings: mineral depletion (current US$),topics,Economy & Growth,3
+NY.ADJ.DMIN.GN.ZS,Adjusted savings: mineral depletion (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DNGY.CD,Adjusted savings: energy depletion (current US$),topics,Economy & Growth,3
+NY.ADJ.DNGY.GN.ZS,Adjusted savings: energy depletion (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DPEM.CD,Adjusted savings: particulate emission damage (current US$),topics,Economy & Growth,3
+NY.ADJ.DPEM.GN.ZS,Adjusted savings: particulate emission damage (% of GNI),topics,Economy & Growth,3
+NY.ADJ.DRES.GN.ZS,Adjusted savings: natural resources depletion (% of GNI),topics,Economy & Growth,3
+NY.ADJ.ICTR.CD,Adjusted savings: gross savings (current US$),sources,Adjusted Net Savings,43
+NY.ADJ.ICTR.GN.ZS,Adjusted savings: gross savings (% of GNI),topics,Economy & Growth,3
+NY.ADJ.NNAT.CD,Adjusted savings: net national savings (current US$),topics,Economy & Growth,3
+NY.ADJ.NNAT.GN.ZS,Adjusted savings: net national savings (% of GNI),topics,Economy & Growth,3
+NY.ADJ.NNTY.CD,Adjusted net national income (current US$),topics,Economy & Growth,3
+NY.ADJ.NNTY.KD,Adjusted net national income (constant 2015 US$),topics,Economy & Growth,3
+NY.ADJ.NNTY.KD.ZG,Adjusted net national income (annual % growth),topics,Economy & Growth,3
+NY.ADJ.NNTY.PC.CD,Adjusted net national income per capita (current US$),topics,Economy & Growth,3
+NY.ADJ.NNTY.PC.KD,Adjusted net national income per capita (constant 2015 US$),topics,Economy & Growth,3
+NY.ADJ.NNTY.PC.KD.ZG,Adjusted net national income per capita (annual % growth),topics,Economy & Growth,3
+NY.ADJ.SVNG.CD,"Adjusted net savings, including particulate emission damage (current US$)",topics,Economy & Growth,3
+NY.ADJ.SVNG.GN.ZS,"Adjusted net savings, including particulate emission damage (% of GNI)",topics,Economy & Growth,3
+NY.ADJ.SVNG.PC.CD,Adjusted net savings per capita (current US$),sources,Adjusted Net Savings,43
+NY.ADJ.SVNX.CD,"Adjusted net savings, excluding particulate emission damage (current US$)",topics,Economy & Growth,3
+NY.ADJ.SVNX.GN.ZS,"Adjusted net savings, excluding particulate emission damage (% of GNI)",topics,Economy & Growth,3
+NY.AGR.SUBS.GD.ZS,Agricultural support estimate (% of GDP),topics,Millenium development goals,18
+NY.EXP.CAPM.KD.87,Exports as a capacity to import (constant 1987 US$),sources,WDI Database Archives,57
+NY.EXP.CAPM.KN,Exports as a capacity to import (constant LCU),topics,Economy & Growth,3
+NY.EXP.CAPM.KN.87,Exports as a capacity to import (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GDP.COAL.RT.ZS,Coal rents (% of GDP),topics,Environment,6
+NY.GDP.DEFL.87.ZG,"Inflation, GDP deflator (annual %)",sources,WDI Database Archives,57
+NY.GDP.DEFL.KD.ZG,"Inflation, GDP deflator (annual %)",topics,Economy & Growth,3
+NY.GDP.DEFL.KD.ZG.AD,"Inflation, GDP deflator: linked series (annual %)",topics,Financial Sector,7
+NY.GDP.DEFL.ZS,GDP deflator (base year varies by country),topics,Economy & Growth,3
+NY.GDP.DEFL.ZS.87,GDP deflator (1987 = 100),sources,WDI Database Archives,57
+NY.GDP.DEFL.ZS.AD,GDP deflator: linked series (base year varies by country),topics,Financial Sector,7
+NY.GDP.DISC.CD,Discrepancy in expenditure estimate of GDP (current US$),sources,Africa Development Indicators,11
+NY.GDP.DISC.CN,Discrepancy in expenditure estimate of GDP (current LCU),topics,Economy & Growth,3
+NY.GDP.DISC.KN,Discrepancy in expenditure estimate of GDP (constant LCU),topics,Economy & Growth,3
+NY.GDP.FCST.CD,Gross value added at basic prices (GVA) (current US$),topics,Economy & Growth,3
+NY.GDP.FCST.CN,Gross value added at basic prices (GVA) (current LCU),topics,Economy & Growth,3
+NY.GDP.FCST.KD,Gross value added at basic prices (GVA) (constant 2015 US$),topics,Economy & Growth,3
+NY.GDP.FCST.KD.87,GDP at factor cost (constant 1987 US$),sources,WDI Database Archives,57
+NY.GDP.FCST.KN,Gross value added at basic prices (GVA) (constant LCU),topics,Economy & Growth,3
+NY.GDP.FCST.KN.87,GDP at factor cost (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GDP.FRST.RT.ZS,Forest rents (% of GDP),topics,Environment,6
+NY.GDP.MINR.RT.ZS,Mineral rents (% of GDP),topics,Energy & Mining,5
+NY.GDP.MKTP.CD,GDP (current US$),topics,Economy & Growth,3
+NY.GDP.MKTP.CD.XD,"GDP deflator, index (2000=100; US$ series)",sources,Africa Development Indicators,11
+NY.GDP.MKTP.CN,GDP (current LCU),topics,Economy & Growth,3
+NY.GDP.MKTP.CN.AD,GDP: linked series (current LCU),topics,Economy & Growth,3
+NY.GDP.MKTP.CN.XD,"GDP deflator, period average (LCU index 2000=100)",sources,Africa Development Indicators,11
+NY.GDP.MKTP.IN,GDP Deflator,sources,WDI Database Archives,57
+NY.GDP.MKTP.KD,GDP (constant 2015 US$),topics,Economy & Growth,3
+NY.GDP.MKTP.KD.87,GDP at market prices (constant 1987 US$),sources,WDI Database Archives,57
+NY.GDP.MKTP.KD.ZG,GDP growth (annual %),topics,Economy & Growth,3
+NY.GDP.MKTP.KN,GDP (constant LCU),topics,Economy & Growth,3
+NY.GDP.MKTP.KN.87,GDP at market prices (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GDP.MKTP.KN.87.ZG,GDP growth (annual %),sources,WDI Database Archives,57
+NY.GDP.MKTP.PP.CD,"GDP, PPP (current international $)",topics,Economy & Growth,3
+NY.GDP.MKTP.PP.KD,"GDP, PPP (constant 2021 international $)",topics,Economy & Growth,3
+NY.GDP.MKTP.PP.KD.87,"GDP, PPP (constant 1987 international $)",sources,WDI Database Archives,57
+NY.GDP.MKTP.XD,"GDP deflator (1987=100,Index)",sources,WDI Database Archives,57
+NY.GDP.MKTP.XU.E,"GDP deflator, end period (base year varies by country)",sources,Africa Development Indicators,11
+NY.GDP.MKTP.ZG,"Gross domestic product (Av. annual growth, %)",sources,WDI Database Archives,57
+NY.GDP.NGAS.RT.ZS,Natural gas rents (% of GDP),topics,Energy & Mining,5
+NY.GDP.PCAP.CD,GDP per capita (current US$),topics,Economy & Growth,3
+NY.GDP.PCAP.CN,GDP per capita (current LCU),topics,Economy & Growth,3
+NY.GDP.PCAP.KD,GDP per capita (constant 2015 US$),topics,Economy & Growth,3
+NY.GDP.PCAP.KD.ZG,GDP per capita growth (annual %),topics,Economy & Growth,3
+NY.GDP.PCAP.KN,GDP per capita (constant LCU),topics,Economy & Growth,3
+NY.GDP.PCAP.PP.CD,"GDP per capita, PPP (current international $)",topics,Economy & Growth,3
+NY.GDP.PCAP.PP.KD,"GDP per capita, PPP (constant 2021 international $)",topics,Economy & Growth,3
+NY.GDP.PCAP.PP.KD.87,"GDP per capita, PPP (constant 1987 international $)",sources,WDI Database Archives,57
+NY.GDP.PCAP.PP.KD.ZG,"GDP per capita, PPP annual growth (%)",sources,Africa Development Indicators,11
+NY.GDP.PETR.RT.ZS,Oil rents (% of GDP),topics,Energy & Mining,5
+NY.GDP.TOTL.RT.ZS,Total natural resources rents (% of GDP),topics,Energy & Mining,5
+NY.GDS.PRVT.CD,"Gross domestic savings, private (current US$)",sources,Africa Development Indicators,11
+NY.GDS.PRVT.CN,"Gross domestic savings, private (current LCU)",sources,Africa Development Indicators,11
+NY.GDS.PRVT.KN,"Gross domestic savings, private (constant LCU)",sources,Africa Development Indicators,11
+NY.GDS.PUBL.CD,"Gross domestic savings, public (current US$)",sources,Africa Development Indicators,11
+NY.GDS.PUBL.CN,"Gross domestic savings, public (current LCU)",sources,Africa Development Indicators,11
+NY.GDS.PUBL.KN,"Gross domestic savings, public (constant LCU)",sources,Africa Development Indicators,11
+NY.GDS.TOTL.CD,Gross domestic savings (current US$),topics,Economy & Growth,3
+NY.GDS.TOTL.CN,Gross domestic savings (current LCU),topics,Economy & Growth,3
+NY.GDS.TOTL.KD,"Gross domestic savings, total (constant 2000 US$)",sources,Africa Development Indicators,11
+NY.GDS.TOTL.KD.87,Gross domestic savings (constant 1987 US$),sources,WDI Database Archives,57
+NY.GDS.TOTL.KN,Gross domestic savings (constant LCU),sources,Africa Development Indicators,11
+NY.GDS.TOTL.KN.87,Gross domestic savings (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GDS.TOTL.ZS,Gross domestic savings (% of GDP),topics,Economy & Growth,3
+NY.GDY.TOTL.KD,Gross domestic income (constant 2005 US$),sources,WDI Database Archives,57
+NY.GDY.TOTL.KD.87,Gross domestic income (constant 1987 US$),sources,WDI Database Archives,57
+NY.GDY.TOTL.KN,Gross domestic income (constant LCU),topics,Economy & Growth,3
+NY.GDY.TOTL.KN.87,Gross domestic income (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GEN.AEDU.GD.ZS,Genuine savings: education expenditure (% of GDP),sources,WDI Database Archives,57
+NY.GEN.DCO2.GD.ZS,Genuine savings: carbon dioxide damage (% of GDP),sources,WDI Database Archives,57
+NY.GEN.DFOR.GD.ZS,Genuine savings: net forest depletion (% of GDP),sources,WDI Database Archives,57
+NY.GEN.DKAP.GD.ZS,Genuine savings: consumption of fixed capital (% of GDP),sources,WDI Database Archives,57
+NY.GEN.DMIN.GD.ZS,Genuine savings: mineral depletion (% of GDP),sources,WDI Database Archives,57
+NY.GEN.DNGY.GD.ZS,Genuine savings: energy depletion (% of GDP),sources,WDI Database Archives,57
+NY.GEN.NDOM.GD.ZS,Genuine savings: net domestic savings (% of GDP),sources,WDI Database Archives,57
+NY.GEN.SVNG.GD.ZS,Genuine domestic savings (% of GDP),sources,WDI Database Archives,57
+NY.GNP.ATLS.CD,"GNI, Atlas method (current US$)",topics,Economy & Growth,3
+NY.GNP.MKTP.CD,GNI (current US$),topics,Economy & Growth,3
+NY.GNP.MKTP.CN,GNI (current LCU),topics,Economy & Growth,3
+NY.GNP.MKTP.CN.AD,GNI: linked series (current LCU),topics,Economy & Growth,3
+NY.GNP.MKTP.KD,GNI (constant 2015 US$),topics,Economy & Growth,3
+NY.GNP.MKTP.KD.87,GNP at market prices (constant 1987 US$),sources,WDI Database Archives,57
+NY.GNP.MKTP.KD.ZG,GNI growth (annual %),topics,Economy & Growth,3
+NY.GNP.MKTP.KN,GNI (constant LCU),topics,Economy & Growth,3
+NY.GNP.MKTP.KN.87,GNP at market prices (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GNP.MKTP.KN.87.ZG,GNP growth (annual %),sources,WDI Database Archives,57
+NY.GNP.MKTP.PC.CD,GNI per capita (US$),sources,Sustainable Development Goals,46
+NY.GNP.MKTP.PP.CD,"GNI, PPP (current international $)",topics,Economy & Growth,3
+NY.GNP.MKTP.PP.KD,"GNI, PPP (constant 2021 international $)",topics,Economy & Growth,3
+NY.GNP.MKTP.PP.KD.87,"GNP, PPP (constant 1987 international $)",sources,WDI Database Archives,57
+NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",topics,Economy & Growth,3
+NY.GNP.PCAP.CD.AT,"GNP per capita (Atlas method) (US$,curr. pr.)",sources,WDI Database Archives,57
+NY.GNP.PCAP.CN,GNI per capita (current LCU),topics,Economy & Growth,3
+NY.GNP.PCAP.KD,GNI per capita (constant 2015 US$),topics,Economy & Growth,3
+NY.GNP.PCAP.KD.87,GNP per capita (constant 1987 US$),sources,WDI Database Archives,57
+NY.GNP.PCAP.KD.ZG,GNI per capita growth (annual %),topics,Economy & Growth,3
+NY.GNP.PCAP.KN,GNI per capita (constant LCU),topics,Economy & Growth,3
+NY.GNP.PCAP.KN.87,GNP per capita (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GNP.PCAP.PP.CD,"GNI per capita, PPP (current international $)",topics,Economy & Growth,3
+NY.GNP.PCAP.PP.KD,"GNI per capita, PPP (constant 2021 international $)",topics,Economy & Growth,3
+NY.GNP.PCAP.PP.KD.87,"GNP per capita, PPP (constant 1987 international $)",sources,WDI Database Archives,57
+NY.GNP.PCAP.ZG,GNP per capita growth (annual %),sources,WDI Database Archives,57
+NY.GNP.PCAT.CD,"Gross national product per capita (USD, Atlas meth.)",sources,WDI Database Archives,57
+NY.GNS.ICTR.CD,Gross savings (current US$),topics,Economy & Growth,3
+NY.GNS.ICTR.CN,Gross savings (current LCU),topics,Economy & Growth,3
+NY.GNS.ICTR.GN.ZS,Gross savings (% of GNI),topics,Economy & Growth,3
+NY.GNS.ICTR.KD,"Gross national savings, including net current transfers (constant 2000 US$)",sources,Africa Development Indicators,11
+NY.GNS.ICTR.KN,"Gross national savings, including net current transfers (constant LCU)",sources,Africa Development Indicators,11
+NY.GNS.ICTR.ZS,Gross savings (% of GDP),topics,Economy & Growth,3
+NY.GNS.PRVT.CD,"Gross national savings, private (current US$)",sources,Africa Development Indicators,11
+NY.GNS.PRVT.CN,"Gross national savings, private (current LCU)",sources,Africa Development Indicators,11
+NY.GNS.PRVT.KN,"Gross national savings, private (constant LCU)",sources,Africa Development Indicators,11
+NY.GNS.PUBL.CD,"Gross national savings, public (current US$)",sources,Africa Development Indicators,11
+NY.GNS.PUBL.CN,"Gross national savings, public (current LCU)",sources,Africa Development Indicators,11
+NY.GNS.PUBL.KN,"Gross national savings, public (constant LCU)",sources,Africa Development Indicators,11
+NY.GNS.TOTL.CN,CP Gross National Savings (Local),sources,WDI Database Archives,57
+NY.GNY.PCAP.KD,Gross national income per capita (1987 USD),sources,WDI Database Archives,57
+NY.GNY.PCAP.KD.87,Gross national income per capita (1987 US$),sources,WDI Database Archives,57
+NY.GNY.TOTL.CN,Gross national disposable income (current LCU),sources,Africa Development Indicators,11
+NY.GNY.TOTL.KD,Gross national income (constant 2000 US$),sources,Africa Development Indicators,11
+NY.GNY.TOTL.KD.87,Gross national income (constant 1987 US$),sources,WDI Database Archives,57
+NY.GNY.TOTL.KN,Gross national income (constant LCU),topics,Economy & Growth,3
+NY.GNY.TOTL.KN.87,Gross national income (constant 1987 LCU),sources,WDI Database Archives,57
+NY.GNY.TOTL.ZG,"Gross national income (Av. annual growth, %)",sources,WDI Database Archives,57
+NY.GSR.NFCY.CD,Net primary income (Net income from abroad) (current US$),topics,Economy & Growth,3
+NY.GSR.NFCY.CN,Net primary income (Net income from abroad) (current LCU),topics,Economy & Growth,3
+NY.GSR.NFCY.KD.87,Net income from abroad (constant 1987 US$),sources,WDI Database Archives,57
+NY.GSR.NFCY.KN,Net primary income (Net income from abroad) (constant LCU),topics,Economy & Growth,3
+NY.GSR.NFCY.KN.87,Net income from abroad (constant 1987 LCU),sources,WDI Database Archives,57
+NY.SVF.NFSY.CN,CP Net Factor Income (+) or Payments (Local),sources,WDI Database Archives,57
+NY.TAX.IDRT.CD,Indirect taxes (current US$),sources,Africa Development Indicators,11
+NY.TAX.IDRT.CN,Indirect taxes (current LCU),sources,Africa Development Indicators,11
+NY.TAX.NIND.CD,Taxes less subsidies on products (current US$),topics,Economy & Growth,3
+NY.TAX.NIND.CN,Taxes less subsidies on products (current LCU),topics,Economy & Growth,3
+NY.TAX.NIND.KD.87,Net indirect taxes (constant 1987 US$),sources,WDI Database Archives,57
+NY.TAX.NIND.KN,Taxes less subsidies on products (constant LCU),topics,Economy & Growth,3
+NY.TAX.NIND.KN.87,Net indirect taxes (constant 1987 LCU),sources,WDI Database Archives,57
+NY.TAX.SUBS.CD,Subsidies (current US$),sources,Africa Development Indicators,11
+NY.TAX.SUBS.CN,Subsidies (current LCU; from SNA),sources,Africa Development Indicators,11
+NY.TRF.NCTR.CD,Net secondary income (Net current transfers from abroad) (current US$),topics,Economy & Growth,3
+NY.TRF.NCTR.CN,Net secondary income (Net current transfers from abroad) (current LCU),topics,Economy & Growth,3
+NY.TRF.NCTR.KN,Net secondary income (Net current transfers from abroad) (constant LCU),topics,Economy & Growth,3
+NY.TTF.GNFS.KD.87,Terms of trade adjustment (constant 1987 US$),sources,WDI Database Archives,57
+NY.TTF.GNFS.KN,Terms of trade adjustment (constant LCU),topics,Economy & Growth,3
+NY.TTF.GNFS.KN.87,Terms of trade adjustment (constant 1987 LCU),sources,WDI Database Archives,57
+NY.TTF.MRCH.KN,Terms of Trade Adjustment (local) (Const. Price),sources,WDI Database Archives,57
+NYGDPMKTPKDZ,"GDP growth, constant (average 2010-19 prices and exchange rates)",sources,Global Economic Prospects,27
+NYGDPMKTPSACD,"GDP,current US$,millions,seas. adj.,",sources,Global Economic Monitor,15
+NYGDPMKTPSACN,"GDP,current LCU,millions,seas. adj.,",sources,Global Economic Monitor,15
+NYGDPMKTPSAKD,"GDP,constant 2010 US$,millions,seas. adj.,",sources,Global Economic Monitor,15
+NYGDPMKTPSAKN,"GDP,constant 2010 LCU,millions,seas. adj.,",sources,Global Economic Monitor,15
+OECD.TSAL.0.E0,Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Starting salary,sources,Education Statistics,12
+OECD.TSAL.0.E10,Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 10 years of experience,sources,Education Statistics,12
+OECD.TSAL.0.E15,Annual statutory teacher salaries in public institutions in USD. Pre-Primary. 15 years of experience,sources,Education Statistics,12
+OECD.TSAL.0.ETOP,Annual statutory teacher salaries in public institutions in USD. Pre-Primary. Top of scale,sources,Education Statistics,12
+OECD.TSAL.1.E0,Annual statutory teacher salaries in public institutions in USD. Primary. Starting salary,sources,Education Statistics,12
+OECD.TSAL.1.E10,Annual statutory teacher salaries in public institutions in USD. Primary. 10 years of experience,sources,Education Statistics,12
+OECD.TSAL.1.E15,Annual statutory teacher salaries in public institutions in USD. Primary. 15 years of experience,sources,Education Statistics,12
+OECD.TSAL.1.ETOP,Annual statutory teacher salaries in public institutions in USD. Primary. Top of scale,sources,Education Statistics,12
+OECD.TSAL.2.E0,Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Starting salary,sources,Education Statistics,12
+OECD.TSAL.2.E10,Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 10 years of experience,sources,Education Statistics,12
+OECD.TSAL.2.E15,Annual statutory teacher salaries in public institutions in USD. Lower Secondary. 15 years of experience,sources,Education Statistics,12
+OECD.TSAL.2.ETOP,Annual statutory teacher salaries in public institutions in USD. Lower Secondary. Top of scale,sources,Education Statistics,12
+OECD.TSAL.3.E0,Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Starting salary,sources,Education Statistics,12
+OECD.TSAL.3.E10,Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 10 years of experience,sources,Education Statistics,12
+OECD.TSAL.3.E15,Annual statutory teacher salaries in public institutions in USD. Upper Secondary. 15 years of experience,sources,Education Statistics,12
+OECD.TSAL.3.ETOP,Annual statutory teacher salaries in public institutions in USD. Upper Secondary. Top of scale,sources,Education Statistics,12
+OTHR.TAX.PAID.ZS,Other taxes (% of profits),sources,Doing Business,1
+PA.NUS.ATLS,DEC alternative conversion factor (LCU per US$),topics,Economy & Growth,3
+PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",topics,Financial Sector,7
+PA.NUS.FCRF.XR,Official exchange rate to parallel exchange rate ratio,sources,WDI Database Archives,57
+PA.NUS.PPP,"PPP conversion factor, GDP (LCU per international $)",topics,Economy & Growth,3
+PA.NUS.PPP.05,"2005 PPP conversion factor, GDP (LCU per international $)",topics,Economy & Growth,3
+PA.NUS.PPPC.RF,Price level ratio of PPP conversion factor (GDP) to market exchange rate,topics,Economy & Growth,3
+PA.NUS.PRVT.PP,"PPP conversion factor, private consumption (LCU per international $)",topics,Economy & Growth,3
+PA.NUS.PRVT.PP.05,"2005 PPP conversion factor, private consumption (LCU per international $)",topics,Economy & Growth,3
+PA.PPR.MAIZ.CD,Maize price (US$ per metric ton),sources,WDI Database Archives,57
+PA.PPR.MAIZ.CN,Maize price (local currency per metric ton),sources,WDI Database Archives,57
+PA.PPR.WHEA.CD,Wheat price (US$ per metric ton),sources,WDI Database Archives,57
+PA.PPR.WHEA.CN,Wheat price (local currency per metric ton),sources,WDI Database Archives,57
+PALM.LND.DMG,Palm Oil Land Area by type of condition: Damaged (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.IMM,Palm Oil Land Area by type of condition: Immature (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.MTR,Palm Oil Land Area by type of condition: Mature (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.PRVT,Palm Oil Land Area by type of ownership: Private (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.SMHD,Palm Oil Land Area by type of ownership: Smallholder (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.SOE,Palm Oil Land Area by type of ownership: State Owned Enterprise (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.LND.TOTL,Palm Oil Land Area: Total (in Hectares),sources,Indonesia Database for Policy and Economic Research,45
+PALM.PRD.PRVT,Palm Production by type of ownership: Private (in Tons),sources,Indonesia Database for Policy and Economic Research,45
+PALM.PRD.SMHD,Palm Production by type of ownership: Smallholder (in Tons),sources,Indonesia Database for Policy and Economic Research,45
+PALM.PRD.SOE,Palm Production by type of ownership: State Owned Enterprise (in Tons),sources,Indonesia Database for Policy and Economic Research,45
+PALM.PRD.TOTL,Palm Production: Total (in Tons),sources,Indonesia Database for Policy and Economic Research,45
+PALM.YLD.PRVT,Palm Oil Yield by type of ownership: Private (in Kg/Ha),sources,Indonesia Database for Policy and Economic Research,45
+PALM.YLD.SMHD,Palm Oil Yield by type of ownership: Smallholder (in Kg/Ha),sources,Indonesia Database for Policy and Economic Research,45
+PALM.YLD.SOE,Palm Oil Yield by type of ownership: State Owned Enterprise (in Kg/Ha),sources,Indonesia Database for Policy and Economic Research,45
+PAY.TAX.COIT.AU.HRS.DB1719,Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology),sources,Doing Business,1
+PAY.TAX.COIT.AU.HRS.TM.DB1719.DFRN,Paying taxes: Time to comply with corporate income tax correction (hours) (DB17-20 methodology) - Score,sources,Doing Business,1
+PAY.TAX.COIT.AU.WKS.DB1719,Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology),sources,Doing Business,1
+PAY.TAX.COIT.WKS.TM.DB1719.DFRN,Paying taxes: Time to complete a corporate income tax correction (weeks) (DB17-20 methodology) - Score,sources,Doing Business,1
+PAY.TAX.DB0616.DFRN,Paying taxes (DB06-16 methodology) - Score,sources,Doing Business,1
+PAY.TAX.DB1719.DRFN,Paying taxes (DB17-20 methodology) - Score,sources,Doing Business,1
+PAY.TAX.LABR.TAX.CONTR.ZS,Paying taxes: Labor tax and contributions (% of profits),sources,Doing Business,1
+PAY.TAX.POST.FIL.XD.0100.DB1719.DFRN,Paying taxes: Postfiling index (0-100) (DB17-20 methodology) - Score,sources,Doing Business,1
+PAY.TAX.PRFT.CP.ZS,Paying taxes: Profit tax (% of profits),sources,Doing Business,1
+PAY.TAX.PYMT.FREQ.NO,Paying taxes: Payments (number per year),sources,Doing Business,1
+PAY.TAX.PYMT.NO.DFRN,Paying taxes: Payments per year (number per year) - Score,sources,Doing Business,1
+PAY.TAX.RK.DB19,Rank: Paying taxes (1=most business-friendly regulations),sources,Doing Business,1
+PAY.TAX.TM,Paying taxes: Time (hours per year),sources,Doing Business,1
+PAY.TAX.TM.DFRN,Paying taxes: Time (hours per year) - Score,sources,Doing Business,1
+PAY.TAX.TOT.TAX.RT.ZS,Paying taxes: Total tax and contribution rate (% of profit),sources,Doing Business,1
+PAY.TAX.TOT.TAX.RT.ZS.DRFRN,Paying taxes: Total tax and contribution rate (% of profit) - Score,sources,Doing Business,1
+PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719,Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology),sources,Doing Business,1
+PAY.TAX.VAT.REF.OBT.WKS.TM.DB1719.DFRN,Paying taxes: Time to obtain VAT refund (weeks) (DB17-20 methodology) - Score,sources,Doing Business,1
+PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719,Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology),sources,Doing Business,1
+PAY.TAX.VAT.REFU.COMP.HRS.TM.DB1719.DFRN,Paying taxes: Time to comply with VAT refund (hours) (DB17-20 methodology) - Score,sources,Doing Business,1
+PE.NUS.FCAE,"Official exchange rate (LCU per US$, end period)",sources,Africa Development Indicators,11
+PE.USG.LNDN,London gold price (US$ per ounce),sources,WDI Database Archives,57
+PER.ADMIN.CAP,World Bank: Share of total capital education expenditures for administration (%),sources,Education Statistics,12
+PER.ADMIN.CTL,World Bank: Share of administration expenditures for central government administration (%),sources,Education Statistics,12
+PER.ADMIN.GOV,World Bank: Share of administration expenditures from government sources (%),sources,Education Statistics,12
+PER.ADMIN.INTL,World Bank: Share of administration expenditures from international sources (%),sources,Education Statistics,12
+PER.ADMIN.LOCAL,World Bank: Share of administration expenditures for district/municipal government administration (%),sources,Education Statistics,12
+PER.ADMIN.PROV,World Bank: Share of administration expenditures for provincial/state government administration (%),sources,Education Statistics,12
+PER.ADMIN.SAL.USD,World Bank: Average salary for administration (in USD or local currency),sources,Education Statistics,12
+PER.AE.ITL.SHARE,World Bank: Share of education expenditures from international sources for adult education (%),sources,Education Statistics,12
+PER.AE.SAL,World Bank: Salaries' share of adult education expenditures (%),sources,Education Statistics,12
+PER.AE.SAL.TOT,World Bank: Share of total education expenditures for adult education salaries (%),sources,Education Statistics,12
+PER.AE.SAL.USD,World Bank: Average annual salary for adult education instructors (in USD or local currency),sources,Education Statistics,12
+PER.AE.SOR.GOV,World Bank: Share of adult education expenditures from government sources (%),sources,Education Statistics,12
+PER.AE.SOR.ITL,World Bank: Share of adult education expenditures from international sources (%),sources,Education Statistics,12
+PER.AE.TOT,World Bank: Share of total education expenditure for adult education (%),sources,Education Statistics,12
+PER.ALL.CAPITA,World Bank: Per capita education expenditures (in USD or local currency),sources,Education Statistics,12
+PER.ALL.CAPITA.CAP,World Bank: Capital expenditures per capita (in USD or local currency),sources,Education Statistics,12
+PER.ALL.CAPITA.RCT,World Bank: Recurrent expenditures per capita (in USD or local currency),sources,Education Statistics,12
+PER.ALL.CNTRL.GDP,World Bank: Share of GDP for central government expenditures on education (%),sources,Education Statistics,12
+PER.ALL.CONSTRUCT.METER,World Bank: Construction Cost per square meter (in USD or local currency),sources,Education Statistics,12
+PER.ALL.CONSTRUCTION,World Bank: Construction Cost per Classroom (in USD or local currency),sources,Education Statistics,12
+PER.ALL.CONTRACT.PCTTOT,World Bank: Share of total education expenditures for contract teachers (%),sources,Education Statistics,12
+PER.ALL.CONTRACT.SAL,"World Bank: Contract Teachers, Annual Salary (in USD or local currency)",sources,Education Statistics,12
+PER.ALL.CONTRACT.TOT,"World Bank: Contract Teachers, total employed",sources,Education Statistics,12
+PER.ALL.CONTRACT.USD,"World Bank: Contract Teachers, Total Cost in USD or local currency",sources,Education Statistics,12
+PER.ALL.CPL,World Bank: Capital share of total education expenditure (%),sources,Education Statistics,12
+PER.ALL.CPL.GDP,World Bank: Public capital expenditure on education as % of GDP,sources,Education Statistics,12
+PER.ALL.CPL.INF,World Bank: Total education infrastructure expenditures (local currency),sources,Education Statistics,12
+PER.ALL.CPL.TOT,World Bank: Public capital expenditure on education as a % of total capital government expenditure,sources,Education Statistics,12
+PER.ALL.CPL.USD,World Bank: Total Capital Expenditures on Education (USD Millions or local currency),sources,Education Statistics,12
+PER.ALL.EDSAL.AVG,World Bank: Ratio of average education sector salary to average national wage,sources,Education Statistics,12
+PER.ALL.EFF.TRA,World Bank: Share of disbursed transfers that reach schools (%),sources,Education Statistics,12
+PER.ALL.EFF.WI.RCT,"World Bank: Wastage Index (%), recurrent education expenditures",sources,Education Statistics,12
+PER.ALL.EFF.WI.TOT,"World Bank: Wastage Index (%), total education expenditures",sources,Education Statistics,12
+PER.ALL.EXE.CPL,World Bank: Capital education budget execution rate (%),sources,Education Statistics,12
+PER.ALL.EXE.CPL.GOV,"World Bank: Capital education budget execution rate (%), domestically financed",sources,Education Statistics,12
+PER.ALL.EXE.CPL.ITL,"World Bank: Capital education budget execution rate (%), internationally financed",sources,Education Statistics,12
+PER.ALL.EXE.RCT,World Bank: Recurrent education budget execution rate (%),sources,Education Statistics,12
+PER.ALL.EXE.SAL,World Bank: Education salary execution rate (%),sources,Education Statistics,12
+PER.ALL.GNP,World Bank: Public education expenditures as a % of GNP,sources,Education Statistics,12
+PER.ALL.GS.TOT,World Bank: Total education expenditures on goods and services (in USD or local currency),sources,Education Statistics,12
+PER.ALL.MAINTENANCE,World Bank: Maintenance Cost per school (in USD or in local currency),sources,Education Statistics,12
+PER.ALL.MIN.AD,World Bank: Ministry of Education employees (% administration/non-teaching),sources,Education Statistics,12
+PER.ALL.MIN.ED,World Bank: Share of total public sector employees for the education sector (%),sources,Education Statistics,12
+PER.ALL.MIN.TCH,World Bank: Ministry of Education employees (% teachers),sources,Education Statistics,12
+PER.ALL.NSAL,World Bank: Share of total education expenditures for non-salary items (%),sources,Education Statistics,12
+PER.ALL.NSAL.RCT,World Bank: Share of total recurrent education expenditures for non-salary items (%),sources,Education Statistics,12
+PER.ALL.P40,World Bank: Share of total education expenditures for the poorest 40% of students (%),sources,Education Statistics,12
+PER.ALL.PCR,World Bank: Pupil/Classroom Ratio,sources,Education Statistics,12
+PER.ALL.PNTR,World Bank: Pupil/Administration (Non-Teaching) Staff Ratio,sources,Education Statistics,12
+PER.ALL.PPS,World Bank: Pupils/School,sources,Education Statistics,12
+PER.ALL.PS.GDP,World Bank: Public education expenditure per student (% of GDP per capita),sources,Education Statistics,12
+PER.ALL.PS.LOC,World Bank: Expenditures per student per year (local currency),sources,Education Statistics,12
+PER.ALL.PS.LOC.JR,"World Bank: Expenditures per student per year (local currency), junior secondary",sources,Education Statistics,12
+PER.ALL.PS.LOC.PP,"World Bank: Expenditures per student per year (local currency), pre-primary",sources,Education Statistics,12
+PER.ALL.PS.LOC.PRM,"World Bank: Expenditures per student per year (local currency), primary",sources,Education Statistics,12
+PER.ALL.PS.LOC.SEC,"World Bank: Expenditures per student per year (local currency), secondary",sources,Education Statistics,12
+PER.ALL.PS.LOC.SR,"World Bank: Expenditures per student per year (local currency), senior secondary",sources,Education Statistics,12
+PER.ALL.PS.LOC.TER,"World Bank: Expenditures per student per year (local currency), tertiary",sources,Education Statistics,12
+PER.ALL.PS.RCT.ADMIN,World Bank: Recurrent expenditures per student for administration (in USD or local currency),sources,Education Statistics,12
+PER.ALL.PS.USD,World Bank: Expenditures per student per year (in USD),sources,Education Statistics,12
+PER.ALL.PSTF,World Bank: Pupil/Total Staff Ratio,sources,Education Statistics,12
+PER.ALL.PTR,World Bank: Pupil/Teacher Ratio,sources,Education Statistics,12
+PER.ALL.PVT.SHARE,"World Bank: Share of total schools, privately managed (%)",sources,Education Statistics,12
+PER.ALL.QTL.NP,World Bank: Share of total education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.ALL.QTL.POOR,World Bank: Share of total education expenditures for poor students (%),sources,Education Statistics,12
+PER.ALL.QTL.Q1,World Bank: Share of total education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.ALL.QTL.Q2,World Bank: Share of total education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.ALL.QTL.Q3,World Bank: Share of total education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.ALL.QTL.Q4,World Bank: Share of total education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.ALL.QTL.Q5,World Bank: Share of total education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.ALL.R40,World Bank: Share of total education expenditures for the richest 40% of students (%),sources,Education Statistics,12
+PER.ALL.RCT,World Bank: Share of total government expenditures (all sectors) for recurrent education expenditures (%),sources,Education Statistics,12
+PER.ALL.RCT.GDP,World Bank: Public recurrent expenditure on education (% of GDP),sources,Education Statistics,12
+PER.ALL.RCT.GS,World Bank: Share of recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.ALL.RCT.SAL,World Bank: Share of recurrent education expenditures for salaries (%),sources,Education Statistics,12
+PER.ALL.RCT.TOT,World Bank: Recurrent share of total education expenditures (%),sources,Education Statistics,12
+PER.ALL.RCT.TOT.RCT,World Bank: Public recurrent education expenditure as % of total recurrent government expenditure,sources,Education Statistics,12
+PER.ALL.RCT.TSAL,World Bank: Share of recurrent education expenditures for teachers salaries (%),sources,Education Statistics,12
+PER.ALL.RCT.USD,World Bank: Total Recurrent Expenditures on Education (USD Millions or local currency),sources,Education Statistics,12
+PER.ALL.SAL,World Bank: Share of total education expenditures for salaries (%),sources,Education Statistics,12
+PER.ALL.SAL.AVG,World Bank: Ratio of average teacher salary to average national wage,sources,Education Statistics,12
+PER.ALL.SAL.GDP,World Bank: Education salary expenditures as a % of GDP,sources,Education Statistics,12
+PER.ALL.SAL.GHOST,World Bank: Share of teachers on payroll but not teaching in schools (% Ghost Teachers),sources,Education Statistics,12
+PER.ALL.SAL.PVT,World Bank: Public/Private Teacher Salary Ratio,sources,Education Statistics,12
+PER.ALL.SAL.TGOV,World Bank: Share of total government salary expenditure for education salaries (%),sources,Education Statistics,12
+PER.ALL.SAL.USD,World Bank: Total Salary Expenditures on Education (USD or local currency),sources,Education Statistics,12
+PER.ALL.SAL.VERT,World Bank: Teacher Salary Vertical Compression Ratio,sources,Education Statistics,12
+PER.ALL.SFT.D,World Bank: Share of schools with double shifts (%),sources,Education Statistics,12
+PER.ALL.SFT.S,World Bank: Share of schools with single shifts (%),sources,Education Statistics,12
+PER.ALL.SFT.T,World Bank: Share of schools with triple shifts (%),sources,Education Statistics,12
+PER.ALL.SUB.GDP,World Bank: Share of GDP for subnational government expenditures on education (%),sources,Education Statistics,12
+PER.ALL.TCH.JOB,World Bank: Share of teachers holding more than one job (%),sources,Education Statistics,12
+PER.ALL.TLM.PS,World Bank: Per student expenditure on Teaching/learning materials (in USD or local currency),sources,Education Statistics,12
+PER.ALL.TNR,World Bank: Teaching/Non-Teaching Staff Ratio,sources,Education Statistics,12
+PER.ALL.TSAL,World Bank: Share of total education expenditures for teachers salaries (%),sources,Education Statistics,12
+PER.ALL.TSAL.GDP,World Bank: Ratio of Teacher Salaries to per capita GDP,sources,Education Statistics,12
+PER.ALL.TSAL.USD,World Bank: Average Annual Teacher Salary (in USD or local currency),sources,Education Statistics,12
+PER.ALL.TTL.GDP,World Bank: Total education expenditure as % of GDP,sources,Education Statistics,12
+PER.ALL.TTL.GDP.GOV,World Bank: Total public education expenditure as % of GDP,sources,Education Statistics,12
+PER.ALL.TTL.GOV,"World Bank: Total public education expenditure, % of government spending",sources,Education Statistics,12
+PER.ALL.TTL.LCL,World Bank: Total education expenditure (in local currency),sources,Education Statistics,12
+PER.ALL.TTL.NA,World Bank: Share of total education expenditure not allocated by educational level (%),sources,Education Statistics,12
+PER.ALL.TTL.USD,World Bank: Total education expenditure (in USD millions),sources,Education Statistics,12
+PER.BAS.ADMIN,World Bank: Share of basic education expenditures for administration (%),sources,Education Statistics,12
+PER.BAS.CPL,World Bank: Capital share of basic education expenditures (%),sources,Education Statistics,12
+PER.BAS.CPL.TOT,"World Bank: Share of total capital education expenditure (%), basic",sources,Education Statistics,12
+PER.BAS.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, basic",sources,Education Statistics,12
+PER.BAS.EFF.SHARE,"World Bank: Wastage Index (%), Basic Education",sources,Education Statistics,12
+PER.BAS.EXE.CPL,"World Bank: Capital education budget execution rate (%), basic",sources,Education Statistics,12
+PER.BAS.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), basic",sources,Education Statistics,12
+PER.BAS.EXE.TOT,"World Bank: Education budget execution rate, basic (%)",sources,Education Statistics,12
+PER.BAS.GDP,World Bank: Share of GDP for education expenditures on basic education (%),sources,Education Statistics,12
+PER.BAS.GS.RCT,World Bank: Share of basic education recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.BAS.HH.BOARD,World Bank: Household spending per student on room/board for basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.HH.Q1,"World Bank: Private/Household spending on basic education, Quintile 1",sources,Education Statistics,12
+PER.BAS.HH.Q2,"World Bank: Private/Household spending on basic education, Quintile 2",sources,Education Statistics,12
+PER.BAS.HH.Q3,"World Bank: Private/Household spending on basic education, Quintile 3",sources,Education Statistics,12
+PER.BAS.HH.Q4,"World Bank: Private/Household spending on basic education, Quintile 4",sources,Education Statistics,12
+PER.BAS.HH.Q5,"World Bank: Private/Household spending on basic education, Quintile 5",sources,Education Statistics,12
+PER.BAS.HH.TEXT,World Bank: Household spending per student on textbooks for basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.HH.TRNSPT,World Bank: Household spending per student on transportation for basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.HH.TUIT,World Bank: Household spending per student on tuition for basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.HH.UNIF,World Bank: Household spending per student on uniforms/clothing for basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.INSTRUCT,World Bank: Total instructional hours in basic education (Grades 1-8),sources,Education Statistics,12
+PER.BAS.ITL.SHARE,World Bank: Share of education expenditures from international sources for basic education (%),sources,Education Statistics,12
+PER.BAS.PCR,"World Bank: Pupil/Classroom Ratio, basic education",sources,Education Statistics,12
+PER.BAS.PPC,"World Bank: Pupils/Class, basic education",sources,Education Statistics,12
+PER.BAS.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), basic",sources,Education Statistics,12
+PER.BAS.PS.NONSAL,"World Bank: Per student non-salary spending, basic education (in USD or local currency)",sources,Education Statistics,12
+PER.BAS.PS.RCT,World Bank: Recurrent expenditures per basic education student (USD or local currency),sources,Education Statistics,12
+PER.BAS.PS.RCT.RATIO,World Bank: Ratio of basic per capita/per student recurrent expenditures relative to primary education,sources,Education Statistics,12
+PER.BAS.PS.USD,"World Bank: Expenditures per student per year (in USD or local currency), basic",sources,Education Statistics,12
+PER.BAS.PSTF,"World Bank: Pupil/Total Staff Ratio, basic education",sources,Education Statistics,12
+PER.BAS.PTR,"World Bank: Pupil/Teacher Ratio, basic education",sources,Education Statistics,12
+PER.BAS.QLT.Q1,World Bank: Share of basic education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.BAS.QLT.Q2,World Bank: Share of basic education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.BAS.QLT.Q3,World Bank: Share of basic education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.BAS.QLT.Q4,World Bank: Share of basic education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.BAS.QLT.Q5,World Bank: Share of basic education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.BAS.QTL.NP,World Bank: Share of total basic education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.BAS.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Basic",sources,Education Statistics,12
+PER.BAS.QTL.POOR,World Bank: Share of total basic education expenditures for poor students (%),sources,Education Statistics,12
+PER.BAS.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Basic",sources,Education Statistics,12
+PER.BAS.RCT,World Bank: Recurrent share of basic education expenditures (%),sources,Education Statistics,12
+PER.BAS.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), basic",sources,Education Statistics,12
+PER.BAS.SAL,World Bank: Salaries' share of basic education expenditures (%),sources,Education Statistics,12
+PER.BAS.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, basic education",sources,Education Statistics,12
+PER.BAS.SAL.RCT,World Bank: Share of recurrent education expenditures for basic education salaries (%),sources,Education Statistics,12
+PER.BAS.SAL.SHARE,World Bank: Share of total salary expenditures for basic education (%),sources,Education Statistics,12
+PER.BAS.SAL.TOT,World Bank: Share of total education expenditures for basic education salaries (%),sources,Education Statistics,12
+PER.BAS.SOR.GOV,World Bank: Share of basic education expenditures from government sources (%),sources,Education Statistics,12
+PER.BAS.TEACH.SHARE,World Bank: Share of teachers for basic education (%),sources,Education Statistics,12
+PER.BAS.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, basic education",sources,Education Statistics,12
+PER.BAS.TOT,World Bank: Share of total education expenditure for basic education (%),sources,Education Statistics,12
+PER.BAS.TOT.CPL,"World Bank: Capital share of total education expenditure (%), basic",sources,Education Statistics,12
+PER.BAS.TOTEXP,World Bank: Total expenditures on basic education (USD or local currency),sources,Education Statistics,12
+PER.BAS.TRANSFER.RCT,World Bank: Share of basic education recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.EFF.GDP,World Bank: Share of GDP lost through inefficiencies (%),sources,Education Statistics,12
+PER.EFF.SUB.GDP,World Bank: Share of GDP potentially saved with improved targeting of education subsidies (%),sources,Education Statistics,12
+PER.EFF.SUB.USD,World Bank: Total potential savings with improved targeting of government education subsidies (USD or local currency),sources,Education Statistics,12
+PER.EFF.TEACH.GDP,World Bank: Share of GDP potentially saved with improved pupil/teacher ratios (%),sources,Education Statistics,12
+PER.EFF.TEACH.USD,World Bank: Total potential savings with improved pupil/teacher ratios (USD or local currency),sources,Education Statistics,12
+PER.EMPOLY.ED,World Bank: Share of total national employment for the education sector (%),sources,Education Statistics,12
+PER.ETH.PS.MAJ,"World Bank: Per student expenditure for majority ethnic group students, primary",sources,Education Statistics,12
+PER.ETH.PS.MIN,"World Bank: Per student expenditure for minority ethnic group students, primary",sources,Education Statistics,12
+PER.ETH.PTR.MAJ,"World Bank: Pupil/Teacher Ratio in majority ethnic group schools, primary",sources,Education Statistics,12
+PER.ETH.PTR.MIN,"World Bank: Pupil/Teacher Ratio in minority ethnic group schools, primary",sources,Education Statistics,12
+PER.EXE.GS.TOT,World Bank: Goods and Services Execution Rate (%),sources,Education Statistics,12
+PER.FEED.PS.USD,World Bank: Per student cost of school feeding programs (in USD or local currency),sources,Education Statistics,12
+PER.GEO.PPS.RRL,World Bank: Pupils/School in rural areas,sources,Education Statistics,12
+PER.GEO.PPS.URB,World Bank: Pupils/School in urban areas,sources,Education Statistics,12
+PER.GEO.RRL.PS.HH,"World Bank: Household spending per student, rural areas (USD or local currency)",sources,Education Statistics,12
+PER.GEO.URB.PS.HH,"World Bank: Household spending per student, urban areas (USD or local currency)",sources,Education Statistics,12
+PER.GOV.SHARE.TOT,World Bank: Share of total domestically-financed/government expenditures for education (%),sources,Education Statistics,12
+PER.GS.TOT.SHARE,World Bank: Share of total expenditures for goods and services (%),sources,Education Statistics,12
+PER.HH.MGT.SHARE,World Bank: Share of total household education spending/school fees appropriated to provincial/regional/central government levels from the school level (%),sources,Education Statistics,12
+PER.HH.P40.SHARE,World Bank: Share of total household education expenditures for the poorest 40%,sources,Education Statistics,12
+PER.HH.Q1.SHARE,World Bank: Share of total household education expenditures for Quintile 1 (%),sources,Education Statistics,12
+PER.HH.Q2.SHARE,World Bank: Share of total household education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.HH.Q3.SHARE,World Bank: Share of total household education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.HH.Q4.SHARE,World Bank: Share of total household education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.HH.Q5.SHARE,World Bank: Share of total household education expenditures for Quintile 5 (%),sources,Education Statistics,12
+PER.HH.R40.SHARE,World Bank: Share of total household education expenditures for the richest 40%,sources,Education Statistics,12
+PER.HH.SAL.SHARE,World Bank: Share of total household education spending for salaries (%),sources,Education Statistics,12
+PER.INTL.COMT.DISP,World Bank: Share of international commitments for education disbursed to government (%),sources,Education Statistics,12
+PER.JR.ADMIN,World Bank: Share of junior secondary expenditures for administration (%),sources,Education Statistics,12
+PER.JR.CPL,World Bank: Capital share of junior secondary expenditures (%),sources,Education Statistics,12
+PER.JR.CPL.TOT,"World Bank: Share of total capital education expenditure (%), junior secondary",sources,Education Statistics,12
+PER.JR.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, junior secondary",sources,Education Statistics,12
+PER.JR.EFF.REP.YEAR,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, junior secondary",sources,Education Statistics,12
+PER.JR.GS.RCT,World Bank: Share of junior secondary recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.JR.ITL.SHARE,World Bank: Share of education expenditures from international sources for junior secondary education (%),sources,Education Statistics,12
+PER.JR.PCR,"World Bank: Pupil/Classroom Ratio, junior secondary",sources,Education Statistics,12
+PER.JR.PPC,"World Bank: Pupils/Class, junior secondary",sources,Education Statistics,12
+PER.JR.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), junior secondary",sources,Education Statistics,12
+PER.JR.PS.NONSAL,"World Bank: Per student non-salary spending, junior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.JR.PS.PRIM,"World Bank: Ratio of expenditures per student, junior secondary to primary",sources,Education Statistics,12
+PER.JR.PS.RCT,World Bank: Recurrent expenditures per junior secondary student (USD or local currency),sources,Education Statistics,12
+PER.JR.PS.USD,"World Bank: Expenditures per student per year in USD, junior secondary",sources,Education Statistics,12
+PER.JR.PSTF,"World Bank: Pupil/Total Staff Ratio, junior secondary",sources,Education Statistics,12
+PER.JR.PTR,"World Bank: Pupil/Teacher Ratio, junior secondary",sources,Education Statistics,12
+PER.JR.QLT.Q1,World Bank: Share of junior secondary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.JR.QLT.Q2,World Bank: Share of junior secondary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.JR.QLT.Q3,World Bank: Share of junior secondary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.JR.QLT.Q4,World Bank: Share of junior secondary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.JR.QLT.Q5,World Bank: Share of junior secondary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.JR.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Junior Secondary",sources,Education Statistics,12
+PER.JR.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Junior Secondary",sources,Education Statistics,12
+PER.JR.RCT,World Bank: Recurrent share of junior secondary expenditures (%),sources,Education Statistics,12
+PER.JR.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), junior secondary",sources,Education Statistics,12
+PER.JR.SAL,World Bank: Salaries' share of junior secondary expenditures (%),sources,Education Statistics,12
+PER.JR.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, junior secondary",sources,Education Statistics,12
+PER.JR.SAL.RCT,World Bank: Share of recurrent education expenditures for junior secondary salaries (%),sources,Education Statistics,12
+PER.JR.SAL.SHARE.RCT,World Bank: Salaries' share of junior secondary recurrent expenditures (%),sources,Education Statistics,12
+PER.JR.SAL.TOT,World Bank: Share of total education expenditures for junior secondary salaries (%),sources,Education Statistics,12
+PER.JR.SAL.USD,"World Bank: Average Annual Teacher Salary (in USD or local currency), junior secondary",sources,Education Statistics,12
+PER.JR.SOR.GOV,World Bank: Share of junior secondary education expenditures from government sources (%),sources,Education Statistics,12
+PER.JR.TCH.HRS,"World Bank: Average annual teaching load, junior secondary (hours of instruction per year)",sources,Education Statistics,12
+PER.JR.TEACH.SHARE,World Bank: Share of teachers for junior secondary education (%),sources,Education Statistics,12
+PER.JR.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, junior secondary",sources,Education Statistics,12
+PER.JR.TOT,World Bank: Share of total education expenditure for junior secondary education (%),sources,Education Statistics,12
+PER.JR.TOTEXP,World Bank: Total expenditures on junior secondary education (USD or local currency),sources,Education Statistics,12
+PER.JR.TRANSFER.PS,"World Bank: Per student transfer by central to subnational government, junior secondary education (USD or local currency)",sources,Education Statistics,12
+PER.JR.TRANSFER.RCT,World Bank: Share of junior secondary recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.OC.AD.RCT,World Bank: Share of total recurrent education expenditure for administration (%),sources,Education Statistics,12
+PER.OC.AD.SAL.SHARE,World Bank: Share of total salary expenditures for administration (%),sources,Education Statistics,12
+PER.OC.AD.TOT,World Bank: Share of total education expenditure for administration (%),sources,Education Statistics,12
+PER.OC.FEED.GDP,World Bank: School Feeding Programs (% of GDP),sources,Education Statistics,12
+PER.OC.FEED.RCT,World Bank: School Feeding Programs (% of total recurrent expenditures),sources,Education Statistics,12
+PER.OC.FEED.TOT,World Bank: School Feeding Programs (% of total education expenditures),sources,Education Statistics,12
+PER.OC.FEED.TOT.USD,World Bank: Total expenditures on School Feeding Programs (in USD or local currency),sources,Education Statistics,12
+PER.OC.FIN.JR,World Bank: Share of recurrent junior secondary expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.LOAN.TER,World Bank: Total Student Loans (USD or local currency). Tertiary,sources,Education Statistics,12
+PER.OC.FIN.PRM,World Bank: Share of recurrent primary education expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.RCT,World Bank: Share of recurrent expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.SEC,World Bank: Share of recurrent secondary expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.SR,World Bank: Share of recurrent senior secondary expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.TER,World Bank: Share of recurrent tertiary expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.TER.TOT,World Bank: Share of total tertiary expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.TOT,World Bank: Share of total education spending for scholarships (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.PRM,World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Primary,sources,Education Statistics,12
+PER.OC.FIN.TOT.Q1,World Bank: Share of scholarships/subsidy expenditures for Quintile 1 (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.Q2,World Bank: Share of scholarships/subsidy expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.Q3,World Bank: Share of scholarships/subsidy expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.Q4,World Bank: Share of scholarships/subsidy expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.Q5,World Bank: Share of scholarships/subsidy expenditures for Quintile 5 (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.SEC,World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Secondary,sources,Education Statistics,12
+PER.OC.FIN.TOT.SR,World Bank: Share of scholarships/subsidy expenditures for senior secondary (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.TER,World Bank: Share of scholarships/subsidy expenditures for tertiary education (%),sources,Education Statistics,12
+PER.OC.FIN.TOT.TER.LOC,World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency). Tertiary,sources,Education Statistics,12
+PER.OC.FIN.TOT.VOC,World Bank: Share of scholarships/subsidy expenditures for technical/vocational education (%),sources,Education Statistics,12
+PER.OC.FIN.USD,World Bank: Total Expenditures on Scholarships/Student Financial Assistance (USD or local currency),sources,Education Statistics,12
+PER.OC.FIN.VOC.TOT,World Bank: Share of total technical/vocational expenditures for scholarships (%),sources,Education Statistics,12
+PER.OC.GDR.PRM,"World Bank: Expenditures on females (as a % for males), primary",sources,Education Statistics,12
+PER.OC.GDR.SEC,"World Bank: Expenditures on females (as a % for males), secondary",sources,Education Statistics,12
+PER.OC.GDR.TER,"World Bank: Expenditures on females (as a % for males), tertiary",sources,Education Statistics,12
+PER.OC.GDR.TOT,World Bank: Expenditures on females (as a % for males),sources,Education Statistics,12
+PER.OC.GEO.RRL,World Bank: Share of education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.JR,World Bank: Share of junior secondary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.P40,"World Bank: Share of expenditures for the poorest 40%, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.PCT,"World Bank: Pupil/Classroom Ratio, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.PP,World Bank: Share of pre-primary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.PPC,"World Bank: Pupils/Class, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.PRM,World Bank: Share of primary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.PRM.PER,"World Bank: Average expenditure per primary student, rural areas (in USD or local currency)",sources,Education Statistics,12
+PER.OC.GEO.RRL.PSTF,"World Bank: Pupil/Total Staff Ratio, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.PTR,"World Bank: Pupil/Teacher Ratio, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.R40,"World Bank: Share of expenditures for the richest 40%, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RRL.SEC,World Bank: Share of secondary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.SEC.PS,"World Bank: Average expenditure per secondary student, rural areas (in USD or local currency)",sources,Education Statistics,12
+PER.OC.GEO.RRL.SR,World Bank: Share of senior secondary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.TER,World Bank: Share of tertiary education spending on rural areas (%),sources,Education Statistics,12
+PER.OC.GEO.RRL.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, rural areas",sources,Education Statistics,12
+PER.OC.GEO.RU.PRM,"World Bank: Ratio of rural/urban per capita expenditures, secondary",sources,Education Statistics,12
+PER.OC.GEO.RU.SEC,"World Bank: Ratio of rural/urban per capita expenditures, primary",sources,Education Statistics,12
+PER.OC.GEO.URB,World Bank: Share of education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.JR,World Bank: Share of junior secondary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.P40,"World Bank: Share of expenditures for the poorest 40%, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.PCR,"World Bank: Pupil/Classroom Ratio, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.PP,World Bank: Share of pre-primary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.PPC,"World Bank: Pupils/Class, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.PRM,World Bank: Share of primary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.PRM.PER,"World Bank: Average expenditure per primary student, urban areas (in USD or local currency)",sources,Education Statistics,12
+PER.OC.GEO.URB.PSTF,"World Bank: Pupil/Total Staff Ratio, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.PTR,"World Bank: Pupil/Teacher Ratio, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.R40,"World Bank: Share of expenditures for the richest 40%, urban areas",sources,Education Statistics,12
+PER.OC.GEO.URB.SEC,World Bank: Share of secondary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.SEC.PS,"World Bank: Average expenditure per secondary student, urban areas (in USD or local currency)",sources,Education Statistics,12
+PER.OC.GEO.URB.SR,World Bank: Share of senior secondary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.TER,World Bank: Share of tertiary education spending on urban areas (%),sources,Education Statistics,12
+PER.OC.GEO.URB.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, urban areas",sources,Education Statistics,12
+PER.OC.GOV.PRIV,World Bank: Share of total public education expenditure for private institutions (%),sources,Education Statistics,12
+PER.OC.HIV.ABS,World Bank: Total education expenditure lost to HIV/AIDS related teacher absenteeism (USD millions),sources,Education Statistics,12
+PER.OC.HIV.OVC.ENR,World Bank: Total cost of enrolling HIV/AIDS orphans (in USD millions),sources,Education Statistics,12
+PER.OC.HIV.OVC.PRM,World Bank: Orphans and Vulnerable Children (OVC) Cash Transfer to Schools per primary student (in USD),sources,Education Statistics,12
+PER.OC.HIV.OVC.SEC,World Bank: Orphans and Vulnerable Children (OVC) Cash Transfer to Schools per secondary student (in USD),sources,Education Statistics,12
+PER.OC.HIV.OVC.TOT,World Bank: Total Cash Transfers for Orphans and Vulnerable Children (OVCs) (in USD),sources,Education Statistics,12
+PER.OC.HIV.SHARE,World Bank: Share of total education expenditures for HIV/AIDS interventions (%),sources,Education Statistics,12
+PER.OC.HIV.TOT,World Bank: Share of total education expenditure lost due to HIV/AIDS (%),sources,Education Statistics,12
+PER.OC.HIV.TT,World Bank: Additional cost of teacher education due to HIV/AIDS (USD millions),sources,Education Statistics,12
+PER.OC.HIV.USD,World Bank: Total education expenditure lost to HIV/AIDS (USD millions),sources,Education Statistics,12
+PER.OC.MAIN.RCT,World Bank: Operations and Maintenance (% of recurrent education expenditure),sources,Education Statistics,12
+PER.OC.MAIN.TOT,World Bank: Operations and Maintenance (% of total education expenditure),sources,Education Statistics,12
+PER.OC.PTXT,World Bank: Pupil/Textbook Ratio,sources,Education Statistics,12
+PER.OC.SPECIAL.SHARE,World Bank: Share of total education expenditures for special education/disabilities (%),sources,Education Statistics,12
+PER.OC.TLM,World Bank: Teaching/learning materials (% of total education expenditures),sources,Education Statistics,12
+PER.OC.TLM.RCT,World Bank: Teaching/learning materials (% of total recurrent education expenditures),sources,Education Statistics,12
+PER.OC.TRA.BAS,"World Bank: Per student transfer by central to subnational government, basic (USD or local currency)",sources,Education Statistics,12
+PER.OC.TRA.GDP,World Bank: Central Government Transfers for education (% of GDP),sources,Education Statistics,12
+PER.OC.TRA.OVERALL,World Bank: Per student transfer by central to subnational government (USD or local currency),sources,Education Statistics,12
+PER.OC.TRA.PP,"World Bank: Per student transfer by central to subnational government, pre-primary (USD or local currency)",sources,Education Statistics,12
+PER.OC.TRA.PRM,"World Bank: Per student transfer by central to subnational government, primary (USD or local currency)",sources,Education Statistics,12
+PER.OC.TRA.RCT,World Bank: Share of recurrent education expenditures for transfers (%),sources,Education Statistics,12
+PER.OC.TRA.SEC,"World Bank: Per student transfer by central to subnational government, secondary (USD or local currency)",sources,Education Statistics,12
+PER.OC.TRA.TER,World Bank: Per student funding transfer by central government to tertiary institutions (USD or local currency),sources,Education Statistics,12
+PER.OC.TRA.TOT,World Bank: Share of total central government transfers for education (%),sources,Education Statistics,12
+PER.OC.TRA.TOT.SHARE,World Bank: Share of total education expenditures for transfers (%),sources,Education Statistics,12
+PER.OC.TRA.USD,World Bank: Total Transfers (local currency or USD millions),sources,Education Statistics,12
+PER.OC.TT.PRM,"World Bank: Ratio of expenditures per student, teacher training to primary",sources,Education Statistics,12
+PER.OC.TT.RCT,World Bank: Teacher Training (% of recurrent education expenditures),sources,Education Statistics,12
+PER.OC.TT.TOT,World Bank: Teacher Training (% of total education expenditure),sources,Education Statistics,12
+PER.OC.TXT.RCT,World Bank: Textbooks (% of total recurrent education expenditures),sources,Education Statistics,12
+PER.OC.TXT.TOT,World Bank: Textbooks (% of total education expenditures),sources,Education Statistics,12
+PER.OC.UTL.RCT,World Bank: Utilities (% of recurrent education expenditure),sources,Education Statistics,12
+PER.OC.UTL.TOT,World Bank: Utilities (% of total education expenditure),sources,Education Statistics,12
+PER.PER.TEACH.SHARE,World Bank: Share of teachers for primary (%),sources,Education Statistics,12
+PER.PP.ADMIN,World Bank: Share of pre-primary expenditures for administration (%),sources,Education Statistics,12
+PER.PP.CAP.SHARE,"World Bank: Share of total capital education expenditure (%), pre-primary",sources,Education Statistics,12
+PER.PP.CPL,World Bank: Capital share of pre-primary expenditures (%),sources,Education Statistics,12
+PER.PP.EXE.CPL,"World Bank: Capital education budget execution rate (%), pre-primary",sources,Education Statistics,12
+PER.PP.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), pre-primary",sources,Education Statistics,12
+PER.PP.EXE.TOT,"World Bank: Education budget execution rate, pre-primary (%)",sources,Education Statistics,12
+PER.PP.GDP,World Bank: Share of GDP for education expenditures on pre-primary education (%),sources,Education Statistics,12
+PER.PP.ITL.SHARE,World Bank: Share of education expenditures from international sources for pre-primary education (%),sources,Education Statistics,12
+PER.PP.PCR,"World Bank: Pupil/Classroom Ratio, pre-primary",sources,Education Statistics,12
+PER.PP.PPC,"World Bank: Pupils/Class, pre-primary",sources,Education Statistics,12
+PER.PP.PRIV,"World Bank: Share of pre-primary schools, privately managed (%)",sources,Education Statistics,12
+PER.PP.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), pre-primary",sources,Education Statistics,12
+PER.PP.PS.PRM,"World Bank: Ratio of expenditures per student, pre-primary to primary",sources,Education Statistics,12
+PER.PP.PS.RCT,World Bank: Recurrent expenditures per pre-primary student (USD or local currency),sources,Education Statistics,12
+PER.PP.PS.RCT.RATIO,World Bank: Ratio of pre-primary per capita/per student recurrent expenditures relative to primary education,sources,Education Statistics,12
+PER.PP.PS.USD,"World Bank: Expenditures per student per year (in USD), pre-primary",sources,Education Statistics,12
+PER.PP.PSTF,"World Bank: Pupil/Total Staff Ratio, pre-primary",sources,Education Statistics,12
+PER.PP.PTR,"World Bank: Pupil/Teacher Ratio, pre-primary",sources,Education Statistics,12
+PER.PP.PVT.FEE,"World Bank: Private institution fees, pre-primary (in USD or local currency)",sources,Education Statistics,12
+PER.PP.QLT.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Pre-Primary",sources,Education Statistics,12
+PER.PP.QLT.Q1,World Bank: Share of pre-primary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.PP.QLT.Q2,World Bank: Share of pre-primary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.PP.QLT.Q3,World Bank: Share of pre-primary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.PP.QLT.Q4,World Bank: Share of pre-primary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.PP.QLT.Q5,World Bank: Share of pre-primary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.PP.QTL.NP,World Bank: Share of total pre-primary education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.PP.QTL.POOR,World Bank: Share of total pre-primary education expenditures for poor students (%),sources,Education Statistics,12
+PER.PP.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Pre-Primary",sources,Education Statistics,12
+PER.PP.RCT,World Bank: Recurrent share of pre-primary expenditures (%),sources,Education Statistics,12
+PER.PP.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), pre-primary",sources,Education Statistics,12
+PER.PP.SAL,World Bank: Salaries' share of pre-primary expenditures (%),sources,Education Statistics,12
+PER.PP.SAL.RCT,World Bank: Share of recurrent education expenditures for pre-primary salaries (%),sources,Education Statistics,12
+PER.PP.SAL.TOT,World Bank: Share of total education expenditures for pre-primary salaries (%),sources,Education Statistics,12
+PER.PP.SAL.USD,"World Bank: Average Annual Teacher Salary in USD, pre-primary",sources,Education Statistics,12
+PER.PP.SOR.GOV,World Bank: Share of pre-primary education expenditures from government sources (%),sources,Education Statistics,12
+PER.PP.TEACH.SHARE,World Bank: Share of teachers for pre-primary education (%),sources,Education Statistics,12
+PER.PP.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, pre-primary",sources,Education Statistics,12
+PER.PP.TOT,World Bank: Share of total education expenditure for pre-primary education (%),sources,Education Statistics,12
+PER.PP.TOTEXP,World Bank: Total expenditures on pre-primary education (USD or local currency),sources,Education Statistics,12
+PER.PRIV.MANAGE,"World Bank: Share of secondary schools, privately managed (%)",sources,Education Statistics,12
+PER.PRM.ADMIN,World Bank: Share of primary expenditures for administration (%),sources,Education Statistics,12
+PER.PRM.CIVIL.SAL,"World Bank: Civil Service Teachers, Annual Salary (in USD or local currency), primary",sources,Education Statistics,12
+PER.PRM.CIVIL.SHARE,World Bank: Civil Service Primary Teachers (% of total primary teachers),sources,Education Statistics,12
+PER.PRM.COM.SAL,"World Bank: Community/Locally-Hired Teachers, Annual Salary (in USD or local currency), primary",sources,Education Statistics,12
+PER.PRM.COM.SHARE,World Bank: Community/Locally-Hired Primary Teachers (% of total primary teachers),sources,Education Statistics,12
+PER.PRM.CONTRACT,World Bank: Contract/Part-Time primary teachers (% of total teachers),sources,Education Statistics,12
+PER.PRM.CONTRACT.SAL,"World Bank: Contract Teachers, Annual Salary (in USD or local currency), primary",sources,Education Statistics,12
+PER.PRM.CPL,World Bank: Capital share of primary expenditures (%),sources,Education Statistics,12
+PER.PRM.CPL.TOT,"World Bank: Share of total capital education expenditure (%), primary",sources,Education Statistics,12
+PER.PRM.DS.SHARE,"World Bank: Share of schools with double shifts (%), primary",sources,Education Statistics,12
+PER.PRM.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, primary",sources,Education Statistics,12
+PER.PRM.EFF.REP.YEAR,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary",sources,Education Statistics,12
+PER.PRM.EFF.REP.YEAR.PUB,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary public schools",sources,Education Statistics,12
+PER.PRM.EFF.REP.YEAR.PVT,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, primary private schools",sources,Education Statistics,12
+PER.PRM.EFF.TCHRSUPPLY,World Bank: Cost Burden of Teacher Oversupply (% of total education expenditures),sources,Education Statistics,12
+PER.PRM.EFF.TOT,"World Bank: Total Cost of Inefficiencies (USD or local currency), primary",sources,Education Statistics,12
+PER.PRM.EFF.WASTAGE,"World Bank: Wastage Index (%), Total Primary Expenditures",sources,Education Statistics,12
+PER.PRM.EXE.CPL,"World Bank: Capital education budget execution rate (%), primary",sources,Education Statistics,12
+PER.PRM.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), primary",sources,Education Statistics,12
+PER.PRM.EXE.SAL,"World Bank: Salary execution rate (%), primary",sources,Education Statistics,12
+PER.PRM.EXE.TOT,"World Bank: Education budget execution rate, primary (%)",sources,Education Statistics,12
+PER.PRM.GDP,World Bank: Share of GDP for education expenditures on primary education (%),sources,Education Statistics,12
+PER.PRM.GS.RCT,World Bank: Share of primary recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.PRM.HH.BOARD,World Bank: Household spending per student on room/board for primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.HH.FEES.TOT,"World Bank: Total household spending on school fees, primary (USD or local currency)",sources,Education Statistics,12
+PER.PRM.HH.TEXT,World Bank: Household spending per student on textbooks for primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.HH.TRNSPT,World Bank: Household spending per student on transportation for primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.HH.TUIT,World Bank: Household spending per student on tuition for primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.HH.UNIF,World Bank: Household spending per student on uniforms/clothing for primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.ITL.SHARE,World Bank: Share of education expenditures from international sources for primary education (%),sources,Education Statistics,12
+PER.PRM.PCR,"World Bank: Pupil/Classroom Ratio, primary",sources,Education Statistics,12
+PER.PRM.PNTR,"World Bank: Pupil/Administration (Non-Teaching) Staff Ratio, primary",sources,Education Statistics,12
+PER.PRM.PPC,"World Bank: Pupils/Class, primary",sources,Education Statistics,12
+PER.PRM.PPS,"World Bank: Pupils/School, primary",sources,Education Statistics,12
+PER.PRM.PPS.PRIV,World Bank: Pupils/Private Primary School,sources,Education Statistics,12
+PER.PRM.PPS.PUB,World Bank: Pupils/Public Primary School,sources,Education Statistics,12
+PER.PRM.PQTR,"World Bank: Pupils/Certified Teacher Ratio, primary",sources,Education Statistics,12
+PER.PRM.PRIV.PS,World Bank: Per student expenditures in private primary institutions (in USD or local currency),sources,Education Statistics,12
+PER.PRM.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), primary",sources,Education Statistics,12
+PER.PRM.PS.NONSAL,"World Bank: Per student non-salary spending, primary (in USD or local currency)",sources,Education Statistics,12
+PER.PRM.PS.PUB,World Bank: Per student expenditures in public primary institutions (in USD or local currency),sources,Education Statistics,12
+PER.PRM.PS.USD,"World Bank: Expenditures per student per year (in USD), primary",sources,Education Statistics,12
+PER.PRM.PSTF,"World Bank: Pupil/Total Staff Ratio, primary",sources,Education Statistics,12
+PER.PRM.PTC.CIVIL,World Bank: Pupil/Teacher Ratio for primary schools with Civil Service Teachers,sources,Education Statistics,12
+PER.PRM.PTR,"World Bank: Pupil/Teacher Ratio, primary",sources,Education Statistics,12
+PER.PRM.PTR.CONTRACT,World Bank: Pupil/Teacher Ratio for primary schools with Contract Teachers,sources,Education Statistics,12
+PER.PRM.PTR.PRIV,World Bank: Pupil/Teacher Ratio for Private Primary Schools,sources,Education Statistics,12
+PER.PRM.PTR.PUBLIC,World Bank: Pupil/Teacher Ratio for Public Primary Schools,sources,Education Statistics,12
+PER.PRM.PVT.FEE,"World Bank: Private institution fees, primary (in USD or local currency)",sources,Education Statistics,12
+PER.PRM.PVT.SHARE,"World Bank: Share of primary schools, privately managed (% of total schools)",sources,Education Statistics,12
+PER.PRM.QLT.Q1,World Bank: Share of primary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.PRM.QLT.Q2,World Bank: Share of primary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.PRM.QLT.Q3,World Bank: Share of primary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.PRM.QLT.Q4,World Bank: Share of primary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.PRM.QLT.Q5,World Bank: Share of primary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.PRM.QTL.NP,World Bank: Share of total primary education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.PRM.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Primary",sources,Education Statistics,12
+PER.PRM.QTL.POOR,World Bank: Share of total primary education expenditures for poor students (%),sources,Education Statistics,12
+PER.PRM.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Primary",sources,Education Statistics,12
+PER.PRM.RCT,World Bank: Recurrent share of primary expenditures (%),sources,Education Statistics,12
+PER.PRM.RCT.GDP,World Bank: Primary recurrent expenditures as a share of GDP (%),sources,Education Statistics,12
+PER.PRM.RCT.PS,World Bank: Recurrent expenditures per primary student (USD or local currency),sources,Education Statistics,12
+PER.PRM.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), primary",sources,Education Statistics,12
+PER.PRM.SAL,World Bank: Salaries' share of primary expenditures (%),sources,Education Statistics,12
+PER.PRM.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, primary",sources,Education Statistics,12
+PER.PRM.SAL.LOC,"World Bank: Average Annual Teacher Salary in local currency, primary",sources,Education Statistics,12
+PER.PRM.SAL.PS,World Bank: Salary expenditures per primary student (USD or local currency),sources,Education Statistics,12
+PER.PRM.SAL.RCT,World Bank: Share of recurrent education expenditures for primary salaries (%),sources,Education Statistics,12
+PER.PRM.SAL.SHARE,World Bank: Share of total salary expenditures for primary (%),sources,Education Statistics,12
+PER.PRM.SAL.SHARE.RCT,World Bank: Salaries' share of primary recurrent expenditures (%),sources,Education Statistics,12
+PER.PRM.SAL.TOT,World Bank: Share of total education expenditures for primary salaries (%),sources,Education Statistics,12
+PER.PRM.SAL.USD,"World Bank: Average Annual Teacher Salary in USD, primary",sources,Education Statistics,12
+PER.PRM.TCH.HRS,"World Bank: Average annual teaching load, primary (hours of instruction per year)",sources,Education Statistics,12
+PER.PRM.TCH.JOB,World Bank: Share of primary teachers holding more than one job (%),sources,Education Statistics,12
+PER.PRM.TLM.PS,"World Bank: Per student expenditures on Teaching/learning materials, primary (in USD or local currency)",sources,Education Statistics,12
+PER.PRM.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, primary",sources,Education Statistics,12
+PER.PRM.TOT,World Bank: Share of total education expenditure for primary education (%),sources,Education Statistics,12
+PER.PRM.TOT.CPL,"World Bank: Capital share of total education expenditure (%), primary",sources,Education Statistics,12
+PER.PRM.TOTEXP,World Bank: Total expenditures on primary education (USD or local currency),sources,Education Statistics,12
+PER.PRM.TRANSFER.RCT,World Bank: Share of primary recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.PRM.TS.SHARE,"World Bank: Share of schools with triple shifts (%), primary",sources,Education Statistics,12
+PER.PRM.TTL.GOV,World Bank: Share of total government expenditures (all sectors) for primary education expenditures (%),sources,Education Statistics,12
+PER.PRM.UTL.SHARE,World Bank: Share of primary expenditures for utilities (%),sources,Education Statistics,12
+PER.PVT.PRM.TOT,World Bank: Share of total education expenditures for private primary schools (%),sources,Education Statistics,12
+PER.PVT.SEC.TOT,World Bank: Share of total education expenditures for private secondary schools (%),sources,Education Statistics,12
+PER.PVT.TER.TOT,World Bank: Share of total education expenditures for private tertiary institutions (%),sources,Education Statistics,12
+PER.RRL.HH.SHARE,"World Bank: Share of total household expenditures for education, rural areas (%)",sources,Education Statistics,12
+PER.RRL.HH.TOTSHARE,World Bank: Share of total household education expenditures from rural areas (%),sources,Education Statistics,12
+PER.SAL.HOURLY,World Bank: Average hourly wage for teachers (in USD or local currency),sources,Education Statistics,12
+PER.SAL.HR.WEEK,World Bank: Teachers total working hours per week,sources,Education Statistics,12
+PER.SAL.MOE.MONTH,World Bank: Average monthly education sector salary (in USD or local currency),sources,Education Statistics,12
+PER.SAL.NOT,World Bank: Share of teachers not on the government payroll (%),sources,Education Statistics,12
+PER.SAL.PRM.WEEK,World Bank: Primary teachers total working hours per week,sources,Education Statistics,12
+PER.SAL.PUB,World Bank: Average teacher salary in public schools (in USD or local currency),sources,Education Statistics,12
+PER.SAL.SEC.WEEK,World Bank: Secondary teachers total working hours per week,sources,Education Statistics,12
+PER.SAL.TEACH.MONTH.USD,World Bank: Average monthly teacher salary (in USD or local currency),sources,Education Statistics,12
+PER.SAL.TEACH.TOT.USD,World Bank: Total teacher salary expenditures (in USD or local currency),sources,Education Statistics,12
+PER.SEC.ADMIN,World Bank: Share of secondary expenditures for administration (%),sources,Education Statistics,12
+PER.SEC.CIVIL.SAL,"World Bank: Civil Service Teachers, Annual Salary (in USD or local currency), secondary",sources,Education Statistics,12
+PER.SEC.CIVIL.SHARE,World Bank: Civil Service Secondary Teachers (% of total secondary teachers),sources,Education Statistics,12
+PER.SEC.COM.SAL,"World Bank: Community/Locally-Hired Teachers, Annual Salary (in USD or local currency), secondary",sources,Education Statistics,12
+PER.SEC.COM.SHARE,World Bank: Community/Locally-Hired Secondary Teachers (% of total secondary teachers),sources,Education Statistics,12
+PER.SEC.CONTRACT,World Bank: Contract/Part-Time secondary teachers (% of total teachers),sources,Education Statistics,12
+PER.SEC.CONTRACT.SAL,"World Bank: Contract Teachers, Annual Salary (in USD or local currency), secondary",sources,Education Statistics,12
+PER.SEC.CPL,World Bank: Capital share of secondary expenditures (%),sources,Education Statistics,12
+PER.SEC.CPL.TOT,"World Bank: Share of total capital education expenditure (%), secondary",sources,Education Statistics,12
+PER.SEC.DS.SHARE,"World Bank: Share of schools with double shifts (%), secondary",sources,Education Statistics,12
+PER.SEC.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, secondary",sources,Education Statistics,12
+PER.SEC.EFF.REP.YEAR,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary",sources,Education Statistics,12
+PER.SEC.EFF.REP.YEAR.PUB,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary public schools",sources,Education Statistics,12
+PER.SEC.EFF.REP.YEAR.PVT,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, secondary private schools",sources,Education Statistics,12
+PER.SEC.EFF.TOT,"World Bank: Total Cost of Inefficiencies (USD or local currency), secondary",sources,Education Statistics,12
+PER.SEC.EXE.CPL,"World Bank: Capital education budget execution rate (%), secondary",sources,Education Statistics,12
+PER.SEC.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), secondary",sources,Education Statistics,12
+PER.SEC.EXE.SAL,"World Bank: Salary execution rate (%), secondary",sources,Education Statistics,12
+PER.SEC.EXE.TOT,"World Bank: Education budget execution rate, secondary (%)",sources,Education Statistics,12
+PER.SEC.GDP,World Bank: Share of GDP for education expenditures on secondary education (%),sources,Education Statistics,12
+PER.SEC.GS.RCT,World Bank: Share of secondary recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.SEC.HH.BOARD,World Bank: Household spending per student on room/board for secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.HH.TEXT,World Bank: Household spending per student on textbooks for secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.HH.TRNSPT,World Bank: Household spending per student on transportation for secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.HH.TUIT,World Bank: Household spending per student on tuition for secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.HH.UNIF,World Bank: Household spending per student on uniforms/clothing for secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.ITL.SHARE,World Bank: Share of education expenditures from international sources for secondary education (%),sources,Education Statistics,12
+PER.SEC.PCR,"World Bank: Pupil/Classroom Ratio, secondary",sources,Education Statistics,12
+PER.SEC.PPC,"World Bank: Pupils/Class, secondary",sources,Education Statistics,12
+PER.SEC.PPS,"World Bank: Pupils/School, secondary",sources,Education Statistics,12
+PER.SEC.PPS.PRIV,World Bank: Pupils/Private Secondary School,sources,Education Statistics,12
+PER.SEC.PPS.PUB,World Bank: Pupils/Public Secondary School,sources,Education Statistics,12
+PER.SEC.PQTR,"World Bank: Pupils/Certified Teacher Ratio, secondary",sources,Education Statistics,12
+PER.SEC.PRIV.PS,World Bank: Per student expenditures in private secondary institutions (in USD or local currency),sources,Education Statistics,12
+PER.SEC.PRT.PRIV,World Bank: Pupil/Teacher Ratio for Private Secondary Schools,sources,Education Statistics,12
+PER.SEC.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), secondary",sources,Education Statistics,12
+PER.SEC.PS.NONSAL,"World Bank: Per student non-salary spending, secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SEC.PS.PRM,"World Bank: Ratio of expenditures per student, secondary to primary",sources,Education Statistics,12
+PER.SEC.PS.PUB,World Bank: Per student expenditures in public secondary institutions (in USD or local currency),sources,Education Statistics,12
+PER.SEC.PS.RCT.RATIO,World Bank: Ratio of secondary per capita/per student recurrent expenditures relative to primary education,sources,Education Statistics,12
+PER.SEC.PS.TEXT,"World Bank: Per student expenditure on Teaching/learning materials, secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SEC.PS.USD,"World Bank: Expenditures per student per year (in USD), secondary",sources,Education Statistics,12
+PER.SEC.PSTF,"World Bank: Pupil/Total Staff Ratio, secondary",sources,Education Statistics,12
+PER.SEC.PTC.CIVIL,World Bank: Pupil/Teacher Ratio for secondary schools with Civil Service Teachers,sources,Education Statistics,12
+PER.SEC.PTR,"World Bank: Pupil/Teacher Ratio, secondary",sources,Education Statistics,12
+PER.SEC.PTR.CONTRACT,World Bank: Pupil/Teacher Ratio for secondary schools with Contract Teachers,sources,Education Statistics,12
+PER.SEC.PTR.PUBLIC,World Bank: Pupil/Teacher Ratio for Public Secondary Schools,sources,Education Statistics,12
+PER.SEC.PVT.FEE,"World Bank: Private institution fees, secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SEC.QTL.NP,World Bank: Share of total secondary education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.SEC.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Secondary",sources,Education Statistics,12
+PER.SEC.QTL.POOR,World Bank: Share of total secondary education expenditures for poor students (%),sources,Education Statistics,12
+PER.SEC.QTL.Q1,World Bank: Share of secondary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.SEC.QTL.Q2,World Bank: Share of secondary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.SEC.QTL.Q3,World Bank: Share of secondary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.SEC.QTL.Q4,World Bank: Share of secondary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.SEC.QTL.Q5,World Bank: Share of secondary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.SEC.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Secondary",sources,Education Statistics,12
+PER.SEC.RCT,World Bank: Recurrent share of secondary expenditures (%),sources,Education Statistics,12
+PER.SEC.RCT.GDP,World Bank: Secondary recurrent expenditures as a share of GDP (%),sources,Education Statistics,12
+PER.SEC.RCT.PS,World Bank: Recurrent expenditures per secondary student (USD or local currency),sources,Education Statistics,12
+PER.SEC.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), secondary",sources,Education Statistics,12
+PER.SEC.SAL,World Bank: Salaries' share of secondary education expenditures (%),sources,Education Statistics,12
+PER.SEC.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, secondary",sources,Education Statistics,12
+PER.SEC.SAL.LOC,"World Bank: Average Annual Teacher Salary in local currency, secondary",sources,Education Statistics,12
+PER.SEC.SAL.PS,World Bank: Salary expenditures per secondary student (USD or local currency),sources,Education Statistics,12
+PER.SEC.SAL.RCT,World Bank: Share of recurrent education expenditures for secondary salaries (%),sources,Education Statistics,12
+PER.SEC.SAL.SHARE,World Bank: Share of total salary expenditures for secondary (%),sources,Education Statistics,12
+PER.SEC.SAL.SHARE.RCT,World Bank: Salaries' share of secondary recurrent expenditures (%),sources,Education Statistics,12
+PER.SEC.SAL.TOT,World Bank: Share of total education expenditures for secondary salaries (%),sources,Education Statistics,12
+PER.SEC.SAL.USD,"World Bank: Average Annual Teacher Salary in USD, secondary",sources,Education Statistics,12
+PER.SEC.TCH.HRS,"World Bank: Average annual teaching load, secondary (hours of instruction per year)",sources,Education Statistics,12
+PER.SEC.TCH.JOB,World Bank: Share of secondary teachers holding more than one job (%),sources,Education Statistics,12
+PER.SEC.TEACH.SHARE,World Bank: Share of teachers for secondary (%),sources,Education Statistics,12
+PER.SEC.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, secondary",sources,Education Statistics,12
+PER.SEC.TOT,World Bank: Share of total education expenditure for secondary education (%),sources,Education Statistics,12
+PER.SEC.TOT.CPL,"World Bank: Capital share of total education expenditure (%), secondary",sources,Education Statistics,12
+PER.SEC.TOTEXP,World Bank: Total expenditures on secondary education (USD or local currency),sources,Education Statistics,12
+PER.SEC.TRANSFER.RCT,World Bank: Share of secondary recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.SEC.TS.SHARE,"World Bank: Share of schools with triple shifts (%), secondary",sources,Education Statistics,12
+PER.SOR.BAS.CTL,World Bank: Share of basic education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.BAS.DIST,World Bank: Share of basic education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.BAS.PROV,World Bank: Share of basic education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.CTL.BAS,World Bank: Share of total central government education expenditures for basic education (%),sources,Education Statistics,12
+PER.SOR.CTL.CAP,World Bank: Share of central government education expenditures for capital (%),sources,Education Statistics,12
+PER.SOR.CTL.CPL,World Bank: Central government share of education capital expenditures (%),sources,Education Statistics,12
+PER.SOR.CTL.JR,World Bank: Share of total central government education expenditures for junior secondary (%),sources,Education Statistics,12
+PER.SOR.CTL.PP,World Bank: Share of total central government education expenditures for pre-primary (%),sources,Education Statistics,12
+PER.SOR.CTL.PRM,World Bank: Share of total central government education expenditures for primary (%),sources,Education Statistics,12
+PER.SOR.CTL.RCT,World Bank: Central government share of recurrent education expenditures (%),sources,Education Statistics,12
+PER.SOR.CTL.RCT.SHARE,World Bank: Share of central government education expenditures for recurrent expenditures (%),sources,Education Statistics,12
+PER.SOR.CTL.SAL,World Bank: Central government share of education salaries (%),sources,Education Statistics,12
+PER.SOR.CTL.SAL.SHARE,World Bank: Share of central government education expenditures for salaries (%),sources,Education Statistics,12
+PER.SOR.CTL.SEC,World Bank: Share of total central government education expenditures for secondary (%),sources,Education Statistics,12
+PER.SOR.CTL.SR,World Bank: Share of total central government education expenditures for senior secondary education (%),sources,Education Statistics,12
+PER.SOR.CTL.TER,World Bank: Share of total central government education expenditures for tertiary (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT,World Bank: Share of total central government spending for education (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.BAS,World Bank: Share of total education expenditures disbursed by the central government for basic education (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.PP,World Bank: Share of total education expenditures disbursed by the central government for pre-primary (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.PRM,World Bank: Share of total education expenditures disbursed by the central government for primary (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.SEC,World Bank: Share of total education expenditures disbursed by the central government for secondary (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.TER,World Bank: Share of total education expenditures disbursed by the central government for tertiary education (%),sources,Education Statistics,12
+PER.SOR.CTL.TOT.VOC,World Bank: Share of total education expenditures disbursed by the central government for technical/vocational education (%),sources,Education Statistics,12
+PER.SOR.CTL.VOC,World Bank: Share of total central government education expenditures for technical/vocational education (%),sources,Education Statistics,12
+PER.SOR.DIST,World Bank: Share of total education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.DIST.BAS,World Bank: Share of total education expenditures disbursed by subnational levels of government for basic education (%),sources,Education Statistics,12
+PER.SOR.DIST.CTL,World Bank: Share of total education expenditures disbursed by the central government (%),sources,Education Statistics,12
+PER.SOR.DIST.JR,World Bank: Share of total education expenditures disbursed by subnational levels of government for junior secondary education (%),sources,Education Statistics,12
+PER.SOR.DIST.LOC,World Bank: Share of total education expenditures disbursed by district/municipal levels of government (%),sources,Education Statistics,12
+PER.SOR.DIST.PP,World Bank: Share of total education expenditures disbursed by subnational levels of government for pre-primary (%),sources,Education Statistics,12
+PER.SOR.DIST.PRM,World Bank: Share of total education expenditures disbursed by subnational levels of government for primary (%),sources,Education Statistics,12
+PER.SOR.DIST.REG,World Bank: Share of total education expenditures disbursed by provincial/state levels of government (%),sources,Education Statistics,12
+PER.SOR.DIST.REV,World Bank: Share of total district/municipal government expenditures for the education sector (%),sources,Education Statistics,12
+PER.SOR.DIST.SEC,World Bank: Share of total education expenditures disbursed by subnational levels of government for secondary (%),sources,Education Statistics,12
+PER.SOR.DIST.SR,World Bank: Share of total education expenditures disbursed by subnational levels of government for senior secondary education (%),sources,Education Statistics,12
+PER.SOR.DIST.SUB,World Bank: Share of total education expenditures disbursed by subnational levels of government (%),sources,Education Statistics,12
+PER.SOR.DIST.TER,World Bank: Share of total education expenditures disbursed by subnational levels of government for tertiary education (%),sources,Education Statistics,12
+PER.SOR.DIST.VOC,World Bank: Share of total education expenditures disbursed by subnational levels of government for technical/vocational education (%),sources,Education Statistics,12
+PER.SOR.FEE.JR,"World Bank: Annual school fees per student, junior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.FEE.JR.SHARE,World Bank: Share of total junior secondary education expenditures from parental contributions/school fees (%),sources,Education Statistics,12
+PER.SOR.FEE.PP.SHARE,World Bank: Share of total pre-primary education expenditures from parental contributions/school fees (%),sources,Education Statistics,12
+PER.SOR.FEE.PRM,"World Bank: Annual school fees per student, primary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.FEE.PRM.SHARE,World Bank: Share of total expenditures on primary education recovered from school fees/household contributions (%),sources,Education Statistics,12
+PER.SOR.FEE.SEC,"World Bank: Annual school fees per student, secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.FEE.SEC.SHARE,World Bank: Share of total expenditures on secondary education recovered from school fees/household expenditures (%),sources,Education Statistics,12
+PER.SOR.FEE.SR,"World Bank: Annual school fees per student, senior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.FEE.SR.SHARE,World Bank: Share of total senior secondary education expenditures from parental contributions/school fees (%),sources,Education Statistics,12
+PER.SOR.FEE.TER,"World Bank: Annual tuition fees per student, tertiary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.FEE.TER.SHARE,World Bank: Share of total cost of public tertiary education recovered from student fees (Cost Recovery %),sources,Education Statistics,12
+PER.SOR.FEE.TOT,World Bank: Share of total education revenue from school fees (%),sources,Education Statistics,12
+PER.SOR.GOV.CPL,World Bank: Capital expenditures from government sources (%),sources,Education Statistics,12
+PER.SOR.GOV.GDP,World Bank: Total education expenditure from public sources (% of GDP),sources,Education Statistics,12
+PER.SOR.GOV.PRM,World Bank: Share of primary expenditures from public/government sources (%),sources,Education Statistics,12
+PER.SOR.GOV.PS.PRM,World Bank: Government expenditures per primary student (in USD or local currency),sources,Education Statistics,12
+PER.SOR.GOV.PS.SEC,World Bank: Government expenditures per secondary student (in USD or local currency),sources,Education Statistics,12
+PER.SOR.GOV.PS.TER,World Bank: Government expenditures per tertiary student (in USD or local currency),sources,Education Statistics,12
+PER.SOR.GOV.PS.VOC,World Bank: Government expenditures per technical/vocational education student (in USD or local currency),sources,Education Statistics,12
+PER.SOR.GOV.RCT,World Bank: Recurrent expenditures from government sources (%),sources,Education Statistics,12
+PER.SOR.GOV.SEC,World Bank: Share of secondary expenditures from public/government sources (%),sources,Education Statistics,12
+PER.SOR.GOV.TER,World Bank: Share of total tertiary education expenditures (% from public sources),sources,Education Statistics,12
+PER.SOR.GOV.TOT,World Bank: Share of total education expenditure (% from public sources),sources,Education Statistics,12
+PER.SOR.GOV.TOT.CPL,World Bank: Share of total capital expenditure on education (% from public sources),sources,Education Statistics,12
+PER.SOR.GOV.TOT.USD,World Bank: Total Expenditures from Public/Government Sources (in USD or local currency),sources,Education Statistics,12
+PER.SOR.GOV.VOC,World Bank: Share of technical/vocational expenditures from public/government sources (%),sources,Education Statistics,12
+PER.SOR.HH,World Bank: Household spending per student (USD or local currency),sources,Education Statistics,12
+PER.SOR.HH.BAS,"World Bank: Household spending per student, basic (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.JR,"World Bank: Household spending per student, junior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.LOC,World Bank: Total household spending on education (local currency),sources,Education Statistics,12
+PER.SOR.HH.P20.PRM,World Bank: Share of total Private/Household spending on primary education for poorest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.P20.SEC,World Bank: Share of total Private/Household spending on secondary education for poorest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.P20.TER,World Bank: Share of total Private/Household spending on tertiary education for poorest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.P40,"World Bank: Private/Household spending on education, poorest 40% of students",sources,Education Statistics,12
+PER.SOR.HH.PRM,"World Bank: Household spending per student, primary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.Q1,"World Bank: Private/Household spending on education, Quintile 1",sources,Education Statistics,12
+PER.SOR.HH.Q1.PRM,World Bank: Share of total Private/Household spending on primary education for Quintile 1 (%),sources,Education Statistics,12
+PER.SOR.HH.Q1.SEC,World Bank: Share of total Private/Household spending on secondary education for Quintile 1 (%),sources,Education Statistics,12
+PER.SOR.HH.Q1.TER,World Bank: Share of total Private/Household spending on tertiary education for Quintile 1 (%),sources,Education Statistics,12
+PER.SOR.HH.Q2,"World Bank: Private/Household spending on education, Quintile 2",sources,Education Statistics,12
+PER.SOR.HH.Q2.PRM,World Bank: Share of total Private/Household spending on primary education for Quintile 2 (%),sources,Education Statistics,12
+PER.SOR.HH.Q2.SEC,World Bank: Share of total Private/Household spending on secondary education for Quintile 2 (%),sources,Education Statistics,12
+PER.SOR.HH.Q2.TER,World Bank: Share of total Private/Household spending on tertiary education for Quintile 2 (%),sources,Education Statistics,12
+PER.SOR.HH.Q3,"World Bank: Private/Household spending on education, Quintile 3",sources,Education Statistics,12
+PER.SOR.HH.Q3.PRM,World Bank: Share of total Private/Household spending on primary education for Quintile 3 (%),sources,Education Statistics,12
+PER.SOR.HH.Q3.SEC,World Bank: Share of total Private/Household spending on secondary education for Quintile 3 (%),sources,Education Statistics,12
+PER.SOR.HH.Q3.TER,World Bank: Share of total Private/Household spending on tertiary education for Quintile 3 (%),sources,Education Statistics,12
+PER.SOR.HH.Q4,"World Bank: Private/Household spending on education, Quintile 4",sources,Education Statistics,12
+PER.SOR.HH.Q4.PRM,World Bank: Share of total Private/Household spending on primary education for Quintile 4 (%),sources,Education Statistics,12
+PER.SOR.HH.Q4.SEC,World Bank: Share of total Private/Household spending on secondary education for Quintile 4 (%),sources,Education Statistics,12
+PER.SOR.HH.Q4.TER,World Bank: Share of total Private/Household spending on tertiary education for Quintile 4 (%),sources,Education Statistics,12
+PER.SOR.HH.Q5,"World Bank: Private/Household spending on education, Quintile 5",sources,Education Statistics,12
+PER.SOR.HH.Q5.PRM,World Bank: Share of total Private/Household spending on primary education for Quintile 5 (%),sources,Education Statistics,12
+PER.SOR.HH.Q5.SEC,World Bank: Share of total Private/Household spending on secondary education for Quintile 5 (%),sources,Education Statistics,12
+PER.SOR.HH.Q5.TER,World Bank: Share of total Private/Household spending on tertiary education for Quintile 5 (%),sources,Education Statistics,12
+PER.SOR.HH.R20.PRM,World Bank: Share of total Private/Household spending on primary education for richest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.R20.SEC,World Bank: Share of total Private/Household spending on secondary education for richest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.R20.TER,World Bank: Share of total Private/Household spending on tertiary education for richest 20% of students (%),sources,Education Statistics,12
+PER.SOR.HH.R40,"World Bank: Private/Household spending on education, richest 40% of students",sources,Education Statistics,12
+PER.SOR.HH.SEC,"World Bank: Household spending per student, secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.SR,"World Bank: Household spending per student, senior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.TER,"World Bank: Household spending per student, tertiary (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.HH.TOT,World Bank: Share of total education expenditure (% from parent/household contributions),sources,Education Statistics,12
+PER.SOR.HH.USD,World Bank: Total household spending on education (USD),sources,Education Statistics,12
+PER.SOR.HH.USD.BAS,"World Bank: Total household spending on education (USD), basic",sources,Education Statistics,12
+PER.SOR.HH.USD.JR,"World Bank: Total household spending on education (USD or local currency), junior secondary",sources,Education Statistics,12
+PER.SOR.HH.USD.PP,"World Bank: Total household spending on education (USD), pre-primary",sources,Education Statistics,12
+PER.SOR.HH.USD.PRM,"World Bank: Total household spending on education (USD or local currency), primary",sources,Education Statistics,12
+PER.SOR.HH.USD.SEC,"World Bank: Total household spending on education (USD or local currency), secondary",sources,Education Statistics,12
+PER.SOR.HH.USD.SR,"World Bank: Total household spending on education (USD or local currency), senior secondary",sources,Education Statistics,12
+PER.SOR.HH.USD.TER,"World Bank: Total household spending on education (USD), tertiary",sources,Education Statistics,12
+PER.SOR.ITL.BAS,World Bank: Share of basic education expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.CPL,World Bank: Share of total capital education expenditure from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.GDP,World Bank: Total education expenditures from international sources as a % of GDP,sources,Education Statistics,12
+PER.SOR.ITL.JR,World Bank: Share of junior secondary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.OFF,"World Bank: Off-budget international education spending, total (in USD or local currency)",sources,Education Statistics,12
+PER.SOR.ITL.PP,World Bank: Share of pre-primary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.PRM,World Bank: Share of primary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.RCT,World Bank: Recurrent expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.SEC,World Bank: Share of secondary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.SR,World Bank: Share of senior secondary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.TER,World Bank: Share of tertiary expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.TOT,World Bank: Share of total education expenditure from international sources (%),sources,Education Statistics,12
+PER.SOR.ITL.USD,World Bank: Total education expenditures from international sources (in USD or local currency),sources,Education Statistics,12
+PER.SOR.ITL.VOC,World Bank: Share of technical/vocational expenditures from international sources (%),sources,Education Statistics,12
+PER.SOR.PP.CTL,World Bank: Share of pre-primary education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.PP.DIST,World Bank: Share of pre-primary education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.PP.PROV,World Bank: Share of pre-primary education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.PRM.CTL,World Bank: Share of primary education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.PRM.DIST,World Bank: Share of primary education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.PRM.PROV,World Bank: Share of primary education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.PROV,World Bank: Share of total education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.PROV.REV,World Bank: Share of total provincial/state government expenditures for the education sector (%),sources,Education Statistics,12
+PER.SOR.PRT.SEC,World Bank: Secondary share of total private spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.GDP,World Bank: Total private expenditure on education (% of GDP),sources,Education Statistics,12
+PER.SOR.PVT.GDP.PP,World Bank: Total private expenditure on pre-primary education (% of GDP),sources,Education Statistics,12
+PER.SOR.PVT.GDP.PRM,World Bank: Total private expenditure on primary education (% of GDP),sources,Education Statistics,12
+PER.SOR.PVT.GDP.SEC,World Bank: Total private expenditure on secondary education (% of GDP),sources,Education Statistics,12
+PER.SOR.PVT.GDP.TER,World Bank: Total private expenditure on tertiary education (% of GDP),sources,Education Statistics,12
+PER.SOR.PVT.JR,World Bank: Junior secondary share of total private spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT,World Bank: Share of household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.PRM,World Bank: Share of household consumption for private expenditures on primary education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.Q1,World Bank: Share of Quintile 1 household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.Q2,World Bank: Share of Quintile 2 household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.Q3,World Bank: Share of Quintile 3 household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.Q4,World Bank: Share of Quintile 4 household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.Q5,World Bank: Share of Quintile 5 household consumption for private expenditures on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.SEC,World Bank: Share of household consumption for private expenditures on secondary education (%),sources,Education Statistics,12
+PER.SOR.PVT.PCT.TER,World Bank: Share of household consumption for private expenditures on tertiary education (%),sources,Education Statistics,12
+PER.SOR.PVT.PP,World Bank: Pre-primary share of total private spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.PRM,World Bank: Primary share of total private spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.SR,World Bank: Senior secondary share of total private spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.TER,World Bank: Tertiary share of total private/household spending on education (%),sources,Education Statistics,12
+PER.SOR.PVT.TOT,World Bank: Share of total education expenditure (% from private sources),sources,Education Statistics,12
+PER.SOR.PVT.VOC,World Bank: Technical/Vocational share of total private/household spending on education (%),sources,Education Statistics,12
+PER.SOR.SEC.CTL,World Bank: Share of secondary education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.SEC.DIST,World Bank: Share of secondary education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.SEC.PROV,World Bank: Share of secondary education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.SUB.BAS,"World Bank: Share of subnational education expenditures, basic (%)",sources,Education Statistics,12
+PER.SOR.SUB.CAP,World Bank: Share of subnational education expenditures for capital (%),sources,Education Statistics,12
+PER.SOR.SUB.CPL,World Bank: Subnational government share of education capital expenditures (%),sources,Education Statistics,12
+PER.SOR.SUB.PP,"World Bank: Share of subnational education expenditures, pre-primary (%)",sources,Education Statistics,12
+PER.SOR.SUB.PRM,"World Bank: Share of subnational education expenditures, primary (%)",sources,Education Statistics,12
+PER.SOR.SUB.RCT,World Bank: Subnational government share of recurrent education expenditures (%),sources,Education Statistics,12
+PER.SOR.SUB.RCT.SHARE,World Bank: Share of subnational education expenditures for recurrent expenditures (%),sources,Education Statistics,12
+PER.SOR.SUB.REV,World Bank: Share of total subnational government expenditures for the education sector (%),sources,Education Statistics,12
+PER.SOR.SUB.SAL,World Bank: Subnational government share of salaries (%),sources,Education Statistics,12
+PER.SOR.SUB.SAL.SHARE,World Bank: Share of subnational education expenditures for salaries (%),sources,Education Statistics,12
+PER.SOR.SUB.SEC,"World Bank: Share of subnational education expenditures, secondary (%)",sources,Education Statistics,12
+PER.SOR.SUB.STAFF,World Bank: Share of total education staff employed at the subnational level (%),sources,Education Statistics,12
+PER.SOR.SUB.TER,"World Bank: Share of subnational education expenditures, tertiary (%)",sources,Education Statistics,12
+PER.SOR.SUB.VOC,"World Bank: Share of subnational education expenditures, technical/vocational (%)",sources,Education Statistics,12
+PER.SOR.TER.CTL,World Bank: Share of tertiary education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.TER.DIST,World Bank: Share of tertiary education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.TER.PROV,World Bank: Share of tertiary education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SOR.TOT.CTL,World Bank: Share of total education revenues from central sources (%),sources,Education Statistics,12
+PER.SOR.TOT.SUB,World Bank: Share of total education revenues from subnational sources (%),sources,Education Statistics,12
+PER.SOR.VOC.CTL,World Bank: Share of vocational education expenditures financed by central government sources (%),sources,Education Statistics,12
+PER.SOR.VOC.DIST,World Bank: Share of vocational education expenditures financed by district/municipal government sources (%),sources,Education Statistics,12
+PER.SOR.VOC.PROV,World Bank: Share of vocational education expenditures financed by provincial/state government sources (%),sources,Education Statistics,12
+PER.SP.ITL.SHARE,World Bank: Share of education expenditures from international sources for special education (%),sources,Education Statistics,12
+PER.SP.SAL,World Bank: Average annual salary for special education teachers (in USD or local currency),sources,Education Statistics,12
+PER.SP.SOR.GOV,World Bank: Share of special education expenditures from government sources (%),sources,Education Statistics,12
+PER.SP.SOR.ITL,World Bank: Share of special education expenditures from international sources (%),sources,Education Statistics,12
+PER.SR.ADMIN,World Bank: Share of senior secondary expenditures for administration (%),sources,Education Statistics,12
+PER.SR.CPL,World Bank: Capital share of senior secondary expenditures (%),sources,Education Statistics,12
+PER.SR.CPL.TOT,"World Bank: Share of total capital education expenditure (%), senior secondary",sources,Education Statistics,12
+PER.SR.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, senior secondary",sources,Education Statistics,12
+PER.SR.EFF.REP.YEAR,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, senior secondary",sources,Education Statistics,12
+PER.SR.GS.RCT,World Bank: Share of senior secondary recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.SR.ITL.SHARE,World Bank: Share of education expenditures from international sources for senior secondary education (%),sources,Education Statistics,12
+PER.SR.PCR,"World Bank: Pupil/Classroom Ratio, senior secondary",sources,Education Statistics,12
+PER.SR.PPC,"World Bank: Pupils/Class, senior secondary",sources,Education Statistics,12
+PER.SR.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), senior secondary",sources,Education Statistics,12
+PER.SR.PS.NONSAL,"World Bank: Per student non-salary spending, senior secondary (in USD or local currency)",sources,Education Statistics,12
+PER.SR.PS.PRM,"World Bank: Ratio of expenditures per student, senior secondary to primary",sources,Education Statistics,12
+PER.SR.PS.RCT,World Bank: Recurrent expenditures per senior secondary student (USD or local currency),sources,Education Statistics,12
+PER.SR.PS.USD,"World Bank: Expenditures per student per year (in USD), senior secondary",sources,Education Statistics,12
+PER.SR.PSTF,"World Bank: Pupil/Total Staff Ratio, senior secondary",sources,Education Statistics,12
+PER.SR.PTR,"World Bank: Pupil/Teacher Ratio, senior secondary",sources,Education Statistics,12
+PER.SR.QLT.Q1,World Bank: Share of senior secondary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.SR.QLT.Q2,World Bank: Share of senior secondary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.SR.QLT.Q3,World Bank: Share of senior secondary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.SR.QLT.Q4,World Bank: Share of senior secondary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.SR.QLT.Q5,World Bank: Share of senior secondary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.SR.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Senior Secondary",sources,Education Statistics,12
+PER.SR.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Senior Secondary",sources,Education Statistics,12
+PER.SR.RCT,World Bank: Recurrent share of senior secondary expenditures (%),sources,Education Statistics,12
+PER.SR.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), senior secondary",sources,Education Statistics,12
+PER.SR.SAL,World Bank: Salaries' share of senior secondary expenditures (%),sources,Education Statistics,12
+PER.SR.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, senior secondary",sources,Education Statistics,12
+PER.SR.SAL.RCT,World Bank: Share of recurrent education expenditures for senior secondary salaries (%),sources,Education Statistics,12
+PER.SR.SAL.SHARE.RCT,World Bank: Salaries' share of senior secondary recurrent expenditures (%),sources,Education Statistics,12
+PER.SR.SAL.TOT,World Bank: Share of total education expenditures for senior secondary salaries (%),sources,Education Statistics,12
+PER.SR.SAL.USD,"World Bank: Average Annual Teacher Salary in USD, senior secondary",sources,Education Statistics,12
+PER.SR.SOR.GOV,World Bank: Share of senior education expenditures from government sources (%),sources,Education Statistics,12
+PER.SR.TCH.HRS,"World Bank: Average annual teaching load, senior secondary (hours of instruction per year)",sources,Education Statistics,12
+PER.SR.TEACH.SHARE,World Bank: Share of teachers for senior secondary education (%),sources,Education Statistics,12
+PER.SR.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, senior secondary",sources,Education Statistics,12
+PER.SR.TOT,World Bank: Share of total education expenditure for senior secondary education (%),sources,Education Statistics,12
+PER.SR.TOTEXP,World Bank: Total expenditures on senior secondary education (USD or local currency),sources,Education Statistics,12
+PER.SR.TRANSFER.PS,"World Bank: Per student transfer by central to subnational government, senior secondary education (USD or local currency)",sources,Education Statistics,12
+PER.SR.TRANSFER.RCT,World Bank: Share of senior secondary recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.SUB.DIST.CAP,World Bank: Share of district/municipal education expenditures for capital (%),sources,Education Statistics,12
+PER.SUB.DIST.RCT,World Bank: Share of district/municipal education expenditures for recurrent (%),sources,Education Statistics,12
+PER.SUB.DIST.SAL,World Bank: Share of district/municipal education expenditures for salaries (%),sources,Education Statistics,12
+PER.SUB.PROV.CAP,World Bank: Share of provincial/state education expenditures for capital (%),sources,Education Statistics,12
+PER.SUB.PROV.RCT,World Bank: Share of provincial/state education expenditures for recurrent expenditures (%),sources,Education Statistics,12
+PER.SUB.PROV.SAL,World Bank: Share of provincial/state education expenditures for salaries (%),sources,Education Statistics,12
+PER.TEACH.RCT.PS,World Bank: Recurrent expenditures per teacher education student (USD or local currency),sources,Education Statistics,12
+PER.TEACH.SAL.PS,World Bank: Salary expenditures per teacher education student (USD or local currency),sources,Education Statistics,12
+PER.TER.ADMIN,World Bank: Share of tertiary expenditures for administration (%),sources,Education Statistics,12
+PER.TER.CPL,World Bank: Capital share of tertiary expenditures (%),sources,Education Statistics,12
+PER.TER.CPL.TOT,"World Bank: Share of total capital education expenditure (%), tertiary",sources,Education Statistics,12
+PER.TER.EFF.REP,"World Bank: Repetition/Drop-out Inefficiency Cost, tertiary",sources,Education Statistics,12
+PER.TER.EFF.REP.YEAR,"World Bank: Repetition/Dropout Inefficiency Annual Resource Input Ratio, tertiary",sources,Education Statistics,12
+PER.TER.EXE.CPL,"World Bank: Capital education budget execution rate (%), tertiary",sources,Education Statistics,12
+PER.TER.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), tertiary",sources,Education Statistics,12
+PER.TER.EXE.SAL,"World Bank: Salary execution rate (%), tertiary",sources,Education Statistics,12
+PER.TER.EXE.TOT,"World Bank: Education budget execution rate, tertiary (%)",sources,Education Statistics,12
+PER.TER.FIN.PS,"World Bank: Average scholarship per student, tertiary (in USD or local currency)",sources,Education Statistics,12
+PER.TER.FIN.STUDENTS,World Bank: Share of tertiary students who receive financial assistance/loans (%),sources,Education Statistics,12
+PER.TER.GDP,World Bank: Share of GDP for education expenditures on tertiary education (%),sources,Education Statistics,12
+PER.TER.GS.RCT,World Bank: Share of tertiary recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.TER.HH.BOARD,World Bank: Household spending per student on room/board for tertiary education (USD or local currency),sources,Education Statistics,12
+PER.TER.HH.TEXT,World Bank: Household spending per student on textbooks for tertiary education (USD or local currency),sources,Education Statistics,12
+PER.TER.HH.TRNSPT,World Bank: Household spending per student on transportation for tertiary education (USD or local currency),sources,Education Statistics,12
+PER.TER.HH.UNIF,World Bank: Household spending per student on uniforms/clothing for tertiary education (USD or local currency),sources,Education Statistics,12
+PER.TER.ITL.SHARE,World Bank: Share of education expenditures from international sources for tertiary education (%),sources,Education Statistics,12
+PER.TER.PCR,"World Bank: Pupil/Classroom Ratio, tertiary",sources,Education Statistics,12
+PER.TER.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), tertiary",sources,Education Statistics,12
+PER.TER.PS.NONSAL,"World Bank: Per student non-salary spending, tertiary education (in USD or local currency)",sources,Education Statistics,12
+PER.TER.PS.PRM,"World Bank: Ratio of expenditures per student, tertiary to primary",sources,Education Statistics,12
+PER.TER.PS.RCT.RATIO,World Bank: Ratio of tertiary per capita/per student recurrent expenditures relative to primary education,sources,Education Statistics,12
+PER.TER.PS.TEXT,"World Bank: Per student expenditure on teaching/learning materials, tertiary (in USD or local currency)",sources,Education Statistics,12
+PER.TER.PS.USD,"World Bank: Expenditures per student per year (in USD), tertiary",sources,Education Statistics,12
+PER.TER.PSTF,"World Bank: Pupil/Total Staff Ratio, tertiary",sources,Education Statistics,12
+PER.TER.PTR,"World Bank: Pupil/Teacher Ratio, tertiary",sources,Education Statistics,12
+PER.TER.PVT,"World Bank: Share of tertiary institutions, privately managed (%)",sources,Education Statistics,12
+PER.TER.PVT.FEE,"World Bank: Private institution fees, tertiary (in USD or local currency)",sources,Education Statistics,12
+PER.TER.QTL.NP,World Bank: Share of total tertiary education expenditures for non-poor students (%),sources,Education Statistics,12
+PER.TER.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Tertiary",sources,Education Statistics,12
+PER.TER.QTL.POOR,World Bank: Share of total tertiary education expenditures for poor students (%),sources,Education Statistics,12
+PER.TER.QTL.Q1,World Bank: Share of tertiary education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.TER.QTL.Q2,World Bank: Share of tertiary education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.TER.QTL.Q3,World Bank: Share of tertiary education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.TER.QTL.Q4,World Bank: Share of tertiary education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.TER.QTL.Q5,World Bank: Share of tertiary education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.TER.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Tertiary",sources,Education Statistics,12
+PER.TER.RCT,World Bank: Recurrent share of tertiary expenditures (%),sources,Education Statistics,12
+PER.TER.RCT.GDP,World Bank: Tertiary recurrent expenditures as a share of GDP (%),sources,Education Statistics,12
+PER.TER.RCT.PS,World Bank: Recurrent expenditures per tertiary student (USD or local currency),sources,Education Statistics,12
+PER.TER.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), tertiary",sources,Education Statistics,12
+PER.TER.SAL,World Bank: Salaries' share of tertiary education expenditures (%),sources,Education Statistics,12
+PER.TER.SAL.GDP,"World Bank: Ratio of Teacher Salaries to per capita GDP, tertiary",sources,Education Statistics,12
+PER.TER.SAL.PS,World Bank: Salary expenditures per tertiary student (USD or local currency),sources,Education Statistics,12
+PER.TER.SAL.RCT,World Bank: Share of recurrent education expenditures for tertiary salaries (%),sources,Education Statistics,12
+PER.TER.SAL.SHARE,World Bank: Share of total salary expenditures for tertiary (%),sources,Education Statistics,12
+PER.TER.SAL.SHARE.RCT,World Bank: Salaries' share of tertiary recurrent expenditures (%),sources,Education Statistics,12
+PER.TER.SAL.TOT,World Bank: Share of total education expenditures for tertiary salaries (%),sources,Education Statistics,12
+PER.TER.SAL.USD,"World Bank: Average Annual Teacher Salary (in USD or local currency), tertiary",sources,Education Statistics,12
+PER.TER.SHARE.PRIV,World Bank: Share of tertiary education expenditures for private institutions (%),sources,Education Statistics,12
+PER.TER.TEACH.SHARE,World Bank: Share of teachers for tertiary education (%),sources,Education Statistics,12
+PER.TER.TEXT.RCT,World Bank: Share of tertiary recurrent expenditures for teaching/learning materials (%),sources,Education Statistics,12
+PER.TER.TEXT.TOT,World Bank: Share of tertiary expenditures for teaching/learning materials (%),sources,Education Statistics,12
+PER.TER.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, tertiary",sources,Education Statistics,12
+PER.TER.TOT,World Bank: Share of total education expenditure for tertiary education (%),sources,Education Statistics,12
+PER.TER.TOT.CPL,"World Bank: Capital share of total education expenditure (%), tertiary",sources,Education Statistics,12
+PER.TER.TOTEXP,World Bank: Total expenditures on tertiary education (USD or local currency),sources,Education Statistics,12
+PER.TER.TRANSFER.RCT,World Bank: Share of tertiary recurrent expenditures for transfers (%),sources,Education Statistics,12
+PER.TEXT.TOT,"World Bank: Textbooks, Total Expenditures in USD or local currency",sources,Education Statistics,12
+PER.TOT.EFF.TOT,World Bank: Total Cost of Inefficiencies (USD or local currency),sources,Education Statistics,12
+PER.TT.CAP.SHARE,"World Bank: Share of total capital education expenditures (%), teacher training",sources,Education Statistics,12
+PER.TT.EXE.CAP,"World Bank: Capital budget execution rate, Teacher Training (%)",sources,Education Statistics,12
+PER.TT.ITL.SHARE,World Bank: Share of education expenditures from international sources for teacher training education (%),sources,Education Statistics,12
+PER.TT.OA.UNQUAL,World Bank: Share of teachers who are uncertified (%),sources,Education Statistics,12
+PER.TT.PRM.UNQUAL,World Bank: Share of primary teachers who are uncertified (%),sources,Education Statistics,12
+PER.TT.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), teacher training",sources,Education Statistics,12
+PER.TT.PS.USD,"World Bank: Expenditures per student per year in USD, teacher training",sources,Education Statistics,12
+PER.TT.SEC.UNQUAL,World Bank: Share of secondary teachers who are uncertified (%),sources,Education Statistics,12
+PER.TT.SOR.GOV,World Bank: Share of teacher education expenditures from government sources (%),sources,Education Statistics,12
+PER.TT.SOR.ITL,World Bank: Share of teacher education expenditures from international sources (%),sources,Education Statistics,12
+PER.URB.HH.SHARE,"World Bank: Share of total household expenditures for education, urban areas (%)",sources,Education Statistics,12
+PER.URB.HH.TOTSHARE,World Bank: Share of total household education expenditures from urban areas (%),sources,Education Statistics,12
+PER.VOC.ADMIN,World Bank: Share of technical/vocational expenditures for administration (%),sources,Education Statistics,12
+PER.VOC.CPL,World Bank: Capital share of technical/vocational expenditures (%),sources,Education Statistics,12
+PER.VOC.CPL.TOT,"World Bank: Share of total capital education expenditure (%), technical/vocational",sources,Education Statistics,12
+PER.VOC.EXE.CPL,"World Bank: Capital education budget execution rate (%), technical/vocational",sources,Education Statistics,12
+PER.VOC.EXE.RCT,"World Bank: Recurrent education budget execution rate (%), technical/vocational",sources,Education Statistics,12
+PER.VOC.EXE.TOT,"World Bank: Education budget execution rate, technical/vocational (%)",sources,Education Statistics,12
+PER.VOC.FIN.RCT.PCT,World Bank: Share of recurrent technical/vocational expenditures for scholarships (%),sources,Education Statistics,12
+PER.VOC.FIN.STUDENTS,World Bank: Share of Technical/Vocational students who received scholarships (%),sources,Education Statistics,12
+PER.VOC.GDP,World Bank: Share of GDP for education expenditures on technical/vocational education (%),sources,Education Statistics,12
+PER.VOC.GS.RCT,World Bank: Share of technical/vocational education recurrent expenditures for goods and services (%),sources,Education Statistics,12
+PER.VOC.HH.PS,World Bank: Household spending per student on technical/vocational education (in USD or local currency),sources,Education Statistics,12
+PER.VOC.PCR,"World Bank: Pupil/Classroom Ratio, technical/vocational education",sources,Education Statistics,12
+PER.VOC.PPC,"World Bank: Pupils/Class, technical/vocational education",sources,Education Statistics,12
+PER.VOC.PS.GDP,"World Bank: Public education expenditure per student (% of GDP per capita), technical/vocational education",sources,Education Statistics,12
+PER.VOC.PS.NONSAL,"World Bank: Per student non-salary spending, technical/vocational education (in USD or local currency)",sources,Education Statistics,12
+PER.VOC.PS.PRM,"World Bank: Ratio of expenditures per student, technical/vocational to primary",sources,Education Statistics,12
+PER.VOC.PS.USD,"World Bank: Expenditures per student per year (in USD/local currency), technical/vocational education",sources,Education Statistics,12
+PER.VOC.PSTF,"World Bank: Pupil/Total Staff Ratio, technical/vocational education",sources,Education Statistics,12
+PER.VOC.PTR,"World Bank: Pupil/Teacher Ratio, technical/vocational education",sources,Education Statistics,12
+PER.VOC.PVT.FEE,"World Bank: Private institution fees, technical/vocational (in USD or local currency)",sources,Education Statistics,12
+PER.VOC.QTL.P40,"World Bank: Share of education expenditures for the poorest 40% of students (%), Technical/Vocational",sources,Education Statistics,12
+PER.VOC.QTL.Q1,World Bank: Share of technical/vocational education expenditures for Quintile 1 (poorest) (%),sources,Education Statistics,12
+PER.VOC.QTL.Q2,World Bank: Share of technical/vocational education expenditures for Quintile 2 (%),sources,Education Statistics,12
+PER.VOC.QTL.Q3,World Bank: Share of technical/vocational education expenditures for Quintile 3 (%),sources,Education Statistics,12
+PER.VOC.QTL.Q4,World Bank: Share of technical/vocational education expenditures for Quintile 4 (%),sources,Education Statistics,12
+PER.VOC.QTL.Q5,World Bank: Share of technical/vocational education expenditures for Quintile 5 (richest) (%),sources,Education Statistics,12
+PER.VOC.QTL.R40,"World Bank: Share of education expenditures for the richest 40% of students (%), Technical/Vocational",sources,Education Statistics,12
+PER.VOC.RCT,World Bank: Recurrent share of technical/vocational expenditures (%),sources,Education Statistics,12
+PER.VOC.RCT.PS,World Bank: Recurrent expenditures per technical/vocational student (USD or local currency),sources,Education Statistics,12
+PER.VOC.RCT.TOT,"World Bank: Share of total recurrent education expenditure (%), technical/vocational",sources,Education Statistics,12
+PER.VOC.SAL,World Bank: Salaries' share of technical/vocational education expenditures (%),sources,Education Statistics,12
+PER.VOC.SAL.RCT,World Bank: Share of recurrent education expenditures for technical/vocational salaries (%),sources,Education Statistics,12
+PER.VOC.SAL.SHARE.RCT,World Bank: Salaries' share of technical/vocational recurrent expenditures (%),sources,Education Statistics,12
+PER.VOC.SAL.SHARE.TOT,World Bank: Share of total expenditures for technical/vocational salaries (%),sources,Education Statistics,12
+PER.VOC.SAL.USDLOC,"World Bank: Annual Teacher Salaries, technical/vocational education (in USD or local currency)",sources,Education Statistics,12
+PER.VOC.TEACH.SHARE,World Bank: Share of teachers for technical/vocational education (%),sources,Education Statistics,12
+PER.VOC.TNR,"World Bank: Teaching/Non-Teaching Staff Ratio, technical/vocational education",sources,Education Statistics,12
+PER.VOC.TOT,World Bank: Share of total education expenditure for technical/vocational education (%),sources,Education Statistics,12
+PER.VOC.TOT.CPL,"World Bank: Capital share of total education expenditure (%), technical/vocational",sources,Education Statistics,12
+PER.VOC.TOTEXP,World Bank: Total expenditures on technical vocational education (USD or local currency),sources,Education Statistics,12
+PER.VOC.TRANSFER.RCT,World Bank: Share of technical/vocational education recurrent expenditures for transfers (%),sources,Education Statistics,12
+PI-01,Aggregate expenditure out-turn,sources,PEFA 2011,67
+PI-01.1,(i) Aggregate expenditure out-turn,sources,PEFA 2011,67
+PI-02,Expenditure composition outturn,sources,PEFA 2011,67
+PI-02.1,(i) Expenditure composition outturn by function,sources,PEFA 2011,67
+PI-02.2,(ii) Expenditure composition outturn by economic type,sources,PEFA 2011,67
+PI-02.3,(iii) Expenditure from contingency reserves.,sources,PEFA 2016,68
+PI-03,Revenue outturn,sources,PEFA 2011,67
+PI-03.1,(i) Agregate revenue outturn,sources,PEFA 2011,67
+PI-03.2,(ii) Revenue composition outturn,sources,PEFA 2016,68
+PI-04,Budget Classification,sources,PEFA 2011,67
+PI-04.1,(i) Budget Classification,sources,PEFA 2011,67
+PI-05,Budget Documentation,sources,PEFA 2011,67
+PI-05.1,(i) Budget Documentation,sources,PEFA 2011,67
+PI-06,Central government operations outside financial reports,sources,PEFA 2011,67
+PI-06.1,(i) Expenditure outside financial reports,sources,PEFA 2011,67
+PI-06.2,(ii) Revenue outside financial reports,sources,PEFA 2016,68
+PI-06.3,(iii) Financial reports of extra-budgetary units,sources,PEFA 2016,68
+PI-07,Transfers to subnational governments,sources,PEFA 2011,67
+PI-07.1,(i) System for allocating transfers,sources,PEFA 2011,67
+PI-07.2,(ii) Timeliness of information on transfers,sources,PEFA 2011,67
+PI-08,Performance information for service delivery,sources,PEFA 2011,67
+PI-08.1,(i) Performance plans for service delivery,sources,PEFA 2011,67
+PI-08.2,(ii) Performance achieved for service delivery,sources,PEFA 2011,67
+PI-08.3,(iii) Resources received by service delivery units,sources,PEFA 2011,67
+PI-08.4,(iv) Performance evaluation for service delivery,sources,PEFA 2016,68
+PI-09,Public access to information,sources,PEFA 2011,67
+PI-09.1,(i) Public access to information,sources,PEFA 2011,67
+PI-10,Fiscal risk reporting,sources,PEFA 2011,67
+PI-10.1,(i) Monitoring of public corporations,sources,PEFA 2011,67
+PI-10.2,(ii) Monitoring of sub-national government (SNG),sources,PEFA 2016,68
+PI-10.3,(iii) Contingent liabilities and other fiscal risks,sources,PEFA 2016,68
+PI-11,Public investment management,sources,PEFA 2011,67
+PI-11.1,(i) Economic analysis of investment proposals,sources,PEFA 2011,67
+PI-11.2,(ii) Investment project selection,sources,PEFA 2011,67
+PI-11.3,(iii) Investment project costing,sources,PEFA 2011,67
+PI-11.4,(iv) Investment project monitoring,sources,PEFA 2016,68
+PI-12,Public asset management,sources,PEFA 2011,67
+PI-12.1,(i) Financial asset monitoring,sources,PEFA 2011,67
+PI-12.2,(ii) Nonfinancial asset monitoring,sources,PEFA 2011,67
+PI-12.3,(iii) Transparency of asset disposal,sources,PEFA 2011,67
+PI-12.4,(iv) Linkages between investment budgets and forward expenditure estimates.,sources,PEFA 2011,67
+PI-13,Debt management,sources,PEFA 2011,67
+PI-13.1,(i) Recording and reporting of debt and guarantees,sources,PEFA 2011,67
+PI-13.2,(ii) Approval of debt and guarantees,sources,PEFA 2011,67
+PI-13.3,(iii) Debt management strategy,sources,PEFA 2011,67
+PI-14,Macroeconomic and fiscal forecasting,sources,PEFA 2011,67
+PI-14.1,(i) Macroeconomic forecasts,sources,PEFA 2011,67
+PI-14.2,(ii) Fiscal forecasts,sources,PEFA 2011,67
+PI-14.3,(iii) Macro-fiscal sensitivity analysis,sources,PEFA 2011,67
+PI-15,Fiscal strategy,sources,PEFA 2011,67
+PI-15.1,(i) Fiscal impact of policy proposals,sources,PEFA 2011,67
+PI-15.2,(ii) Fiscal strategy adoption,sources,PEFA 2011,67
+PI-15.3,(iii) Reporting on fiscal outcomes,sources,PEFA 2011,67
+PI-16,Medium term perspective in expenditure budgeting,sources,PEFA 2011,67
+PI-16.1,(i) Medium-term expenditure estimates,sources,PEFA 2011,67
+PI-16.2,(ii) Medium-term expenditure ceilings,sources,PEFA 2011,67
+PI-16.3,(iii) Alignment of strategic plans and medium-term budgets,sources,PEFA 2011,67
+PI-16.4,(iv) Consistency of budgets with previous year estimates,sources,PEFA 2016,68
+PI-17,Budget preparation process,sources,PEFA 2011,67
+PI-17.1,(i) Budget calendar,sources,PEFA 2011,67
+PI-17.2,(ii) Guidance on budget preparation,sources,PEFA 2011,67
+PI-17.3,(iii) Budget submission to the legislature,sources,PEFA 2011,67
+PI-18,Legislative scrutiny of budgets,sources,PEFA 2011,67
+PI-18.1,(i) Scope of budget scrutiny,sources,PEFA 2011,67
+PI-18.2,(ii) Legislative procedures for budget scrutiny,sources,PEFA 2011,67
+PI-18.3,(iii) Timing of budget approval,sources,PEFA 2011,67
+PI-18.4,(iv) Rules for budget adjustments by the executive,sources,PEFA 2011,67
+PI-19,Revenue administration,sources,PEFA 2011,67
+PI-19.1,(i) Rights and obligations for revenue measures,sources,PEFA 2011,67
+PI-19.2,(ii) Revenue risk management,sources,PEFA 2011,67
+PI-19.3,(iii) Revenue audit and investigation,sources,PEFA 2011,67
+PI-19.4,(iv) Revenue arrears monitoring,sources,PEFA 2011,67
+PI-19.5,(v) Evidence on the use of open competition for award of contracts,sources,PEFA 2011,67
+PI-19.6,(vi) Extent of justificaction for use of less competitive procurement methods.,sources,PEFA 2011,67
+PI-19.7,(vii) Existence and operation of a procurement complaints mechanism,sources,PEFA 2011,67
+PI-20,Accounting for revenues,sources,PEFA 2011,67
+PI-20.1,(i) Information on revenue collections,sources,PEFA 2011,67
+PI-20.2,(ii) Transfer of revenue collections,sources,PEFA 2011,67
+PI-20.3,(iii) Revenue accounts reconciliation,sources,PEFA 2011,67
+PI-21,Predictability of in-year resource allocation,sources,PEFA 2011,67
+PI-21.1,(i) Consolidation of cash balances,sources,PEFA 2011,67
+PI-21.2,(ii) Cash forecasting and monitoring,sources,PEFA 2011,67
+PI-21.3,(iii) Information on commitment ceilings,sources,PEFA 2011,67
+PI-21.4,(iv) Significance of in-year budget adjustments,sources,PEFA 2016,68
+PI-22,Expenditure arrears,sources,PEFA 2011,67
+PI-22.1,(i) Stock of expenditure arrears,sources,PEFA 2011,67
+PI-22.2,(ii) Expenditure arrears monitoring,sources,PEFA 2011,67
+PI-23,Payroll controls,sources,PEFA 2011,67
+PI-23.1,(i) Integration of payroll and personnel records,sources,PEFA 2011,67
+PI-23.2,(ii) Management of payroll changes,sources,PEFA 2016,68
+PI-23.3,(iii) Internal control of payroll,sources,PEFA 2016,68
+PI-23.4,(iv) Payroll audit,sources,PEFA 2016,68
+PI-24,Procurement,sources,PEFA 2011,67
+PI-24.1,(i) Procurement monitoring,sources,PEFA 2011,67
+PI-24.2,(ii) Procurement methods,sources,PEFA 2011,67
+PI-24.3,(iii) Public access to procurement information,sources,PEFA 2011,67
+PI-24.4,(iv) Procurement complaints management,sources,PEFA 2016,68
+PI-25,Internal controls on nonsalary expenditure,sources,PEFA 2011,67
+PI-25.1,(i) Segregation of duties,sources,PEFA 2011,67
+PI-25.2,(ii) Effectiveness of expenditure commitment controls,sources,PEFA 2011,67
+PI-25.3,(iii) Compliance with payment controls,sources,PEFA 2011,67
+PI-26,Internal audit effectiveness,sources,PEFA 2011,67
+PI-26.1,(i) Coverage of internal audit,sources,PEFA 2011,67
+PI-26.2,(ii) Nature of audits and standards applied,sources,PEFA 2011,67
+PI-26.3,(iii) Internal audit activity and reporting,sources,PEFA 2011,67
+PI-26.4,(iv) Response to internal audits,sources,PEFA 2016,68
+PI-27,Financial data integrity,sources,PEFA 2011,67
+PI-27.1,(i) Bank account reconciliation,sources,PEFA 2011,67
+PI-27.2,(ii) Suspense accounts,sources,PEFA 2011,67
+PI-27.3,(iii) Advance accounts,sources,PEFA 2011,67
+PI-27.4,(iv) Financial data integrity processes,sources,PEFA 2011,67
+PI-28,In-year budget reports,sources,PEFA 2011,67
+PI-28.1,(i) Coverage and comparability of reports,sources,PEFA 2011,67
+PI-28.2,(ii) Timing of in-year budget reports,sources,PEFA 2011,67
+PI-28.3,(iii) Accuracy of in-year budget reports,sources,PEFA 2011,67
+PI-29,Annual financial reports,sources,PEFA 2016,68
+PI-29.1,(i) Completeness of annual financial reports,sources,PEFA 2016,68
+PI-29.2,(ii) Submission of reports for external audit,sources,PEFA 2016,68
+PI-29.3,(iii) Accounting standards,sources,PEFA 2016,68
+PI-30,External audit,sources,PEFA 2016,68
+PI-30.1,(i) Audit coverage and standards,sources,PEFA 2016,68
+PI-30.2,(ii) Submission of audit reports to the legislature,sources,PEFA 2016,68
+PI-30.3,(iii) External audit follow-up,sources,PEFA 2016,68
+PI-30.4,(iv) Supreme Audit Institution (SAI) independence,sources,PEFA 2016,68
+PI-31,Legislative scrutiny of audit reports,sources,PEFA 2016,68
+PI-31.1,(i) Timing of audit report scrutiny,sources,PEFA 2016,68
+PI-31.2,(ii) Hearings on audit findings,sources,PEFA 2016,68
+PI-31.3,(iii) Recommendations on audit by the legislature,sources,PEFA 2016,68
+PI-31.4,(iv) Transparency of legislative scrutiny of audit reports,sources,PEFA 2016,68
+PRJ.ATT.1519.1.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.1519.1.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.1519.1.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.1519.2.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.1519.2.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.1519.2.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.1519.3.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.1519.3.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.1519.3.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.1519.4.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.1519.4.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.1519.4.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.1519.NED.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.1519.NED.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.1519.NED.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.1519.S1.FE,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.1519.S1.MA,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.1519.S1.MF,Wittgenstein Projection: Percentage of the population age 15-19 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.1.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.1.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.1.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.2.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.2.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.2.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.3.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.3.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.3.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.4.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.4.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.4.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.NED.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.NED.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.NED.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.15UP.S1.FE,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.15UP.S1.MA,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.15UP.S1.MF,Wittgenstein Projection: Percentage of the population age 15+ by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2024.1.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2024.1.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2024.1.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2024.2.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2024.2.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2024.2.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2024.3.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2024.3.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2024.3.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2024.4.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2024.4.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2024.4.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2024.NED.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.2024.NED.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.2024.NED.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.2024.S1.FE,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2024.S1.MA,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2024.S1.MF,Wittgenstein Projection: Percentage of the population age 20-24 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2039.1.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2039.1.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2039.1.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2039.2.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2039.2.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2039.2.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2039.3.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2039.3.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2039.3.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2039.4.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2039.4.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2039.4.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2039.NED.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.2039.NED.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.2039.NED.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.2039.S1.FE,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2039.S1.MA,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2039.S1.MF,Wittgenstein Projection: Percentage of the population age 20-39 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2064.1.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2064.1.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2064.1.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2064.2.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2064.2.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2064.2.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2064.3.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2064.3.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2064.3.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2064.4.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2064.4.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2064.4.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2064.NED.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.2064.NED.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.2064.NED.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.2064.S1.FE,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2064.S1.MA,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2064.S1.MF,Wittgenstein Projection: Percentage of the population age 20-64 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2529.1.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2529.1.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2529.1.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.2529.2.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2529.2.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2529.2.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2529.3.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2529.3.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2529.3.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2529.4.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.2529.4.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.2529.4.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.2529.NED.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.2529.NED.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.2529.NED.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.2529.S1.FE,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.2529.S1.MA,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.2529.S1.MF,Wittgenstein Projection: Percentage of the population age 25-29 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.1.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.1.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.1.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.2.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.2.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.2.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.3.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.3.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.3.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.4.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.4.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.4.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.NED.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.NED.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.NED.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.25UP.S1.FE,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.25UP.S1.MA,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.25UP.S1.MF,Wittgenstein Projection: Percentage of the population age 25+ by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.4064.1.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.4064.1.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.4064.1.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.4064.2.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.4064.2.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.4064.2.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.4064.3.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.4064.3.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.4064.3.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.4064.4.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.4064.4.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.4064.4.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.4064.NED.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.4064.NED.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.4064.NED.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.4064.S1.FE,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.4064.S1.MA,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.4064.S1.MF,Wittgenstein Projection: Percentage of the population age 40-64 by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.1.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.1.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.1.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.2.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.2.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.2.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.3.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.3.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.3.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.4.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.4.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.4.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.NED.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.NED.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.NED.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.60UP.S1.FE,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.60UP.S1.MA,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.60UP.S1.MF,Wittgenstein Projection: Percentage of the population age 60+ by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.1.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.1.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.1.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.2.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.2.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.2.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.3.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.3.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.3.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.4.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.4.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.4.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.NED.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.NED.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.NED.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.80UP.S1.FE,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.80UP.S1.MA,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.80UP.S1.MF,Wittgenstein Projection: Percentage of the population age 80+ by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.1.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.1.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.1.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.2.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.2.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.2.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.3.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.3.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.3.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.4.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.4.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.4.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.NED.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.NED.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.NED.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.ATT.ALL.S1.FE,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.ATT.ALL.S1.MA,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.ATT.ALL.S1.MF,Wittgenstein Projection: Percentage of the total population by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.MYS.0T19.FE,Wittgenstein Projection: Mean years of schooling. Age 0-19. Female,sources,Education Statistics,12
+PRJ.MYS.0T19.MA,Wittgenstein Projection: Mean years of schooling. Age 0-19. Male,sources,Education Statistics,12
+PRJ.MYS.0T19.MF,Wittgenstein Projection: Mean years of schooling. Age 0-19. Total,sources,Education Statistics,12
+PRJ.MYS.1519.FE,Wittgenstein Projection: Mean years of schooling. Age 15-19. Female,sources,Education Statistics,12
+PRJ.MYS.1519.MA,Wittgenstein Projection: Mean years of schooling. Age 15-19. Male,sources,Education Statistics,12
+PRJ.MYS.1519.MF,Wittgenstein Projection: Mean years of schooling. Age 15-19. Total,sources,Education Statistics,12
+PRJ.MYS.15UP.FE,Wittgenstein Projection: Mean years of schooling. Age 15+. Female,sources,Education Statistics,12
+PRJ.MYS.15UP.GPI,Wittgenstein Projection: Mean Years of Schooling. Age 15+. Gender Gap,sources,Education Statistics,12
+PRJ.MYS.15UP.MA,Wittgenstein Projection: Mean years of schooling. Age 15+. Male,sources,Education Statistics,12
+PRJ.MYS.15UP.MF,Wittgenstein Projection: Mean years of schooling. Age 15+. Total,sources,Education Statistics,12
+PRJ.MYS.2024.FE,Wittgenstein Projection: Mean years of schooling. Age 20-24. Female,sources,Education Statistics,12
+PRJ.MYS.2024.MA,Wittgenstein Projection: Mean years of schooling. Age 20-24. Male,sources,Education Statistics,12
+PRJ.MYS.2024.MF,Wittgenstein Projection: Mean years of schooling. Age 20-24. Total,sources,Education Statistics,12
+PRJ.MYS.2039.FE,Wittgenstein Projection: Mean years of schooling. Age 20-39. Female,sources,Education Statistics,12
+PRJ.MYS.2039.MA,Wittgenstein Projection: Mean years of schooling. Age 20-39. Male,sources,Education Statistics,12
+PRJ.MYS.2039.MF,Wittgenstein Projection: Mean years of schooling. Age 20-39. Total,sources,Education Statistics,12
+PRJ.MYS.2064.FE,Wittgenstein Projection: Mean years of schooling. Age 20-64. Female,sources,Education Statistics,12
+PRJ.MYS.2064.MA,Wittgenstein Projection: Mean years of schooling. Age 20-64. Male,sources,Education Statistics,12
+PRJ.MYS.2064.MF,Wittgenstein Projection: Mean years of schooling. Age 20-64. Total,sources,Education Statistics,12
+PRJ.MYS.2529.FE,Wittgenstein Projection: Mean years of schooling. Age 25-29. Female,sources,Education Statistics,12
+PRJ.MYS.2529.MA,Wittgenstein Projection: Mean years of schooling. Age 25-29. Male,sources,Education Statistics,12
+PRJ.MYS.2529.MF,Wittgenstein Projection: Mean years of schooling. Age 25-29. Total,sources,Education Statistics,12
+PRJ.MYS.25UP.FE,Wittgenstein Projection: Mean years of schooling. Age 25+. Female,sources,Education Statistics,12
+PRJ.MYS.25UP.GPI,Wittgenstein Projection: Mean Years of Schooling. Age 25+. Gender Gap,sources,Education Statistics,12
+PRJ.MYS.25UP.MA,Wittgenstein Projection: Mean years of schooling. Age 25+. Male,sources,Education Statistics,12
+PRJ.MYS.25UP.MF,Wittgenstein Projection: Mean years of schooling. Age 25+. Total,sources,Education Statistics,12
+PRJ.MYS.4064.FE,Wittgenstein Projection: Mean years of schooling. Age 40-64. Female,sources,Education Statistics,12
+PRJ.MYS.4064.MA,Wittgenstein Projection: Mean years of schooling. Age 40-64. Male,sources,Education Statistics,12
+PRJ.MYS.4064.MF,Wittgenstein Projection: Mean years of schooling. Age 40-64. Total,sources,Education Statistics,12
+PRJ.MYS.60UP.FE,Wittgenstein Projection: Mean years of schooling. Age 60+. Female,sources,Education Statistics,12
+PRJ.MYS.60UP.MA,Wittgenstein Projection: Mean years of schooling. Age 60+. Male,sources,Education Statistics,12
+PRJ.MYS.60UP.MF,Wittgenstein Projection: Mean years of schooling. Age 60+. Total,sources,Education Statistics,12
+PRJ.MYS.65UP.FE,Wittgenstein Projection: Mean years of schooling. Age 65+. Female,sources,Education Statistics,12
+PRJ.MYS.65UP.MA,Wittgenstein Projection: Mean years of schooling. Age 65+. Male,sources,Education Statistics,12
+PRJ.MYS.65UP.MF,Wittgenstein Projection: Mean years of schooling. Age 65+. Total,sources,Education Statistics,12
+PRJ.MYS.80UP.FE,Wittgenstein Projection: Mean years of schooling. Age 80+. Female,sources,Education Statistics,12
+PRJ.MYS.80UP.MA,Wittgenstein Projection: Mean years of schooling. Age 80+. Male,sources,Education Statistics,12
+PRJ.MYS.80UP.MF,Wittgenstein Projection: Mean years of schooling. Age 80+. Total,sources,Education Statistics,12
+PRJ.POP.1519.1.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.POP.1519.1.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.POP.1519.1.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.POP.1519.2.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.POP.1519.2.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.POP.1519.2.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.POP.1519.3.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.POP.1519.3.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.POP.1519.3.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.POP.1519.4.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.POP.1519.4.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.POP.1519.4.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.POP.1519.NED.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.POP.1519.NED.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.POP.1519.NED.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.POP.1519.S1.FE,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.POP.1519.S1.MA,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.POP.1519.S1.MF,Wittgenstein Projection: Population age 15-19 in thousands by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.POP.2024.1.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.POP.2024.1.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.POP.2024.1.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.POP.2024.2.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2024.2.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2024.2.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2024.3.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2024.3.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2024.3.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2024.4.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2024.4.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2024.4.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2024.NED.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.POP.2024.NED.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.POP.2024.NED.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.POP.2024.S1.FE,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.POP.2024.S1.MA,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.POP.2024.S1.MF,Wittgenstein Projection: Population age 20-24 in thousands by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.POP.2529.1.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.POP.2529.1.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.POP.2529.1.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.POP.2529.2.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2529.2.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2529.2.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2529.3.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2529.3.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2529.3.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2529.4.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.POP.2529.4.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.POP.2529.4.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.POP.2529.NED.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.POP.2529.NED.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.POP.2529.NED.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.POP.2529.S1.FE,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.POP.2529.S1.MA,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.POP.2529.S1.MF,Wittgenstein Projection: Population age 25-29 in thousands by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PRJ.POP.ALL.1.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Female,sources,Education Statistics,12
+PRJ.POP.ALL.1.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Male,sources,Education Statistics,12
+PRJ.POP.ALL.1.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Primary. Total,sources,Education Statistics,12
+PRJ.POP.ALL.2.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Female,sources,Education Statistics,12
+PRJ.POP.ALL.2.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Male,sources,Education Statistics,12
+PRJ.POP.ALL.2.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Lower Secondary. Total,sources,Education Statistics,12
+PRJ.POP.ALL.3.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Female,sources,Education Statistics,12
+PRJ.POP.ALL.3.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Male,sources,Education Statistics,12
+PRJ.POP.ALL.3.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Upper Secondary. Total,sources,Education Statistics,12
+PRJ.POP.ALL.4.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Female,sources,Education Statistics,12
+PRJ.POP.ALL.4.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Male,sources,Education Statistics,12
+PRJ.POP.ALL.4.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Post Secondary. Total,sources,Education Statistics,12
+PRJ.POP.ALL.NED.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Female,sources,Education Statistics,12
+PRJ.POP.ALL.NED.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Male,sources,Education Statistics,12
+PRJ.POP.ALL.NED.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. No Education. Total,sources,Education Statistics,12
+PRJ.POP.ALL.S1.FE,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Female,sources,Education Statistics,12
+PRJ.POP.ALL.S1.MA,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Male,sources,Education Statistics,12
+PRJ.POP.ALL.S1.MF,Wittgenstein Projection: Population in thousands by highest level of educational attainment. Incomplete Primary. Total,sources,Education Statistics,12
+PROT.MINOR.INV.DFRN.DB0614,Protecting minority investors (DB06-14 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.DFRN.DB1519,Protecting minority investors (DB15-20 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB0614,Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology),sources,Doing Business,1
+PROT.MINOR.INV.EASE.SHARE.LGL.XD.010.DB1519,Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology),sources,Doing Business,1
+PROT.MINOR.INV.EASE.SSI.XD.0010.DB0614.DFRN,Protecting minority investors: Ease of shareholder suits index (0-10) (DB06-14 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EASE.SSI.XD.0010.DB1519.DFRN,Protecting minority investors: Ease of shareholder suits index (0-10) (DB15-20 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EXT.BUS.DISC.010.XD,Protecting minority investors: Extent of disclosure index (0-10),sources,Doing Business,1
+PROT.MINOR.INV.EXT.CORP.TRANP.XD.0010.DB1519,Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology),sources,Doing Business,1
+PROT.MINOR.INV.EXT.CORP.TRANS.XD.010.DB1519.DFRN,Protecting minority investors: Extent of corporate transparency index (0-7) (DB15-20 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EXT.DIR.LBL.010.XD.DFRN,Protecting minority investors: Extent of director liability index (0-10) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EXT.DISC.010.XD.DFRN,Protecting minority investors: Extent of disclosure index (0-10) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EXT.OWNR.CONT.XD.0100.DB1519,Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology),sources,Doing Business,1
+PROT.MINOR.INV.EXT.OWNR.CONTL.010.XD.DFRN,Protecting minority investors: Extent of ownership and control index (0-7) (DB15-20 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.EXT.SHARE.RTS.XD.010.DB1519,Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology),sources,Doing Business,1
+PROT.MINOR.INV.EXT.SHRHLD.RGT.XD.0010.DB1519.DRFN,Protecting minority investors: Extent of shareholder rights index (0-6) (DB15-20 methodology) - Score,sources,Doing Business,1
+PROT.MINOR.INV.IC.PRIN.EXT.DIR.LGL.010.XD,Protecting minority investors: Extent of director liability index (0-10),sources,Doing Business,1
+PROT.MINOR.INV.IC.PRIN.MINOR.RK,Rank: Protecting minority investors (1=most business-friendly regulations),sources,Doing Business,1
+PROT.MINOR.INV.STRENG.INV.PROT.XD.010.DB0614,Protecting minority investors: Strength of investor protection index (0-10) (DB06-14 methodology),sources,Doing Business,1
+PROT.MINOR.INV.STRENG.MIN.INV.PROT.XD.010.DB0614,Protecting minority investors: Strength of minority investor protection index (0-50) (DB15-20 methodology),sources,Doing Business,1
+PRT.PDCL.IND1.IDX,PDI-1 Country with operational national development strategies (rating),sources,Africa Development Indicators,11
+PRT.PDCL.IND10A.ALLD.ZS,PDI-10a Donor missions co-ordinated (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND10B.ALLD.ZS,PDI-10b Country-analysis co-ordinated (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND11.IDX,PDI-11 Existence of a monitorable performance assessment framework (rating),sources,Africa Development Indicators,11
+PRT.PDCL.IND12.IDX,PDI-12 Existence of a mutual accountability review (rating),sources,Africa Development Indicators,11
+PRT.PDCL.IND2A.IDX,PDI-2a Country financial management systems reliability (rating),sources,Africa Development Indicators,11
+PRT.PDCL.IND2B.IDX,PDI-2b Country procurement systems reliability (rating),sources,Africa Development Indicators,11
+PRT.PDCL.IND3.ALLD.ZS,PDI-3 Government budget estimates comprehensive and realistic (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND4.ALLD.ZS,PDI-4 Technical assistance aligned and co-ordinated with country programmes (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND5A.ALLD.ZS,PDI-5a Aid for government sectors uses country public finanacial management systems (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND5B.ALLD.ZS,PDI-5b Aid for government sectors uses country procurement systems (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND6.ALLD.NUM,PDI-6 Project implementation units parallel to country structures (number),sources,Africa Development Indicators,11
+PRT.PDCL.IND7.ALLD.ZS,PDI-7 Aid disbursements on schedule and recorded by government (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND8.ALLD.ZS,PDI-8 Bilateral aid that is untied (percent),sources,Africa Development Indicators,11
+PRT.PDCL.IND9.ALLD.ZS,PDI-9 Aid provided in the framework of programme-based appproaches (%),sources,Africa Development Indicators,11
+PV.EST,Political Stability and Absence of Violence/Terrorism: Estimate,topics,Public Sector,13
+PV.NO.SRC,Political Stability and Absence of Violence/Terrorism: Number of Sources,topics,Public Sector,13
+PV.PER.RNK,Political Stability and Absence of Violence/Terrorism: Percentile Rank,topics,Public Sector,13
+PV.PER.RNK.LOWER,"Political Stability and Absence of Violence/Terrorism: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+PV.PER.RNK.UPPER,"Political Stability and Absence of Violence/Terrorism: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+PV.STD.ERR,Political Stability and Absence of Violence/Terrorism: Standard Error,topics,Public Sector,13
+PX.MUV.TOTL,Manufactures value index,sources,Africa Development Indicators,11
+PX.MUV.TOTL.XU,Manufactured exports unit value (MUV) index (% change),sources,Africa Development Indicators,11
+PX.REC.REER,"Real effective exchange rate index (line rec, 2005 = 100)",sources,Africa Development Indicators,11
+PX.REX.REER,Real effective exchange rate index (2010 = 100),topics,Financial Sector,7
+Q.1C0.1C0.C.9A.ALL.PITT.1.ALL.MV.TO1.ALL,26_Portfolio investment assets,sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9A.MOA.RXGT.1.ALL.MV.TO1.ALL,24_International reserves (excluding gold),sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9B.IFI.LMIM.1.ALL.NV.SDR.MOA,"07_Multilateral loans, IMF",sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9B.IFI.LMIM.1.STR.NV.SDR.MOA,"13_Multilateral loans, IMF, short term",sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9B.IFI.SDAL.1.ALL.MV.SDR.MOA,11_SDR allocation,sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9E.ALL.DSTT.1.ALL.MV.TO1.ALL,14_Debt securities held by nonresidents,sources,Joint External Debt Hub,54
+Q.1C0.1C0.C.9E.ALL.DSTT.1.STO.MV.TO1.ALL,"15_Debt securities held by nonresidents, total, short term",sources,Joint External Debt Hub,54
+Q.1C0.1C0.D.9B.MOA.SDHO.1.ALL.MV.SDR.IFI,25_SDR holdings,sources,Joint External Debt Hub,54
+Q.1E0.1E0.C.9B.IFI.LMOI.1.ALL.NV.TO1.ALL,"08_Multilateral loans, other institutions",sources,Joint External Debt Hub,54
+Q.1E0.1E0.C.9B.IFI.LMTT.1.ALL.NV.TO1.ALL,"06_Multilateral loans, total",sources,Joint External Debt Hub,54
+Q.5A0.5A0.C.9C.GGO.LOBA.1.ALL.NV.TO1.ALL,"04_Official bilateral loans, aid loans",sources,Joint External Debt Hub,54
+Q.5A0.5A0.C.9C.GGO.LOBN.1.ALL.NV.TO1.ALL,"05_Official bilateral loans, other",sources,Joint External Debt Hub,54
+Q.5A0.5A0.C.9C.GGO.LOBT.1.ALL.NV.TO1.ALL,"03_Official bilateral loans, total",sources,Joint External Debt Hub,54
+Q.5B0.5B0.C.5A.BKC.ASTT.1.ALL.MX.TO1.ALL,"23_Liabilities to BIS banks, consolidated, total",sources,Joint External Debt Hub,54
+Q.5B0.5B0.C.5A.BKC.ASTT.1.STR.MX.TO1.ALL,"12_Liabilities to BIS banks (cons.), short term",sources,Joint External Debt Hub,54
+Q.5B0.5B0.C.5A.BKL.ASTT.1.ALL.MX.TO1.ALL,"22_Liabilities to BIS banks, locational, total",sources,Joint External Debt Hub,54
+Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.ALL,01_Cross-border loans from BIS reporting banks,sources,Joint External Debt Hub,54
+Q.5B0.5B0.C.5A.BKL.LDPT.1.ALL.NV.TO1.NBK,02_Cross-border loans from BIS banks to nonbanks,sources,Joint External Debt Hub,54
+Q.5B0.5B0.D.5A.ALL.DFXB.1.ALL.NV.TO1.BMA,27_Cross-border deposits with BIS rep. banks,sources,Joint External Debt Hub,54
+Q.5B0.5B0.D.5A.NBK.DFXB.1.ALL.NV.TO1.BMA,"28_Cross-border dep. with BIS banks, nonbanks",sources,Joint External Debt Hub,54
+Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.ALL,"16_International debt securities, all maturities",sources,Joint External Debt Hub,54
+Q.5B0.5B0.M.3P.ALL.DSIT.1.ALL.NV.TO1.NBK,"17_International debt securities, nonbanks",sources,Joint External Debt Hub,54
+Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.ALL,"18_International debt securities, short term",sources,Joint External Debt Hub,54
+Q.5B0.5B0.M.3P.ALL.DSIT.1.STR.NV.TO1.NBK,"19_Intnl debt securities, nonbanks, short term",sources,Joint External Debt Hub,54
+Q.6T0.5B0.C.3P.GGO.PCNO.1.ALL.NV.TO1.GGO,21_Paris Club claims (non ODA),sources,Joint External Debt Hub,54
+Q.6T0.5B0.C.3P.GGO.PCOD.1.ALL.NV.TO1.GGO,20_Paris Club claims (ODA),sources,Joint External Debt Hub,54
+Q.8A0.5B0.C.5A.ALL.IECE.1.ALL.MX.TO1.ALL,"09_Insured export credit exposures, Berne Union",sources,Joint External Debt Hub,54
+Q.8A0.5B0.C.5A.ALL.IECE.1.STR.MX.TO1.ALL,"10_Insured export credit exposures, short term (BU)",sources,Joint External Debt Hub,54
+REER,Real Effective Exchange Rate,sources,Global Economic Monitor,15
+RES.DPST.CBK,"Outstanding Deposits of Commercial Banks owned by Regional Government (Province Level, in IDR Million)",sources,Indonesia Database for Policy and Economic Research,45
+RESLV.ISV.COPR.03.XD.DB1519,Resolving insolvency: Commencement of proceedings index (0-3) (DB15-20 methodology),sources,Doing Business,1
+RESLV.ISV.COST.ZS,Resolving insolvency: Cost (% of estate),sources,Doing Business,1
+RESLV.ISV.CPI.04.XD.DB1519,Resolving insolvency: Creditor participation index (0-4) (DB15-20 methodology),sources,Doing Business,1
+RESLV.ISV.DB1519.DFRN,Resolving insolvency - Score,sources,Doing Business,1
+RESLV.ISV.DFRN.RCOV.RT,Resolving insolvency: Recovery rate (cents on the dollar) - Score,sources,Doing Business,1
+RESLV.ISV.DURS.YR,Resolving insolvency: Time (years),sources,Doing Business,1
+RESLV.ISV.MGDA.XD.DB1519,Resolving insolvency: Management of debtor's assets index (0-6) (DB15-20 methodology),sources,Doing Business,1
+RESLV.ISV.OTCM,Resolving insolvency: Outcome (0 as piecemeal sale and 1 as going concern),sources,Doing Business,1
+RESLV.ISV.RCOV.RT,Resolving insolvency: Recovery rate (cents on the dollar),sources,Doing Business,1
+RESLV.ISV.RCOV.RT.016.DB1519.DFRN,Resolving insolvency: Strength of insolvency framework index (0-16) - Score,sources,Doing Business,1
+RESLV.ISV.RK.DB19,Rank: Resolving insolvency (1=most business-friendly regulations),sources,Doing Business,1
+RESLV.ISV.ROPC.03.XD.DB1519,Reorganization proceedings index (0-3) (DB15-20 methodology),sources,Doing Business,1
+RESLV.ISV.SOIF.06.DB1519,Resolving insolvency: Strength of insolvency framework index (0-16),sources,Doing Business,1
+RETSALESSA,"Retail Sales Volume,Index,,,",sources,Global Economic Monitor,15
+REV.DAK.CR,Total Special Allocation Grant/DAK (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.DAU.CR,Total General Allocation Grant/DAU (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.NRRV.SHR.CR,Total Natural Resource Revenue Sharing/DBH SDA (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.OSRV.CR,Total Own Source Revenue/PAD (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.OTHR.CR,Total Other Revenue (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.RV.SHR.CR,Total Revenue Sharing,sources,Indonesia Database for Policy and Economic Research,45
+REV.TOTL.CR,Total Revenue (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+REV.TXRV.SHR.CR,Total Tax Revenue Sharing/DBH Pajak (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+RL.EST,Rule of Law: Estimate,topics,Public Sector,13
+RL.NO.SRC,Rule of Law: Number of Sources,topics,Public Sector,13
+RL.PER.RNK,Rule of Law: Percentile Rank,topics,Public Sector,13
+RL.PER.RNK.LOWER,"Rule of Law: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+RL.PER.RNK.UPPER,"Rule of Law: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+RL.STD.ERR,Rule of Law: Standard Error,topics,Public Sector,13
+ROD.DIST.ASPH.KM,"Length of District Road: Asphalt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.BDMG.BM.KM,Length of District Road: Bad Damage (in km) (Bina Marga Data),sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.BDMG.KM,"Length of District Road: Bad Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.DIRT.KM,"Length of District Road: Dirt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.FAIR.BM.KM,Length of District Road: Fair (in km) (Bina Marga Data),sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.FAIR.KM,"Length of District Road: Fair (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.GOOD.BM.KM,Length of District Road: Good (in km) (Bina Marga Data),sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.GOOD.KM,"Length of District Road: Good (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.GRAVL.KM,"Length of District Road: Gravel (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.LDMG.BM.KM,Length of District Road: Light Damage (in km) (Bina Marga Data),sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.LDMG.KM,"Length of District Road: Light Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.DIST.OTHR.KM,"Length of District Road: Other (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.ASPH.KM,"Length of National Road: Asphalt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.BDMG.KM,"Length of National Road: Bad Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.DIRT.KM,"Length of National Road: Dirt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.FAIR.KM,"Length of National Road: Fair (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.GOOD.KM,"Length of National Road: Good (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.GRAVL.KM,"Length of National Road: Gravel (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.LDMG.KM,"Length of National Road: Light Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.NATL.OTHR.KM,"Length of National Road: Other (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.ASPH.KM,"Length of Province Road: Asphalt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.BDMG.KM,"Length of Province Road: Bad Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.DIRT.KM,"Length of Province Road: Dirt (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.FAIR.KM,"Length of Province Road: Fair (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.GOOD.KM,"Length of Province Road: Good (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.GRAVL.KM,"Length of Province Road: Gravel (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.LDMG.KM,"Length of Province Road: Light Damage (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.PROV.OTHR.KM,"Length of Province Road: Other (in km) (BPS Data, Province only)",sources,Indonesia Database for Policy and Economic Research,45
+ROD.VILG.ASPH.ZS,Villages with road: Asphalt (in % of total villages),sources,Indonesia Database for Policy and Economic Research,45
+ROD.VILG.DIRT.ZS,Villages with road: Dirt (in % of total villages),sources,Indonesia Database for Policy and Economic Research,45
+ROD.VILG.GRAVL.ZS,Villages with road: Gravel (in % of total villages),sources,Indonesia Database for Policy and Economic Research,45
+ROD.VILG.OTHR.ZS,Villages with road: Other (in % of total villages),sources,Indonesia Database for Policy and Economic Research,45
+RQ.EST,Regulatory Quality: Estimate,topics,Public Sector,13
+RQ.NO.SRC,Regulatory Quality: Number of Sources,topics,Public Sector,13
+RQ.PER.RNK,Regulatory Quality: Percentile Rank,topics,Public Sector,13
+RQ.PER.RNK.LOWER,"Regulatory Quality: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+RQ.PER.RNK.UPPER,"Regulatory Quality: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+RQ.STD.ERR,Regulatory Quality: Standard Error,topics,Public Sector,13
+SABER.EMIS.GOAL1,SABER: (Education Management Information Systems) Policy Goal 1: Enabling Environment,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL1,SABER: (Education Management Information Systems) Policy Goal 1 Lever 1: Legal Framework,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL2,SABER: (Education Management Information Systems) Policy Goal 1 Lever 2: Organizational Structure,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL3,SABER: (Education Management Information Systems) Policy Goal 1 Lever 3: Human Resources,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL4,SABER: (Education Management Information Systems) Policy Goal 1 Lever 4: Infrastructural capacity,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL5,SABER: (Education Management Information Systems) Policy Goal 1 Lever 5: Budget,sources,Education Statistics,12
+SABER.EMIS.GOAL1.LVL6,SABER: (Education Management Information Systems) Policy Goal 1 Lever 6: Data-driven Culture,sources,Education Statistics,12
+SABER.EMIS.GOAL2,SABER: (Education Management Information Systems) Policy Goal 2: System Soundness,sources,Education Statistics,12
+SABER.EMIS.GOAL2.LVL1,SABER: (Education Management Information Systems) Policy Goal 2 Lever 1: Data Architecture,sources,Education Statistics,12
+SABER.EMIS.GOAL2.LVL2,SABER: (Education Management Information Systems) Policy Goal 2 Lever 2: Data Coverage,sources,Education Statistics,12
+SABER.EMIS.GOAL2.LVL3,SABER: (Education Management Information Systems) Policy Goal 2 Lever 3: Data Analytics,sources,Education Statistics,12
+SABER.EMIS.GOAL2.LVL4,SABER: (Education Management Information Systems) Policy Goal 2 Lever 4: Dynamic System,sources,Education Statistics,12
+SABER.EMIS.GOAL2.LVL5,SABER: (Education Management Information Systems) Policy Goal 2 Lever 5: Serviceability,sources,Education Statistics,12
+SABER.EMIS.GOAL3,SABER: (Education Management Information Systems) Policy Goal 3: Quality data,sources,Education Statistics,12
+SABER.EMIS.GOAL3.LVL1,SABER: (Education Management Information Systems) Policy Goal 3 Lever 1: Methodological Soundness,sources,Education Statistics,12
+SABER.EMIS.GOAL3.LVL2,SABER: (Education Management Information Systems) Policy Goal 3 Lever 2: Accuracy and Reliability,sources,Education Statistics,12
+SABER.EMIS.GOAL3.LVL3,SABER: (Education Management Information Systems) Policy Goal 3 Lever 3: Integrity,sources,Education Statistics,12
+SABER.EMIS.GOAL3.LVL4,SABER: (Education Management Information Systems) Policy Goal 3 Lever 4: Periodicity and Timeliness,sources,Education Statistics,12
+SABER.EMIS.GOAL4,SABER: (Education Management Information Systems) Policy Goal 4: Utilization in decision making,sources,Education Statistics,12
+SABER.EMIS.GOAL4.LVL1,SABER: (Education Management Information Systems) Policy Goal 4 Lever 1: Openness,sources,Education Statistics,12
+SABER.EMIS.GOAL4.LVL2,SABER: (Education Management Information Systems) Policy Goal 4 Lever 2: Operational Use,sources,Education Statistics,12
+SABER.EMIS.GOAL4.LVL3,SABER: (Education Management Information Systems) Policy Goal 4 Lever 3: Accessibility,sources,Education Statistics,12
+SABER.EMIS.GOAL4.LVL4,SABER: (Education Management Information Systems) Policy Goal 4 Lever 4: Effectiveness in Disseminating Findings,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL1,SABER: (Early Childhood Development) Policy Goal 1: Establishing an Enabling Environment,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL1.LVL1,SABER: (Early Childhood Development) Policy Goal 1 Lever 1: Legal Framework,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL1.LVL2,SABER: (Early Childhood Development) Policy Goal 1 Lever 2: Inter-sectoral Coordination,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL1.LVL3,SABER: (Early Childhood Development) Policy Goal 1 Lever 3: Finance,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL2,SABER: (Early Childhood Development) Policy Goal 2: Implementing Widely,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL2.LVL1,SABER: (Early Childhood Development) Policy Goal 2 Lever 1: Scope of Programs,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL2.LVL2,SABER: (Early Childhood Development) Policy Goal 2 Lever 2: Coverage,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL2.LVL3,SABER: (Early Childhood Development) Policy Goal 2 Lever 3: Equity,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL3,SABER: (Early Childhood Development) Policy Goal 3: Monitoring and Assuring Quality,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL3.LVL1,SABER: (Early Childhood Development) Policy Goal 3 Lever 1: Data Availability,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL3.LVL2,SABER: (Early Childhood Development) Policy Goal 3 Lever 2: Quality Standards,sources,Education Statistics,12
+SABER.ERL.CHLD.GOAL3.LVL3,SABER: (Early Childhood Development) Policy Goal 3 Lever 3: Compliance with Standards,sources,Education Statistics,12
+SABER.GRVT.GOAL5,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5: Encouraging innovation by providers",topics,Education,4
+SABER.GRVT.GOAL5.LVL1,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 1: Teacher standards",topics,Education,4
+SABER.GRVT.GOAL5.LVL2,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 2: Appointment and deployment of teachers",topics,Education,4
+SABER.GRVT.GOAL5.LVL3,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 3: Teacher salaries",topics,Education,4
+SABER.GRVT.GOAL5.LVL4,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 4: Teacher dismissal",topics,Education,4
+SABER.GRVT.GOAL5.LVL5,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 5: Curriculum delivery",topics,Education,4
+SABER.GRVT.GOAL5.LVL6,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 6: Classroom resourcing",topics,Education,4
+SABER.GRVT.GOAL5.LVL7,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 5 Lever 7: Budget autonomy",topics,Education,4
+SABER.GRVT.GOAL6,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6: Holding schools accountable",topics,Education,4
+SABER.GRVT.GOAL6.LVL1,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 1: Student standards",topics,Education,4
+SABER.GRVT.GOAL6.LVL2,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 2: Student assessment",topics,Education,4
+SABER.GRVT.GOAL6.LVL3,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 3: Financial reporting",topics,Education,4
+SABER.GRVT.GOAL6.LVL4,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 4: Inspection",topics,Education,4
+SABER.GRVT.GOAL6.LVL5,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 5: Improvement planning",topics,Education,4
+SABER.GRVT.GOAL6.LVL6,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 6 Lever 6: Sanctions and rewards",topics,Education,4
+SABER.GRVT.GOAL7,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 7: Empowering all parents, students, and communities",topics,Education,4
+SABER.GRVT.GOAL7.LVL1,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 1: Information",topics,Education,4
+SABER.GRVT.GOAL7.LVL2,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 2: Voice",topics,Education,4
+SABER.GRVT.GOAL7.LVL3,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 3: Selection",topics,Education,4
+SABER.GRVT.GOAL7.LVL4,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 7 Lever 4: Contributions",topics,Education,4
+SABER.GRVT.GOAL8,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8: Promoting diversity of supply",topics,Education,4
+SABER.GRVT.GOAL8.LVL1,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 1: Ownership",topics,Education,4
+SABER.GRVT.GOAL8.LVL2,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 2: Certification standards",topics,Education,4
+SABER.GRVT.GOAL8.LVL3,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 3: Market entry information",topics,Education,4
+SABER.GRVT.GOAL8.LVL4,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 4: Regulatory fees",topics,Education,4
+SABER.GRVT.GOAL8.LVL5,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 5: Funding",topics,Education,4
+SABER.GRVT.GOAL8.LVL6,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 6: Incentives",topics,Education,4
+SABER.GRVT.GOAL8.LVL7,"SABER: (Engaging the Private Sector, Government funded) Policy Goal 8 Lever 7: Planning",topics,Education,4
+SABER.HLTH.GOAL1,SABER: (School Health and School Feeding) Feeding Policy Goal 1: Policy Frameworks,sources,Education Statistics,12
+SABER.HLTH.GOAL2,SABER: (School Health and School Feeding) Feeding Policy Goal 2: Financial Capacity,sources,Education Statistics,12
+SABER.HLTH.GOAL3,SABER: (School Health and School Feeding) Feeding Policy Goal 3: Institutional Capacity and Coordination,sources,Education Statistics,12
+SABER.HLTH.GOAL4,SABER: (School Health and School Feeding) Feeding Policy Goal 4: Design and Implementation,sources,Education Statistics,12
+SABER.HLTH.GOAL5,SABER: (School Health and School Feeding) Feeding Policy Goal 5: Community Roles–Reaching Beyond Schools,sources,Education Statistics,12
+SABER.HLTH.GOAL6,SABER: (School Health and School Feeding) Health Policy Goal 1: Health-related school policies,sources,Education Statistics,12
+SABER.HLTH.GOAL7,"SABER: (School Health and School Feeding) Health Policy Goal 2: Safe, Supportive School Environments",sources,Education Statistics,12
+SABER.HLTH.GOAL8,SABER: (School Health and School Feeding) Health Policy Goal 3: School-Based Health and Nutrition Services,sources,Education Statistics,12
+SABER.HLTH.GOAL9,SABER: (School Health and School Feeding) Health Policy Goal 4: Skills-Based Health Education,sources,Education Statistics,12
+SABER.PRVT.GOAL1,SABER: (Engaging the Private Sector) Policy Goal 1: Encouraging innovation by providers,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL1,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 1: Teacher standards,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL2,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 2: Teacher appointment and deployment,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL3,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 3: Teacher salaries,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL4,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 4: Teacher dismissal,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL5,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 5: Curriculum Delivery,sources,Education Statistics,12
+SABER.PRVT.GOAL1.LVL6,SABER: (Engaging the Private Sector) Policy Goal 1 Lever 6: Classroom resourcing,sources,Education Statistics,12
+SABER.PRVT.GOAL2,SABER: (Engaging the Private Sector) Policy Goal 2: Holding schools accountable,sources,Education Statistics,12
+SABER.PRVT.GOAL2.LVL1,SABER: (Engaging the Private Sector) Policy Goal 2 Lever 1: Student standards,sources,Education Statistics,12
+SABER.PRVT.GOAL2.LVL2,SABER: (Engaging the Private Sector) Policy Goal 2 Lever 2: Student assessment,sources,Education Statistics,12
+SABER.PRVT.GOAL2.LVL3,SABER: (Engaging the Private Sector) Policy Goal 2 Lever 3: Inspection,sources,Education Statistics,12
+SABER.PRVT.GOAL2.LVL4,SABER: (Engaging the Private Sector) Policy Goal 2 Lever 4: Improvement planning,sources,Education Statistics,12
+SABER.PRVT.GOAL2.LVL5,SABER: (Engaging the Private Sector) Policy Goal 2 Lever 5: Sanctions,sources,Education Statistics,12
+SABER.PRVT.GOAL3,"SABER: (Engaging the Private Sector) Policy Goal 3: Empowering all parents, students, and communities",sources,Education Statistics,12
+SABER.PRVT.GOAL3.LVL1,SABER: (Engaging the Private Sector) Policy Goal 3 Lever 1: Information,sources,Education Statistics,12
+SABER.PRVT.GOAL3.LVL2,SABER: (Engaging the Private Sector) Policy Goal 3 Lever 2: Voice,sources,Education Statistics,12
+SABER.PRVT.GOAL3.LVL3,SABER: (Engaging the Private Sector) Policy Goal 3 Lever 3: Financial Support,sources,Education Statistics,12
+SABER.PRVT.GOAL4,SABER: (Engaging the Private Sector) Policy Goal 4: Promoting diversity of supply,sources,Education Statistics,12
+SABER.PRVT.GOAL4.LVL1,SABER: (Engaging the Private Sector) Policy Goal 4 Lever 1: Tuition fees,sources,Education Statistics,12
+SABER.PRVT.GOAL4.LVL2,SABER: (Engaging the Private Sector) Policy Goal 4 Lever 2: Ownership,sources,Education Statistics,12
+SABER.PRVT.GOAL4.LVL3,SABER: (Engaging the Private Sector) Policy Goal 4 Lever 3: Certification standards,sources,Education Statistics,12
+SABER.PRVT.GOAL4.LVL4,SABER: (Engaging the Private Sector) Policy Goal 4 Lever 4: Market entry,sources,Education Statistics,12
+SABER.PRVT.GOAL4.LVL5,SABER: (Engaging the Private Sector) Policy Goal 4 Lever 5: Regulatory fees,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1,SABER: (School Autonomy Accountability) Policy Goal 1: Level of autonomy in the planning and management of school budget,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1.LVL1,SABER: (School Autonomy Accountability) Policy Goal 1 Lever 1: Legal authority over the management of the operational budget,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1.LVL2,SABER: (School Autonomy Accountability) Policy Goal 1 Lever 2: Legal authority over the management of the non-teaching staff salaries,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1.LVL3,SABER: (School Autonomy Accountability) Policy Goal 1 Lever 3: Legal authority over the management of teacher salaries,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1.LVL4,SABER: (School Autonomy Accountability) Policy Goal 1 Lever 4: Legal authority to raise additional funds for the school,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL1.LVL5,SABER: (School Autonomy Accountability) Policy Goal 1 Lever 5: Collaborative budget planning,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL2,SABER: (School Autonomy Accountability) Policy Goal 2: Level of autonomy in personnel management,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL2.LVL1,SABER: (School Autonomy Accountability) Policy Goal 2 Lever 1: Autonomy in teacher appointment and deployment decisions,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL2.LVL2,SABER: (School Autonomy Accountability) Policy Goal 2 Lever 2: Autonomy in non-teaching staff appointment and deployment decisions,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL2.LVL3,SABER: (School Autonomy Accountability) Policy Goal 2 Lever 3: Autonomy in school principal appointment and deployment decisions,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3,SABER: (School Autonomy Accountability) Policy Goal 3: Role of the school council on school governance,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL1,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 1: Participation of the school councils in budget preparation,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL2,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 2: Participation of the school councils in financial oversight,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL3,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 3: Participation of the school councils in personnel management,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL4,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 4: Participation of the school councils in school activities,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL5,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 5: Participation of the school councils in learning inputs,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL3.LVL6,SABER: (School Autonomy Accountability) Policy Goal 3 Lever 6: Transparency in community participation,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4,SABER: (School Autonomy Accountability) Policy Goal 4: School and student assessment,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4.LVL1,SABER: (School Autonomy Accountability) Policy Goal 4 Lever 1: Existence and Frequency of school assessments,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4.LVL2,SABER: (School Autonomy Accountability) Policy Goal 4 Lever 2: Use of school assessments for making school adjustments,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4.LVL3,SABER: (School Autonomy Accountability) Policy Goal 4 Lever 3: Existence and Frequency of standardized student assessments,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4.LVL4,"SABER: (School Autonomy Accountability) Policy Goal 4 Lever 4: Use of standardized student assessments for pedagogical, operational, and personnel adjustments",sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL4.LVL5,SABER: (School Autonomy Accountability) Policy Goal 4 Lever 5: Publication of student assessments,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5,SABER: (School Autonomy Accountability) Policy Goal 5: School Accountability,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5.LVL1,SABER: (School Autonomy Accountability) Policy Goal 5 Lever 1: Guidelines for the use of results of student assessments,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5.LVL2,SABER: (School Autonomy Accountability) Policy Goal 5 Lever 2: Analysis of school and student performan,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5.LVL3,"SABER: (School Autonomy Accountability) Policy Goal 5 Lever 3: Degree of Financial accountability at the central level, regional, municipal, local and school level",sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5.LVL4,SABER: (School Autonomy Accountability) Policy Goal 5 Lever 4: Degree of Accountability in school operations,sources,Education Statistics,12
+SABER.SCH.ATNM.GOAL5.LVL5,SABER: (School Autonomy Accountability) Policy Goal 5 Lever 5: Degree of learning accountability,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL1,SABER: (School Finance) Policy Goal 1: Ensuring adequacy,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL1.LVL1,SABER: (School Finance) Policy Goal 1 Lever 1: Are ther policies and systems set up to provide basic educational inputs to all?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL1.LVL2,SABER: (School Finance) Policy Goal 1 Lever 2: Are there basic educational inputs for all primary school students?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL2,SABER: (School Finance) Policy Goal 2: Monitoring learning conditions and outcomes,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL2.LVL1,SABER: (School Finance) Policy Goal 2 Lever 1: Does the government provide more resources to students from disadvantaged backgrounds?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL2.LVL2,SABER: (School Finance) Policy Goal 2 Lever 2: Do payments for schooling represent a high share of income for low income households?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL3,SABER: (School Finance) Policy Goal 3: Overseeing service delivery,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL3.LVL1,SABER: (School Finance) Policy Goal 3 Lever 1: Are resources allocated and disbursed in a manner that is transparent and effective?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL3.LVL2,SABER: (School Finance) Policy Goal 3 Lever 2: Do monitoring and auditing processes encourage accountability in the use of funding?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL4,SABER: (School Finance) Policy Goal 4: Budgeting with adequate and transparent information,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL4.LVL1,SABER: (School Finance) Policy Goal 4 Lever 1: Is there an informed budget process?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL4.LVL2,SABER: (School Finance) Policy Goal 4 Lever 2: Is the budget comprehensive and transparent?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL5,SABER: (School Finance) Policy Goal 5: Providing more resources to students who need them,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL5.LVL1,SABER: (School Finance) Policy Goal 5 Lever 1: Are more public resources available to students from disadvantaged backgrounds?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL5.LVL2,SABER: (School Finance) Policy Goal 5 Lever 2: Do payments for schooling represent a small share of income for low income families?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL6,SABER: (School Finance) Policy Goal 6: Managing resources efficiently,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL6.LVL1,SABER: (School Finance) Policy Goal 6 Lever 1: Are there systems in place to verify the use of educational resources?,sources,Education Statistics,12
+SABER.SCH.FNNC.GOAL6.LVL2,SABER: (School Finance) Policy Goal 6 Lever 2: Are education expenditures audited?,sources,Education Statistics,12
+SABER.STD.ASS.GOAL1,SABER: (Student Assessment) Policy Goal 1: Classroom Assessment,sources,Education Statistics,12
+SABER.STD.ASS.GOAL1.LVL1,SABER: (Student Assessment) Policy Goal 1 Lever 1: Enabling Context and System Alignment,sources,Education Statistics,12
+SABER.STD.ASS.GOAL1.LVL2,SABER: (Student Assessment) Policy Goal 1 Lever 2: Assessment Quality,sources,Education Statistics,12
+SABER.STD.ASS.GOAL2,SABER: (Student Assessment) Policy Goal 2: Examinations,sources,Education Statistics,12
+SABER.STD.ASS.GOAL2.LVL1,SABER: (Student Assessment) Policy Goal 2 Lever 1: Enabling Context,sources,Education Statistics,12
+SABER.STD.ASS.GOAL2.LVL2,SABER: (Student Assessment) Policy Goal 2 Lever 2: System Alignment,sources,Education Statistics,12
+SABER.STD.ASS.GOAL2.LVL3,SABER: (Student Assessment) Policy Goal 2 Lever 3: Assessment Quality,sources,Education Statistics,12
+SABER.STD.ASS.GOAL3,SABER: (Student Assessment) Policy Goal 3: National Large-Scale Assessment (NLSA),sources,Education Statistics,12
+SABER.STD.ASS.GOAL3.LVL1,SABER: (Student Assessment) Policy Goal 3 Lever 1: Enabling Context,sources,Education Statistics,12
+SABER.STD.ASS.GOAL3.LVL2,SABER: (Student Assessment) Policy Goal 3 Lever 2: System Alignment,sources,Education Statistics,12
+SABER.STD.ASS.GOAL3.LVL3,SABER: (Student Assessment) Policy Goal 3 Lever 3: Assessment Quality,sources,Education Statistics,12
+SABER.STD.ASS.GOAL4,SABER: (Student Assessment) Policy Goal 4: International Large-Scale Assessment (ILSA),sources,Education Statistics,12
+SABER.STD.ASS.GOAL4.LVL1,SABER: (Student Assessment) Policy Goal 4 Lever 1: Enabling Context,sources,Education Statistics,12
+SABER.STD.ASS.GOAL4.LVL2,SABER: (Student Assessment) Policy Goal 4 Lever 2: System Alignment,sources,Education Statistics,12
+SABER.STD.ASS.GOAL4.LVL3,SABER: (Student Assessment) Policy Goal 4 Lever 3: Assessment Quality,sources,Education Statistics,12
+SABER.TECH.GOAL1,SABER: (Teachers) Policy Goal 1: Setting clear expectations for teachers,sources,Education Statistics,12
+SABER.TECH.GOAL1.LVL1,SABER: (Teachers) Policy Goal 1 Lever 1: Are there clear expectations for teachers?,sources,Education Statistics,12
+SABER.TECH.GOAL1.LVL2,SABER: (Teachers) Policy Goal 1 Lever 2: Is there useful guidance on the use of teachers' working time?,sources,Education Statistics,12
+SABER.TECH.GOAL2,SABER: (Teachers) Policy Goal 2: Attracting the best into teaching,sources,Education Statistics,12
+SABER.TECH.GOAL2.LVL1,SABER: (Teachers) Policy Goal 2 Lever 1: Are entry requirements set up to attract talented candidates?,sources,Education Statistics,12
+SABER.TECH.GOAL2.LVL2,SABER: (Teachers) Policy Goal 2 Lever 2: Is teacher pay appealing for talented candidates?,sources,Education Statistics,12
+SABER.TECH.GOAL2.LVL3,SABER: (Teachers) Policy Goal 2 Lever 3: Are working conditions appealing for talented applicants?,sources,Education Statistics,12
+SABER.TECH.GOAL2.LVL4,SABER: (Teachers) Policy Goal 2 Lever 4: Are there attractive career opportunities?,sources,Education Statistics,12
+SABER.TECH.GOAL3,SABER: (Teachers) Policy Goal 3: Preparing teachers with useful Training and experience,sources,Education Statistics,12
+SABER.TECH.GOAL3.LVL1,SABER: (Teachers) Policy Goal 3 Lever 1: Are there minimum standards for pre-service teaching education programs?,sources,Education Statistics,12
+SABER.TECH.GOAL3.LVL2,SABER: (Teachers) Policy Goal 3 Lever 2: To what extent are teacher-entrants required to be familiar with classroom practice?,sources,Education Statistics,12
+SABER.TECH.GOAL4,SABER: (Teachers) Policy Goal 4: Matching teachers' skills with students' needs,sources,Education Statistics,12
+SABER.TECH.GOAL4.LVL1,SABER: (Teachers) Policy Goal 4 Lever 1: Are there incentives for teachers to work at hard-to-staff schools?,sources,Education Statistics,12
+SABER.TECH.GOAL4.LVL2,SABER: (Teachers) Policy Goal 4 Lever 2: Are there incentives for teachers to teach critical shortage subjects?,sources,Education Statistics,12
+SABER.TECH.GOAL5,SABER: (Teachers) Policy Goal 5: Leading teachers with strong principals,sources,Education Statistics,12
+SABER.TECH.GOAL5.LVL1,SABER: (Teachers) Policy Goal 5 Lever 1: Does the education system invest in developing qualified school leaders?,sources,Education Statistics,12
+SABER.TECH.GOAL5.LVL2,SABER: (Teachers) Policy Goal 5 Lever 2: Are principals expected to support and improve instructional practice?,sources,Education Statistics,12
+SABER.TECH.GOAL6,SABER: (Teachers) Policy Goal 6: Monitoring teaching and learning,sources,Education Statistics,12
+SABER.TECH.GOAL6.LVL1,SABER: (Teachers) Policy Goal 6 Lever 1: Are there systems in place to assess student learning in order to inform teaching and policy?,sources,Education Statistics,12
+SABER.TECH.GOAL6.LVL2,SABER: (Teachers) Policy Goal 6 Lever 2: Are there systems in place to monitor teacher performance?,sources,Education Statistics,12
+SABER.TECH.GOAL6.LVL3,SABER: (Teachers) Policy Goal 6 Lever 3: Are there multiple mechanisms to evaluate teacher performance?,sources,Education Statistics,12
+SABER.TECH.GOAL7,SABER: (Teachers) Policy Goal 7: Supporting teachers to improve instruction,sources,Education Statistics,12
+SABER.TECH.GOAL7.LVL1,SABER: (Teachers) Policy Goal 7 Lever 1: Are there opportunities for professional development?,sources,Education Statistics,12
+SABER.TECH.GOAL7.LVL2,SABER: (Teachers) Policy Goal 7 Lever 2: Is teacher professional development collaborative and focused on instructional improvement?,sources,Education Statistics,12
+SABER.TECH.GOAL7.LVL3,SABER: (Teachers) Policy Goal 7 Lever 3: Is teacher professional development assigned based on perceived needs?,sources,Education Statistics,12
+SABER.TECH.GOAL8,SABER: (Teachers) Policy Goal 8: Motivating teachers to perform,sources,Education Statistics,12
+SABER.TECH.GOAL8.LVL1,SABER: (Teachers) Policy Goal 8 Lever 1: Are career opportunities linked to performance?,sources,Education Statistics,12
+SABER.TECH.GOAL8.LVL2,SABER: (Teachers) Policy Goal 8 Lever 2: Are there mechanisms to hold teachers accountable?,sources,Education Statistics,12
+SABER.TECH.GOAL8.LVL3,SABER: (Teachers) Policy Goal 8 Lever 3: Is teacher compensation linked to performance?,sources,Education Statistics,12
+SABER.TER.GOAL1,SABER: (Tertiary Education) Policy Goal 1: Vision for Tertiary Education,topics,Education,4
+SABER.TER.GOAL1.LVL1,SABER: (Tertiary Education) Policy Goal 1 Lever 1: Clear vision,topics,Education,4
+SABER.TER.GOAL2,SABER: (Tertiary Education) Policy Goal 2: Regulatory Framework for Tertiary Education,topics,Education,4
+SABER.TER.GOAL2.LVL1,SABER: (Tertiary Education) Policy Goal 2 Lever 1: Steering the system,topics,Education,4
+SABER.TER.GOAL3,SABER: (Tertiary Education) Policy Goal 3: Governance,topics,Education,4
+SABER.TER.GOAL3.LVL1,SABER: (Tertiary Education) Policy Goal 3 Lever 1: Articulation,topics,Education,4
+SABER.TER.GOAL3.LVL2,SABER: (Tertiary Education) Policy Goal 3 Lever 2: Institutional autonomy,topics,Education,4
+SABER.TER.GOAL4,SABER: (Tertiary Education) Policy Goal 4: Finance,topics,Education,4
+SABER.TER.GOAL4.LVL1,SABER: (Tertiary Education) Policy Goal 4 Lever 1: Coverage of resource allocation,topics,Education,4
+SABER.TER.GOAL4.LVL2,SABER: (Tertiary Education) Policy Goal 4 Lever 2: Resource allocation,topics,Education,4
+SABER.TER.GOAL4.LVL3,SABER: (Tertiary Education) Policy Goal 4 Lever 3: Resource utilization (Equity),topics,Education,4
+SABER.TER.GOAL5,SABER: (Tertiary Education) Policy Goal 5: Quality Assurance,topics,Education,4
+SABER.TER.GOAL5.LVL1,SABER: (Tertiary Education) Policy Goal 5 Lever 1: Accreditation and Institutional Quality Standards,topics,Education,4
+SABER.TER.GOAL5.LVL2,SABER: (Tertiary Education) Policy Goal 5 Lever 2: Tertiary Education Management Information,sources,Education Statistics,12
+SABER.TER.GOAL6,SABER: (Tertiary Education) Policy Goal 6: The Relevance of Tertiary Education for Economic and Social Needs,topics,Education,4
+SABER.TER.GOAL6.LVL1,SABER: (Tertiary Education) Policy Goal 6 Lever 1: Economic Development,topics,Education,4
+SABER.TER.GOAL6.LVL2,SABER: (Tertiary Education) Policy Goal 6 Lever 2: Fostering RDI and Innovation,topics,Education,4
+SABER.TER.GOAL6.LVL3,SABER: (Tertiary Education) Policy Goal 6 Lever 3: Fostering Social and Cultural Development and Environmental Protection and Sustainability,topics,Education,4
+SABER.WORK.GOAL1,SABER: (Workforce Development) Policy Goal 1: Strategic Framework,sources,Education Statistics,12
+SABER.WORK.GOAL1.LVL1,SABER: (Workforce Development) Policy Goal 1 Lever 1: Setting a Strategic Direction,sources,Education Statistics,12
+SABER.WORK.GOAL1.LVL2,SABER: (Workforce Development) Policy Goal 1 Lever 2: Fostering a Demand-Driven Approach,sources,Education Statistics,12
+SABER.WORK.GOAL1.LVL3,SABER: (Workforce Development) Policy Goal 1 Lever 3: Strengthening Critical Coordination,sources,Education Statistics,12
+SABER.WORK.GOAL2,SABER: (Workforce Development) Policy Goal 2: System Oversight,sources,Education Statistics,12
+SABER.WORK.GOAL2.LVL1,SABER: (Workforce Development) Policy Goal 2 Lever 1: Ensuring Efficiency and Equity in Funding,sources,Education Statistics,12
+SABER.WORK.GOAL2.LVL2,SABER: (Workforce Development) Policy Goal 2 Lever 2: Assuring Relevant and Reliable Standards,sources,Education Statistics,12
+SABER.WORK.GOAL2.LVL3,SABER: (Workforce Development) Policy Goal 2 Lever 3: Diversifying Pathways for Skills Acquisition,sources,Education Statistics,12
+SABER.WORK.GOAL3,SABER: (Workforce Development) Policy Goal 3: Service Delivery,sources,Education Statistics,12
+SABER.WORK.GOAL3.LVL1,SABER: (Workforce Development) Policy Goal 3 Lever 1: Enabling Diversity and Excellence in Training Provision,sources,Education Statistics,12
+SABER.WORK.GOAL3.LVL2,SABER: (Workforce Development) Policy Goal 3 Lever 2: Fostering Relevance in Public Training Programs,sources,Education Statistics,12
+SABER.WORK.GOAL3.LVL3,SABER: (Workforce Development) Policy Goal 3 Lever 3: Enhancing Evidence-based Accountability for Results,sources,Education Statistics,12
+SD.ESR.PERF.XQ,Economic and Social Rights Performance Score,sources,"Environment, Social and Governance (ESG) Data",75
+SE.ADT.1524.IL.FE.ZS,"Illiteracy rate, youth female (% of females ages 15-24)",sources,WDI Database Archives,57
+SE.ADT.1524.IL.MA.ZS,"Illiteracy rate, youth male (% of males ages 15-24)",sources,WDI Database Archives,57
+SE.ADT.1524.IL.ZS,"Illiteracy rate, youth total (% of people ages 15-24)",sources,WDI Database Archives,57
+SE.ADT.1524.LT.FE.ZS,"Literacy rate, youth female (% of females ages 15-24)",topics,Education,4
+SE.ADT.1524.LT.FM.ZS,"Literacy rate, youth (ages 15-24), gender parity index (GPI)",topics,Education,4
+SE.ADT.1524.LT.MA.ZS,"Literacy rate, youth male (% of males ages 15-24)",topics,Education,4
+SE.ADT.1524.LT.ZS,"Literacy rate, youth total (% of people ages 15-24)",topics,Education,4
+SE.ADT.ILIT.FE.ZS,"Illiteracy rate, adult female (% of females ages 15 and above)",sources,WDI Database Archives,57
+SE.ADT.ILIT.MA.ZS,"Illiteracy rate, adult male (% of males ages 15 and above)",sources,WDI Database Archives,57
+SE.ADT.ILIT.ZS,"Illiteracy rate, adult total (% of people ages 15 and above)",sources,WDI Database Archives,57
+SE.ADT.LITR.FE.ZS,"Literacy rate, adult female (% of females ages 15 and above)",topics,Education,4
+SE.ADT.LITR.MA.ZS,"Literacy rate, adult male (% of males ages 15 and above)",topics,Education,4
+SE.ADT.LITR.ZS,"Literacy rate, adult total (% of people ages 15 and above)",topics,Education,4
+SE.CLO.15Y.LDGAP.M.PS.2000.1,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.2,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.3,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.4,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.5,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.A,Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.F,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.M,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.R,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2000.U,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.1,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.2,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.3,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.4,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.5,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.A,Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.F,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.M,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.R,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2006.U,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.1,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.2,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.3,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.4,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.5,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.A,Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.F,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.M,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.R,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2009.U,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.1,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.2,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.3,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.4,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.5,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.A,Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.F,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.M,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.R,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2012.U,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.1,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.2,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.3,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.4,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.5,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.A,Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.F,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.M,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.R,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2015.U,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.1,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.2,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.3,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.4,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.5,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.A,Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.F,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.M,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.R,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PS.2018.U,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.1,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.2,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.3,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.4,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.5,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.A,Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.F,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.M,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.R,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.M.PSD.2017.U,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.1,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.2,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.3,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.4,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.5,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.A,Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.F,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.M,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.R,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2000.U,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.1,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.2,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.3,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.4,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.5,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.A,Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.F,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.M,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.R,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2006.U,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.1,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.2,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.3,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.4,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.5,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.A,Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.F,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.M,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.R,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2009.U,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.1,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.2,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.3,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.4,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.5,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.A,Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.F,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.M,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.R,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2012.U,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.1,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.2,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.3,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.4,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.5,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.A,Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.F,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.M,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.R,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2015.U,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.1,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.2,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.3,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.4,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.5,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.A,Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.F,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.M,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.R,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PS.2018.U,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.1,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.2,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.3,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.4,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.5,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.A,Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.F,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.M,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.R,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.R.PSD.2017.U,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.1,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.2,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.3,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.4,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.5,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.A,Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.F,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.M,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.R,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2000.U,"Learning Deprivation Gap;PISA 2000 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.1,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.2,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.3,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.4,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.5,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.A,Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.F,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.M,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.R,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2006.U,"Learning Deprivation Gap;PISA 2006 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.1,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.2,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.3,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.4,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.5,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.A,Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.F,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.M,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.R,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2009.U,"Learning Deprivation Gap;PISA 2009 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.1,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.2,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.3,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.4,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.5,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.A,Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.F,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.M,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.R,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2012.U,"Learning Deprivation Gap;PISA 2012 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.1,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.2,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.3,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.4,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.5,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.A,Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.F,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.M,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.R,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2015.U,"Learning Deprivation Gap;PISA 2015 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.1,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.2,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.3,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.4,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.5,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.A,Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.F,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.M,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.R,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PS.2018.U,"Learning Deprivation Gap;PISA 2018 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.1,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.2,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.3,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.4,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.5,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.A,Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science,sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.F,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.M,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.R,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDGAP.S.PSD.2017.U,"Learning Deprivation Gap;PISA-D 2017 for grade 15Y using for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.1,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.2,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.3,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.4,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.5,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.A,Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.F,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.M,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.R,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2000.U,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.1,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.2,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.3,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.4,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.5,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.A,Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.F,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.M,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.R,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2006.U,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.1,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.2,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.3,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.4,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.5,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.A,Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.F,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.M,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.R,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2009.U,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.1,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.2,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.3,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.4,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.5,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.A,Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.F,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.M,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.R,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2012.U,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.1,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.2,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.3,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.4,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.5,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.A,Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.F,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.M,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.R,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2015.U,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.1,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.2,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.3,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.4,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.5,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.A,Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.F,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.M,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.R,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PS.2018.U,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.1,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.2,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.3,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.4,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.5,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.A,Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.F,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.M,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.R,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.M.PSD.2017.U,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.1,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.2,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.3,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.4,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.5,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.A,Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.F,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.M,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.R,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2000.U,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.1,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.2,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.3,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.4,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.5,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.A,Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.F,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.M,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.R,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2006.U,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.1,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.2,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.3,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.4,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.5,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.A,Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.F,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.M,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.R,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2009.U,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.1,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.2,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.3,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.4,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.5,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.A,Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.F,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.M,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.R,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2012.U,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.1,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.2,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.3,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.4,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.5,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.A,Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.F,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.M,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.R,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2015.U,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.1,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.2,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.3,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.4,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.5,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.A,Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.F,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.M,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.R,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PS.2018.U,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.1,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.2,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.3,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.4,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.5,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.A,Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.F,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.M,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.R,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.R.PSD.2017.U,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.1,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.2,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.3,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.4,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.5,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.A,Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.F,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.M,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.R,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2000.U,"Learning Deprivation Severity;PISA 2000 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.1,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.2,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.3,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.4,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.5,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.A,Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.F,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.M,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.R,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2006.U,"Learning Deprivation Severity;PISA 2006 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.1,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.2,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.3,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.4,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.5,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.A,Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.F,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.M,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.R,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2009.U,"Learning Deprivation Severity;PISA 2009 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.1,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.2,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.3,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.4,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.5,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.A,Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.F,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.M,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.R,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2012.U,"Learning Deprivation Severity;PISA 2012 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.1,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.2,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.3,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.4,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.5,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.A,Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.F,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.M,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.R,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2015.U,"Learning Deprivation Severity;PISA 2015 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.1,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.2,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.3,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.4,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.5,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.A,Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.F,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.M,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.R,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PS.2018.U,"Learning Deprivation Severity;PISA 2018 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.1,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.2,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.3,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.4,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.5,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.A,Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science,sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.F,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.M,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.R,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.LDSEV.S.PSD.2017.U,"Learning Deprivation Severity;PISA-D 2017 for grade 15Y using for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.1,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.2,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.3,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.4,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.5,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.A,Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.F,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.M,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.R,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2000.U,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.1,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.2,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.3,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.4,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.5,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.A,Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.F,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.M,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.R,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2006.U,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.1,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.2,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.3,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.4,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.5,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.A,Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.F,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.M,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.R,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2009.U,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.1,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.2,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.3,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.4,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.5,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.A,Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.F,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.M,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.R,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2012.U,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.1,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.2,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.3,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.4,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.5,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.A,Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.F,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.M,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.R,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2015.U,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.1,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.2,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.3,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.4,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.5,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.A,Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.F,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.M,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.R,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PS.2018.U,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.1,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.2,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.3,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.4,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.5,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.A,Above Proficiency;PISA-D 2017 for grade 15Y using for math,sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.F,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.M,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.R,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.M.PSD.2017.U,"Above Proficiency;PISA-D 2017 for grade 15Y using for math, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.1,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.2,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.3,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.4,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.5,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.A,Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.F,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.M,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.R,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2000.U,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.1,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.2,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.3,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.4,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.5,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.A,Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.F,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.M,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.R,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2006.U,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.1,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.2,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.3,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.4,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.5,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.A,Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.F,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.M,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.R,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2009.U,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.1,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.2,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.3,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.4,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.5,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.A,Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.F,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.M,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.R,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2012.U,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.1,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.2,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.3,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.4,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.5,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.A,Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.F,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.M,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.R,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2015.U,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.1,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.2,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.3,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.4,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.5,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.A,Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.F,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.M,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.R,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PS.2018.U,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.1,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.2,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.3,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.4,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.5,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.A,Above Proficiency;PISA-D 2017 for grade 15Y using for reading,sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.F,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.M,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.R,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.R.PSD.2017.U,"Above Proficiency;PISA-D 2017 for grade 15Y using for reading, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.1,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.2,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.3,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.4,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.5,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.A,Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.F,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.M,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.R,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2000.U,"Above Proficiency;PISA 2000 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.1,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.2,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.3,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.4,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.5,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.A,Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.F,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.M,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.R,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2006.U,"Above Proficiency;PISA 2006 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.1,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.2,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.3,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.4,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.5,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.A,Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.F,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.M,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.R,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2009.U,"Above Proficiency;PISA 2009 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.1,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.2,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.3,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.4,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.5,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.A,Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.F,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.M,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.R,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2012.U,"Above Proficiency;PISA 2012 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.1,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.2,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.3,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.4,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.5,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.A,Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.F,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.M,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.R,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2015.U,"Above Proficiency;PISA 2015 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.1,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.2,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.3,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.4,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.5,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.A,Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.F,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.M,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.R,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PS.2018.U,"Above Proficiency;PISA 2018 for grade 15Y using MPL Level 2 for science, Urban",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.1,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, First Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.2,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.3,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.4,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.5,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.A,Above Proficiency;PISA-D 2017 for grade 15Y using for science,sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.F,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Female",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.M,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Male",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.R,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Rural",sources,Education Statistics,12
+SE.CLO.15Y.PRF.S.PSD.2017.U,"Above Proficiency;PISA-D 2017 for grade 15Y using for science, Urban",sources,Education Statistics,12
+SE.CLO.15YO.LDG.MT.PSA.2000,Learning Deprivation Gap;PISA 2000 for grade 15 year olds using MPL Level 2 for math,sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2014.A,Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2014.F,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2014.M,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2014.R,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2014.U,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2019.A,Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2019.F,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2019.M,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2019.R,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.LDGAP.M.PSC.2019.U,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2014.A,Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2014.F,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2014.M,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2014.R,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2014.U,"Learning Deprivation Gap;PASEC 2014 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2019.A,Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2019.F,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2019.M,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2019.R,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.LDGAP.R.PSC.2019.U,"Learning Deprivation Gap;PASEC 2019 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2014.A,Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2014.F,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2014.M,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2014.R,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2014.U,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2019.A,Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2019.F,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2019.M,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2019.R,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.LDSEV.M.PSC.2019.U,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2014.A,Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2014.F,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2014.M,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2014.R,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2014.U,"Learning Deprivation Severity;PASEC 2014 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2019.A,Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2019.F,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2019.M,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2019.R,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.LDSEV.R.PSC.2019.U,"Learning Deprivation Severity;PASEC 2019 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2014.A,Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2014.F,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2014.M,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2014.R,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2014.U,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2019.A,Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2019.F,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2019.M,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2019.R,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.2.PRF.M.PSC.2019.U,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2014.A,Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2014.F,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2014.M,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2014.R,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2014.U,"Above Proficiency;PASEC 2014 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2019.A,Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2019.F,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2019.M,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2019.R,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.2.PRF.R.PSC.2019.U,"Above Proficiency;PASEC 2019 for grade 2 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.1,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.2,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.3,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.4,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.5,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.A,Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.F,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.M,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.R,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2001.U,"Learning Deprivation Gap;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.1,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.2,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.3,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.4,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.5,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.A,Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.F,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.M,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.R,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.LDGAP.R.PRL.2016.U,"Learning Deprivation Gap;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.1,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.2,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.3,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.4,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.5,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.A,Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.F,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.M,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.R,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2001.U,"Learning Deprivation Severity;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.1,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.2,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.3,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.4,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.5,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.A,Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.F,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.M,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.R,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.LDSEV.R.PRL.2016.U,"Learning Deprivation Severity;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.1,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.2,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.3,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.4,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.5,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.A,Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.F,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.M,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.R,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2001.U,"Above Proficiency;PIRLS 2001 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.1,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.2,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.3,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.4,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.5,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.A,Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.F,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.M,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.R,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.3.PRF.R.PRL.2016.U,"Above Proficiency;PIRLS 2016 for grade 3 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2003.A,Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2003.F,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2003.M,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2003.R,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2003.U,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.M.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.1,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.2,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.3,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.4,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.5,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.A,Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.F,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.M,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.R,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2001.U,"Learning Deprivation Gap;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.1,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.2,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.3,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.4,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.5,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.A,Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.F,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.M,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.R,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2006.U,"Learning Deprivation Gap;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.1,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.2,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.3,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.4,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.5,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.A,Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.F,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.M,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.R,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2011.U,"Learning Deprivation Gap;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.1,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.2,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.3,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.4,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.5,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.A,Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.F,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.M,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.R,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.R.PRL.2016.U,"Learning Deprivation Gap;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2003.A,Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2003.F,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2003.M,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2003.R,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2003.U,"Learning Deprivation Gap;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDGAP.S.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2003.A,Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2003.F,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2003.M,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2003.R,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2003.U,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.M.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.1,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.2,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.3,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.4,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.5,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.A,Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.F,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.M,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.R,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2001.U,"Learning Deprivation Severity;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.1,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.2,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.3,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.4,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.5,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.A,Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.F,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.M,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.R,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2006.U,"Learning Deprivation Severity;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.1,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.2,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.3,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.4,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.5,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.A,Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.F,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.M,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.R,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2011.U,"Learning Deprivation Severity;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.1,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.2,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.3,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.4,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.5,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.A,Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.F,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.M,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.R,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.R.PRL.2016.U,"Learning Deprivation Severity;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2003.A,Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2003.F,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2003.M,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2003.R,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2003.U,"Learning Deprivation Severity;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.LDSEV.S.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2003.A,Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2003.F,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2003.M,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2003.R,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2003.U,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.M.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.1,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.2,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.3,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.4,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.5,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.A,Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.F,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.M,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.R,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2001.U,"Above Proficiency;PIRLS 2001 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.1,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.2,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.3,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.4,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.5,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.A,Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.F,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.M,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.R,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2006.U,"Above Proficiency;PIRLS 2006 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.1,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.2,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.3,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.4,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.5,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.A,Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.F,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.M,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.R,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2011.U,"Above Proficiency;PIRLS 2011 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.1,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.2,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.3,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.4,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.5,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.A,Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.F,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.M,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.R,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.R.PRL.2016.U,"Above Proficiency;PIRLS 2016 for grade 4 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2003.A,Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2003.F,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2003.M,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2003.R,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2003.U,"Above Proficiency;TIMSS 2003 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.4.PRF.S.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 4 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.1,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.2,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.3,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.4,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.5,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.A,Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math,sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.F,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.M,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.R,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.SPM.2019.U,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.M.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.1,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.2,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.3,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.4,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.5,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.A,Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.F,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.M,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.R,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2001.U,"Learning Deprivation Gap;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.1,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.2,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.3,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.4,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.5,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.A,Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.F,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.M,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.R,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2006.U,"Learning Deprivation Gap;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.1,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.2,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.3,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.4,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.5,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.A,Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.F,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.M,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.R,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2011.U,"Learning Deprivation Gap;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.1,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.2,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.3,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.4,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.5,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.A,Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.F,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.M,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.R,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.PRL.2016.U,"Learning Deprivation Gap;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.1,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.2,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.3,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.4,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.5,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.A,Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading,sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.F,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.M,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.R,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.R.SPM.2019.U,"Learning Deprivation Gap;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDGAP.S.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.1,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.2,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.3,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.4,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.5,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.A,Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math,sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.F,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.M,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.R,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.SPM.2019.U,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.M.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.1,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.2,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.3,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.4,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.5,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.A,Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.F,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.M,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.R,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2001.U,"Learning Deprivation Severity;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.1,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.2,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.3,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.4,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.5,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.A,Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.F,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.M,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.R,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2006.U,"Learning Deprivation Severity;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.1,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.2,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.3,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.4,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.5,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.A,Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.F,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.M,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.R,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2011.U,"Learning Deprivation Severity;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.1,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.2,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.3,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.4,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.5,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.A,Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.F,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.M,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.R,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.PRL.2016.U,"Learning Deprivation Severity;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.1,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.2,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.3,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.4,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.5,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.A,Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading,sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.F,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.M,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.R,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.R.SPM.2019.U,"Learning Deprivation Severity;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.LDSEV.S.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.1,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.2,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.3,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.4,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.5,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.A,Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math,sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.F,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.M,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.R,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.M.SPM.2019.U,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for math, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.M.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.1,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.2,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.3,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.4,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.5,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.A,Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.F,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.M,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.R,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2001.U,"Above Proficiency;PIRLS 2001 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.1,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.2,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.3,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.4,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.5,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.A,Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.F,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.M,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.R,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2006.U,"Above Proficiency;PIRLS 2006 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.1,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.2,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.3,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.4,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.5,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.A,Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.F,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.M,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.R,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2011.U,"Above Proficiency;PIRLS 2011 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.1,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.2,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.3,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.4,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.5,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.A,Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.F,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.M,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.R,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.R.PRL.2016.U,"Above Proficiency;PIRLS 2016 for grade 5 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.1,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.2,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.3,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.4,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.5,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.A,Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading,sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.F,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.M,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.R,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.R.SPM.2019.U,"Above Proficiency;SEA-PLM 2019 for grade 5 using MPL Level 6 for reading, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.5.PRF.S.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 5 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.1,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.2,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.3,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.4,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.5,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.A,Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.F,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.M,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.R,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2014.U,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.1,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.2,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.3,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.4,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.5,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.A,Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.F,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.M,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.R,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.PSC.2019.U,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.M.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.1,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.2,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.3,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.4,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.5,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.A,Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.F,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.M,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.R,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2006.U,"Learning Deprivation Gap;LLECES 2006 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.1,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.2,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.3,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.4,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.5,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.A,Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.F,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.M,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.R,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.LLC.2013.U,"Learning Deprivation Gap;LLECES 2013 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.1,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.2,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.3,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.4,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.5,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.A,Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.F,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.M,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.R,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PRL.2011.U,"Learning Deprivation Gap;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.1,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.2,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.3,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.4,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.5,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.A,Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.F,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.M,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.R,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2014.U,"Learning Deprivation Gap;PASEC 2014 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.1,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.2,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.3,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.4,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.5,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.A,Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.F,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.M,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.R,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.PSC.2019.U,"Learning Deprivation Gap;PASEC 2019 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.1,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.2,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.3,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.4,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.5,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.A,Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.F,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.M,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.R,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2000.U,"Learning Deprivation Gap;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.1,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.2,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.3,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.4,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.5,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.A,Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.F,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.M,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.R,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.R.SAC.2007.U,"Learning Deprivation Gap;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.6.LDGAP.S.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.1,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.2,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.3,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.4,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.5,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.A,Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.F,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.M,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.R,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2014.U,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.1,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.2,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.3,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.4,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.5,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.A,Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.F,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.M,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.R,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.PSC.2019.U,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.M.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.1,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.2,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.3,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.4,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.5,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.A,Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.F,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.M,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.R,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2006.U,"Learning Deprivation Severity;LLECES 2006 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.1,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.2,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.3,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.4,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.5,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.A,Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.F,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.M,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.R,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.LLC.2013.U,"Learning Deprivation Severity;LLECES 2013 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.1,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.2,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.3,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.4,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.5,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.A,Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.F,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.M,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.R,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PRL.2011.U,"Learning Deprivation Severity;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.1,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.2,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.3,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.4,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.5,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.A,Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.F,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.M,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.R,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2014.U,"Learning Deprivation Severity;PASEC 2014 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.1,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.2,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.3,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.4,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.5,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.A,Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.F,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.M,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.R,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.PSC.2019.U,"Learning Deprivation Severity;PASEC 2019 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.1,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.2,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.3,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.4,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.5,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.A,Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.F,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.M,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.R,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2000.U,"Learning Deprivation Severity;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.1,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.2,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.3,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.4,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.5,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.A,Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.F,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.M,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.R,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.R.SAC.2007.U,"Learning Deprivation Severity;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.6.LDSEV.S.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.1,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.2,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.3,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.4,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.5,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.A,Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.F,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.M,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.R,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2014.U,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.1,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.2,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.3,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.4,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.5,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.A,Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math,sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.F,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.M,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.R,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.M.PSC.2019.U,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for math, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.M.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.1,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.2,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.3,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.4,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.5,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.A,Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.F,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.M,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.R,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2006.U,"Above Proficiency;LLECES 2006 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.1,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.2,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.3,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.4,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.5,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.A,Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.F,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.M,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.R,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2013.U,"Above Proficiency;LLECES 2013 for grade 6 using MPL Level 3 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.LLC.2019.A,Above Proficiency;LLECES 2019 for grade 6 using MPL Level 3 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.1,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.2,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.3,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.4,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.5,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.A,Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.F,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.M,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.R,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PRL.2011.U,"Above Proficiency;PIRLS 2011 for grade 6 using MPL Low (400 points) for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.1,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.2,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.3,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.4,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.5,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.A,Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.F,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.M,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.R,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2014.U,"Above Proficiency;PASEC 2014 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.1,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.2,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.3,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.4,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.5,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.A,Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.F,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.M,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.R,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.PSC.2019.U,"Above Proficiency;PASEC 2019 for grade 6 using MPL 4 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.1,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.2,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.3,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.4,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.5,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.A,Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.F,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.M,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.R,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2000.U,"Above Proficiency;SACMEQ 2000 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.1,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.2,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.3,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.4,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.5,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.A,Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading,sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.F,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.M,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.R,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.R.SAC.2007.U,"Above Proficiency;SACMEQ 2007 for grade 6 using MPL Level 5 for reading, Urban",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.6.PRF.S.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 6 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.1,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.2,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.3,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.4,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.5,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.A,Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.F,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.M,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.R,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2003.U,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.1,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.2,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.3,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.4,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.5,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.M.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.1,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.2,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.3,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.4,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.5,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.A,Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.F,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.M,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.R,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2003.U,"Learning Deprivation Gap;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.1,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.2,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.3,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.4,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.5,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDGAP.S.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.1,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.2,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.3,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.4,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.5,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.A,Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.F,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.M,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.R,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2003.U,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.1,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.2,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.3,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.4,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.5,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.M.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.1,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.2,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.3,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.4,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.5,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.A,Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.F,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.M,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.R,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2003.U,"Learning Deprivation Severity;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.1,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.2,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.3,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.4,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.5,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.LDSEV.S.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.1,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.2,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.3,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.4,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.5,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.A,Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.F,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.M,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.R,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2003.U,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.1,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.2,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.3,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.4,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.5,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.M.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.1,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.2,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.3,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.4,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.5,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.A,Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.F,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.M,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.R,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2003.U,"Above Proficiency;TIMSS 2003 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.1,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.2,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.3,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.4,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.5,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.8.PRF.S.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 8 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.1,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.2,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.3,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.4,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.5,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.M.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.1,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.2,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.3,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.4,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.5,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.A,Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.F,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.M,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.R,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2007.U,"Learning Deprivation Gap;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.1,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.2,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.3,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.4,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.5,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.A,Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.F,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.M,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.R,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2011.U,"Learning Deprivation Gap;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.1,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.2,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.3,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.4,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.5,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.A,Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.F,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.M,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.R,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2015.U,"Learning Deprivation Gap;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.1,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.2,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.3,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.4,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.5,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.A,Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.F,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.M,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.R,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDGAP.S.TMS.2019.U,"Learning Deprivation Gap;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.1,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.2,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.3,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.4,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.5,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.M.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.1,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.2,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.3,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.4,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.5,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.A,Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.F,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.M,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.R,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2007.U,"Learning Deprivation Severity;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.1,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.2,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.3,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.4,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.5,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.A,Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.F,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.M,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.R,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2011.U,"Learning Deprivation Severity;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.1,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.2,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.3,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.4,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.5,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.A,Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.F,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.M,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.R,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2015.U,"Learning Deprivation Severity;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.1,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.2,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.3,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.4,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.5,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.A,Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.F,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.M,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.R,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.LDSEV.S.TMS.2019.U,"Learning Deprivation Severity;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.1,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.2,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.3,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.4,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.5,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math,sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.M.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for math, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.1,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.2,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.3,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.4,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.5,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.A,Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.F,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.M,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.R,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2007.U,"Above Proficiency;TIMSS 2007 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.1,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.2,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.3,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.4,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.5,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.A,Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.F,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.M,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.R,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2011.U,"Above Proficiency;TIMSS 2011 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.1,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.2,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.3,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.4,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.5,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.A,Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.F,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.M,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.R,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2015.U,"Above Proficiency;TIMSS 2015 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.1,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, First Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.2,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Second Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.3,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Third Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.4,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fourth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.5,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Fifth Quintile",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.A,Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science,sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.F,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Female",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.M,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Male",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.R,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Rural",sources,Education Statistics,12
+SE.CLO.9.PRF.S.TMS.2019.U,"Above Proficiency;TIMSS 2019 for grade 9 using MPL Low (400 points) for science, Urban",sources,Education Statistics,12
+SE.COM.DURS,"Compulsory education, duration (years)",topics,Education,4
+SE.ENR.ORPH,Ratio of school attendance of orphans to school attendance of non-orphans ages 10-14,sources,Health Nutrition and Population Statistics,16
+SE.ENR.PRIM.FM.ZS,"School enrollment, primary (gross), gender parity index (GPI)",topics,Education,4
+SE.ENR.PRIM.ZS,"School Enroll. Ratio, primary school (%)",sources,WDI Database Archives,57
+SE.ENR.PRSC.FM.ZS,"School enrollment, primary and secondary (gross), gender parity index (GPI)",topics,Aid Effectiveness,2
+SE.ENR.SECO.FM.ZS,"School enrollment, secondary (gross), gender parity index (GPI)",topics,Education,4
+SE.ENR.SECO.ZS,"School Enroll. Ratio, secondary school (%)",sources,WDI Database Archives,57
+SE.ENR.TERT.FM.ZS,"School enrollment, tertiary (gross), gender parity index (GPI)",topics,Education,4
+SE.GEPD.PRIM,Learning Poverty Rate,sources,Education Statistics,12
+SE.GEPD.PRIM.1,(De Facto) Percent of 10 year old children who are out-of-school or in-school and not achieving basic proficiency on reading.,sources,Education Statistics,12
+SE.GEPD.PRIM.BMP,Proficiency by End of Primary,sources,Education Statistics,12
+SE.GEPD.PRIM.BMP.1,"(De Facto) Percent of children proficient in literacy and numeracy by end of primary, as reported by UIS",sources,Education Statistics,12
+SE.JRSEC.NENR.ZS,Net Enrollment Ratio: Junior Secondary (in %),sources,Indonesia Database for Policy and Economic Research,45
+SE.LITR.15UP.ZS,Literacy Rate for Population age 15 and over (in % of total population),sources,Indonesia Database for Policy and Economic Research,45
+SE.LPV.POP.0516,Population Age 0516 for Reference Year 2019;,sources,Education Statistics,12
+SE.LPV.POP.0516.FE,Population Age 0516 for Reference Year 2019; Female,sources,Education Statistics,12
+SE.LPV.POP.0516.MA,Population Age 0516 for Reference Year 2019; Male,sources,Education Statistics,12
+SE.LPV.POP.10,Population Age 10 for Reference Year 2019;,sources,Education Statistics,12
+SE.LPV.POP.10.FE,Population Age 10 for Reference Year 2019; Female,sources,Education Statistics,12
+SE.LPV.POP.10.MA,Population Age 10 for Reference Year 2019; Male,sources,Education Statistics,12
+SE.LPV.POP.1014,Population Age 1014 for Reference Year 2019;,sources,Education Statistics,12
+SE.LPV.POP.1014.FE,Population Age 1014 for Reference Year 2019; Female,sources,Education Statistics,12
+SE.LPV.POP.1014.MA,Population Age 1014 for Reference Year 2019; Male,sources,Education Statistics,12
+SE.LPV.POP.9PLUS,Population Age 9plus for Reference Year 2019;,sources,Education Statistics,12
+SE.LPV.POP.9PLUS.FE,Population Age 9plus for Reference Year 2019; Female,sources,Education Statistics,12
+SE.LPV.POP.9PLUS.MA,Population Age 9plus for Reference Year 2019; Male,sources,Education Statistics,12
+SE.LPV.POP.PRIM,Population Age primary for Reference Year 2019;,sources,Education Statistics,12
+SE.LPV.POP.PRIM.FE,Population Age primary for Reference Year 2019; Female,sources,Education Statistics,12
+SE.LPV.POP.PRIM.MA,Population Age primary for Reference Year 2019; Male,sources,Education Statistics,12
+SE.LPV.PRIM,Learning poverty: Share of Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%),sources,World Development Indicators,2
+SE.LPV.PRIM.BMP,Pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,sources,Education Statistics,12
+SE.LPV.PRIM.BMP.FE,Female pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,topics,Education,4
+SE.LPV.PRIM.BMP.MA,Male pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,topics,Education,4
+SE.LPV.PRIM.FE,Learning poverty: Share of Female Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%),topics,Education,4
+SE.LPV.PRIM.LD,Pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,sources,World Development Indicators,2
+SE.LPV.PRIM.LD.FE,Female pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,sources,World Development Indicators,2
+SE.LPV.PRIM.LD.MA,Male pupils below minimum reading proficiency at end of primary (%). Low GAML threshold,sources,World Development Indicators,2
+SE.LPV.PRIM.LDGAP,LDGAP: TIMSS 2019 for grade 4 using MPL Low (400 points) for scie;,sources,Education Statistics,12
+SE.LPV.PRIM.LDGAP.FE,LDGAP: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Female,sources,Education Statistics,12
+SE.LPV.PRIM.LDGAP.MA,LDGAP: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Male,sources,Education Statistics,12
+SE.LPV.PRIM.LDSEV,LDSEV: TIMSS 2019 for grade 4 using MPL Low (400 points) for scie;,sources,Education Statistics,12
+SE.LPV.PRIM.LDSEV.FE,LDSEV: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Female,sources,Education Statistics,12
+SE.LPV.PRIM.LDSEV.MA,LDSEV: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Male,sources,Education Statistics,12
+SE.LPV.PRIM.LPGAP,LPGAP = SD: ANER; LD: TIMSS 2019 for grade 4 using MPL Low (400 points) for scie;,sources,Education Statistics,12
+SE.LPV.PRIM.LPGAP.FE,LPGAP = SD: ANER; LD: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Female,sources,Education Statistics,12
+SE.LPV.PRIM.LPGAP.MA,LPGAP = SD: ANER; LD: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Male,sources,Education Statistics,12
+SE.LPV.PRIM.LPSEV,LPSEV = SD: ANER; LD: TIMSS 2019 for grade 4 using MPL Low (400 points) for scie;,sources,Education Statistics,12
+SE.LPV.PRIM.LPSEV.FE,LPSEV = SD: ANER; LD: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Female,sources,Education Statistics,12
+SE.LPV.PRIM.LPSEV.MA,LPSEV = SD: ANER; LD: PIRLS 2011 for grade 4 using MPL Low (400 points) for reading; Male,sources,Education Statistics,12
+SE.LPV.PRIM.MA,Learning poverty: Share of Male Children at the End-of-Primary age below minimum reading proficiency adjusted by Out-of-School Children (%),topics,Education,4
+SE.LPV.PRIM.OOS,Primary school age children out-of-school (%),sources,Education Statistics,12
+SE.LPV.PRIM.OOS.FE,Female primary school age children out-of-school (%),topics,Education,4
+SE.LPV.PRIM.OOS.MA,Male primary school age children out-of-school (%),topics,Education,4
+SE.LPV.PRIM.SD,Primary school age children out-of-school (%),sources,World Development Indicators,2
+SE.LPV.PRIM.SD.FE,Female primary school age children out-of-school (%),sources,World Development Indicators,2
+SE.LPV.PRIM.SD.MA,Male primary school age children out-of-school (%),sources,World Development Indicators,2
+SE.NEXM.SCR.JRSEC,"Average National Exam Score: Junior Secondary Level (out of 100, available only at district level)",sources,Indonesia Database for Policy and Economic Research,45
+SE.NEXM.SCR.PRM,"Average National Exam Score: Primary Level (out of 100, available only at district level)",sources,Indonesia Database for Policy and Economic Research,45
+SE.NEXM.SCR.SRSEC,"Average National Exam Score: Senior Secondary Level (out of 100, available only at district level)",sources,Indonesia Database for Policy and Economic Research,45
+SE.PRE.DURS,"Preprimary education, duration (years)",topics,Education,4
+SE.PRE.ENRL,"Enrolment in pre-primary education, both sexes (number)",topics,Education,4
+SE.PRE.ENRL.FE,"Enrolment in pre-primary education, female (number)",topics,Education,4
+SE.PRE.ENRL.TC.ZS,"Pupil-teacher ratio, preprimary",topics,Education,4
+SE.PRE.ENRR,"School enrollment, preprimary (% gross)",topics,Education,4
+SE.PRE.ENRR.FE,"School enrollment, preprimary, female (% gross)",topics,Education,4
+SE.PRE.ENRR.MA,"School enrollment, preprimary, male (% gross)",topics,Education,4
+SE.PRE.PRIV.ZS,Percentage of enrolment in pre-primary education in private institutions (%),topics,Education,4
+SE.PRE.TCAQ.FE.ZS,"Trained teachers in preprimary education, female (% of female teachers)",topics,Education,4
+SE.PRE.TCAQ.MA.ZS,"Trained teachers in preprimary education, male (% of male teachers)",topics,Education,4
+SE.PRE.TCAQ.ZS,Trained teachers in preprimary education (% of total teachers),topics,Education,4
+SE.PRE.TCHR,"Teachers in pre-primary education, both sexes (number)",topics,Education,4
+SE.PRE.TCHR.FE,"Teachers in pre-primary education, female (number)",topics,Education,4
+SE.PRE.TCHR.FE.ZS,Percentage of teachers in pre-primary education who are female (%),topics,Education,4
+SE.PRM.AGEE.ZS,"Age efficiency, primary (net enrollment as % of gross)",sources,WDI Database Archives,57
+SE.PRM.AGES,Primary school starting age (years),topics,Education,4
+SE.PRM.ATTD,Student Attendance,sources,Education Statistics,12
+SE.PRM.ATTD.1,(De Facto) Percent of 4th grade students present during an unannounced visit,sources,Education Statistics,12
+SE.PRM.ATTD.1.F,(De Facto) Percent of 4th grade students present during an unannounced visit - Female,sources,Education Statistics,12
+SE.PRM.ATTD.1.M,(De Facto) Percent of 4th grade students present during an unannounced visit - Male,sources,Education Statistics,12
+SE.PRM.ATTD.1.R,(De Facto) Percent of 4th grade students present during an unannounced visit - Rural,sources,Education Statistics,12
+SE.PRM.ATTD.1.U,(De Facto) Percent of 4th grade students present during an unannounced visit - Urban,sources,Education Statistics,12
+SE.PRM.BFIN,Politics & Bureaucratic Capacity - Financing,sources,Education Statistics,12
+SE.PRM.BFIN.1,"Financing score; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness in terms of adequacy, efficiency, and equity.",sources,Education Statistics,12
+SE.PRM.BFIN.2,(Financing) - Adequacy expressed by the per child spending,sources,Education Statistics,12
+SE.PRM.BFIN.3,(Financing) Efficiency - Expressed by the score from the Public Expenditure and Financial Accountability (PEFA) assessment; where 0 is the lowest possible efficiency and 1 is the highest,sources,Education Statistics,12
+SE.PRM.BFIN.4,(Financing) Efficiency - Expressed by the relationship between financing and outcomes; where 0 is the lowest possible efficiency and 1 is the highest,sources,Education Statistics,12
+SE.PRM.BFIN.5,(Financing) - Equity,sources,Education Statistics,12
+SE.PRM.BIMP,Politics & Bureaucratic Capacity - Impartial Decision-Making,sources,Education Statistics,12
+SE.PRM.BIMP.1,Average score for Impartial Decision-Making; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness,sources,Education Statistics,12
+SE.PRM.BIMP.2,(Impartial Decision-Making) average score for politicized personnel management,sources,Education Statistics,12
+SE.PRM.BIMP.3,(Impartial Decision-Making) average score for politicized policy-making,sources,Education Statistics,12
+SE.PRM.BIMP.4,(Impartial Decision-Making) average score for politicized policy implementation,sources,Education Statistics,12
+SE.PRM.BIMP.5,(Impartial Decision-Making) average score for employee unions as facilitators,sources,Education Statistics,12
+SE.PRM.BMAC,Politics & Bureaucratic Capacity - Mandates & Accountability,sources,Education Statistics,12
+SE.PRM.BMAC.1,Average score for Mandates & Accountability; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness,sources,Education Statistics,12
+SE.PRM.BMAC.2,(Mandates & Accountability) Average score for coherence,sources,Education Statistics,12
+SE.PRM.BMAC.3,(Mandates & Accountability) Average score for transparency,sources,Education Statistics,12
+SE.PRM.BMAC.4,(Mandates & Accountability) Average score for accountability of public officials,sources,Education Statistics,12
+SE.PRM.BNLG,Politics & Bureaucratic Capacity - National Learning Goals,sources,Education Statistics,12
+SE.PRM.BNLG.1,Average score for National Learning Goals; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness,sources,Education Statistics,12
+SE.PRM.BNLG.2,(National Learning Goals) Average score for targeting,sources,Education Statistics,12
+SE.PRM.BNLG.3,(National Learning Goals) Average score for monitoring,sources,Education Statistics,12
+SE.PRM.BNLG.4,(National Learning Goals) Average score for incentives,sources,Education Statistics,12
+SE.PRM.BNLG.5,(National Learning Goals) Average score for community engagement,sources,Education Statistics,12
+SE.PRM.BQBR,Politics & Bureaucratic Capacity - Characteristics of Bureaucracy,sources,Education Statistics,12
+SE.PRM.BQBR.1,Average score for Characteristics of Bureaucracy; where a score of 1 indicates low effectiveness and 5 indicates high effectiveness,sources,Education Statistics,12
+SE.PRM.BQBR.2,(Characteristics of Bureaucracy) average score for knowledge and skills,sources,Education Statistics,12
+SE.PRM.BQBR.3,(Characteristics of Bureaucracy) average score for work environment,sources,Education Statistics,12
+SE.PRM.BQBR.4,(Characteristics of Bureaucracy) average score for merit,sources,Education Statistics,12
+SE.PRM.BQBR.5,(Characteristics of Bureaucracy) average score for motivation and attitudes,sources,Education Statistics,12
+SE.PRM.CMPL.FE.ZS,"Gross graduation ratio, primary, female (%)",topics,Education,4
+SE.PRM.CMPL.MA.ZS,"Gross graduation ratio, primary, male (%)",topics,Education,4
+SE.PRM.CMPL.ZS,"Gross graduation ratio, primary, total (%)",topics,Education,4
+SE.PRM.CMPR.FE.ZS,"Primary completion rate, female (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPR.MA.ZS,"Primary completion rate, male (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPR.Q1.ZS,"Primary completion rate, poorest quintile (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPR.Q5.ZS,"Primary completion rate, richest quintile (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPR.RU.ZS,"Primary completion rate, rural (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPR.UR.ZS,"Primary completion rate, urban (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.CMPT.FE.ZS,"Primary completion rate, female (% of relevant age group)",topics,Education,4
+SE.PRM.CMPT.MA.ZS,"Primary completion rate, male (% of relevant age group)",topics,Education,4
+SE.PRM.CMPT.ZS,"Primary completion rate, total (% of relevant age group)",topics,Aid Effectiveness,2
+SE.PRM.CONT,Teacher Content Knowledge,sources,Education Statistics,12
+SE.PRM.CONT.1,(De Facto) Percent of teachers proficient in the subjects they teach,sources,Education Statistics,12
+SE.PRM.CONT.1.F,(De Facto) Percent of teachers proficient in the subjects they teach - Female,sources,Education Statistics,12
+SE.PRM.CONT.1.M,(De Facto) Percent of teachers proficient in the subjects they teach - Male,sources,Education Statistics,12
+SE.PRM.CONT.1.R,(De Facto) Percent of teachers proficient in the subjects they teach - Rural,sources,Education Statistics,12
+SE.PRM.CONT.1.U,(De Facto) Percent of teachers proficient in the subjects they teach - Urban,sources,Education Statistics,12
+SE.PRM.CONT.2,(De Facto) Percent of teachers proficient in the subject of language,sources,Education Statistics,12
+SE.PRM.CONT.2.F,(De Facto) Percent of teachers proficient in the subject of language - Female,sources,Education Statistics,12
+SE.PRM.CONT.2.M,(De Facto) Percent of teachers proficient in the subject of language - Male,sources,Education Statistics,12
+SE.PRM.CONT.2.R,(De Facto) Percent of teachers proficient in the subject of language - Rural,sources,Education Statistics,12
+SE.PRM.CONT.2.U,(De Facto) Percent of teachers proficient in the subject of language - Urban,sources,Education Statistics,12
+SE.PRM.CONT.3,(De Facto) Percent of teachers proficient in the subject of mathematics,sources,Education Statistics,12
+SE.PRM.CONT.3.F,(De Facto) Percent of teachers proficient in the subject of mathematics - Female,sources,Education Statistics,12
+SE.PRM.CONT.3.M,(De Facto) Percent of teachers proficient in the subject of mathematics - Male,sources,Education Statistics,12
+SE.PRM.CONT.3.R,(De Facto) Percent of teachers proficient in the subject of mathematics - Rural,sources,Education Statistics,12
+SE.PRM.CONT.3.U,(De Facto) Percent of teachers proficient in the subject of mathematics - Urban,sources,Education Statistics,12
+SE.PRM.CUAT.FE.ZS,"Educational attainment, at least completed primary, population 25+ years, female (%) (cumulative)",topics,Education,4
+SE.PRM.CUAT.MA.ZS,"Educational attainment, at least completed primary, population 25+ years, male (%) (cumulative)",topics,Education,4
+SE.PRM.CUAT.ZS,"Educational attainment, at least completed primary, population 25+ years, total (%) (cumulative)",topics,Education,4
+SE.PRM.DURS,"Primary education, duration (years)",topics,Education,4
+SE.PRM.EFFT,Teacher Presence,sources,Education Statistics,12
+SE.PRM.EFFT.1,"(De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit",sources,Education Statistics,12
+SE.PRM.EFFT.1.F,"(De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Female",sources,Education Statistics,12
+SE.PRM.EFFT.1.M,"(De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Male",sources,Education Statistics,12
+SE.PRM.EFFT.1.R,"(De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Rural",sources,Education Statistics,12
+SE.PRM.EFFT.1.U,"(De Facto) Percent of teachers present in their classrooms, when they are scheduled to be teaching, during an announced visit - Urban",sources,Education Statistics,12
+SE.PRM.EFFT.2,(De Facto) Percent of teachers present in their schools during an announced visit,sources,Education Statistics,12
+SE.PRM.EFFT.2.F,(De Facto) Percent of teachers present in their schools during an announced visit - Female,sources,Education Statistics,12
+SE.PRM.EFFT.2.M,(De Facto) Percent of teachers present in their schools during an announced visit - Male,sources,Education Statistics,12
+SE.PRM.EFFT.2.R,(De Facto) Percent of teachers present in their schools during an announced visit - Rural,sources,Education Statistics,12
+SE.PRM.EFFT.2.U,(De Facto) Percent of teachers present in their schools during an announced visit - Urban,sources,Education Statistics,12
+SE.PRM.ENNR.FE,"Primary Schl. Enroll. Ratio, Female",sources,WDI Database Archives,57
+SE.PRM.ENRL,"Primary education, pupils",topics,Education,4
+SE.PRM.ENRL.FE,"Enrolment in primary education, female (number)",topics,Education,4
+SE.PRM.ENRL.FE.ZS,"Primary education, pupils (% female)",topics,Education,4
+SE.PRM.ENRL.TC.ZS,"Pupil-teacher ratio, primary",topics,Education,4
+SE.PRM.ENRR,"School enrollment, primary (% gross)",topics,Education,4
+SE.PRM.ENRR.FE,"School enrollment, primary, female (% gross)",topics,Education,4
+SE.PRM.ENRR.MA,"School enrollment, primary, male (% gross)",topics,Education,4
+SE.PRM.ENRR.MF,"School Enroll. Ratio, primary (%)",sources,WDI Database Archives,57
+SE.PRM.GINT.FE.ZS,"Gross intake ratio in first grade of primary education, female (% of relevant age group)",topics,Education,4
+SE.PRM.GINT.MA.ZS,"Gross intake ratio in first grade of primary education, male (% of relevant age group)",topics,Education,4
+SE.PRM.GINT.ZS,"Gross intake ratio in first grade of primary education, total (% of relevant age group)",topics,Education,4
+SE.PRM.ILDR,Instructional Leadership,sources,Education Statistics,12
+SE.PRM.ILDR.1,(De Facto) Average score for the presence and quality of instructional leadership,sources,Education Statistics,12
+SE.PRM.ILDR.1.F,(De Facto) Average score for the presence and quality of instructional leadership - Female,sources,Education Statistics,12
+SE.PRM.ILDR.1.M,(De Facto) Average score for the presence and quality of instructional leadership - Male,sources,Education Statistics,12
+SE.PRM.ILDR.1.R,(De Facto) Average score for the presence and quality of instructional leadership - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.1.U,(De Facto) Average score for the presence and quality of instructional leadership - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.2,(De Facto) Percent of teachers reporting having had their class observed,sources,Education Statistics,12
+SE.PRM.ILDR.2.F,(De Facto) Percent of teachers reporting having had their class observed - Female,sources,Education Statistics,12
+SE.PRM.ILDR.2.M,(De Facto) Percent of teachers reporting having had their class observed - Male,sources,Education Statistics,12
+SE.PRM.ILDR.2.R,(De Facto) Percent of teachers reporting having had their class observed - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.2.U,(De Facto) Percent of teachers reporting having had their class observed - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.3,(De Facto) Percent of teachers reporting that the classroom observation happened recently,sources,Education Statistics,12
+SE.PRM.ILDR.3.F,(De Facto) Percent of teachers reporting that the classroom observation happened recently - Female,sources,Education Statistics,12
+SE.PRM.ILDR.3.M,(De Facto) Percent of teachers reporting that the classroom observation happened recently - Male,sources,Education Statistics,12
+SE.PRM.ILDR.3.R,(De Facto) Percent of teachers reporting that the classroom observation happened recently - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.3.U,(De Facto) Percent of teachers reporting that the classroom observation happened recently - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.4,(De Facto) Percent of teachers reporting having discussed the results of the classroom observation,sources,Education Statistics,12
+SE.PRM.ILDR.4.F,(De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Female,sources,Education Statistics,12
+SE.PRM.ILDR.4.M,(De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Male,sources,Education Statistics,12
+SE.PRM.ILDR.4.R,(De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.4.U,(De Facto) Percent of teachers reporting having discussed the results of the classroom observation - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.5,(De Facto) Percent of teachers reporting that the discussion was over 30 minutes,sources,Education Statistics,12
+SE.PRM.ILDR.5.F,(De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Female,sources,Education Statistics,12
+SE.PRM.ILDR.5.M,(De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Male,sources,Education Statistics,12
+SE.PRM.ILDR.5.R,(De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.5.U,(De Facto) Percent of teachers reporting that the discussion was over 30 minutes - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.6,(De Facto) Percent of teachers reporting that they were provided with feedback in that discussion,sources,Education Statistics,12
+SE.PRM.ILDR.6.F,(De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Female,sources,Education Statistics,12
+SE.PRM.ILDR.6.M,(De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Male,sources,Education Statistics,12
+SE.PRM.ILDR.6.R,(De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.6.U,(De Facto) Percent of teachers reporting that they were provided with feedback in that discussion - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.7,(De Facto) Percent of teachers reporting having lesson plans,sources,Education Statistics,12
+SE.PRM.ILDR.7.F,(De Facto) Percent of teachers reporting having lesson plans - Female,sources,Education Statistics,12
+SE.PRM.ILDR.7.M,(De Facto) Percent of teachers reporting having lesson plans - Male,sources,Education Statistics,12
+SE.PRM.ILDR.7.R,(De Facto) Percent of teachers reporting having lesson plans - Rural,sources,Education Statistics,12
+SE.PRM.ILDR.7.U,(De Facto) Percent of teachers reporting having lesson plans - Urban,sources,Education Statistics,12
+SE.PRM.ILDR.8,"(De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher)",sources,Education Statistics,12
+SE.PRM.ILDR.8.F,"(De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Female",sources,Education Statistics,12
+SE.PRM.ILDR.8.M,"(De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Male",sources,Education Statistics,12
+SE.PRM.ILDR.8.R,"(De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Rural",sources,Education Statistics,12
+SE.PRM.ILDR.8.U,"(De Facto) Percent of teachers reporting that they had discussed their lesson plans with someone else (pricinpal, pedagogical coordinator, another teacher) - Urban",sources,Education Statistics,12
+SE.PRM.IMON,Policy Lever (Inputs & Infrastructure) - Monitoring,sources,Education Statistics,12
+SE.PRM.IMON.1,(De Facto) Percent of schools that report there is someone monitoring that basic inputs are available to students,sources,Education Statistics,12
+SE.PRM.IMON.10,(De Jure) Number of basic infrastructure features clearly articulated as needing to be monitored,sources,Education Statistics,12
+SE.PRM.IMON.2,(De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic inputs,sources,Education Statistics,12
+SE.PRM.IMON.3,(De Facto) Percent of schools that report that there is an inventory to monitor availability of basic inputs,sources,Education Statistics,12
+SE.PRM.IMON.4,(De Facto) Percent of schools that report there is someone monitoring that basic infrastructure is available,sources,Education Statistics,12
+SE.PRM.IMON.5,(De Facto) Percent of schools that report that parents or community members are involved in the monitoring of availability of basic infrastructure,sources,Education Statistics,12
+SE.PRM.IMON.6,(De Facto) Percent of schools that report that there is an inventory to monitor availability of basic infrastructure,sources,Education Statistics,12
+SE.PRM.IMON.7,(De Jure) Is the responsibility of monitoring basic inputs clearly articulated in the policies?,sources,Education Statistics,12
+SE.PRM.IMON.8,(De Jure) Number of basic inputs clearly articulated as needing to be monitored,sources,Education Statistics,12
+SE.PRM.IMON.9,(De Jure) Is the responsibility of monitoring basic infrastructure clearly articulated in the policies?,sources,Education Statistics,12
+SE.PRM.IMON.DF,(De Facto) Policy Lever (Inputs & Infrastructure) - Monitoring,sources,Education Statistics,12
+SE.PRM.IMON.DJ,(De Jure) Policy Lever (Inputs & Infrastructure) - Monitoring,sources,Education Statistics,12
+SE.PRM.INFR,Basic Infrastructure,sources,Education Statistics,12
+SE.PRM.INFR.1,(De Facto) Average number of infrastructure aspects present in schools,sources,Education Statistics,12
+SE.PRM.INFR.1.R,(De Facto) Average number of infrastructure aspects present in schools - Rural,sources,Education Statistics,12
+SE.PRM.INFR.1.U,(De Facto) Average number of infrastructure aspects present in schools - Urban,sources,Education Statistics,12
+SE.PRM.INFR.2,(De Facto) Percent of schools with drinking water,sources,Education Statistics,12
+SE.PRM.INFR.2.R,(De Facto) Percent of schools with drinking water - Rural,sources,Education Statistics,12
+SE.PRM.INFR.2.U,(De Facto) Percent of schools with drinking water - Urban,sources,Education Statistics,12
+SE.PRM.INFR.3,(De Facto) Percent of schools with functioning toilets,sources,Education Statistics,12
+SE.PRM.INFR.3.R,(De Facto) Percent of schools with functioning toilets - Rural,sources,Education Statistics,12
+SE.PRM.INFR.3.U,(De Facto) Percent of schools with functioning toilets - Urban,sources,Education Statistics,12
+SE.PRM.INFR.4,(De Facto) Percent of schools with access to electricity,sources,Education Statistics,12
+SE.PRM.INFR.4.R,(De Facto) Percent of schools with access to electricity - Rural,sources,Education Statistics,12
+SE.PRM.INFR.4.U,(De Facto) Percent of schools with access to electricity - Urban,sources,Education Statistics,12
+SE.PRM.INFR.5,(De Facto) Percent of schools with access to internet,sources,Education Statistics,12
+SE.PRM.INFR.5.R,(De Facto) Percent of schools with access to internet - Rural,sources,Education Statistics,12
+SE.PRM.INFR.5.U,(De Facto) Percent of schools with access to internet - Urban,sources,Education Statistics,12
+SE.PRM.INFR.6,(De Facto) Percent of schools accessible to children with special needs,sources,Education Statistics,12
+SE.PRM.INFR.6.R,(De Facto) Percent of schools accessible to children with special needs - Rural,sources,Education Statistics,12
+SE.PRM.INFR.6.U,(De Facto) Percent of schools accessible to children with special needs - Urban,sources,Education Statistics,12
+SE.PRM.INPT,Basic Inputs,sources,Education Statistics,12
+SE.PRM.INPT.1,(De Facto) Average number of classroom inputs in classrooms,sources,Education Statistics,12
+SE.PRM.INPT.1.R,(De Facto) Average number of classroom inputs in classrooms - Rural,sources,Education Statistics,12
+SE.PRM.INPT.1.U,(De Facto) Average number of classroom inputs in classrooms - Urban,sources,Education Statistics,12
+SE.PRM.INPT.2,(De Facto) Percent of classrooms with a functional blackboard and chalk,sources,Education Statistics,12
+SE.PRM.INPT.2.R,(De Facto) Percent of classrooms with a functional blackboard and chalk - Rural,sources,Education Statistics,12
+SE.PRM.INPT.2.U,(De Facto) Percent of classrooms with a functional blackboard and chalk - Urban,sources,Education Statistics,12
+SE.PRM.INPT.3,"(De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books",sources,Education Statistics,12
+SE.PRM.INPT.3.R,"(De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Rural",sources,Education Statistics,12
+SE.PRM.INPT.3.U,"(De facto) Percent of classrooms equipped with pens/pencils, textbooks, and exercise books - Urban",sources,Education Statistics,12
+SE.PRM.INPT.4,(De Facto) Percent of classrooms with basic classroom furniture,sources,Education Statistics,12
+SE.PRM.INPT.4.R,(De Facto) Percent of classrooms with basic classroom furniture - Rural,sources,Education Statistics,12
+SE.PRM.INPT.4.U,(De Facto) Percent of classrooms with basic classroom furniture - Urban,sources,Education Statistics,12
+SE.PRM.INPT.5,(De Facto) Percent of schools with access to EdTech,sources,Education Statistics,12
+SE.PRM.INPT.5.R,(De Facto) Percent of schools with access to EdTech - Rural,sources,Education Statistics,12
+SE.PRM.INPT.5.U,(De Facto) Percent of schools with access to EdTech - Urban,sources,Education Statistics,12
+SE.PRM.ISTD,Policy Lever (Inputs & Infrastructure) - Standards,sources,Education Statistics,12
+SE.PRM.ISTD.1,(De Jure) Is there a policy in place to require that students have access to the prescribed textbooks?,sources,Education Statistics,12
+SE.PRM.ISTD.10,(De Facto) Do you know if there is a policy in place to require that schools have access to drinking water?,sources,Education Statistics,12
+SE.PRM.ISTD.11,(De Jure) Is there a policy in place to require that schools have functioning toilets?,sources,Education Statistics,12
+SE.PRM.ISTD.12,(De Facto) Do you know if there is a policy in place to require that schools have functioning toilets?,sources,Education Statistics,12
+SE.PRM.ISTD.13,(De Jure) Is there a policy in place to require that schools are accessible to children with special needs?,sources,Education Statistics,12
+SE.PRM.ISTD.14,(De Facto) Do you know if there is there a policy in place to require that schools are accessible to children with special needs?,sources,Education Statistics,12
+SE.PRM.ISTD.2,(De Facto) Do you know if there is a policy in place to require that students have access to the prescribed textbooks?,sources,Education Statistics,12
+SE.PRM.ISTD.3,(De Jure) Is there a national connectivity program?,sources,Education Statistics,12
+SE.PRM.ISTD.4,(De Facto) Do you know if there is a national connectivity program?,sources,Education Statistics,12
+SE.PRM.ISTD.5,"(De Jure) Is there a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?",sources,Education Statistics,12
+SE.PRM.ISTD.6,"(De Facto) Do you know if there is a policy in place to require that students have access to PCs, laptops, tablets, and/or other computing devices?",sources,Education Statistics,12
+SE.PRM.ISTD.7,(De Jure) Is there a policy in place to require that schools have access to electricity?,sources,Education Statistics,12
+SE.PRM.ISTD.8,(De Facto) Do you know if there is a policy in place to require that schools have access to electricity?,sources,Education Statistics,12
+SE.PRM.ISTD.9,(De Jure) Is there a policy in place to require that schools have access to drinking water?,sources,Education Statistics,12
+SE.PRM.ISTD.DF,(De Facto) Policy Lever (Inputs & Infrastructure) - Standards,sources,Education Statistics,12
+SE.PRM.ISTD.DJ,(De Jure) Policy Lever (Inputs & Infrastructure) - Standards,sources,Education Statistics,12
+SE.PRM.LCAP,Student Readiness,sources,Education Statistics,12
+SE.PRM.LCAP.1,(De Facto) Average developmental score for 1st Graders,sources,Education Statistics,12
+SE.PRM.LCAP.1.F,(De Facto) Average developmental score for 1st Graders - Female,sources,Education Statistics,12
+SE.PRM.LCAP.1.M,(De Facto) Average developmental score for 1st Graders - Male,sources,Education Statistics,12
+SE.PRM.LCAP.1.R,(De Facto) Average developmental score for 1st Graders - Rural,sources,Education Statistics,12
+SE.PRM.LCAP.1.U,(De Facto) Average developmental score for 1st Graders - Urban,sources,Education Statistics,12
+SE.PRM.LCAP.2,(De Facto) Average numeracy score for 1st Graders,sources,Education Statistics,12
+SE.PRM.LCAP.2.F,(De Facto) Average numeracy score for 1st Graders - Female,sources,Education Statistics,12
+SE.PRM.LCAP.2.M,(De Facto) Average numeracy score for 1st Graders - Male,sources,Education Statistics,12
+SE.PRM.LCAP.2.R,(De Facto) Average numeracy score for 1st Graders - Rural,sources,Education Statistics,12
+SE.PRM.LCAP.2.U,(De Facto) Average numeracy score for 1st Graders - Urban,sources,Education Statistics,12
+SE.PRM.LCAP.3,(De Facto) Average literacy score for 1st Graders,sources,Education Statistics,12
+SE.PRM.LCAP.3.F,(De Facto) Average literacy score for 1st Graders - Female,sources,Education Statistics,12
+SE.PRM.LCAP.3.M,(De Facto) Average literacy score for 1st Graders - Male,sources,Education Statistics,12
+SE.PRM.LCAP.3.R,(De Facto) Average literacy score for 1st Graders - Rural,sources,Education Statistics,12
+SE.PRM.LCAP.3.U,(De Facto) Average literacy score for 1st Graders - Urban,sources,Education Statistics,12
+SE.PRM.LCAP.4,(De Facto) Average executive funcion score for 1st Graders,sources,Education Statistics,12
+SE.PRM.LCAP.4.F,(De Facto) Average executive funcion score for 1st Graders - Female,sources,Education Statistics,12
+SE.PRM.LCAP.4.M,(De Facto) Average executive funcion score for 1st Graders - Male,sources,Education Statistics,12
+SE.PRM.LCAP.4.R,(De Facto) Average executive funcion score for 1st Graders - Rural,sources,Education Statistics,12
+SE.PRM.LCAP.4.U,(De Facto) Average executive funcion score for 1st Graders - Urban,sources,Education Statistics,12
+SE.PRM.LCAP.5,(De Facto) Average socioemotional score for 1st Graders,sources,Education Statistics,12
+SE.PRM.LCAP.5.F,(De Facto) Average socioemotional score for 1st Graders - Female,sources,Education Statistics,12
+SE.PRM.LCAP.5.M,(De Facto) Average socioemotional score for 1st Graders - Male,sources,Education Statistics,12
+SE.PRM.LCAP.5.R,(De Facto) Average socioemotional score for 1st Graders - Rural,sources,Education Statistics,12
+SE.PRM.LCAP.5.U,(De Facto) Average socioemotional score for 1st Graders - Urban,sources,Education Statistics,12
+SE.PRM.LCBC,Policy Lever (Learners) - Center-Based Care,sources,Education Statistics,12
+SE.PRM.LCBC.1,(De Jure) Is there a policy that guarantees free education for some or all grades and ages included in pre-primary education (for children age 0-83 months)?,sources,Education Statistics,12
+SE.PRM.LCBC.2,(De Facto) Percent of children age 36-59 months who are attending an early childhood education programme,sources,Education Statistics,12
+SE.PRM.LCBC.3,(De Jure) Are there developmental standards established for early childhood care and education?,sources,Education Statistics,12
+SE.PRM.LCBC.4,"(De Jure) According to laws and regulations, are there requirement to become an early childhood educator, pre-primary teacher?",sources,Education Statistics,12
+SE.PRM.LCBC.5,"(De Jure) According to policy, are ECCE professionals working at public or private centers required to complete in-service training in ECCE service delivery?",sources,Education Statistics,12
+SE.PRM.LCBC.DF,(De Facto) Policy Lever (Learners) - Center-Based Care,sources,Education Statistics,12
+SE.PRM.LCBC.DJ,(De Jure) Policy Lever (Learners) - Center-Based Care,sources,Education Statistics,12
+SE.PRM.LERN,Proficiency on GEPD Assessment,sources,Education Statistics,12
+SE.PRM.LERN.1,(De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey,sources,Education Statistics,12
+SE.PRM.LERN.1.F,(De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Female,sources,Education Statistics,12
+SE.PRM.LERN.1.M,(De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Male,sources,Education Statistics,12
+SE.PRM.LERN.1.R,(De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Rural,sources,Education Statistics,12
+SE.PRM.LERN.1.U,(De Facto) Percent of children proficient in literacy and numeracy according to GEPD School Survey - Urban,sources,Education Statistics,12
+SE.PRM.LERN.2,(De Facto) Percent of children proficient in literacy according to GEPD School Survey,sources,Education Statistics,12
+SE.PRM.LERN.2.F,(De Facto) Percent of children proficient in literacy according to GEPD School Survey - Female,sources,Education Statistics,12
+SE.PRM.LERN.2.M,(De Facto) Percent of children proficient in literacy according to GEPD School Survey - Male,sources,Education Statistics,12
+SE.PRM.LERN.2.R,(De Facto) Percent of children proficient in literacy according to GEPD School Survey - Rural,sources,Education Statistics,12
+SE.PRM.LERN.2.U,(De Facto) Percent of children proficient in literacy according to GEPD School Survey - Urban,sources,Education Statistics,12
+SE.PRM.LERN.3,(De Facto) Percent of children proficient in numeracy according to GEPD School Survey,sources,Education Statistics,12
+SE.PRM.LERN.3.F,(De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Female,sources,Education Statistics,12
+SE.PRM.LERN.3.M,(De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Male,sources,Education Statistics,12
+SE.PRM.LERN.3.R,(De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Rural,sources,Education Statistics,12
+SE.PRM.LERN.3.U,(De Facto) Percent of children proficient in numeracy according to GEPD School Survey - Urban,sources,Education Statistics,12
+SE.PRM.LFCP,Policy Lever (Learners) - Caregiver Capacity – Financial Capacity,sources,Education Statistics,12
+SE.PRM.LFCP.1,(De Jure) Are anti poverty interventions that focus on ECD publicly supported?,sources,Education Statistics,12
+SE.PRM.LFCP.2,(De Jure) Are cash transfers conditional on ECD services/enrollment publicly supported?,sources,Education Statistics,12
+SE.PRM.LFCP.3,(De Jure) Are cash transfers focused partially on ECD publicly supported?,sources,Education Statistics,12
+SE.PRM.LFCP.4,(De Facto) Coverage of social protection programs,sources,Education Statistics,12
+SE.PRM.LFCP.DF,(De Facto) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity,sources,Education Statistics,12
+SE.PRM.LFCP.DJ,(De Jure) Policy Lever (Learners) - Caregiver Capacity – Financial Capacity,sources,Education Statistics,12
+SE.PRM.LHTH,Policy Lever (Learners) - Health,sources,Education Statistics,12
+SE.PRM.LHTH.1,(De Jure) Are young children required to receive a complete course of childhood immunizations?,sources,Education Statistics,12
+SE.PRM.LHTH.2,(De Facto) Percent of children who at age 24-35 months had received all vaccinations recommended in the national immunization schedule,sources,Education Statistics,12
+SE.PRM.LHTH.3,(De Jure) Is there a policy that assures access to healthcare for young children? Either by offering these services free or by subsidizing them,sources,Education Statistics,12
+SE.PRM.LHTH.4,(De Facto) Percent of children under 5 covered by health insurance,sources,Education Statistics,12
+SE.PRM.LHTH.5,(De Jure) Are deworming pills funded and distributed by the government?,sources,Education Statistics,12
+SE.PRM.LHTH.6,(De Facto) Percent of children age 6-59 months who received deworming medication,sources,Education Statistics,12
+SE.PRM.LHTH.7,(De Jure) Is there a policy that guarantees pregnant women free antenatal visits and skilled delivery?,sources,Education Statistics,12
+SE.PRM.LHTH.8,(De Facto) Percent of women age 15-49 years with a live birth in the last 2 years whose most recent live birth was delivered in a health facility,sources,Education Statistics,12
+SE.PRM.LHTH.DF,(De Facto) Policy Lever (Learners) - Health,sources,Education Statistics,12
+SE.PRM.LHTH.DJ,(De Jure) Policy Lever (Learners) - Health,sources,Education Statistics,12
+SE.PRM.LNTN,Policy Lever (Learners) - Nutrition Programs,sources,Education Statistics,12
+SE.PRM.LNTN.1,(De Jure) Does a national policy to encourage salt iodization exist?,sources,Education Statistics,12
+SE.PRM.LNTN.2,(De Facto) Percent of households with salt testing positive for any iodide among households,sources,Education Statistics,12
+SE.PRM.LNTN.3,"(De Jure) Does a national policy exist to encourage iron fortification of staples like wheat, maize, or rice?",sources,Education Statistics,12
+SE.PRM.LNTN.4,(De Facto) Percent of children age 6–23 months who had at least the minimum dietary diversity and the minimum meal frequency during the previous day,sources,Education Statistics,12
+SE.PRM.LNTN.5,(De Jure) Does a national policy exist to encourage breastfeeding?,sources,Education Statistics,12
+SE.PRM.LNTN.6,(De Facto) Percent of children born in the five (three) years preceding the survey who were ever breastfed,sources,Education Statistics,12
+SE.PRM.LNTN.7,(De Jure) Is there a publicly funded school feeding program?,sources,Education Statistics,12
+SE.PRM.LNTN.8,(De Facto) Percent of schools reporting having publicly funded school feeding program,sources,Education Statistics,12
+SE.PRM.LNTN.DF,(De Facto) Policy Lever (Learners) - Nutrition Programs,sources,Education Statistics,12
+SE.PRM.LNTN.DJ,(De Jure) Policy Lever (Learners) - Nutrition Programs,sources,Education Statistics,12
+SE.PRM.LSKC,Policy Lever (Learners) - Caregiver Capacity – Skills Capacity,sources,Education Statistics,12
+SE.PRM.LSKC.1,(De Jure) Does the government offer programs that aim to share good parenting practices with caregivers?,sources,Education Statistics,12
+SE.PRM.LSKC.2,"(De Jure) Are any of the following publicly-supported delivery channels used to reach families in order to promote early childhood stimulation? Home visits, Group sessions, Community health programs, Health center waiting rooms, School-based groups, Mass media/Information campaigns",sources,Education Statistics,12
+SE.PRM.LSKC.3,(De Facto) Percent of children under age 5 who have three or more children’s books,sources,Education Statistics,12
+SE.PRM.LSKC.4,(De Facto) Percent of children age 24-59 months engaged in four or more activities to provide early stimulation and responsive care in the last 3 days with any adult in the household,sources,Education Statistics,12
+SE.PRM.LSKC.DF,(De Facto) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity,sources,Education Statistics,12
+SE.PRM.LSKC.DJ,(De Jure) Policy Lever (Learners) - Caregiver Capacity – Skills Capacity,sources,Education Statistics,12
+SE.PRM.NENR,"School enrollment, primary (% net)",topics,Education,4
+SE.PRM.NENR.FE,"School enrollment, primary, female (% net)",topics,Education,4
+SE.PRM.NENR.MA,"School enrollment, primary, male (% net)",topics,Education,4
+SE.PRM.NENR.ZS,Net Enrollment Ratio: Primary (in %),sources,Indonesia Database for Policy and Economic Research,45
+SE.PRM.NINT.FE.ZS,"Net intake rate in grade 1, female (% of official school-age population)",topics,Education,4
+SE.PRM.NINT.MA.ZS,"Net intake rate in grade 1, male (% of official school-age population)",topics,Education,4
+SE.PRM.NINT.ZS,Net intake rate in grade 1 (% of official school-age population),topics,Education,4
+SE.PRM.OENR.FE.ZS,"Over-age students, primary, female (% of female enrollment)",topics,Education,4
+SE.PRM.OENR.MA.ZS,"Over-age students, primary, male (% of male enrollment)",topics,Education,4
+SE.PRM.OENR.ZS,"Over-age students, primary (% of enrollment)",topics,Education,4
+SE.PRM.OPMN,Operational Management,sources,Education Statistics,12
+SE.PRM.OPMN.1,(De Facto) Average score for the presence and quality of core operational management functions,sources,Education Statistics,12
+SE.PRM.OPMN.1.F,(De Facto) Average score for the presence and quality of core operational management functions - Female,sources,Education Statistics,12
+SE.PRM.OPMN.1.M,(De Facto) Average score for the presence and quality of core operational management functions - Male,sources,Education Statistics,12
+SE.PRM.OPMN.1.R,(De Facto) Average score for the presence and quality of core operational management functions - Rural,sources,Education Statistics,12
+SE.PRM.OPMN.1.U,(De Facto) Average score for the presence and quality of core operational management functions - Urban,sources,Education Statistics,12
+SE.PRM.OPMN.2,(De Facto) Average score for infrastructure repair/maintenance,sources,Education Statistics,12
+SE.PRM.OPMN.2.F,(De Facto) Average score for infrastructure repair/maintenance - Female,sources,Education Statistics,12
+SE.PRM.OPMN.2.M,(De Facto) Average score for infrastructure repair/maintenance - Male,sources,Education Statistics,12
+SE.PRM.OPMN.2.R,(De Facto) Average score for infrastructure repair/maintenance - Rural,sources,Education Statistics,12
+SE.PRM.OPMN.2.U,(De Facto) Average score for infrastructure repair/maintenance - Urban,sources,Education Statistics,12
+SE.PRM.OPMN.3,(De Facto) Average score for ensuring availability of school inputs,sources,Education Statistics,12
+SE.PRM.OPMN.3.F,(De Facto) Average score for ensuring availability of school inputs - Female,sources,Education Statistics,12
+SE.PRM.OPMN.3.M,(De Facto) Average score for ensuring availability of school inputs - Male,sources,Education Statistics,12
+SE.PRM.OPMN.3.R,(De Facto) Average score for ensuring availability of school inputs - Rural,sources,Education Statistics,12
+SE.PRM.OPMN.3.U,(De Facto) Average score for ensuring availability of school inputs - Urban,sources,Education Statistics,12
+SE.PRM.PEDG,Teacher Pedagogical Skills,sources,Education Statistics,12
+SE.PRM.PEDG.1,(De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score),sources,Education Statistics,12
+SE.PRM.PEDG.1.F,(De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Female,sources,Education Statistics,12
+SE.PRM.PEDG.1.M,(De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Male,sources,Education Statistics,12
+SE.PRM.PEDG.1.R,(De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Rural,sources,Education Statistics,12
+SE.PRM.PEDG.1.U,(De Facto) Percent of teachers with good pedagogical skills (3 or above on Teach overall score) - Urban,sources,Education Statistics,12
+SE.PRM.PEDG.2,(De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score),sources,Education Statistics,12
+SE.PRM.PEDG.2.F,(De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Female,sources,Education Statistics,12
+SE.PRM.PEDG.2.M,(De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Male,sources,Education Statistics,12
+SE.PRM.PEDG.2.R,(De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Rural,sources,Education Statistics,12
+SE.PRM.PEDG.2.U,(De Facto) Percent of teachers with good classroom culture practices (3 or above on Teach Classroom Culture score) - Urban,sources,Education Statistics,12
+SE.PRM.PEDG.3,(De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score),sources,Education Statistics,12
+SE.PRM.PEDG.3.F,(De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Female,sources,Education Statistics,12
+SE.PRM.PEDG.3.M,(De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Male,sources,Education Statistics,12
+SE.PRM.PEDG.3.R,(De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Rural,sources,Education Statistics,12
+SE.PRM.PEDG.3.U,(De Facto) Percent of teachers with good instruction practices (3 or above on Teach Instruction score) - Urban,sources,Education Statistics,12
+SE.PRM.PEDG.4,(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score),sources,Education Statistics,12
+SE.PRM.PEDG.4.F,(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Female,sources,Education Statistics,12
+SE.PRM.PEDG.4.M,(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Male,sources,Education Statistics,12
+SE.PRM.PEDG.4.R,(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Rural,sources,Education Statistics,12
+SE.PRM.PEDG.4.U,(De Facto) Percent of teachers with good practices on socioemotional skills (3 or above on Teach Socioemotional Skills score) - Urban,sources,Education Statistics,12
+SE.PRM.PKNW,Principal School Knowledge,sources,Education Statistics,12
+SE.PRM.PKNW.1,(De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school,sources,Education Statistics,12
+SE.PRM.PKNW.1.F,(De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Female,sources,Education Statistics,12
+SE.PRM.PKNW.1.M,(De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Male,sources,Education Statistics,12
+SE.PRM.PKNW.1.R,(De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Rural,sources,Education Statistics,12
+SE.PRM.PKNW.1.U,(De Facto) Average score for the extent to which principals are familiar with certain key aspects of the day-to-day workings of the school - Urban,sources,Education Statistics,12
+SE.PRM.PKNW.2,(De Facto) Percent of principals familiar with teachers' content knowledge,sources,Education Statistics,12
+SE.PRM.PKNW.2.F,(De Facto) Percent of principals familiar with teachers' content knowledge - Female,sources,Education Statistics,12
+SE.PRM.PKNW.2.M,(De Facto) Percent of principals familiar with teachers' content knowledge - Male,sources,Education Statistics,12
+SE.PRM.PKNW.2.R,(De Facto) Percent of principals familiar with teachers' content knowledge - Rural,sources,Education Statistics,12
+SE.PRM.PKNW.2.U,(De Facto) Percent of principals familiar with teachers' content knowledge - Urban,sources,Education Statistics,12
+SE.PRM.PKNW.3,(De Facto) Percent of principals familiar with teachers' experience,sources,Education Statistics,12
+SE.PRM.PKNW.3.F,(De Facto) Percent of principals familiar with teachers' experience - Female,sources,Education Statistics,12
+SE.PRM.PKNW.3.M,(De Facto) Percent of principals familiar with teachers' experience - Male,sources,Education Statistics,12
+SE.PRM.PKNW.3.R,(De Facto) Percent of principals familiar with teachers' experience - Rural,sources,Education Statistics,12
+SE.PRM.PKNW.3.U,(De Facto) Percent of principals familiar with teachers' experience - Urban,sources,Education Statistics,12
+SE.PRM.PKNW.4,(De Facto) Percent of principals familiar with availability of classroom inputs,sources,Education Statistics,12
+SE.PRM.PKNW.4.F,(De Facto) Percent of principals familiar with availability of classroom inputs - Female,sources,Education Statistics,12
+SE.PRM.PKNW.4.M,(De Facto) Percent of principals familiar with availability of classroom inputs - Male,sources,Education Statistics,12
+SE.PRM.PKNW.4.R,(De Facto) Percent of principals familiar with availability of classroom inputs - Rural,sources,Education Statistics,12
+SE.PRM.PKNW.4.U,(De Facto) Percent of principals familiar with availability of classroom inputs - Urban,sources,Education Statistics,12
+SE.PRM.PMAN,Principal Management Skills,sources,Education Statistics,12
+SE.PRM.PMAN.1,"(De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term",sources,Education Statistics,12
+SE.PRM.PMAN.1.F,"(De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Female",sources,Education Statistics,12
+SE.PRM.PMAN.1.M,"(De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Male",sources,Education Statistics,12
+SE.PRM.PMAN.1.R,"(De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Rural",sources,Education Statistics,12
+SE.PRM.PMAN.1.U,"(De Facto) Average score for the extent to which principals master two key managerial skills - problem-solving in the short-term, and goal-setting in the long term - Urban",sources,Education Statistics,12
+SE.PRM.PMAN.2,(De Facto) Average score for the extent to which principals master problem-solving in the short-term,sources,Education Statistics,12
+SE.PRM.PMAN.2.F,(De Facto) Average score for the extent to which principals master problem-solving in the short-term - Female,sources,Education Statistics,12
+SE.PRM.PMAN.2.M,(De Facto) Average score for the extent to which principals master problem-solving in the short-term - Male,sources,Education Statistics,12
+SE.PRM.PMAN.2.R,(De Facto) Average score for the extent to which principals master problem-solving in the short-term - Rural,sources,Education Statistics,12
+SE.PRM.PMAN.2.U,(De Facto) Average score for the extent to which principals master problem-solving in the short-term - Urban,sources,Education Statistics,12
+SE.PRM.PMAN.3,(De Facto) Average score for the extent to which principals master goal-setting in the long term,sources,Education Statistics,12
+SE.PRM.PMAN.3.F,(De Facto) Average score for the extent to which principals master goal-setting in the long term - Female,sources,Education Statistics,12
+SE.PRM.PMAN.3.M,(De Facto) Average score for the extent to which principals master goal-setting in the long term - Male,sources,Education Statistics,12
+SE.PRM.PMAN.3.R,(De Facto) Average score for the extent to which principals master goal-setting in the long term - Rural,sources,Education Statistics,12
+SE.PRM.PMAN.3.U,(De Facto) Average score for the extent to which principals master goal-setting in the long term - Urban,sources,Education Statistics,12
+SE.PRM.PRIV.ZS,"School enrollment, primary, private (% of total primary)",topics,Education,4
+SE.PRM.PROE,Proficiency by Grade 2/3,sources,Education Statistics,12
+SE.PRM.PROE.1,"(De Facto) Percent of children proficient in literacy and numeracy by grade 2/3, as reported by UIS",sources,Education Statistics,12
+SE.PRM.PRS4.FE.ZS,"Persistence to grade 4, female (% of cohort)",sources,WDI Database Archives,57
+SE.PRM.PRS4.MA.ZS,"Persistence to grade 4, male (% of cohort)",sources,WDI Database Archives,57
+SE.PRM.PRS4.ZS,"Persistence to grade 4, total (% of cohort)",sources,WDI Database Archives,57
+SE.PRM.PRS5.FE.ZS,"Persistence to grade 5, female (% of cohort)",topics,Education,4
+SE.PRM.PRS5.MA.ZS,"Persistence to grade 5, male (% of cohort)",topics,Education,4
+SE.PRM.PRS5.ZS,"Persistence to grade 5, total (% of cohort)",topics,Education,4
+SE.PRM.PRSL.FE.ZS,"Persistence to last grade of primary, female (% of cohort)",topics,Education,4
+SE.PRM.PRSL.MA.ZS,"Persistence to last grade of primary, male (% of cohort)",topics,Education,4
+SE.PRM.PRSL.ZS,"Persistence to last grade of primary, total (% of cohort)",topics,Education,4
+SE.PRM.PTRA,Primary school pupil-teacher ratio,sources,WDI Database Archives,57
+SE.PRM.REPT.FE.ZS,"Repeaters, primary, female (% of female enrollment)",topics,Education,4
+SE.PRM.REPT.MA.ZS,"Repeaters, primary, male (% of male enrollment)",topics,Education,4
+SE.PRM.REPT.ZS,"Repeaters, primary, total (% of total enrollment)",topics,Education,4
+SE.PRM.SATT,Policy Lever (School Management) - Attraction,sources,Education Statistics,12
+SE.PRM.SATT.1,(De Jure) Do the national policies governing the education system portray the position of principal or head teacher as professionalized and distinct figure within schools?,sources,Education Statistics,12
+SE.PRM.SATT.2,(De Facto) Average principal salary as percent of GDP per capita,sources,Education Statistics,12
+SE.PRM.SATT.3,(De Facto) Percent of principals reporting being satisfied or very satisfied with their social status in the community,sources,Education Statistics,12
+SE.PRM.SATT.DF,(De Facto) Policy Lever (School Management) - Attraction,sources,Education Statistics,12
+SE.PRM.SATT.DJ,(De Jure) Policy Lever (School Management) - Attraction,sources,Education Statistics,12
+SE.PRM.SCFN,Policy Lever (School Management) - Clarity of Functions,sources,Education Statistics,12
+SE.PRM.SCFN.1,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the maintenance and expansion of school infrastructure?,sources,Education Statistics,12
+SE.PRM.SCFN.10,(De Jure) Do the policies governing schools assign the responsibility of student learning assessments?,sources,Education Statistics,12
+SE.PRM.SCFN.11,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal hiring and assignment?,sources,Education Statistics,12
+SE.PRM.SCFN.12,(De Jure) Do the policies governing schools assign the responsibility of principal hiring and assignment?,sources,Education Statistics,12
+SE.PRM.SCFN.13,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of principal supervision and training?,sources,Education Statistics,12
+SE.PRM.SCFN.14,(De Jure) Do the policies governing schools assign the responsibility of principal supervision and training?,sources,Education Statistics,12
+SE.PRM.SCFN.2,(De Jure) Do the policies governing schools assign the responsibility of maintenance and expansion of school infrastructure?,sources,Education Statistics,12
+SE.PRM.SCFN.3,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of the procurement of materials?,sources,Education Statistics,12
+SE.PRM.SCFN.4,(De Jure) Do the policies governing schools assign the responsibility of procurement of materials?,sources,Education Statistics,12
+SE.PRM.SCFN.5,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher hiring and assignment?,sources,Education Statistics,12
+SE.PRM.SCFN.6,(De Jure) Do the policies governing schools assign the responsibility of teacher hiring and assignment?,sources,Education Statistics,12
+SE.PRM.SCFN.7,"(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of teacher supervision, training, and coaching?",sources,Education Statistics,12
+SE.PRM.SCFN.8,"(De Jure) Do the policies governing schools assign the responsibility of teacher supervision, training, and coaching?",sources,Education Statistics,12
+SE.PRM.SCFN.9,(De Facto) Do you know if the policies governing schools assign responsibility for the implementation of student learning assessments?,sources,Education Statistics,12
+SE.PRM.SCFN.DF,(De Facto) Policy Lever (School Management) - Clarity of Functions,sources,Education Statistics,12
+SE.PRM.SCFN.DJ,(De Jure) Policy Lever (School Management) - Clarity of Functions,sources,Education Statistics,12
+SE.PRM.SEVL,Policy Lever (School Management) - Evaluation,sources,Education Statistics,12
+SE.PRM.SEVL.1,(De Jure) Is there a policy that specifies the need to monitor principal or head teacher performance?,sources,Education Statistics,12
+SE.PRM.SEVL.2,(De Jure) Is the criteria to evaluate principals clear and includes multiple factors?,sources,Education Statistics,12
+SE.PRM.SEVL.3,(De Facto) Percent of principals that report having been evaluated during the last school year,sources,Education Statistics,12
+SE.PRM.SEVL.4,(De Facto) Percent of principals that report having been evaluated on multiple factors,sources,Education Statistics,12
+SE.PRM.SEVL.5,(De Facto) Percent of principals that report there would be consequences after two negative evaluations,sources,Education Statistics,12
+SE.PRM.SEVL.6,(De Facto) Percent of principals that report there would be consequences after two positive evaluations,sources,Education Statistics,12
+SE.PRM.SEVL.DF,(De Facto) Policy Lever (School Management) - Evaluation,sources,Education Statistics,12
+SE.PRM.SEVL.DJ,(De Jure) Policy Lever (School Management) - Evaluation,sources,Education Statistics,12
+SE.PRM.SSLD,Policy Lever (School Management) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.SSLD.1,(De Jure) Is there a systematic approach/rubric for the selection of principals?,sources,Education Statistics,12
+SE.PRM.SSLD.10,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is years of experience,sources,Education Statistics,12
+SE.PRM.SSLD.11,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is quality of teaching,sources,Education Statistics,12
+SE.PRM.SSLD.12,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is demonstrated management qualities,sources,Education Statistics,12
+SE.PRM.SSLD.13,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is having a good relationship with the owner of the school,sources,Education Statistics,12
+SE.PRM.SSLD.14,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is political affiliations,sources,Education Statistics,12
+SE.PRM.SSLD.15,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is ethnic group,sources,Education Statistics,12
+SE.PRM.SSLD.16,(De Facto) Percent of principals that report that the most important factor considered when selecting a principal is knowledge of the local community,sources,Education Statistics,12
+SE.PRM.SSLD.2,"(De Jure) How are the principals selected? Based on the requirements, is the selection system meritocratic?",sources,Education Statistics,12
+SE.PRM.SSLD.3,(De Facto) Percent of principals that report that the factors considered when selecting a principal include years of experience,sources,Education Statistics,12
+SE.PRM.SSLD.4,(De Facto) Percent of principals that report that the factors considered when selecting a principal include quality of teaching,sources,Education Statistics,12
+SE.PRM.SSLD.5,(De Facto) Percent of principals that report that the factors considered when selecting a principal include demonstrated management qualities,sources,Education Statistics,12
+SE.PRM.SSLD.6,(De Facto) Percent of principals that report that the factors considered when selecting a principal include good relationship with the owner of the school,sources,Education Statistics,12
+SE.PRM.SSLD.7,(De Facto) Percent of principals that report that the factors considered when selecting a principal include political affiliations,sources,Education Statistics,12
+SE.PRM.SSLD.8,(De Facto) Percent of principals that report that the factors considered when selecting a principal include ethnic group,sources,Education Statistics,12
+SE.PRM.SSLD.9,(De Facto) Percent of principals that report that the factors considered when selecting a principal include knowledge of the local community,sources,Education Statistics,12
+SE.PRM.SSLD.DF,(De Facto) Policy Lever (School Management) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.SSLD.DJ,(De Jure) Policy Lever (School Management) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.SSUP,Policy Lever (School Management) - Support,sources,Education Statistics,12
+SE.PRM.SSUP.1,(De Jure) Are principals required to have training on how to manage a school?,sources,Education Statistics,12
+SE.PRM.SSUP.10,(De Facto) Percent of principals that report having used the skills they gained at the last training they attended,sources,Education Statistics,12
+SE.PRM.SSUP.11,(De Facto) Average number of trainings that principals report having been offered to them in the past year,sources,Education Statistics,12
+SE.PRM.SSUP.2,(De Jure) Are principals required to have management training for new principals?,sources,Education Statistics,12
+SE.PRM.SSUP.3,(De Jure) Are principals required to have in-service training?,sources,Education Statistics,12
+SE.PRM.SSUP.4,(De Jure) Are principals required to have mentoring/coaching by experienced principals?,sources,Education Statistics,12
+SE.PRM.SSUP.5,(De Jure) How many times per year do principals have trainings?,sources,Education Statistics,12
+SE.PRM.SSUP.6,(De Facto) Percent of principals that report ever having received formal training,sources,Education Statistics,12
+SE.PRM.SSUP.7,(De Facto) Percent of principals that report having received management training for new principals,sources,Education Statistics,12
+SE.PRM.SSUP.8,(De Facto) Percent of principals that report having received in-service training,sources,Education Statistics,12
+SE.PRM.SSUP.9,(De Facto) Percent of principals that report having received mentoring/coaching by experienced principals,sources,Education Statistics,12
+SE.PRM.SSUP.DF,(De Facto) Policy Lever (School Management) - Support,sources,Education Statistics,12
+SE.PRM.SSUP.DJ,(De Jure) Policy Lever (School Management) - Support,sources,Education Statistics,12
+SE.PRM.TATT,Policy Lever (Teaching) - Attraction,sources,Education Statistics,12
+SE.PRM.TATT.1,(De Jure) Average starting public-school teacher salary as percent of GDP per capita,sources,Education Statistics,12
+SE.PRM.TATT.2,(De Facto) Percent of teachers reporting being satisfied or very satisfied with their social status in the community,sources,Education Statistics,12
+SE.PRM.TATT.3,(De Facto) Percent of teachers reporting being satisfied or very satisfied with their job as teacher,sources,Education Statistics,12
+SE.PRM.TATT.4,(De Facto) Percent of teachers reporting having received financial bonuses in addition to their salaries,sources,Education Statistics,12
+SE.PRM.TATT.5,(De Facto) Percent of teachers reporting that there are incentives (financial or otherwise) for teachers to teach certain subjects/grades and/or in certain areas,sources,Education Statistics,12
+SE.PRM.TATT.6,(De Facto) Percent of teachers that performance matters for promotions,sources,Education Statistics,12
+SE.PRM.TATT.7,(De Jure) Is there a well-established career path for teachers?,sources,Education Statistics,12
+SE.PRM.TATT.8,(De Facto) Percent of teachers that report salary delays in the past 12 months,sources,Education Statistics,12
+SE.PRM.TATT.DF,(De Facto) Policy Lever (Teaching) - Attraction,sources,Education Statistics,12
+SE.PRM.TATT.DJ,(De Jure) Policy Lever (Teaching) - Attraction,sources,Education Statistics,12
+SE.PRM.TCAQ.FE.ZS,"Trained teachers in primary education, female (% of female teachers)",topics,Education,4
+SE.PRM.TCAQ.MA.ZS,"Trained teachers in primary education, male (% of male teachers)",topics,Education,4
+SE.PRM.TCAQ.ZS,Trained teachers in primary education (% of total teachers),topics,Education,4
+SE.PRM.TCHR,"Primary education, teachers",topics,Education,4
+SE.PRM.TCHR.FE,"Teachers in primary education, female (number)",topics,Education,4
+SE.PRM.TCHR.FE.ZS,"Primary education, teachers (% female)",topics,Education,4
+SE.PRM.TENR,"Adjusted net enrollment rate, primary (% of primary school age children)",topics,Education,4
+SE.PRM.TENR.1,(De Facto) Percent of primary school age children who are enrolled at primary education,sources,Education Statistics,12
+SE.PRM.TENR.FE,"Adjusted net enrollment rate, primary, female (% of primary school age children)",topics,Education,4
+SE.PRM.TENR.MA,"Adjusted net enrollment rate, primary, male (% of primary school age children)",topics,Education,4
+SE.PRM.TEVL,Policy Lever (Teaching) - Evaluation,sources,Education Statistics,12
+SE.PRM.TEVL.1,"(De Jure) Legislation assigns responsibility of evaluating the performance of teachers to a public authority (national, regional, local)",sources,Education Statistics,12
+SE.PRM.TEVL.2,(De Jure) Legislation assigns responsibility of evaluating the performance of teachers to the schools,sources,Education Statistics,12
+SE.PRM.TEVL.3,(De Facto) Percent of teachers that report being evaluated in the past 12 months,sources,Education Statistics,12
+SE.PRM.TEVL.4,(De Jure) The criteria to evaluate teachers is clear,sources,Education Statistics,12
+SE.PRM.TEVL.5,(De Facto) Number of criteria used to evaluate teachers,sources,Education Statistics,12
+SE.PRM.TEVL.6,(De Facto) Percent of teachers that report there would be consequences after two negative evaluations,sources,Education Statistics,12
+SE.PRM.TEVL.7,(De Facto) Percent of teachers that report there would be consequences after two positive evaluations,sources,Education Statistics,12
+SE.PRM.TEVL.8,(De Jure) There are clear consequences for teachers who receive two or more negative evaluations,sources,Education Statistics,12
+SE.PRM.TEVL.9,(De Jure) There are clear consequences for teachers who receive two or more positive evaluations,sources,Education Statistics,12
+SE.PRM.TEVL.DF,(De Facto) Policy Lever (Teaching) - Evaluation,sources,Education Statistics,12
+SE.PRM.TEVL.DJ,(De Jure) Policy Lever (Teaching) - Evaluation,sources,Education Statistics,12
+SE.PRM.TINM,Policy Lever (Teaching) - Intrinsic Motivation,sources,Education Statistics,12
+SE.PRM.TINM.1,"(De Facto) Percent of teachers that agree or strongly agrees with ""It is acceptable for a teacher to be absent if the assigned curriculum has been completed""",sources,Education Statistics,12
+SE.PRM.TINM.10,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students can change even their basic intelligence level considerably""",sources,Education Statistics,12
+SE.PRM.TINM.11,(De Facto) Percent of teachers who state that intrinsic motivation was the main reason to become teachers,sources,Education Statistics,12
+SE.PRM.TINM.12,(De Facto) New teachers are required to undergo a probationary period,sources,Education Statistics,12
+SE.PRM.TINM.13,(De Jure) New teachers are required to undergo a probationary period,sources,Education Statistics,12
+SE.PRM.TINM.2,"(De Facto) Percent of teachers that agree or strongly agrees with ""It is acceptable for a teacher to be absent if students are left with work to do""",sources,Education Statistics,12
+SE.PRM.TINM.3,"(De Facto) Percent of teachers that agree or strongly agrees with ""It is acceptable for a teacher to be absent if the teacher is doing something useful for the community""",sources,Education Statistics,12
+SE.PRM.TINM.4,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students deserve more attention if they attend school regularly""",sources,Education Statistics,12
+SE.PRM.TINM.5,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students deserve more attention if they come to school with materials""",sources,Education Statistics,12
+SE.PRM.TINM.6,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students deserve more attention if they are motivated to learn""",sources,Education Statistics,12
+SE.PRM.TINM.7,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students have a certain amount of intelligence and they really can’t do much to change it""",sources,Education Statistics,12
+SE.PRM.TINM.8,"(De Facto) Percent of teachers that agree or strongly agrees with ""To be honest, students can’t really change how intelligent they are""",sources,Education Statistics,12
+SE.PRM.TINM.9,"(De Facto) Percent of teachers that agree or strongly agrees with ""Students can always substantially change how intelligent they are""",sources,Education Statistics,12
+SE.PRM.TINM.DF,(De Facto) Policy Lever (Teaching) - Intrinsic Motivation,sources,Education Statistics,12
+SE.PRM.TINM.DJ,(De Jure) Policy Lever (Teaching) - Intrinsic Motivation,sources,Education Statistics,12
+SE.PRM.TMNA,Policy Lever (Teaching) - Monitoring & Accountability,sources,Education Statistics,12
+SE.PRM.TMNA.1,(De Jure) Information on teacher presence/absenteeism is being collected on a regular basis,sources,Education Statistics,12
+SE.PRM.TMNA.2,(De Jure) Teachers receive monetary compensation for being present,sources,Education Statistics,12
+SE.PRM.TMNA.3,(De Facto) Teacher report receiving monetary compensation (aside from salary) for being present,sources,Education Statistics,12
+SE.PRM.TMNA.4,(De Facto) Percent of teachers that report having been absent because of administrative processes,sources,Education Statistics,12
+SE.PRM.TMNA.5,(De Facto) Percent of teachers that report that there would be consequences for being absent 40% of the time,sources,Education Statistics,12
+SE.PRM.TMNA.DF,(De Facto) Policy Lever (Teaching) - Monitoring & Accountability,sources,Education Statistics,12
+SE.PRM.TMNA.DJ,(De Jure) Policy Lever (Teaching) - Monitoring & Accountability,sources,Education Statistics,12
+SE.PRM.TSDP,Policy Lever (Teaching) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.TSDP.1,(De Jure) Requirements to enter into initial education programs,sources,Education Statistics,12
+SE.PRM.TSDP.2,(De Facto) Average quality of applicants accepted into initial education programs,sources,Education Statistics,12
+SE.PRM.TSDP.3,(De Jure) Requirements to become a primary school teacher,sources,Education Statistics,12
+SE.PRM.TSDP.4,(De Facto) Requirements to become a primary school teacher,sources,Education Statistics,12
+SE.PRM.TSDP.5,(De Jure) Requirements to fulfill a transfer request,sources,Education Statistics,12
+SE.PRM.TSDP.6,(De Facto) Requirements to fulfill a transfer request,sources,Education Statistics,12
+SE.PRM.TSDP.7,(De Jure) Selectivity of teacher hiring process,sources,Education Statistics,12
+SE.PRM.TSDP.DF,(De Facto) Policy Lever (Teaching) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.TSDP.DJ,(De Jure) Policy Lever (Teaching) - Selection & Deployment,sources,Education Statistics,12
+SE.PRM.TSUP,Policy Lever (Teaching) - Support,sources,Education Statistics,12
+SE.PRM.TSUP.1,(De Jure) Practicum required as part of pre-service training,sources,Education Statistics,12
+SE.PRM.TSUP.2,(De Facto) Percent reporting they completed a practicum as part of pre-service training,sources,Education Statistics,12
+SE.PRM.TSUP.3,(De Facto) Percent of teachers reporting that they participated in an induction and/or mentorship program,sources,Education Statistics,12
+SE.PRM.TSUP.4,(De Jure) Participation in professional development has professional implications for teachers,sources,Education Statistics,12
+SE.PRM.TSUP.5,(De Facto) Percent of teachers reporting having attended in-service trainings in the past 12 months,sources,Education Statistics,12
+SE.PRM.TSUP.6,(De Facto) Average length of the trainings attended,sources,Education Statistics,12
+SE.PRM.TSUP.7,(De Facto) Average span of time (in weeks) of those trainings,sources,Education Statistics,12
+SE.PRM.TSUP.8,(De Facto) Average percent of time spent inside the classrooms during the trainings,sources,Education Statistics,12
+SE.PRM.TSUP.9,(De Facto) Percent of teachers that report having opportunities to come together with other teachers to discuss ways of improving teaching,sources,Education Statistics,12
+SE.PRM.TSUP.DF,(De Facto) Policy Lever (Teaching) - Support,sources,Education Statistics,12
+SE.PRM.TSUP.DJ,(De Jure) Policy Lever (Teaching) - Support,sources,Education Statistics,12
+SE.PRM.UNER,"Children out of school, primary",topics,Education,4
+SE.PRM.UNER.FE,"Children out of school, primary, female",topics,Education,4
+SE.PRM.UNER.FE.ZS,"Children out of school, female (% of female primary school age)",topics,Education,4
+SE.PRM.UNER.MA,"Children out of school, primary, male",topics,Education,4
+SE.PRM.UNER.MA.ZS,"Children out of school, male (% of male primary school age)",topics,Education,4
+SE.PRM.UNER.Q1.ZS,"Children out of school, primary, poorest quintile (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.UNER.Q5.ZS,"Children out of school, primary, richest quintile (% of relevant age group, DHS/MICS)",sources,WDI Database Archives,57
+SE.PRM.UNER.ZS,Children out of school (% of primary school age),topics,Education,4
+SE.SCH.EFIC.ZS,Education coefficient of efficiency (ideal years to graduate as % of actual),sources,WDI Database Archives,57
+SE.SCH.LIFE,"School life expectancy, primary to tertiary, both sexes (years)",sources,Africa Development Indicators,11
+SE.SCH.LIFE.FE,"School life expectancy, primary to tertiary, female (years)",topics,Gender,17
+SE.SCH.LIFE.MA,"School life expectancy, primary to tertiary, male (years)",topics,Gender,17
+SE.SCHL.JRSEC,Number of schools at Junior Secondary Level,sources,Indonesia Database for Policy and Economic Research,45
+SE.SCHL.PRM,Number of schools at Primary Level,sources,Indonesia Database for Policy and Economic Research,45
+SE.SCHL.SRSEC,Number of schools at Senior Secondary level,sources,Indonesia Database for Policy and Economic Research,45
+SE.SEC.AGEE.ZS,"Age efficiency, secondary (net enrollment as % of gross)",sources,WDI Database Archives,57
+SE.SEC.AGES,Lower secondary school starting age (years),topics,Education,4
+SE.SEC.CMPT.LO.FE.ZS,"Lower secondary completion rate, female (% of relevant age group)",topics,Education,4
+SE.SEC.CMPT.LO.MA.ZS,"Lower secondary completion rate, male (% of relevant age group)",topics,Education,4
+SE.SEC.CMPT.LO.ZS,"Lower secondary completion rate, total (% of relevant age group)",topics,Education,4
+SE.SEC.CUAT.LO.FE.ZS,"Educational attainment, at least completed lower secondary, population 25+, female (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.LO.MA.ZS,"Educational attainment, at least completed lower secondary, population 25+, male (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.LO.ZS,"Educational attainment, at least completed lower secondary, population 25+, total (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.PO.FE.ZS,"Educational attainment, at least completed post-secondary, population 25+, female (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.PO.MA.ZS,"Educational attainment, at least completed post-secondary, population 25+, male (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.PO.ZS,"Educational attainment, at least completed post-secondary, population 25+, total (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.UP.FE.ZS,"Educational attainment, at least completed upper secondary, population 25+, female (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.UP.MA.ZS,"Educational attainment, at least completed upper secondary, population 25+, male (%) (cumulative)",topics,Education,4
+SE.SEC.CUAT.UP.ZS,"Educational attainment, at least completed upper secondary, population 25+, total (%) (cumulative)",topics,Education,4
+SE.SEC.DURS,"Secondary education, duration (years)",topics,Education,4
+SE.SEC.DURS.LO,Theoretical duration of lower secondary education (years),topics,Education,4
+SE.SEC.DURS.UP,Theoretical duration of upper secondary education (years),topics,Education,4
+SE.SEC.ENRL,"Secondary education, pupils",topics,Education,4
+SE.SEC.ENRL.FE,"Enrolment in secondary education, female (number)",topics,Education,4
+SE.SEC.ENRL.FE.VO.ZS,"Vocational and Technical enrolment (% of total secondary enrolment), female",topics,Education,4
+SE.SEC.ENRL.FE.ZS,"Secondary education, pupils (% female)",topics,Education,4
+SE.SEC.ENRL.GC,"Secondary education, general pupils",topics,Education,4
+SE.SEC.ENRL.GC.FE.ZS,"Secondary education, general pupils (% female)",topics,Education,4
+SE.SEC.ENRL.LO.TC.ZS,"Pupil-teacher ratio, lower secondary",topics,Education,4
+SE.SEC.ENRL.MA.VO.ZS,Share of male students in secondary education enrolled in vocational programmes (%),topics,Education,4
+SE.SEC.ENRL.TC.ZS,"Pupil-teacher ratio, secondary",topics,Education,4
+SE.SEC.ENRL.UP.TC.ZS,"Pupil-teacher ratio, upper secondary",topics,Education,4
+SE.SEC.ENRL.VO,"Secondary education, vocational pupils",topics,Education,4
+SE.SEC.ENRL.VO.FE.ZS,"Secondary education, vocational pupils (% female)",topics,Education,4
+SE.SEC.ENRL.VO.ZS,Share of all students in secondary education enrolled in vocational programmes (%),topics,Education,4
+SE.SEC.ENRR,"School enrollment, secondary (% gross)",topics,Education,4
+SE.SEC.ENRR.FE,"School enrollment, secondary, female (% gross)",topics,Education,4
+SE.SEC.ENRR.LO,"Gross enrolment ratio, lower secondary, both sexes (%)",topics,Education,4
+SE.SEC.ENRR.LO.FE,"Gross enrolment ratio, lower secondary, female (%)",topics,Education,4
+SE.SEC.ENRR.LO.MA,"Gross enrolment ratio, lower secondary, male (%)",topics,Education,4
+SE.SEC.ENRR.MA,"School enrollment, secondary, male (% gross)",topics,Education,4
+SE.SEC.ENRR.MF,"School Enroll. Ratio, secondary (%)",sources,WDI Database Archives,57
+SE.SEC.ENRR.UP,"Gross enrolment ratio, upper secondary, both sexes (%)",topics,Education,4
+SE.SEC.ENRR.UP.FE,"Gross enrolment ratio, upper secondary, female (%)",topics,Education,4
+SE.SEC.ENRR.UP.MA,"Gross enrolment ratio, upper secondary, male (%)",topics,Education,4
+SE.SEC.NENR,"School enrollment, secondary (% net)",topics,Education,4
+SE.SEC.NENR.FE,"School enrollment, secondary, female (% net)",topics,Education,4
+SE.SEC.NENR.MA,"School enrollment, secondary, male (% net)",topics,Education,4
+SE.SEC.PRIV.ZS,"School enrollment, secondary, private (% of total secondary)",topics,Education,4
+SE.SEC.PROG.FE.ZS,"Progression to secondary school, female (%)",topics,Education,4
+SE.SEC.PROG.MA.ZS,"Progression to secondary school, male (%)",topics,Education,4
+SE.SEC.PROG.ZS,Progression to secondary school (%),topics,Education,4
+SE.SEC.REPT.FE.ZS,"Repeaters, secondary, female (% of female enrollment)",sources,WDI Database Archives,57
+SE.SEC.REPT.MA.ZS,"Repeaters, secondary, male (% of male enrollment)",sources,WDI Database Archives,57
+SE.SEC.REPT.ZS,"Repeaters, secondary, total (% of total enrollment)",sources,WDI Database Archives,57
+SE.SEC.TCAQ.FE.ZS,"Trained teachers in secondary education, female (% of female teachers)",topics,Education,4
+SE.SEC.TCAQ.LO.FE.ZS,"Trained teachers in lower secondary education, female (% of female teachers)",topics,Education,4
+SE.SEC.TCAQ.LO.MA.ZS,"Trained teachers in lower secondary education, male (% of male teachers)",topics,Education,4
+SE.SEC.TCAQ.LO.ZS,Trained teachers in lower secondary education (% of total teachers),topics,Education,4
+SE.SEC.TCAQ.MA.ZS,"Trained teachers in secondary education, male (% of male teachers)",topics,Education,4
+SE.SEC.TCAQ.UP.FE.ZS,"Trained teachers in upper secondary education, female (% of female teachers)",topics,Education,4
+SE.SEC.TCAQ.UP.MA.ZS,"Trained teachers in upper secondary education, male (% of male teachers)",topics,Education,4
+SE.SEC.TCAQ.UP.ZS,Trained teachers in upper secondary education (% of total teachers),topics,Education,4
+SE.SEC.TCAQ.ZS,Trained teachers in secondary education (% of total teachers),topics,Education,4
+SE.SEC.TCHR,"Secondary education, teachers",topics,Education,4
+SE.SEC.TCHR.FE,"Secondary education, teachers, female",topics,Education,4
+SE.SEC.TCHR.FE.ZS,"Secondary education, teachers (% female)",topics,Education,4
+SE.SEC.TCHR.GC,"Secondary education, general teachers",sources,WDI Database Archives,57
+SE.SEC.TCHR.GC.FE.ZS,"Secondary education, general teachers (% female)",sources,WDI Database Archives,57
+SE.SEC.TCHR.VO,"Secondary education, vocational teachers",sources,WDI Database Archives,57
+SE.SEC.TCHR.VO.FE.ZS,"Secondary education, vocational teachers (% female)",sources,WDI Database Archives,57
+SE.SEC.UNER,"Children out of school, secondary",sources,WDI Database Archives,57
+SE.SEC.UNER.FE,"Children out of school, secondary, female",sources,WDI Database Archives,57
+SE.SEC.UNER.FE.ZS,"Children out of school, secondary, female (% of relevant age group)",sources,WDI Database Archives,57
+SE.SEC.UNER.LO.FE.ZS,"Adolescents out of school, female (% of female lower secondary school age)",topics,Education,4
+SE.SEC.UNER.LO.MA.ZS,"Adolescents out of school, male (% of male lower secondary school age)",topics,Education,4
+SE.SEC.UNER.LO.ZS,Adolescents out of school (% of lower secondary school age),topics,Education,4
+SE.SEC.UNER.MA,"Children out of school, secondary, male",sources,WDI Database Archives,57
+SE.SEC.UNER.MA.ZS,"Children out of school, secondary, male (% of relevant age group)",sources,WDI Database Archives,57
+SE.SEC.UNER.ZS,"Children out of school, secondary (% of relevant age group)",sources,WDI Database Archives,57
+SE.SRSEC.NENR.ZS,Net Enrollment Ratio: Senior Secondary (in %),sources,Indonesia Database for Policy and Economic Research,45
+SE.STUD.JRSEC,"Number of Student: Junior Secondary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.STUD.PRM,"Number of Student: Primary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.STUD.SRSEC,"Number of Student: Senior Secondary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.TCHR.JRSEC,"Number of Teacher: Junior Secondary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.TCHR.PRM,"Number of Teacher: Primary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.TCHR.SRSEC,"Number of Teacher: Senior Secondary Level (in number of people, 2009 data only)",sources,Indonesia Database for Policy and Economic Research,45
+SE.TER.CMPL.FE.ZS,"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, female (%)",topics,Education,4
+SE.TER.CMPL.MA.ZS,"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, male (%)",topics,Education,4
+SE.TER.CMPL.ZS,"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, both sexes (%)",topics,Education,4
+SE.TER.CUAT.BA.FE.ZS,"Educational attainment, at least Bachelor's or equivalent, population 25+, female (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.BA.MA.ZS,"Educational attainment, at least Bachelor's or equivalent, population 25+, male (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.BA.ZS,"Educational attainment, at least Bachelor's or equivalent, population 25+, total (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.DO.FE.ZS,"Educational attainment, Doctoral or equivalent, population 25+, female (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.DO.MA.ZS,"Educational attainment, Doctoral or equivalent, population 25+, male (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.DO.ZS,"Educational attainment, Doctoral or equivalent, population 25+, total (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.MS.FE.ZS,"Educational attainment, at least Master's or equivalent, population 25+, female (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.MS.MA.ZS,"Educational attainment, at least Master's or equivalent, population 25+, male (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.MS.ZS,"Educational attainment, at least Master's or equivalent, population 25+, total (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.ST.FE.ZS,"Educational attainment, at least completed short-cycle tertiary, population 25+, female (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.ST.MA.ZS,"Educational attainment, at least completed short-cycle tertiary, population 25+, male (%) (cumulative)",topics,Education,4
+SE.TER.CUAT.ST.ZS,"Educational attainment, at least completed short-cycle tertiary, population 25+, total (%) (cumulative)",topics,Education,4
+SE.TER.ENRL,"Enrolment in tertiary education, all programmes, both sexes (number)",topics,Education,4
+SE.TER.ENRL.FE,"Enrolment in tertiary education, all programmes, female (number)",topics,Education,4
+SE.TER.ENRL.FE.ZS,"Tertiary education, pupils (% female)",topics,Education,4
+SE.TER.ENRL.TC.ZS,"Pupil-teacher ratio, tertiary",topics,Education,4
+SE.TER.ENRR,"School enrollment, tertiary (% gross)",topics,Education,4
+SE.TER.ENRR.FE,"School enrollment, tertiary, female (% gross)",topics,Education,4
+SE.TER.ENRR.MA,"School enrollment, tertiary, male (% gross)",topics,Education,4
+SE.TER.GRAD.AG.ZS,"Percentage of graduates from tertiary education graduating from Agriculture, Forestry, Fisheries and Veterinary programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.ED.ZS,"Percentage of graduates from tertiary education graduating from Education programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.EN.ZS,"Percentage of graduates from tertiary education graduating from Engineering, Manufacturing and Construction programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.FE.AG.ZS,"Female share of graduates in Agriculture, Forestry, Fisheries and Veterinary programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.ED.ZS,"Female share of graduates in Education programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.EN.ZS,"Female share of graduates in Engineering, Manufacturing and Construction programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.HL.ZS,"Female share of graduates in Health and Welfare programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.HU.ZS,"Female share of graduates in Arts and Humanities programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.OT.ZS,"Female share of graduates in unknown or unspecified fields, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.SC.ZS,"Female share of graduates in Natural Sciences, Mathematics and Statistics programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.SI.ZS,"Female share of graduates from Science, Technology, Engineering and Mathematics (STEM) programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.SS.ZS,"Female share of graduates in Social Sciences, Journalism and Information programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.FE.SV.ZS,"Female share of graduates in Services programmes, tertiary (%)",topics,Education,4
+SE.TER.GRAD.HL.ZS,"Percentage of graduates from tertiary education graduating from Health and Welfare programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.HU.ZS,"Percentage of graduates from tertiary education graduating from Arts and Humanities programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.OT.ZS,"Percentage of graduates from tertiary education graduating from programmes in unspecified fields, both sexes (%)",topics,Education,4
+SE.TER.GRAD.SC.ZS,"Percentage of graduates from tertiary education graduating from Natural Sciences, Mathematics and Statistics programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.SS.ZS,"Percentage of graduates from tertiary education graduating from Social Sciences, Journalism and Information programmes, both sexes (%)",topics,Education,4
+SE.TER.GRAD.SV.ZS,"Percentage of graduates from tertiary education graduating from Services programmes, both sexes (%)",topics,Education,4
+SE.TER.PRIV.ZS,Percentage of enrolment in tertiary education in private institutions (%),topics,Education,4
+SE.TER.SCIE.ZS,Science and engineering students (% of total tertiary students),sources,WDI Database Archives,57
+SE.TER.TCHR,"Teachers in tertiary education programmes, both sexes (number)",topics,Education,4
+SE.TER.TCHR.FE,"Teachers in tertiary education programmes, female (number)",topics,Education,4
+SE.TER.TCHR.FE.ZS,"Tertiary education, academic staff (% female)",topics,Education,4
+SE.TOT.ENRR,"Gross enrolment ratio, primary to tertiary, both sexes (%)",topics,Education,4
+SE.XPD.CPRM.ZS,"Current education expenditure, primary (% of total expenditure in primary public institutions)",topics,Education,4
+SE.XPD.CSEC.ZS,"Current education expenditure, secondary (% of total expenditure in secondary public institutions)",topics,Education,4
+SE.XPD.CTER.ZS,"Current education expenditure, tertiary (% of total expenditure in tertiary public institutions)",topics,Education,4
+SE.XPD.CTOT.ZS,"Current education expenditure, total (% of total expenditure in public institutions)",topics,Education,4
+SE.XPD.CUR.TOTL.ZS,Current expenditure as % of total expenditure in public institutions (%),topics,Education,4
+SE.XPD.EDUC.ZS,Public Expenditure on Education (% GDP),sources,WDI Database Archives,57
+SE.XPD.MPRM.ZS,"All education staff compensation, primary (% of total expenditure in primary public institutions)",topics,Education,4
+SE.XPD.MSEC.ZS,"All education staff compensation, secondary (% of total expenditure in secondary public institutions)",topics,Education,4
+SE.XPD.MTER.ZS,"All education staff compensation, tertiary (% of total expenditure in tertiary public institutions)",topics,Education,4
+SE.XPD.MTOT.ZS,"All education staff compensation, total (% of total expenditure in public institutions)",topics,Education,4
+SE.XPD.PRIM.GDP.ZS,"Public spending on education, primary (% of GDP)",sources,WDI Database Archives,57
+SE.XPD.PRIM.PC.ZS,"Government expenditure per student, primary (% of GDP per capita)",topics,Education,4
+SE.XPD.PRIM.ZS,Expenditure on primary education (% of government expenditure on education),topics,Education,4
+SE.XPD.PTCH.ZS,"Spending on teaching materials, primary (% of primary expenditure)",topics,Education,4
+SE.XPD.SECO.GDP.ZS,"Public spending on education, secondary (% of GDP)",sources,WDI Database Archives,57
+SE.XPD.SECO.PC.ZS,"Government expenditure per student, secondary (% of GDP per capita)",topics,Education,4
+SE.XPD.SECO.ZS,Expenditure on secondary education (% of government expenditure on education),topics,Education,4
+SE.XPD.STCH.ZS,"Spending on teaching materials, secondary (% of secondary expenditure)",topics,Education,4
+SE.XPD.TCHR.XC.ZS,Teachers' salaries (% of current education expenditure),topics,Education,4
+SE.XPD.TERT.GDP.ZS,"Public spending on education, tertiary (% of GDP)",sources,WDI Database Archives,57
+SE.XPD.TERT.PC.ZS,"Government expenditure per student, tertiary (% of GDP per capita)",topics,Education,4
+SE.XPD.TERT.ZS,Expenditure on tertiary education (% of government expenditure on education),topics,Education,4
+SE.XPD.TOTL.GB.ZS,"Government expenditure on education, total (% of government expenditure)",topics,Education,4
+SE.XPD.TOTL.GD.ZS,"Government expenditure on education, total (% of GDP)",topics,Education,4
+SE.XPD.TOTL.GN.ZS,"Public spending on education, total (% of GNI, UNESCO)",sources,WDI Database Archives,57
+SE.YRS.SCHL.1519.Q1,"Average years of schooling, poorest quintile (ages 15-19, DHS/MICS)",sources,WDI Database Archives,57
+SE.YRS.SCHL.1519.Q5,"Average years of schooling, richest quintile (ages 15-19, DHS/MICS)",sources,WDI Database Archives,57
+SF.CMN.FAX.TH,"Fax machines (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.ICALL.3MN.CD,"International telecom, average price call to USA (US$ per 3 min.)",sources,WDI Database Archives,57
+SF.CMN.ICALL.MN.SU,"International telecom, outgoing traffic (minutes per subscriber)",sources,WDI Database Archives,57
+SF.CMN.INET.USER.10K,"Internet users (per 10,000 people)",sources,WDI Database Archives,57
+SF.CMN.MNLN.TH,"Telephone mainlines (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.NEWS.TH,"Daily newspapers (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.PC.TH,"Personal computers (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.PHON.CELL.TH,"Mobile phones (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.PHON.LCTY.ZS,Telephone mainlines in largest city (% of total),sources,WDI Database Archives,57
+SF.CMN.PHON.LN.WAIT,"Telephone mainlines, waiting time (years)",sources,WDI Database Archives,57
+SF.CMN.RDIO.TH,"Radios (per 1,000 people)",sources,WDI Database Archives,57
+SF.CMN.TELE.TH,"Television sets (per 1,000 people)",sources,WDI Database Archives,57
+SF.TRN.AIR.DPRT,Aircraft departures (thousands),sources,WDI Database Archives,57
+SF.TRN.AIR.GDS,"Air transport, freight (ton-km)",sources,WDI Database Archives,57
+SF.TRN.AIR.PSGR,"Air transport, passengers carried (thousands)",sources,WDI Database Archives,57
+SF.TRN.RAIL.GDS,"Railways, goods transported (million ton-km)",sources,WDI Database Archives,57
+SF.TRN.RAIL.KM.ZS,Rail traffic (km per million US$ GDP),sources,WDI Database Archives,57
+SG.ABS.PENB,There are periods of absence due to childcare accounted for in pension benefits (1=yes; 0=no),topics,Gender,17
+SG.AGE.FUPN.EQ,The age at which women and men can retire with full pension benefits is the same (1=yes; 0=no),topics,Gender,17
+SG.AGE.MRET.EQ,The mandatory retirement age for women and men is the same (1=yes; 0=no),topics,Gender,17
+SG.AGE.PAPN.EQ,The age at which women and men can retire with partial pension benefits is the same (1=yes; 0=no),topics,Gender,17
+SG.AGE.RTRE.FE,"Mandatory retirement age, female",topics,Gender,17
+SG.AGE.RTRE.FL.FE,"Retirement age with full benefits, female",topics,Gender,17
+SG.AGE.RTRE.FL.MA,"Retirement age with full benefits, male",topics,Gender,17
+SG.AGE.RTRE.MA,"Mandatory retirement age, male",topics,Gender,17
+SG.AGE.RTRE.PL.FE,"Retirement age with partial benefits, female",topics,Gender,17
+SG.AGE.RTRE.PL.MA,"Retirement age with partial benefits, male",topics,Gender,17
+SG.APL.PSPT.EQ,A woman can apply for a passport in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.BUS.REGT.EQ,A woman can register a business in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.CNT.SIGN.EQ,A woman can sign a contract in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.COK.CHCO.ZS,Main cooking fuel: charcoal (% of households),topics,Gender,17
+SG.COK.CROP.ZS,Main cooking fuel: agricultural crop (% of households),topics,Gender,17
+SG.COK.DUNG.ZS,Main cooking fuel: dung (% of households),topics,Gender,17
+SG.COK.ELEC.ZS,Main cooking fuel: electricity (% of households),topics,Gender,17
+SG.COK.HOUS.ZS,Location of cooking: inside the house (% of households),topics,Gender,17
+SG.COK.LPGN.ZS,Main cooking fuel: LPG/natural gas/biogas (% of households),topics,Gender,17
+SG.COK.OTHR.ZS,Location of cooking: other places (% of households),topics,Gender,17
+SG.COK.OUTD.ZS,Location of cooking: outdoors (% of households),topics,Gender,17
+SG.COK.SBLD.ZS,Location of cooking: separate building (% of households),topics,Gender,17
+SG.COK.STRW.ZS,Main cooking fuel: straw/shrubs/grass (% of households),topics,Gender,17
+SG.COK.WOOD.ZS,Main cooking fuel: wood (% of households),topics,Gender,17
+SG.CTR.TRVL.EQ,A woman can travel outside the country in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.DMK.ALLD.FN.ZS,"Women participating in the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)",topics,Gender,17
+SG.DMK.DPCH.FN.ZS,Women participating in making daily purchase decisions (% of women age 15-49),topics,Gender,17
+SG.DMK.FOOD.FN.ZS,Women participating in decision of what food to cook daily (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.FN.ZS,Women participating in own health care decisions (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.HB.ZS,Decision maker about a woman's own health care: mainly husband (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.OT.ZS,Decision maker about a woman's own health care: other (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.SE.ZS,Decision maker about a woman's own health care: someone else (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.WF.ZS,Decision maker about a woman's own health care: mainly wife (% of women age 15-49),topics,Gender,17
+SG.DMK.HLTH.WH.ZS,Decision maker about a woman's own health care: wife and husband jointly (% of women age 15-49),topics,Gender,17
+SG.DMK.NONE.FN.ZS,"Women participating in none of the three decisions (own health care, major household purchases, and visiting family) (% of women age 15-49)",topics,Gender,17
+SG.DMK.PRCH.FN.ZS,Women participating in making major household purchase decisions (% of women age 15-49),topics,Gender,17
+SG.DMK.PRCH.HB.ZS,Decision maker about major household purchases: mainly husband (% of women age 15-49),topics,Gender,17
+SG.DMK.PRCH.OT.ZS,Decision maker about major household purchases: other (% of women age 15-49),topics,Gender,17
+SG.DMK.PRCH.SE.ZS,Decision maker about major household purchases: someone else (% of women age 15-49),topics,Gender,17
+SG.DMK.PRCH.WF.ZS,Decision maker about major household purchases: mainly wife (% of women age 15-49),topics,Gender,17
+SG.DMK.PRCH.WH.ZS,Decision maker about major household purchases: wife and husband jointly (% of women age 15-49),topics,Gender,17
+SG.DMK.SRCR.FN.ZS,"Women making their own informed decisions regarding sexual relations, contraceptive use and reproductive health care (% of women age 15-49)",topics,Gender,17
+SG.DMK.VISI.FN.ZS,"Women participating in decision of visits to family, relatives, friends (% of women age 15-49)",topics,Gender,17
+SG.DMK.VISI.HB.ZS,Decision maker about a woman's visits to her family or relatives: mainly husband (% of women age 15-49),topics,Gender,17
+SG.DMK.VISI.OT.ZS,Decision maker about a woman's visits to her family or relatives: other (% of women age 15-49),topics,Gender,17
+SG.DMK.VISI.SE.ZS,Decision maker about a woman's visits to her family or relatives: someone else (% of women age 15-49),topics,Gender,17
+SG.DMK.VISI.WF.ZS,Decision maker about a woman's visits to her family or relatives: mainly wife (% of women age 15-49),topics,Gender,17
+SG.DMK.VISI.WH.ZS,Decision maker about Visits to her family or relatives: wife and husband jointly (% of women age 15-49),topics,Gender,17
+SG.DML.PRGW,Dismissal of pregnant workers is prohibited (1=yes; 0=no),topics,Gender,17
+SG.DNG.WORK.DN.EQ,A woman can work in a job deemed dangerous in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.GEN.LSOM.ZS,"Female legislators, senior officials and managers (% of total)",sources,WDI Database Archives,57
+SG.GEN.MNST.ZS,Proportion of women in ministerial level positions (%),topics,Gender,17
+SG.GEN.PARL.ZS,Proportion of seats held by women in national parliaments (%),topics,Public Sector,13
+SG.GEN.TECH.ZS,Female professional and technical workers (% of total),topics,Gender,17
+SG.GET.JOBS.EQ,A woman can get a job in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.H2O.PRMS.HH.ZS,Households with water on the premises (%),topics,Gender,17
+SG.H2O.TL30.HH.ZS,Households with water less than 30 minutes away round trip (%),topics,Gender,17
+SG.H2O.TM30.HH.ZS,Households with water 30 minutes or longer away round trip (%),topics,Gender,17
+SG.HLD.HEAD.EQ,"A woman can be ""head of household"" in the same way as a man (1=yes; 0=no)",topics,Gender,17
+SG.HME.TRVL.EQ,A woman can travel outside her home in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.IHT.ASST.EQ,Male and female surviving spouses have equal rights to inherit assets (1=yes; 0=no),topics,Gender,17
+SG.IHT.ASST.PT.EQ,Sons and daughters have equal rights to inherit assets from their parents (1=yes; 0=no),topics,Gender,17
+SG.IND.WORK.EQ,A woman can work in an industrial job in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.JOB.NOPN.EQ,Nonpregnant and nonnursing women can do the same jobs as men (1=yes; 0=no),topics,Public Sector,13
+SG.LAW.ASST.AR,The law grants spouses equal administrative authority over assets during marriage (1=yes; 0=no),topics,Gender,17
+SG.LAW.CHMR,Law prohibits or invalidates child or early marriage (1=yes; 0=no),topics,Public Sector,13
+SG.LAW.CRDD.GR,The law prohibits discrimination in access to credit based on gender (1=yes; 0=no),topics,Gender,17
+SG.LAW.EQRM.WK,Law mandates equal remuneration for females and males for work of equal value (1=yes; 0=no),topics,Public Sector,13
+SG.LAW.INDX,Women Business and the Law Index Score (scale 1-100),topics,Gender,17
+SG.LAW.INDX.AS,"Women, Business and the Law: Assets Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.EN,"Women, Business and the Law: Entrepreneurship Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.MO,"Women, Business and the Law: Mobility Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.MR,"Women, Business and the Law: Marriage Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.PE,"Women, Business and the Law: Pension Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.PR,"Women, Business and the Law: Parenthood Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.PY,"Women, Business and the Law: Pay Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.INDX.WP,"Women, Business and the Law: Workplace Indicator Score (scale 1-100)",sources,Gender Statistics,14
+SG.LAW.LEVE.PU,Law mandates paid or unpaid maternity leave (1=yes; 0=no),topics,Public Sector,13
+SG.LAW.NMCN,The law provides for the valuation of nonmonetary contributions (1=yes; 0=no),topics,Gender,17
+SG.LAW.NODC.HR,The law prohibits discrimination in employment based on gender (1=yes; 0=no),topics,Public Sector,13
+SG.LAW.OBHB.MR.NO,The law is free of legal provisions that require a married woman to obey her husband (1=yes; 0=no),topics,Gender,17
+SG.LEG.DVAW,There is legislation specifically addressing domestic violence (1=yes; 0=no),topics,Public Sector,13
+SG.LEG.SXHR.EM,There is legislation on sexual harassment in employment (1=yes; 0=no),topics,Gender,17
+SG.LOC.LIVE.EQ,A woman can choose where to live in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.MHG.PADP.RU.ZS,"Women and girls who participate in activities during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.PADP.UR.ZS,"Women and girls who participate in activities during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.PADP.ZS,Women and girls who participate in activities during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year),sources,Gender Statistics,14
+SG.MHG.PPDP.RU.ZS,"Women and girls who have private places to wash and change during menstrual period, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.PPDP.UR.ZS,"Women and girls who have private places to wash and change during menstrual period, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.PPDP.ZS,Women and girls who have private places to wash and change during menstrual period (% of women and girls ages 15-49 who had a menstrual period within the last year),sources,Gender Statistics,14
+SG.MHG.UMDP.RU.ZS,"Women and girls who use menstrual materials, rural (% of women and girls ages 15-49 living in rural areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.UMDP.UR.ZS,"Women and girls who use menstrual materials, urban (% of women and girls ages 15-49 living in urban areas who had a menstrual period within the last year)",sources,Gender Statistics,14
+SG.MHG.UMDP.ZS,Women and girls who use menstrual materials (% of women and girls ages 15-49 who had a menstrual period within the last year),sources,Gender Statistics,14
+SG.MMR.LEVE.EP,Mothers are guaranteed an equivalent position after maternity leave (1=yes; 0=no),topics,Public Sector,13
+SG.NGT.WORK.EQ,A woman can work at night in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.NOD.CONS,Nondiscrimination clause mentions gender in the constitution (1=yes; 0=no),topics,Public Sector,13
+SG.OBT.DVRC.EQ,A woman can obtain a judgment of divorce in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.OPN.BANK.EQ,A woman can open a bank account in the same way as a man (1=yes; 0=no),topics,Gender,17
+SG.OWN.HSAJ.FE.Q1.ZS,Women who own a house both alone and jointly (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSAJ.FE.Q2.ZS,Women who own a house both alone and jointly (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.HSAJ.FE.Q3.ZS,Women who own a house both alone and jointly (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.HSAJ.FE.Q4.ZS,Women who own a house both alone and jointly (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.HSAJ.FE.Q5.ZS,Women who own a house both alone and jointly (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSAJ.FE.ZS,Women who own a house both alone and jointly (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.Q1.ZS,Men who own a house both alone and jointly (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.Q2.ZS,Men who own a house both alone and jointly (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.Q3.ZS,Men who own a house both alone and jointly (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.Q4.ZS,Men who own a house both alone and jointly (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.Q5.ZS,Men who own a house both alone and jointly (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSAJ.MA.ZS,Men who own a house both alone and jointly (% of men),sources,Gender Statistics,14
+SG.OWN.HSAL.FE.Q1.ZS,Women who own a house alone (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSAL.FE.Q2.ZS,Women who own a house alone (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.HSAL.FE.Q3.ZS,Women who own a house alone (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.HSAL.FE.Q4.ZS,Women who own a house alone (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.HSAL.FE.Q5.ZS,Women who own a house alone (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSAL.FE.ZS,Women who own a house alone (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.HSAL.MA.Q1.ZS,Men who own a house alone (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSAL.MA.Q2.ZS,Men who own a house alone (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.HSAL.MA.Q3.ZS,Men who own a house alone (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.HSAL.MA.Q4.ZS,Men who own a house alone (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.HSAL.MA.Q5.ZS,Men who own a house alone (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSAL.MA.ZS,Men who own a house alone (% of men),sources,Gender Statistics,14
+SG.OWN.HSJT.FE.Q1.ZS,Women who own a house jointly (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSJT.FE.Q2.ZS,Women who own a house jointly (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.HSJT.FE.Q3.ZS,Women who own a house jointly (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.HSJT.FE.Q4.ZS,Women who own a house jointly (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.HSJT.FE.Q5.ZS,Women who own a house jointly (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSJT.FE.ZS,Women who own a house jointly (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.HSJT.MA.Q1.ZS,Men who own a house jointly (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSJT.MA.Q2.ZS,Men who own a house jointly (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.HSJT.MA.Q3.ZS,Men who own a house jointly (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.HSJT.MA.Q4.ZS,Men who own a house jointly (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.HSJT.MA.Q5.ZS,Men who own a house jointly (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSJT.MA.ZS,Men who own a house jointly (% of men),sources,Gender Statistics,14
+SG.OWN.HSNO.FE.Q1.ZS,Women who do not own a house (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSNO.FE.Q2.ZS,Women who do not own a house (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.HSNO.FE.Q3.ZS,Women who do not own a house (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.HSNO.FE.Q4.ZS,Women who do not own a house (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.HSNO.FE.Q5.ZS,Women who do not own a house (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSNO.FE.ZS,Women who do not own a house (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.HSNO.MA.Q1.ZS,Men who do not own a house (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.HSNO.MA.Q2.ZS,Men who do not own a house (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.HSNO.MA.Q3.ZS,Men who do not own a house (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.HSNO.MA.Q4.ZS,Men who do not own a house (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.HSNO.MA.Q5.ZS,Men who do not own a house (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.HSNO.MA.ZS,Men who do not own a house (% of men),sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.Q1.ZS,Women who own land both alone and jointly (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.Q2.ZS,Women who own land both alone and jointly (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.Q3.ZS,Women who own land both alone and jointly (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.Q4.ZS,Women who own land both alone and jointly (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.Q5.ZS,Women who own land both alone and jointly (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDAJ.FE.ZS,Women who own land both alone and jointly (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.Q1.ZS,Men who own land both alone and jointly (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.Q2.ZS,Men who own land both alone and jointly (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.Q3.ZS,Men who own land both alone and jointly (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.Q4.ZS,Men who own land both alone and jointly (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.Q5.ZS,Men who own land both alone and jointly (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDAJ.MA.ZS,Men who own land both alone and jointly (% of men),sources,Gender Statistics,14
+SG.OWN.LDAL.FE.Q1.ZS,Women who own land alone (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDAL.FE.Q2.ZS,Women who own land alone (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.LDAL.FE.Q3.ZS,Women who own land alone (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.LDAL.FE.Q4.ZS,Women who own land alone (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.LDAL.FE.Q5.ZS,Women who own land alone (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDAL.FE.ZS,Women who own land alone (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.LDAL.MA.Q1.ZS,Men who own land alone (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDAL.MA.Q2.ZS,Men who own land alone (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.LDAL.MA.Q3.ZS,Men who own land alone (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.LDAL.MA.Q4.ZS,Men who own land alone (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.LDAL.MA.Q5.ZS,Men who own land alone (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDAL.MA.ZS,Men who own land alone (% of men),sources,Gender Statistics,14
+SG.OWN.LDJT.FE.Q1.ZS,Women who own land jointly (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDJT.FE.Q2.ZS,Women who own land jointly (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.LDJT.FE.Q3.ZS,Women who own land jointly (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.LDJT.FE.Q4.ZS,Women who own land jointly (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.LDJT.FE.Q5.ZS,Women who own land jointly (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDJT.FE.ZS,Women who own land jointly (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.LDJT.MA.Q1.ZS,Men who own land jointly (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDJT.MA.Q2.ZS,Men who own land jointly (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.LDJT.MA.Q3.ZS,Men who own land jointly (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.LDJT.MA.Q4.ZS,Men who own land jointly (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.LDJT.MA.Q5.ZS,Men who own land jointly (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDJT.MA.ZS,Men who own land jointly (% of men),sources,Gender Statistics,14
+SG.OWN.LDNO.FE.Q1.ZS,Women who do not own land (% of women age 15-49): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDNO.FE.Q2.ZS,Women who do not own land (% of women age 15-49): Q2,sources,Gender Statistics,14
+SG.OWN.LDNO.FE.Q3.ZS,Women who do not own land (% of women age 15-49): Q3,sources,Gender Statistics,14
+SG.OWN.LDNO.FE.Q4.ZS,Women who do not own land (% of women age 15-49): Q4,sources,Gender Statistics,14
+SG.OWN.LDNO.FE.Q5.ZS,Women who do not own land (% of women age 15-49): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDNO.FE.ZS,Women who do not own land (% of women age 15-49),sources,Gender Statistics,14
+SG.OWN.LDNO.MA.Q1.ZS,Men who do not own land (% of men): Q1 (lowest),sources,Gender Statistics,14
+SG.OWN.LDNO.MA.Q2.ZS,Men who do not own land (% of men): Q2,sources,Gender Statistics,14
+SG.OWN.LDNO.MA.Q3.ZS,Men who do not own land (% of men): Q3,sources,Gender Statistics,14
+SG.OWN.LDNO.MA.Q4.ZS,Men who do not own land (% of men): Q4,sources,Gender Statistics,14
+SG.OWN.LDNO.MA.Q5.ZS,Men who do not own land (% of men): Q5 (highest),sources,Gender Statistics,14
+SG.OWN.LDNO.MA.ZS,Men who do not own land (% of men),sources,Gender Statistics,14
+SG.OWN.PRRT.IM,Women and men have equal ownership rights to immovable property (1=yes; 0=no),topics,Gender,17
+SG.PEN.SXHR.EM,Criminal penalties or civil remedies exist for sexual harassment in employment (1=yes; 0=no),topics,Gender,17
+SG.POP.MIGR.FE.ZS,Female migrants (% of international migrant stock),topics,Gender,17
+SG.REM.RIGT.EQ,A woman has the same rights to remarry as a man (1=yes; 0=no),topics,Gender,17
+SG.RSX.BRTH.Q1.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.BRTH.Q2.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q2,sources,Gender Statistics,14
+SG.RSX.BRTH.Q3.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q3,sources,Gender Statistics,14
+SG.RSX.BRTH.Q4.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q4,sources,Gender Statistics,14
+SG.RSX.BRTH.Q5.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.BRTH.ZS,Women who believe a wife is justified refusing sex with her husband if she has recently given birth (%),topics,Gender,17
+SG.RSX.NORS.Q1.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.NORS.Q2.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q2,sources,Gender Statistics,14
+SG.RSX.NORS.Q3.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q3,sources,Gender Statistics,14
+SG.RSX.NORS.Q4.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q4,sources,Gender Statistics,14
+SG.RSX.NORS.Q5.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.NORS.ZS,Women who believe a wife is justified refusing sex with her husband for none of the reasons (%),topics,Gender,17
+SG.RSX.REAS.Q1.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.REAS.Q2.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q2,sources,Gender Statistics,14
+SG.RSX.REAS.Q3.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q3,sources,Gender Statistics,14
+SG.RSX.REAS.Q4.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q4,sources,Gender Statistics,14
+SG.RSX.REAS.Q5.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.REAS.ZS,Women who believe a wife is justified refusing sex with her husband for all of the reasons (%),topics,Gender,17
+SG.RSX.SXOT.Q1.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.SXOT.Q2.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q2,sources,Gender Statistics,14
+SG.RSX.SXOT.Q3.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q3,sources,Gender Statistics,14
+SG.RSX.SXOT.Q4.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q4,sources,Gender Statistics,14
+SG.RSX.SXOT.Q5.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.SXOT.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sex with other women (%),topics,Gender,17
+SG.RSX.TIRD.Q1.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.TIRD.Q2.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q2,sources,Gender Statistics,14
+SG.RSX.TIRD.Q3.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q3,sources,Gender Statistics,14
+SG.RSX.TIRD.Q4.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q4,sources,Gender Statistics,14
+SG.RSX.TIRD.Q5.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.TIRD.ZS,Women who believe a wife is justified refusing sex with her husband if she is tired or not in the mood (%),topics,Gender,17
+SG.RSX.TMDS.Q1.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q1 (lowest),sources,Gender Statistics,14
+SG.RSX.TMDS.Q2.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q2,sources,Gender Statistics,14
+SG.RSX.TMDS.Q3.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q3,sources,Gender Statistics,14
+SG.RSX.TMDS.Q4.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q4,sources,Gender Statistics,14
+SG.RSX.TMDS.Q5.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%): Q5 (highest),sources,Gender Statistics,14
+SG.RSX.TMDS.ZS,Women who believe a wife is justified refusing sex with her husband if she knows he has sexually transmitted disease (%),topics,Gender,17
+SG.SXL.SX15.OL.FE.ZS,Women who initiated sexual intercourse by age 15 (% of women ages 20-24),sources,Gender Statistics,14
+SG.SXL.SX15.OL.MA.ZS,Men who initiated sexual intercourse by age 15 (% of men ages 20-24),sources,Gender Statistics,14
+SG.SXL.SX15.YG.FE.ZS,Women who initiated sexual intercourse before age 15 (% of women ages 15-19),sources,Gender Statistics,14
+SG.SXL.SX15.YG.MA.ZS,Men who initiated sexual intercourse before age 15 (% of men ages 15-19),sources,Gender Statistics,14
+SG.TIM.UWRK.FE,"Proportion of time spent on unpaid domestic and care work, female (% of 24 hour day)",topics,Gender,17
+SG.TIM.UWRK.MA,"Proportion of time spent on unpaid domestic and care work, male (% of 24 hour day)",topics,Gender,17
+SG.VAW.1519.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 15-19)",sources,Gender Statistics,14
+SG.VAW.1519.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 15-19)",sources,Gender Statistics,14
+SG.VAW.1549.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 15-49)",sources,Gender Statistics,14
+SG.VAW.1549.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 15-49)",sources,Gender Statistics,14
+SG.VAW.1549.ZS,Proportion of women subjected to physical and/or sexual violence in the last 12 months (% of ever-partnered women ages 15-49),topics,Health,8
+SG.VAW.15PL.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 15+)",sources,Gender Statistics,14
+SG.VAW.15PL.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 15+)",sources,Gender Statistics,14
+SG.VAW.2024.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 20-24)",sources,Gender Statistics,14
+SG.VAW.2024.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 20-24)",sources,Gender Statistics,14
+SG.VAW.2529.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 25-29)",sources,Gender Statistics,14
+SG.VAW.2529.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 25-29)",sources,Gender Statistics,14
+SG.VAW.3034.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 30-34)",sources,Gender Statistics,14
+SG.VAW.3034.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 30-34)",sources,Gender Statistics,14
+SG.VAW.3544.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 35-44)",sources,Gender Statistics,14
+SG.VAW.3544.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 35-44)",sources,Gender Statistics,14
+SG.VAW.4554.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 45-54)",sources,Gender Statistics,14
+SG.VAW.4554.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 45-54)",sources,Gender Statistics,14
+SG.VAW.5564.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 55-64)",sources,Gender Statistics,14
+SG.VAW.5564.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 55-64)",sources,Gender Statistics,14
+SG.VAW.65PL.LT.ME.ZS,"Proportion of women who have ever experienced intimate partner violence (modeled estimate, % of ever partnered women ages 65+)",sources,Gender Statistics,14
+SG.VAW.65PL.ME.ZS,"Proportion of women subjected to physical and/or sexual violence in the last 12 months (modeled estimate, % of ever partnered women ages 65+)",sources,Gender Statistics,14
+SG.VAW.AFSX.ZS,Proportion of women who have ever experienced any form of sexual violence (% of women ages 15-49),sources,Gender Statistics,14
+SG.VAW.ARGU.Q1.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.ARGU.Q2.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%): Q2,sources,Gender Statistics,14
+SG.VAW.ARGU.Q3.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%): Q3,sources,Gender Statistics,14
+SG.VAW.ARGU.Q4.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%): Q4,sources,Gender Statistics,14
+SG.VAW.ARGU.Q5.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.ARGU.ZS,Women who believe a husband is justified in beating his wife when she argues with him (%),topics,Health,8
+SG.VAW.BURN.Q1.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.BURN.Q2.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%): Q2,sources,Gender Statistics,14
+SG.VAW.BURN.Q3.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%): Q3,sources,Gender Statistics,14
+SG.VAW.BURN.Q4.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%): Q4,sources,Gender Statistics,14
+SG.VAW.BURN.Q5.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.BURN.ZS,Women who believe a husband is justified in beating his wife when she burns the food (%),topics,Health,8
+SG.VAW.GOES.Q1.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.GOES.Q2.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q2,sources,Gender Statistics,14
+SG.VAW.GOES.Q3.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q3,sources,Gender Statistics,14
+SG.VAW.GOES.Q4.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q4,sources,Gender Statistics,14
+SG.VAW.GOES.Q5.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.GOES.ZS,Women who believe a husband is justified in beating his wife when she goes out without telling him (%),topics,Health,8
+SG.VAW.HLPV.NV.ZS,"Women who never sought help to stop violence, and never told anyone (% of ever-married women ages 15-49 who have ever experienced any physical or sexual violence)",sources,Gender Statistics,14
+SG.VAW.HLPV.TD.ZS,"Women who never sought help to stop violence, but told someone (% of ever-married women ages 15-49 who have ever experienced any physical or sexual violence)",sources,Gender Statistics,14
+SG.VAW.HLPV.ZS,Proportion of women who have sought help to stop physical or sexual violence (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.INJR.ZS,Women who have experienced injuries resulting from spousal violence (% of ever-married women ages 15-49 who have ever experienced any physical or sexual violence),sources,Gender Statistics,14
+SG.VAW.IPCB.NV.ZS,Women whose husband or partner has never demonstrated controlling behaviors (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPCB.ZS,Women whose husband or partner has ever demonstrated controlling behaviors (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPEV.LT.ZS,Women who have ever experienced emotional violence committed by their husband/partner (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPEV.LY.ZS,Women who have experienced emotional violence committed by their husband/partner in the 12 months (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPPV.LT.ZS,Women who have ever experienced physical violence committed by their husband/partner (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPPV.LY.ZS,Women who have experienced physical violence committed by their husband/partner in the 12 months (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPSV.LT.ZS,Women who have ever experienced sexual violence committed by their husband/partner (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPSV.LY.ZS,Women who have experienced sexual violence committed by their husband/partner in the 12 months (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.IPVE.BM.ZS,Women whose first experience of spousal physical or sexual violence was before marriage (% of currently married women age 15-49 who have been married only once),sources,Gender Statistics,14
+SG.VAW.IPVE.M10.ZS,Women whose first experience of spousal physical or sexual violence was within ten years of marriage (% of currently married women age 15-49 who have been married only once),sources,Gender Statistics,14
+SG.VAW.IPVE.M2.ZS,Women whose first experience of spousal physical or sexual violence was within two years of marriage (% of currently married women age 15-49 who have been married only once),sources,Gender Statistics,14
+SG.VAW.IPVE.M5.ZS,Women whose first experience of spousal physical or sexual violence was within five years of marriage (% of currently married women age 15-49 who have been married only once),sources,Gender Statistics,14
+SG.VAW.IPVE.NV.ZS,Women who have not experienced spousal physical or sexual violence (% of currently married women age 15-49 who have been married only once),sources,Gender Statistics,14
+SG.VAW.IPVE.ZS,Proportion of women who have ever experienced intimate partner violence (% of ever-married women ages 15-49),sources,Gender Statistics,14
+SG.VAW.MARR.ZS,Spousal physical or sexual violence in last 12 months (%),sources,WDI Database Archives,57
+SG.VAW.NEGL.Q1.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.NEGL.Q2.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%): Q2,sources,Gender Statistics,14
+SG.VAW.NEGL.Q3.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%): Q3,sources,Gender Statistics,14
+SG.VAW.NEGL.Q4.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%): Q4,sources,Gender Statistics,14
+SG.VAW.NEGL.Q5.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.NEGL.ZS,Women who believe a husband is justified in beating his wife when she neglects the children (%),topics,Health,8
+SG.VAW.REAS.Q1.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.REAS.Q2.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q2,sources,Gender Statistics,14
+SG.VAW.REAS.Q3.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q3,sources,Gender Statistics,14
+SG.VAW.REAS.Q4.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q4,sources,Gender Statistics,14
+SG.VAW.REAS.Q5.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.REAS.ZS,Women who believe a husband is justified in beating his wife (any of five reasons) (%),topics,Health,8
+SG.VAW.REFU.Q1.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q1 (lowest),sources,Gender Statistics,14
+SG.VAW.REFU.Q2.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q2,sources,Gender Statistics,14
+SG.VAW.REFU.Q3.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q3,sources,Gender Statistics,14
+SG.VAW.REFU.Q4.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q4,sources,Gender Statistics,14
+SG.VAW.REFU.Q5.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%): Q5 (highest),sources,Gender Statistics,14
+SG.VAW.REFU.ZS,Women who believe a husband is justified in beating his wife when she refuses sex with him (%),topics,Health,8
+SG.VAW.SX15.ZS,Women who experienced first sexual violence before age 15 (% of women ages 15-49),sources,Gender Statistics,14
+SG.VAW.SX18.ZS,Women who experienced first sexual violence before age 18 (% of women ages 15-49),sources,Gender Statistics,14
+SG.VAW.SX22.ZS,Women who experienced first sexual violence before age 22 (% of women ages 15-49),sources,Gender Statistics,14
+SH.ACS.ALON.Q1.ZS,Problems in accessing health care (not wanting to go alone) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.ALON.Q2.ZS,Problems in accessing health care (not wanting to go alone) (% of women): Q2,topics,Health,8
+SH.ACS.ALON.Q3.ZS,Problems in accessing health care (not wanting to go alone) (% of women): Q3,topics,Health,8
+SH.ACS.ALON.Q4.ZS,Problems in accessing health care (not wanting to go alone) (% of women): Q4,topics,Health,8
+SH.ACS.ALON.Q5.ZS,Problems in accessing health care (not wanting to go alone) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.DIST.Q1.ZS,Problems in accessing health care (distance to health facility) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.DIST.Q2.ZS,Problems in accessing health care (distance to health facility) (% of women): Q2,topics,Health,8
+SH.ACS.DIST.Q3.ZS,Problems in accessing health care (distance to health facility) (% of women): Q3,topics,Health,8
+SH.ACS.DIST.Q4.ZS,Problems in accessing health care (distance to health facility) (% of women): Q4,topics,Health,8
+SH.ACS.DIST.Q5.ZS,Problems in accessing health care (distance to health facility) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.MONY.Q1.ZS,Problems in accessing health care (getting money for treatment) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.MONY.Q2.ZS,Problems in accessing health care (getting money for treatment) (% of women): Q2,topics,Health,8
+SH.ACS.MONY.Q3.ZS,Problems in accessing health care (getting money for treatment) (% of women): Q3,topics,Health,8
+SH.ACS.MONY.Q4.ZS,Problems in accessing health care (getting money for treatment) (% of women): Q4,topics,Health,8
+SH.ACS.MONY.Q5.ZS,Problems in accessing health care (getting money for treatment) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.NOFP.Q1.ZS,Problems in accessing health care (concern there may not be a female provider) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.NOFP.Q2.ZS,Problems in accessing health care (concern there may not be a female provider) (% of women): Q2,topics,Health,8
+SH.ACS.NOFP.Q3.ZS,Problems in accessing health care (concern there may not be a female provider) (% of women): Q3,topics,Health,8
+SH.ACS.NOFP.Q4.ZS,Problems in accessing health care (concern there may not be a female provider) (% of women): Q4,topics,Health,8
+SH.ACS.NOFP.Q5.ZS,Problems in accessing health care (concern there may not be a female provider) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.PERM.Q1.ZS,Problems in accessing health care (getting permission to go for treatment) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.PERM.Q2.ZS,Problems in accessing health care (getting permission to go for treatment) (% of women): Q2,topics,Health,8
+SH.ACS.PERM.Q3.ZS,Problems in accessing health care (getting permission to go for treatment) (% of women): Q3,topics,Health,8
+SH.ACS.PERM.Q4.ZS,Problems in accessing health care (getting permission to go for treatment) (% of women): Q4,topics,Health,8
+SH.ACS.PERM.Q5.ZS,Problems in accessing health care (getting permission to go for treatment) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.PROB.Q1.ZS,Problems in accessing health care (any of the specified problems) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.PROB.Q2.ZS,Problems in accessing health care (any of the specified problems) (% of women): Q2,topics,Health,8
+SH.ACS.PROB.Q3.ZS,Problems in accessing health care (any of the specified problems) (% of women): Q3,topics,Health,8
+SH.ACS.PROB.Q4.ZS,Problems in accessing health care (any of the specified problems) (% of women): Q4,topics,Health,8
+SH.ACS.PROB.Q5.ZS,Problems in accessing health care (any of the specified problems) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.TRAN.Q1.ZS,Problems in accessing health care (having to take transport) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.TRAN.Q2.ZS,Problems in accessing health care (having to take transport) (% of women): Q2,topics,Health,8
+SH.ACS.TRAN.Q3.ZS,Problems in accessing health care (having to take transport) (% of women): Q3,topics,Health,8
+SH.ACS.TRAN.Q4.ZS,Problems in accessing health care (having to take transport) (% of women): Q4,topics,Health,8
+SH.ACS.TRAN.Q5.ZS,Problems in accessing health care (having to take transport) (% of women): Q5 (highest),topics,Health,8
+SH.ACS.WHER.Q1.ZS,Problems in accessing health care (knowing where to go for treatment) (% of women): Q1 (lowest),topics,Health,8
+SH.ACS.WHER.Q2.ZS,Problems in accessing health care (knowing where to go for treatment) (% of women): Q2,topics,Health,8
+SH.ACS.WHER.Q3.ZS,Problems in accessing health care (knowing where to go for treatment) (% of women): Q3,topics,Health,8
+SH.ACS.WHER.Q4.ZS,Problems in accessing health care (knowing where to go for treatment) (% of women): Q4,topics,Health,8
+SH.ACS.WHER.Q5.ZS,Problems in accessing health care (knowing where to go for treatment) (% of women): Q5 (highest),topics,Health,8
+SH.ADM.INPT,Inpatient admission rate (% of population ),sources,WDI Database Archives,57
+SH.ALC.PCAP.FE.LI,"Total alcohol consumption per capita, female (liters of pure alcohol, projected estimates, female 15+ years of age)",topics,Health,8
+SH.ALC.PCAP.LI,"Total alcohol consumption per capita (liters of pure alcohol, projected estimates, 15+ years of age)",topics,Health,8
+SH.ALC.PCAP.MA.LI,"Total alcohol consumption per capita, male (liters of pure alcohol, projected estimates, male 15+ years of age)",topics,Health,8
+SH.ANM.ALLW.ZS,Prevalence of anemia among women of reproductive age (% of women ages 15-49),topics,Health,8
+SH.ANM.CHLD.ZS,Prevalence of anemia among children (% of children ages 6-59 months),topics,Health,8
+SH.ANM.NPRG.ZS,Prevalence of anemia among non-pregnant women (% of women ages 15-49),topics,Health,8
+SH.CON.1524.FE.ZS,"Condom use, population ages 15-24, female (% of females ages 15-24)",topics,Health,8
+SH.CON.1524.MA.ZS,"Condom use, population ages 15-24, male (% of males ages 15-24)",topics,Health,8
+SH.CON.AIDS.FE.ZS,"Condom use at last high-risk sex, adult female (% ages 15-49)",sources,Gender Statistics,14
+SH.CON.AIDS.MA.ZS,"Condom use at last high-risk sex, adult male (% ages 15-49)",sources,Gender Statistics,14
+SH.DR.TOTL,Number of Doctors,sources,Indonesia Database for Policy and Economic Research,45
+SH.DTH.0509,Number of deaths ages 5-9 years,topics,Education,4
+SH.DTH.0509.FE,"Number of deaths ages 5-9 years, female",sources,Health Nutrition and Population Statistics,16
+SH.DTH.0509.MA,"Number of deaths ages 5-9 years, male",sources,Health Nutrition and Population Statistics,16
+SH.DTH.0514,Number of deaths ages 5-14 years,topics,Health,8
+SH.DTH.1014,Number of deaths ages 10-14 years,topics,Education,4
+SH.DTH.1014.FE,"Number of deaths ages 10-14 years, female",sources,Health Nutrition and Population Statistics,16
+SH.DTH.1014.MA,"Number of deaths ages 10-14 years, male",sources,Health Nutrition and Population Statistics,16
+SH.DTH.1019,Number of deaths ages 10-19 years,sources,Health Nutrition and Population Statistics,16
+SH.DTH.1019.FE,"Number of deaths ages 10-19 years, female",sources,Health Nutrition and Population Statistics,16
+SH.DTH.1019.MA,"Number of deaths ages 10-19 years, male",sources,Health Nutrition and Population Statistics,16
+SH.DTH.1519,Number of deaths ages 15-19 years,topics,Education,4
+SH.DTH.1519.FE,"Number of deaths ages 15-19 years, female",sources,Health Nutrition and Population Statistics,16
+SH.DTH.1519.MA,"Number of deaths ages 15-19 years, male",sources,Health Nutrition and Population Statistics,16
+SH.DTH.2024,Number of deaths ages 20-24 years,topics,Education,4
+SH.DTH.2024.FE,"Number of deaths ages 20-24 years, female",sources,Health Nutrition and Population Statistics,16
+SH.DTH.2024.MA,"Number of deaths ages 20-24 years, male",sources,Health Nutrition and Population Statistics,16
+SH.DTH.COMM.0004.FE.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, female (% of female population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.COMM.0004.MA.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4, male (% of male population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.COMM.0004.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 0-4 (% of population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.COMM.0514.FE.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, female (% of female population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.COMM.0514.MA.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14, male (% of male population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.COMM.0514.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 5-14 (% of population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.COMM.1559.FE.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, female (% of female population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.COMM.1559.MA.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59, male (% of male population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.COMM.1559.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 15-59 (% of population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.COMM.60UP.FE.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, female (% of female population ages 60+)",sources,Gender Statistics,14
+SH.DTH.COMM.60UP.MA.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+, male (% of male population ages 60+)",sources,Gender Statistics,14
+SH.DTH.COMM.60UP.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, ages 60+ (% of population ages 60+)",sources,Gender Statistics,14
+SH.DTH.COMM.FE.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, female (% of female population)",sources,Gender Statistics,14
+SH.DTH.COMM.MA.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions, male (% of male population)",sources,Gender Statistics,14
+SH.DTH.COMM.ZS,"Cause of death, by communicable diseases and maternal, prenatal and nutrition conditions (% of total)",topics,Health,8
+SH.DTH.IMRT,Number of infant deaths,topics,Health,8
+SH.DTH.IMRT.FE,"Number of infant deaths, female",topics,Education,4
+SH.DTH.IMRT.MA,"Number of infant deaths, male",topics,Education,4
+SH.DTH.INJR.0004.FE.ZS,"Cause of death, by injury, ages 0-4, female (% of female population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.INJR.0004.MA.ZS,"Cause of death, by injury, ages 0-4, male (% of male population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.INJR.0004.ZS,"Cause of death, by injury, ages 0-4 (% of population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.INJR.0514.FE.ZS,"Cause of death, by injury, ages 5-14, female (% of female population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.INJR.0514.MA.ZS,"Cause of death, by injury, ages 5-14, male (% of male population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.INJR.0514.ZS,"Cause of death, by injury, ages 5-14 (% of population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.INJR.1559.FE.ZS,"Cause of death, by injury, ages 15-59, female (% of female population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.INJR.1559.MA.ZS,"Cause of death, by injury, ages 15-59, male (% of male population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.INJR.1559.ZS,"Cause of death, by injury, ages 15-59 (% of population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.INJR.60UP.FE.ZS,"Cause of death, by injury, ages 60+, female (% of female population ages 60+)",sources,Gender Statistics,14
+SH.DTH.INJR.60UP.MA.ZS,"Cause of death, by injury, ages 60+, male (% of male population ages 60+)",sources,Gender Statistics,14
+SH.DTH.INJR.60UP.ZS,"Cause of death, by injury, ages 60+ (% of population ages 60+)",sources,Gender Statistics,14
+SH.DTH.INJR.FE.ZS,"Cause of death, by injury, female (% of female population)",sources,Gender Statistics,14
+SH.DTH.INJR.MA.ZS,"Cause of death, by injury, male (% of male population)",sources,Gender Statistics,14
+SH.DTH.INJR.ZS,"Cause of death, by injury (% of total)",topics,Health,8
+SH.DTH.MORT,Number of under-five deaths,topics,Health,8
+SH.DTH.MORT.FE,"Number of under-five deaths, female",topics,Education,4
+SH.DTH.MORT.MA,"Number of under-five deaths, male",topics,Education,4
+SH.DTH.NCOM.0004.FE.ZS,"Cause of death, by non-communicable diseases, ages 0-4, female (% of female population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.NCOM.0004.MA.ZS,"Cause of death, by non-communicable diseases, ages 0-4, male (% of male population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.NCOM.0004.ZS,"Cause of death, by non-communicable diseases, ages 0-4 (% of population ages 0-4)",sources,Gender Statistics,14
+SH.DTH.NCOM.0514.FE.ZS,"Cause of death, by non-communicable diseases, ages 5-14, female (% of female population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.NCOM.0514.MA.ZS,"Cause of death, by non-communicable diseases, ages 5-14, male (% of male population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.NCOM.0514.ZS,"Cause of death, by non-communicable diseases, ages 5-14 (% of population ages 5-14)",sources,Gender Statistics,14
+SH.DTH.NCOM.1559.FE.ZS,"Cause of death, by non-communicable diseases, ages 15-59, female (% of female population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.NCOM.1559.MA.ZS,"Cause of death, by non-communicable diseases, ages 15-59, male (% of male population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.NCOM.1559.ZS,"Cause of death, by non-communicable diseases, ages 15-59 (% of population ages 15-59)",sources,Gender Statistics,14
+SH.DTH.NCOM.60UP.FE.ZS,"Cause of death, by non-communicable diseases, ages 60+, female (% of female population ages 60+)",sources,Gender Statistics,14
+SH.DTH.NCOM.60UP.MA.ZS,"Cause of death, by non-communicable diseases, ages 60+, male (% of male population ages 60+)",sources,Gender Statistics,14
+SH.DTH.NCOM.60UP.ZS,"Cause of death, by non-communicable diseases, ages 60+ (% of population ages 60+)",sources,Gender Statistics,14
+SH.DTH.NCOM.FE.ZS,"Cause of death, by non-communicable diseases, female (% of female population)",sources,Gender Statistics,14
+SH.DTH.NCOM.MA.ZS,"Cause of death, by non-communicable diseases, male (% of male population)",sources,Gender Statistics,14
+SH.DTH.NCOM.ZS,"Cause of death, by non-communicable diseases (% of total)",topics,Health,8
+SH.DTH.NMRT,Number of neonatal deaths,topics,Health,8
+SH.DTH.STLB,Number of stillbirths,topics,Health,8
+SH.DYN.0509,"Probability of dying among children ages 5-9 years (per 1,000)",topics,Education,4
+SH.DYN.0509.FE,"Probability of dying among children ages 5-9 years, female (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.0509.MA,"Probability of dying among children ages 5-9 years, male (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.0514,"Probability of dying at age 5-14 years (per 1,000 children age 5)",topics,Health,8
+SH.DYN.1014,"Probability of dying among adolescents ages 10-14 years (per 1,000)",topics,Education,4
+SH.DYN.1014.FE,"Probability of dying among adolescents ages 10-14 years, female (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1014.MA,"Probability of dying among adolescents ages 10-14 years, male (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1019,"Probability of dying among adolescents ages 10-19 years (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1019.FE,"Probability of dying among adolescents ages 10-19 years, female (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1019.MA,"Probability of dying among adolescents ages 10-19 years, male (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1519,"Probability of dying among adolescents ages 15-19 years (per 1,000)",topics,Education,4
+SH.DYN.1519.FE,"Probability of dying among adolescents ages 15-19 years, female (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.1519.MA,"Probability of dying among adolescents ages 15-19 years, male (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.2024,"Probability of dying among youth ages 20-24 years (per 1,000)",topics,Education,4
+SH.DYN.2024.FE,"Probability of dying among youth ages 20-24 years, female (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.2024.MA,"Probability of dying among youth ages 20-24 years, male (per 1,000)",sources,Health Nutrition and Population Statistics,16
+SH.DYN.AIDS,Adults (ages 15+) living with HIV,sources,Health Nutrition and Population Statistics,16
+SH.DYN.AIDS.DH,AIDS estimated deaths (UNAIDS estimates),sources,Health Nutrition and Population Statistics,16
+SH.DYN.AIDS.FE.ZS,Women's share of population ages 15+ living with HIV (%),topics,Health,8
+SH.DYN.AIDS.HG.ZS,"HIV prevalence rate, adult 15-49 years (%; high estimate)",sources,Africa Development Indicators,11
+SH.DYN.AIDS.LW.ZS,"HIV prevalence rate, adult 15-49 years (%; low estimate)",sources,Africa Development Indicators,11
+SH.DYN.AIDS.ZS,"Prevalence of HIV, total (% of population ages 15-49)",topics,Aid Effectiveness,2
+SH.DYN.CHLD.FE,"Mortality rate, female child (per 1,000 female children age one)",topics,Health,8
+SH.DYN.CHLD.MA,"Mortality rate, male child (per 1,000 male children age one)",topics,Health,8
+SH.DYN.MORT,"Mortality rate, under-5 (per 1,000 live births)",topics,Aid Effectiveness,2
+SH.DYN.MORT.FE,"Mortality rate, under-5, female (per 1,000 live births)",topics,Health,8
+SH.DYN.MORT.MA,"Mortality rate, under-5, male (per 1,000 live births)",topics,Health,8
+SH.DYN.MORT.Q1,"Under-5 mortality rate (per 1,000 live births): Q1 (lowest)",topics,Health,8
+SH.DYN.MORT.Q2,"Under-5 mortality rate (per 1,000 live births): Q2",topics,Health,8
+SH.DYN.MORT.Q3,"Under-5 mortality rate (per 1,000 live births): Q3",topics,Health,8
+SH.DYN.MORT.Q4,"Under-5 mortality rate (per 1,000 live births): Q4",topics,Health,8
+SH.DYN.MORT.Q5,"Under-5 mortality rate (per 1,000 live births): Q5 (highest)",topics,Health,8
+SH.DYN.NCOM.FE.ZS,"Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, female (%)",topics,Health,8
+SH.DYN.NCOM.MA.ZS,"Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70, male (%)",topics,Health,8
+SH.DYN.NCOM.ZS,"Mortality from CVD, cancer, diabetes or CRD between exact ages 30 and 70 (%)",topics,Health,8
+SH.DYN.NMRT,"Mortality rate, neonatal (per 1,000 live births)",topics,Health,8
+SH.DYN.STLB,"Stillbirth rate (per 1,000 total births)",topics,Health,8
+SH.FPL.ACPT.Q1.ZS,Acceptability of media messages on family planning (% of women): Q1 (lowest),topics,Health,8
+SH.FPL.ACPT.Q2.ZS,Acceptability of media messages on family planning (% of women): Q2,topics,Health,8
+SH.FPL.ACPT.Q3.ZS,Acceptability of media messages on family planning (% of women): Q3,topics,Health,8
+SH.FPL.ACPT.Q4.ZS,Acceptability of media messages on family planning (% of women): Q4,topics,Health,8
+SH.FPL.ACPT.Q5.ZS,Acceptability of media messages on family planning (% of women): Q5 (highest),topics,Health,8
+SH.FPL.FBRT.Q1.ZS,Median age at first birth (women ages 25-49): Q1 (lowest),topics,Health,8
+SH.FPL.FBRT.Q2.ZS,Median age at first birth (women ages 25-49): Q2,topics,Health,8
+SH.FPL.FBRT.Q3.ZS,Median age at first birth (women ages 25-49): Q3,topics,Health,8
+SH.FPL.FBRT.Q4.ZS,Median age at first birth (women ages 25-49): Q4,topics,Health,8
+SH.FPL.FBRT.Q5.ZS,Median age at first birth (women ages 25-49): Q5 (highest),topics,Health,8
+SH.FPL.FMAR.Q1.ZS,Median age at first marriage (women ages 25-49): Q1 (lowest),topics,Health,8
+SH.FPL.FMAR.Q2.ZS,Median age at first marriage (women ages 25-49): Q2,topics,Health,8
+SH.FPL.FMAR.Q3.ZS,Median age at first marriage (women ages 25-49): Q3,topics,Health,8
+SH.FPL.FMAR.Q4.ZS,Median age at first marriage (women ages 25-49): Q4,topics,Health,8
+SH.FPL.FMAR.Q5.ZS,Median age at first marriage (women ages 25-49): Q5 (highest),topics,Health,8
+SH.FPL.FSEX.Q1.ZS,Median age at first sexual intercourse (women ages 25-49): Q1 (lowest),topics,Health,8
+SH.FPL.FSEX.Q2.ZS,Median age at first sexual intercourse (women ages 25-49): Q2,topics,Health,8
+SH.FPL.FSEX.Q3.ZS,Median age at first sexual intercourse (women ages 25-49): Q3,topics,Health,8
+SH.FPL.FSEX.Q4.ZS,Median age at first sexual intercourse (women ages 25-49): Q4,topics,Health,8
+SH.FPL.FSEX.Q5.ZS,Median age at first sexual intercourse (women ages 25-49): Q5 (highest),topics,Health,8
+SH.FPL.HEAR.Q1.ZS,Heard family planning on radio and television (% of women): Q1 (lowest),topics,Health,8
+SH.FPL.HEAR.Q2.ZS,Heard family planning on radio and television (% of women): Q2,topics,Health,8
+SH.FPL.HEAR.Q3.ZS,Heard family planning on radio and television (% of women): Q3,topics,Health,8
+SH.FPL.HEAR.Q4.ZS,Heard family planning on radio and television (% of women): Q4,topics,Health,8
+SH.FPL.HEAR.Q5.ZS,Heard family planning on radio and television (% of women): Q5 (highest),topics,Health,8
+SH.FPL.IDLC.Q1,Mean ideal number of children (per woman): Q1 (lowest),topics,Health,8
+SH.FPL.IDLC.Q2,Mean ideal number of children (per woman): Q2,topics,Health,8
+SH.FPL.IDLC.Q3,Mean ideal number of children (per woman): Q3,topics,Health,8
+SH.FPL.IDLC.Q4,Mean ideal number of children (per woman): Q4,topics,Health,8
+SH.FPL.IDLC.Q5,Mean ideal number of children (per woman): Q5 (highest),topics,Health,8
+SH.FPL.KNMD.AL.FE.ZS,Knowledge of any modern method of contraception (% of all women ages 15-49),sources,Gender Statistics,14
+SH.FPL.KNMD.AL.MA.ZS,Knowledge of any modern method of contraception (% of all men),sources,Gender Statistics,14
+SH.FPL.KNMD.FE.ZS,Knowledge of any modern method of contraception (% of married women ages 15-49),sources,Gender Statistics,14
+SH.FPL.KNMD.MA.ZS,Knowledge of any modern method of contraception (% of married men),sources,Gender Statistics,14
+SH.FPL.KNOW.AL.FE.ZS,Knowledge of any method of contraception (% of all women ages 15-49),sources,Gender Statistics,14
+SH.FPL.KNOW.AL.MA.ZS,Knowledge of any method of contraception (% of all men),sources,Gender Statistics,14
+SH.FPL.KNOW.FE.ZS,Knowledge of any method of contraception (% of married women ages 15-49),sources,Gender Statistics,14
+SH.FPL.KNOW.MA.ZS,Knowledge of any method of contraception (% of married men),sources,Gender Statistics,14
+SH.FPL.KNOW.Q1.ZS,Knowledge of contraception (any method) (% of married women): Q1 (lowest),topics,Health,8
+SH.FPL.KNOW.Q2.ZS,Knowledge of contraception (any method) (% of married women): Q2,topics,Health,8
+SH.FPL.KNOW.Q3.ZS,Knowledge of contraception (any method) (% of married women): Q3,topics,Health,8
+SH.FPL.KNOW.Q4.ZS,Knowledge of contraception (any method) (% of married women): Q4,topics,Health,8
+SH.FPL.KNOW.Q5.ZS,Knowledge of contraception (any method) (% of married women): Q5 (highest),topics,Health,8
+SH.FPL.KWMD.Q1.ZS,Knowledge of contraception (modern method) (% of married women): Q1 (lowest),topics,Health,8
+SH.FPL.KWMD.Q2.ZS,Knowledge of contraception (modern method) (% of married women): Q2,topics,Health,8
+SH.FPL.KWMD.Q3.ZS,Knowledge of contraception (modern method) (% of married women): Q3,topics,Health,8
+SH.FPL.KWMD.Q4.ZS,Knowledge of contraception (modern method) (% of married women): Q4,topics,Health,8
+SH.FPL.KWMD.Q5.ZS,Knowledge of contraception (modern method) (% of married women): Q5 (highest),topics,Health,8
+SH.FPL.LIMT.Q1.ZS,Desire to stop (limit) childbearing (% of married women): Q1 (lowest),topics,Health,8
+SH.FPL.LIMT.Q2.ZS,Desire to stop (limit) childbearing (% of married women): Q2,topics,Health,8
+SH.FPL.LIMT.Q3.ZS,Desire to stop (limit) childbearing (% of married women): Q3,topics,Health,8
+SH.FPL.LIMT.Q4.ZS,Desire to stop (limit) childbearing (% of married women): Q4,topics,Health,8
+SH.FPL.LIMT.Q5.ZS,Desire to stop (limit) childbearing (% of married women): Q5 (highest),topics,Health,8
+SH.FPL.MBRI.Q1,Median birth interval (months): Q1 (lowest),topics,Health,8
+SH.FPL.MBRI.Q2,Median birth interval (months): Q2,topics,Health,8
+SH.FPL.MBRI.Q3,Median birth interval (months): Q3,topics,Health,8
+SH.FPL.MBRI.Q4,Median birth interval (months): Q4,topics,Health,8
+SH.FPL.MBRI.Q5,Median birth interval (months): Q5 (highest),topics,Health,8
+SH.FPL.MSTM.Q1.ZS,Fertility planning status (wanted later) (% of births): Q1 (lowest),topics,Health,8
+SH.FPL.MSTM.Q2.ZS,Fertility planning status (wanted later) (% of births): Q2,topics,Health,8
+SH.FPL.MSTM.Q3.ZS,Fertility planning status (wanted later) (% of births): Q3,topics,Health,8
+SH.FPL.MSTM.Q4.ZS,Fertility planning status (wanted later) (% of births): Q4,topics,Health,8
+SH.FPL.MSTM.Q5.ZS,Fertility planning status (wanted later) (% of births): Q5 (highest),topics,Health,8
+SH.FPL.MSTM.ZS,Fertility planning status: mistimed pregnancy (% of births),sources,Gender Statistics,14
+SH.FPL.READ.Q1.ZS,Family planning messages in print (% of women): Q1 (lowest),topics,Health,8
+SH.FPL.READ.Q2.ZS,Family planning messages in print (% of women): Q2,topics,Health,8
+SH.FPL.READ.Q3.ZS,Family planning messages in print (% of women): Q3,topics,Health,8
+SH.FPL.READ.Q4.ZS,Family planning messages in print (% of women): Q4,topics,Health,8
+SH.FPL.READ.Q5.ZS,Family planning messages in print (% of women): Q5 (highest),topics,Health,8
+SH.FPL.SATI.ZS,Demand for family planning satisfied by any methods (% of married women with demand for family planning),topics,Gender,17
+SH.FPL.SATM.ZS,Demand for family planning satisfied by modern methods (% of married women with demand for family planning),topics,Health,8
+SH.FPL.UWTD.Q1.ZS,Fertility planning status (wanted no more) (% of births): Q1 (lowest),topics,Health,8
+SH.FPL.UWTD.Q2.ZS,Fertility planning status (wanted no more) (% of births): Q2,topics,Health,8
+SH.FPL.UWTD.Q3.ZS,Fertility planning status (wanted no more) (% of births): Q3,topics,Health,8
+SH.FPL.UWTD.Q4.ZS,Fertility planning status (wanted no more) (% of births): Q4,topics,Health,8
+SH.FPL.UWTD.Q5.ZS,Fertility planning status (wanted no more) (% of births): Q5 (highest),topics,Health,8
+SH.FPL.UWTD.ZS,Fertility planning status: unwanted pregnancy (% of births),sources,Gender Statistics,14
+SH.FPL.WNTD.Q1.ZS,Fertility planning status (wanted then) (% of births): Q1 (lowest),topics,Health,8
+SH.FPL.WNTD.Q2.ZS,Fertility planning status (wanted then) (% of births): Q2,topics,Health,8
+SH.FPL.WNTD.Q3.ZS,Fertility planning status (wanted then) (% of births): Q3,topics,Health,8
+SH.FPL.WNTD.Q4.ZS,Fertility planning status (wanted then) (% of births): Q4,topics,Health,8
+SH.FPL.WNTD.Q5.ZS,Fertility planning status (wanted then) (% of births): Q5 (highest),topics,Health,8
+SH.FPL.WNTD.ZS,Fertility planning status: planned pregnancy (% of births),sources,Gender Statistics,14
+SH.H2O.BASW.Q1.ZS,People using at least basic drinking water services (% of population): Q1 (lowest),topics,Health,8
+SH.H2O.BASW.Q2.ZS,People using at least basic drinking water services (% of population): Q2,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.Q3.ZS,People using at least basic drinking water services (% of population): Q3,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.Q4.ZS,People using at least basic drinking water services (% of population): Q4,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.Q5.ZS,People using at least basic drinking water services (% of population): Q5 (highest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.RU.Q1.ZS,"People using at least basic drinking water services, rural (% of rural population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.RU.Q2.ZS,"People using at least basic drinking water services, rural (% of rural population): Q2",topics,Health,8
+SH.H2O.BASW.RU.Q3.ZS,"People using at least basic drinking water services, rural (% of rural population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.RU.Q4.ZS,"People using at least basic drinking water services, rural (% of rural population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.RU.Q5.ZS,"People using at least basic drinking water services, rural (% of rural population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.RU.ZS,"People using at least basic drinking water services, rural (% of rural population)",topics,Environment,6
+SH.H2O.BASW.UR.Q1.ZS,"People using at least basic drinking water services, urban (% of urban population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.UR.Q2.ZS,"People using at least basic drinking water services, urban (% of urban population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.UR.Q3.ZS,"People using at least basic drinking water services, urban (% of urban population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.UR.Q4.ZS,"People using at least basic drinking water services, urban (% of urban population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.UR.Q5.ZS,"People using at least basic drinking water services, urban (% of urban population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.H2O.BASW.UR.ZS,"People using at least basic drinking water services, urban (% of urban population)",topics,Environment,6
+SH.H2O.BASW.ZS,People using at least basic drinking water services (% of population),topics,Environment,6
+SH.H2O.SAFE.RU.ZS,"Improved water source, rural (% of rural population with access)",topics,Agriculture & Rural Development,1
+SH.H2O.SAFE.UR.ZS,"Improved water source, urban (% of urban population with access)",topics,Health,8
+SH.H2O.SAFE.ZS,Improved water source (% of population with access),topics,Health,8
+SH.H2O.SMDW.RU.ZS,"People using safely managed drinking water services, rural (% of rural population)",topics,Environment,6
+SH.H2O.SMDW.UR.ZS,"People using safely managed drinking water services, urban (% of urban population)",topics,Environment,6
+SH.H2O.SMDW.ZS,People using safely managed drinking water services (% of population),topics,Environment,6
+SH.HIV.0014,Children (0-14) living with HIV,topics,Health,8
+SH.HIV.1524.FE.HG.ZS,"Prevalence of HIV, young women 15-24 years (%; high estimate)",sources,Africa Development Indicators,11
+SH.HIV.1524.FE.LW.ZS,"Prevalence of HIV, young women 15-24 years (%; low estimate)",sources,Africa Development Indicators,11
+SH.HIV.1524.FE.ZS,"Prevalence of HIV, female (% ages 15-24)",topics,Health,8
+SH.HIV.1524.KW.FE.ZS,"Comprehensive correct knowledge of HIV/AIDS, ages 15-24, female (2 prevent ways and reject 3 misconceptions)",sources,Gender Statistics,14
+SH.HIV.1524.KW.MA.ZS,"Comprehensive correct knowledge of HIV/AIDS, ages 15-24, male (2 prevent ways and reject 3 misconceptions)",sources,Gender Statistics,14
+SH.HIV.1524.MA.HG.ZS,"Prevalence of HIV, young men 15-24 years (%; high estimate)",sources,Africa Development Indicators,11
+SH.HIV.1524.MA.LW.ZS,"Prevalence of HIV, young men 15-24 years (%; low estimate)",sources,Africa Development Indicators,11
+SH.HIV.1524.MA.ZS,"Prevalence of HIV, male (% ages 15-24)",topics,Health,8
+SH.HIV.ARTC.FE.ZS,"Access to anti-retroviral drugs, female (%)",topics,Gender,17
+SH.HIV.ARTC.MA.ZS,"Access to anti-retroviral drugs, male (%)",topics,Gender,17
+SH.HIV.ARTC.ZS,Antiretroviral therapy coverage (% of people living with HIV),topics,Health,8
+SH.HIV.DTS.HG.NUM,AIDS deaths in adults and children (high estimate),sources,Africa Development Indicators,11
+SH.HIV.DTS.LW.NUM,AIDS deaths in adults and children (low estimate),sources,Africa Development Indicators,11
+SH.HIV.DTS.NUM,AIDS deaths in adults and children,sources,Africa Development Indicators,11
+SH.HIV.INCD,Adults (ages 15-49) newly infected with HIV,topics,Health,8
+SH.HIV.INCD.14,Children (ages 0-14) newly infected with HIV,topics,Health,8
+SH.HIV.INCD.50.P3,"Incidence of HIV, ages 50+ (per 1,000 uninfected population ages 50+)",topics,Health,8
+SH.HIV.INCD.FE.P3,"Incidence of HIV, ages 15-49, female (per 1,000 uninfected female population ages 15-49)",topics,Gender,17
+SH.HIV.INCD.MA.P3,"Incidence of HIV, ages 15-49, male (per 1,000 uninfected male population ages 15-49)",topics,Gender,17
+SH.HIV.INCD.TL,Adults (ages 15+) and children (ages 0-14) newly infected with HIV,topics,Health,8
+SH.HIV.INCD.TL.P3,"Incidence of HIV, all (per 1,000 uninfected population)",topics,Health,8
+SH.HIV.INCD.YG,Young people (ages 15-24) newly infected with HIV,topics,Health,8
+SH.HIV.INCD.YG.FE.P3,"Incidence of HIV, ages 15-24, female (per 1,000 uninfected female population ages 15-24)",topics,Gender,17
+SH.HIV.INCD.YG.MA.P3,"Incidence of HIV, ages 15-24, male (per 1,000 uninfected male population ages 15-24)",topics,Health,8
+SH.HIV.INCD.YG.P3,"Incidence of HIV, ages 15-24 (per 1,000 uninfected population ages 15-24)",topics,Health,8
+SH.HIV.INCD.ZS,"Incidence of HIV, ages 15-49 (per 1,000 uninfected population ages 15-49)",topics,Health,8
+SH.HIV.KNOW.FE.ZS,"Comprehensive correct knowledge of HIV/AIDS, ages 15-49, female (2 prevent ways and reject 3 misconceptions)",sources,Gender Statistics,14
+SH.HIV.KNOW.MA.ZS,"Comprehensive correct knowledge of HIV/AIDS, ages 15-49, male (2 prevent ways and reject 3 misconceptions)",sources,Gender Statistics,14
+SH.HIV.NEW.0014.HG.NUM,"New HIV infections (0-14 years), high estimate",sources,Africa Development Indicators,11
+SH.HIV.NEW.0014.LW.NUM,"New HIV infections (0-14 years), low estimate",sources,Africa Development Indicators,11
+SH.HIV.NEW.0014.NUM,New HIV infections (0-14 years),sources,Africa Development Indicators,11
+SH.HIV.NEW.TOTL.HG.NUM,"New HIV infections, high estimate",sources,Africa Development Indicators,11
+SH.HIV.NEW.TOTL.LW.NUM,"New HIV infections, low estimate",sources,Africa Development Indicators,11
+SH.HIV.NEW.TOTL.NUM,New HIV infections,sources,Africa Development Indicators,11
+SH.HIV.ORP.HG.NUM,Orphans 0-17 years currently living (high estimate),sources,Africa Development Indicators,11
+SH.HIV.ORP.LW.NUM,Orphans 0-17 years currently living (low estimate),sources,Africa Development Indicators,11
+SH.HIV.ORP.NUM,Orphans 0-17 years currently living,sources,Africa Development Indicators,11
+SH.HIV.ORPH,Children orphaned by HIV/AIDS,sources,Health Nutrition and Population Statistics,16
+SH.HIV.PMTC.ZS,Antiretroviral therapy coverage for PMTCT (% of pregnant women living with HIV),topics,Health,8
+SH.HIV.PREG.VIRALS.HG.ZS,"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; high estimate)",sources,Africa Development Indicators,11
+SH.HIV.PREG.VIRALS.LW.ZS,"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%; low estimate)",sources,Africa Development Indicators,11
+SH.HIV.PREG.VIRALS.NUM,Number of HIV positive pregnant women receiving antiretrovirals,sources,Africa Development Indicators,11
+SH.HIV.PREG.VIRALS.ZS,"HIV positive pregnant women receiving antiretrovirals, using WHO/UNAIDS methodology (%)",sources,Africa Development Indicators,11
+SH.HIV.TOTL,Adults (ages 15+) and children (0-14 years) living with HIV,sources,Health Nutrition and Population Statistics,16
+SH.HIV.TOTL.HG.NUM,"People living with HIV/AIDS, total (high estimate)",sources,Africa Development Indicators,11
+SH.HIV.TOTL.LW.NUM,"People living with HIV/AIDS, total (low estimate)",sources,Africa Development Indicators,11
+SH.HIV.TOTL.NUM,"People living with HIV/AIDS, total",sources,Africa Development Indicators,11
+SH.HOSP.TOTL,Number of hospitals,sources,Indonesia Database for Policy and Economic Research,45
+SH.HTN.PREV.FE.ZS,"Prevalence of hypertension, female (% of female adults ages 30-79)",sources,Health Nutrition and Population Statistics,16
+SH.HTN.PREV.MA.ZS,"Prevalence of hypertension, male (% of male adults ages 30-79)",sources,Health Nutrition and Population Statistics,16
+SH.HTN.PREV.ZS,Prevalence of hypertension (% of adults ages 30-79),sources,Health Nutrition and Population Statistics,16
+SH.HTN.TRET.FE.ZS,"Treatment for hypertension, female (% of female adults ages 30-79 with hypertension)",sources,Health Nutrition and Population Statistics,16
+SH.HTN.TRET.MA.ZS,"Treatment for hypertension, male (% of male adults ages 30-79 with hypertension)",sources,Health Nutrition and Population Statistics,16
+SH.HTN.TRET.ZS,Treatment for hypertension (% of adults ages 30-79 with hypertension),sources,Health Nutrition and Population Statistics,16
+SH.IMM.ALLV.Q1.ZS,Vaccinations (all vaccinations) (% of children ages 12-23 months): Q1 (lowest),topics,Health,8
+SH.IMM.ALLV.Q2.ZS,Vaccinations (all vaccinations) (% of children ages 12-23 months): Q2,topics,Health,8
+SH.IMM.ALLV.Q3.ZS,Vaccinations (all vaccinations) (% of children ages 12-23 months): Q3,topics,Health,8
+SH.IMM.ALLV.Q4.ZS,Vaccinations (all vaccinations) (% of children ages 12-23 months): Q4,topics,Health,8
+SH.IMM.ALLV.Q5.ZS,Vaccinations (all vaccinations) (% of children ages 12-23 months): Q5 (highest),topics,Health,8
+SH.IMM.CHLD.ZS,Immunization Coverage for Children under 5 years old (in % of children population under 5 years old),sources,Indonesia Database for Policy and Economic Research,45
+SH.IMM.HEPB,"Immunization, HepB3 (% of one-year-old children)",topics,Health,8
+SH.IMM.HIB3,"Immunization, Hib3 (% of children ages 12-23 months)",sources,Health Nutrition and Population Statistics,16
+SH.IMM.IBCG,"Immunization, BCG (% of one-year-old children)",sources,Health Nutrition and Population Statistics,16
+SH.IMM.IBCG.Q1.ZS,Vaccinations (BCG) (% of children ages 12-23 months): Q1 (lowest),topics,Health,8
+SH.IMM.IBCG.Q2.ZS,Vaccinations (BCG) (% of children ages 12-23 months): Q2,topics,Health,8
+SH.IMM.IBCG.Q3.ZS,Vaccinations (BCG) (% of children ages 12-23 months): Q3,topics,Health,8
+SH.IMM.IBCG.Q4.ZS,Vaccinations (BCG) (% of children ages 12-23 months): Q4,topics,Health,8
+SH.IMM.IBCG.Q5.ZS,Vaccinations (BCG) (% of children ages 12-23 months): Q5 (highest),topics,Health,8
+SH.IMM.IDPT,"Immunization, DPT (% of children ages 12-23 months)",topics,Health,8
+SH.IMM.IDPT.Q1.ZS,Vaccinations (DPT 3) (% of children ages 12-23 months): Q1 (lowest),topics,Health,8
+SH.IMM.IDPT.Q2.ZS,Vaccinations (DPT 3) (% of children ages 12-23 months): Q2,topics,Health,8
+SH.IMM.IDPT.Q3.ZS,Vaccinations (DPT 3) (% of children ages 12-23 months): Q3,topics,Health,8
+SH.IMM.IDPT.Q4.ZS,Vaccinations (DPT 3) (% of children ages 12-23 months): Q4,topics,Health,8
+SH.IMM.IDPT.Q5.ZS,Vaccinations (DPT 3) (% of children ages 12-23 months): Q5 (highest),topics,Health,8
+SH.IMM.MEA2,"Immunization, measles second dose (% of children by the nationally recommended age)",topics,Health,8
+SH.IMM.MEAS,"Immunization, measles (% of children ages 12-23 months)",topics,Health,8
+SH.IMM.MEAS.Q1.ZS,Vaccinations (Measles) (% of children ages 12-23 months): Q1 (lowest),topics,Health,8
+SH.IMM.MEAS.Q2.ZS,Vaccinations (Measles) (% of children ages 12-23 months): Q2,topics,Health,8
+SH.IMM.MEAS.Q3.ZS,Vaccinations (Measles) (% of children ages 12-23 months): Q3,topics,Health,8
+SH.IMM.MEAS.Q4.ZS,Vaccinations (Measles) (% of children ages 12-23 months): Q4,topics,Health,8
+SH.IMM.MEAS.Q5.ZS,Vaccinations (Measles) (% of children ages 12-23 months): Q5 (highest),topics,Health,8
+SH.IMM.NONE.Q1.ZS,Vaccinations (no vaccinations) (% of children ages 12-23 months): Q1 (lowest),topics,Health,8
+SH.IMM.NONE.Q2.ZS,Vaccinations (no vaccinations) (% of children ages 12-23 months): Q2,topics,Health,8
+SH.IMM.NONE.Q3.ZS,Vaccinations (no vaccinations) (% of children ages 12-23 months): Q3,topics,Health,8
+SH.IMM.NONE.Q4.ZS,Vaccinations (no vaccinations) (% of children ages 12-23 months): Q4,topics,Health,8
+SH.IMM.NONE.Q5.ZS,Vaccinations (no vaccinations) (% of children ages 12-23 months): Q5 (highest),topics,Health,8
+SH.IMM.POL3,"Immunization, Pol3 (% of one-year-old children)",sources,Health Nutrition and Population Statistics,16
+SH.MED.BEDS.ZS,"Hospital beds (per 1,000 people)",topics,Health,8
+SH.MED.CMHW.P3,"Community health workers (per 1,000 people)",topics,Health,8
+SH.MED.MWIV.TOTL,Number of Midwives,sources,Indonesia Database for Policy and Economic Research,45
+SH.MED.NUMW.P3,"Nurses and midwives (per 1,000 people)",topics,Health,8
+SH.MED.NURS.ZS,Population per nurse,sources,WDI Database Archives,57
+SH.MED.PHYS.ZS,"Physicians (per 1,000 people)",topics,Health,8
+SH.MED.SAOP.P5,"Specialist surgical workforce (per 100,000 population)",topics,Health,8
+SH.MLR.CSES.TOTL,Reported clinical malaria cases (total),sources,Africa Development Indicators,11
+SH.MLR.DTHS.CHLD.ZS,Deaths among children under five years of age due to malaria (%),sources,Africa Development Indicators,11
+SH.MLR.DTHS.TOTL,Reported malaria deaths (total),sources,Africa Development Indicators,11
+SH.MLR.INCD,"Notified cases of malaria (per 100,000 people)",topics,Health,8
+SH.MLR.INCD.P3,"Incidence of malaria (per 1,000 population at risk)",topics,Health,8
+SH.MLR.IPTP.ZS,Intermittent preventive treatment (IPT) of malaria in pregnancy (% of pregnant women),topics,Health,8
+SH.MLR.ITN.1HH.ZS,Households with one or more insect-treated mosquito net (%),sources,Africa Development Indicators,11
+SH.MLR.NETA.Q1.ZS,Mosquito net use by children (any mosquito net) (% of children under 5): Q1 (lowest),topics,Health,8
+SH.MLR.NETA.Q2.ZS,Mosquito net use by children (any mosquito net) (% of children under 5): Q2,topics,Health,8
+SH.MLR.NETA.Q3.ZS,Mosquito net use by children (any mosquito net) (% of children under 5): Q3,topics,Health,8
+SH.MLR.NETA.Q4.ZS,Mosquito net use by children (any mosquito net) (% of children under 5): Q4,topics,Health,8
+SH.MLR.NETA.Q5.ZS,Mosquito net use by children (any mosquito net) (% of children under 5): Q5 (highest),topics,Health,8
+SH.MLR.NETH.Q1.ZS,Household posession of mosquito nets (any type of mosquito net) (% of households): Q1 (lowest),topics,Health,8
+SH.MLR.NETH.Q2.ZS,Household posession of mosquito nets (any type of mosquito net) (% of households): Q2,topics,Health,8
+SH.MLR.NETH.Q3.ZS,Household posession of mosquito nets (any type of mosquito net) (% of households): Q3,topics,Health,8
+SH.MLR.NETH.Q4.ZS,Household posession of mosquito nets (any type of mosquito net) (% of households): Q4,topics,Health,8
+SH.MLR.NETH.Q5.ZS,Household posession of mosquito nets (any type of mosquito net) (% of households): Q5 (highest),topics,Health,8
+SH.MLR.NETP.Q1.ZS,Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q1 (lowest),topics,Health,8
+SH.MLR.NETP.Q2.ZS,Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q2,topics,Health,8
+SH.MLR.NETP.Q3.ZS,Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q3,topics,Health,8
+SH.MLR.NETP.Q4.ZS,Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q4,topics,Health,8
+SH.MLR.NETP.Q5.ZS,Mosquito net use by pregnant women (any mosquito net) (% of pregnant women): Q5 (highest),topics,Health,8
+SH.MLR.NETS.Q1.ZS,"Malaria prevention, use of bed nets (% of under-5 children in the poorest quintile)",topics,Millenium development goals,18
+SH.MLR.NETS.Q2.ZS,Mosquito net use by children (insecticide-treated net) (% of children under 5): Q2,topics,Health,8
+SH.MLR.NETS.Q3.ZS,Mosquito net use by children (insecticide-treated net) (% of children under 5): Q3,topics,Health,8
+SH.MLR.NETS.Q4.ZS,Mosquito net use by children (insecticide-treated net) (% of children under 5): Q4,topics,Health,8
+SH.MLR.NETS.Q5.ZS,"Malaria prevention, use of bed nets (% of under-5 children in the richest quintile)",topics,Millenium development goals,18
+SH.MLR.NETS.ZS,Use of insecticide-treated bed nets (% of under-5 population),topics,Health,8
+SH.MLR.NTHI.Q1.ZS,Household posession of mosquito nets (insecticide-treated net) (% of households): Q1 (lowest),topics,Health,8
+SH.MLR.NTHI.Q2.ZS,Household posession of mosquito nets (insecticide-treated net) (% of households): Q2,topics,Health,8
+SH.MLR.NTHI.Q3.ZS,Household posession of mosquito nets (insecticide-treated net) (% of households): Q3,topics,Health,8
+SH.MLR.NTHI.Q4.ZS,Household posession of mosquito nets (insecticide-treated net) (% of households): Q4,topics,Health,8
+SH.MLR.NTHI.Q5.ZS,Household posession of mosquito nets (insecticide-treated net) (% of households): Q5 (highest),topics,Health,8
+SH.MLR.NTPI.Q1.ZS,Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q1 (lowest),topics,Health,8
+SH.MLR.NTPI.Q2.ZS,Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q2,topics,Health,8
+SH.MLR.NTPI.Q3.ZS,Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q3,topics,Health,8
+SH.MLR.NTPI.Q4.ZS,Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q4,topics,Health,8
+SH.MLR.NTPI.Q5.ZS,Mosquito net use by pregnant women (insecticide-treated net) (% of pregnant women): Q5 (highest),topics,Health,8
+SH.MLR.PREG.2IPT.ZS,Pregnant women who took at least 2 doses of intermittent preventative treatment (%),sources,Africa Development Indicators,11
+SH.MLR.SPFN.Q1.ZS,Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q1 (lowest),topics,Health,8
+SH.MLR.SPFN.Q2.ZS,Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q2,topics,Health,8
+SH.MLR.SPFN.Q3.ZS,Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q3,topics,Health,8
+SH.MLR.SPFN.Q4.ZS,Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q4,topics,Health,8
+SH.MLR.SPFN.Q5.ZS,Anti-malarial drug use by pregnant women (SP/Fansidar two or more doses) (% of women with a birth): Q5 (highest),topics,Health,8
+SH.MLR.TRET.Q1.ZS,Treatment of fever (% of children under 5 with fever): Q1 (lowest),topics,Health,8
+SH.MLR.TRET.Q2.ZS,Treatment of fever (% of children under 5 with fever): Q2,topics,Health,8
+SH.MLR.TRET.Q3.ZS,Treatment of fever (% of children under 5 with fever): Q3,topics,Health,8
+SH.MLR.TRET.Q4.ZS,Treatment of fever (% of children under 5 with fever): Q4,topics,Health,8
+SH.MLR.TRET.Q5.ZS,Treatment of fever (% of children under 5 with fever): Q5 (highest),topics,Health,8
+SH.MLR.TRET.ZS,Children with fever receiving antimalarial drugs (% of children under age 5 with fever),topics,Health,8
+SH.MMR.DTHS,Number of maternal deaths,topics,Health,8
+SH.MMR.LEVE,Length of paid maternity leave (calendar days),topics,Gender,17
+SH.MMR.LEVE.AL,Paid leave of at least 14 weeks available to mothers (1=yes; 0=no),topics,Gender,17
+SH.MMR.LEVE.GT,The government administers 100 percent of maternity leave benefits (1=yes; 0=no),topics,Gender,17
+SH.MMR.RISK,Lifetime risk of maternal death (1 in: rate varies by country),topics,Health,8
+SH.MMR.RISK.ZS,Lifetime risk of maternal death (%),topics,Health,8
+SH.MMR.WAGE.ZS,Maternal leave benefits (% of wages paid in covered period),topics,Gender,17
+SH.MORB.ZS,Morbidity Rate (in %),sources,Indonesia Database for Policy and Economic Research,45
+SH.PAR.LEVE,Length of paid shared parental leave (calendar days),topics,Gender,17
+SH.PAR.LEVE.AL,There is paid parental leave (1=yes; 0=no),topics,Gender,17
+SH.PAR.LEVE.FE,Length of paid parental leave for mother (calendar days),topics,Gender,17
+SH.PAR.LEVE.MA,Length of paid parental leave for father (calendar days),topics,Gender,17
+SH.POLINDES.TOTL,Number of Polindes (Poliklinik Desa/Village Polyclinic),sources,Indonesia Database for Policy and Economic Research,45
+SH.PRG.ANEM,Prevalence of anemia among pregnant women (%),topics,Health,8
+SH.PRG.SYPH.ZS,Prevalence of syphilis (% of women attending antenatal care),sources,Gender Statistics,14
+SH.PRV.SMOK,Prevalence of current tobacco use (% of adults),topics,Health,8
+SH.PRV.SMOK.FE,"Prevalence of current tobacco use, females (% of female adults)",topics,Health,8
+SH.PRV.SMOK.FE.Q1.ZS,Smoking (% of women): Q1 (lowest),topics,Health,8
+SH.PRV.SMOK.FE.Q2.ZS,Smoking (% of women): Q2,topics,Health,8
+SH.PRV.SMOK.FE.Q3.ZS,Smoking (% of women): Q3,topics,Health,8
+SH.PRV.SMOK.FE.Q4.ZS,Smoking (% of women): Q4,topics,Health,8
+SH.PRV.SMOK.FE.Q5.ZS,Smoking (% of women): Q5 (highest),topics,Health,8
+SH.PRV.SMOK.MA,"Prevalence of current tobacco use, males (% of male adults)",topics,Health,8
+SH.PTR.LEVE,Length of paid paternity leave (calendar days),topics,Gender,17
+SH.PTR.LEVE.AL,Paid leave is available to fathers (1=yes; 0=no),topics,Gender,17
+SH.PUSKESMAS.TOTL,Number of Puskesmas and its line services,sources,Indonesia Database for Policy and Economic Research,45
+SH.SGR.CRSK.ZS,Risk of catastrophic expenditure for surgical care (% of people at risk),topics,Health,8
+SH.SGR.IRSK.ZS,Risk of impoverishing expenditure for surgical care (% of people at risk),topics,Health,8
+SH.SGR.PROC.P5,"Number of surgical procedures (per 100,000 population)",topics,Health,8
+SH.STA.ACCH.ZS,Health care (% of population with access),sources,WDI Database Archives,57
+SH.STA.ACSN,Improved sanitation facilities (% of population with access),topics,Aid Effectiveness,2
+SH.STA.ACSN.RU,"Improved sanitation facilities, rural (% of rural population with access)",topics,Agriculture & Rural Development,1
+SH.STA.ACSN.UR,"Improved sanitation facilities, urban (% of urban population with access)",topics,Health,8
+SH.STA.AIRP.FE.P5,"Mortality rate attributed to household and ambient air pollution, age-standardized, female (per 100,000 female population)",topics,Health,8
+SH.STA.AIRP.MA.P5,"Mortality rate attributed to household and ambient air pollution, age-standardized, male (per 100,000 male population)",topics,Health,8
+SH.STA.AIRP.P5,"Mortality rate attributed to household and ambient air pollution, age-standardized (per 100,000 population)",topics,Environment,6
+SH.STA.ANCP.Q1.ZS,Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q1 (lowest),topics,Health,8
+SH.STA.ANCP.Q2.ZS,Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q2,topics,Health,8
+SH.STA.ANCP.Q3.ZS,Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q3,topics,Health,8
+SH.STA.ANCP.Q4.ZS,Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q4,topics,Health,8
+SH.STA.ANCP.Q5.ZS,Components of antenatal care (received iron tablets or syrup) (% of women with a birth): Q5 (highest),topics,Health,8
+SH.STA.ANV4.ZS,Pregnant women receiving prenatal care of at least four visits (% of pregnant women),sources,Gender Statistics,14
+SH.STA.ANVC.Q1.ZS,Antenatal care (any skilled personnel) (% of women with a birth): Q1 (lowest),topics,Health,8
+SH.STA.ANVC.Q2.ZS,Antenatal care (any skilled personnel) (% of women with a birth): Q2,topics,Health,8
+SH.STA.ANVC.Q3.ZS,Antenatal care (any skilled personnel) (% of women with a birth): Q3,topics,Health,8
+SH.STA.ANVC.Q4.ZS,Antenatal care (any skilled personnel) (% of women with a birth): Q4,topics,Health,8
+SH.STA.ANVC.Q5.ZS,Antenatal care (any skilled personnel) (% of women with a birth): Q5 (highest),topics,Health,8
+SH.STA.ANVC.ZS,Pregnant women receiving prenatal care (%),topics,Aid Effectiveness,2
+SH.STA.ANVP.Q1.ZS,Antenatal care (doctor) (% of women with a birth): Q1 (lowest),topics,Health,8
+SH.STA.ANVP.Q2.ZS,Antenatal care (doctor) (% of women with a birth): Q2,topics,Health,8
+SH.STA.ANVP.Q3.ZS,Antenatal care (doctor) (% of women with a birth): Q3,topics,Health,8
+SH.STA.ANVP.Q4.ZS,Antenatal care (doctor) (% of women with a birth): Q4,topics,Health,8
+SH.STA.ANVP.Q5.ZS,Antenatal care (doctor) (% of women with a birth): Q5 (highest),topics,Health,8
+SH.STA.ARIC.Q1.ZS,Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q1 (lowest),topics,Health,8
+SH.STA.ARIC.Q2.ZS,Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q2,topics,Health,8
+SH.STA.ARIC.Q3.ZS,Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q3,topics,Health,8
+SH.STA.ARIC.Q4.ZS,Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q4,topics,Health,8
+SH.STA.ARIC.Q5.ZS,Treatment of acute respiratory infection (ARI) (% of children under 5 taken to a health provider): Q5 (highest),topics,Health,8
+SH.STA.ARIC.ZS,ARI treatment (% of children under 5 taken to a health provider),topics,Health,8
+SH.STA.ARIF.Q1.ZS,Prevalence of acute respiratory infection (ARI) (% of children under 5): Q1 (lowest),topics,Health,8
+SH.STA.ARIF.Q2.ZS,Prevalence of acute respiratory infection (ARI) (% of children under 5): Q2,topics,Health,8
+SH.STA.ARIF.Q3.ZS,Prevalence of acute respiratory infection (ARI) (% of children under 5): Q3,topics,Health,8
+SH.STA.ARIF.Q4.ZS,Prevalence of acute respiratory infection (ARI) (% of children under 5): Q4,topics,Health,8
+SH.STA.ARIF.Q5.ZS,Prevalence of acute respiratory infection (ARI) (% of children under 5): Q5 (highest),topics,Health,8
+SH.STA.ARIF.ZS,ARI prevalence (% of children under 5),sources,WDI Database Archives,57
+SH.STA.BASS.Q1.ZS,People using at least basic sanitation services (% of population): Q1 (lowest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.Q2.ZS,People using at least basic sanitation services (% of population): Q2,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.Q3.ZS,People using at least basic sanitation services (% of population): Q3,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.Q4.ZS,People using at least basic sanitation services (% of population): Q4,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.Q5.ZS,People using at least basic sanitation services (% of population): Q5 (highest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.Q1.ZS,"People using at least basic sanitation services, rural (% of rural population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.Q2.ZS,"People using at least basic sanitation services, rural (% of rural population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.Q3.ZS,"People using at least basic sanitation services, rural (% of rural population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.Q4.ZS,"People using at least basic sanitation services, rural (% of rural population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.Q5.ZS,"People using at least basic sanitation services, rural (% of rural population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.RU.ZS,"People using at least basic sanitation services, rural (% of rural population)",topics,Environment,6
+SH.STA.BASS.UR.Q1.ZS,"People using at least basic sanitation services, urban (% of urban population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.UR.Q2.ZS,"People using at least basic sanitation services, urban (% of urban population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.UR.Q3.ZS,"People using at least basic sanitation services, urban (% of urban population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.UR.Q4.ZS,"People using at least basic sanitation services, urban (% of urban population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.UR.Q5.ZS,"People using at least basic sanitation services, urban (% of urban population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.BASS.UR.ZS,"People using at least basic sanitation services, urban (% of urban population)",topics,Environment,6
+SH.STA.BASS.ZS,People using at least basic sanitation services (% of population),topics,Environment,6
+SH.STA.BFED.Q1.ZS,Breastfeeding (% of children under 6 months): Q1 (lowest),topics,Health,8
+SH.STA.BFED.Q2.ZS,Breastfeeding (% of children under 6 months): Q2,topics,Health,8
+SH.STA.BFED.Q3.ZS,Breastfeeding (% of children under 6 months): Q3,topics,Health,8
+SH.STA.BFED.Q4.ZS,Breastfeeding (% of children under 6 months): Q4,topics,Health,8
+SH.STA.BFED.Q5.ZS,Breastfeeding (% of children under 6 months): Q5 (highest),topics,Health,8
+SH.STA.BFED.ZS,Exclusive breastfeeding (% of children under 6 months),topics,Health,8
+SH.STA.BRTC.Q1.ZS,Assistance during delivery (any skilled personnel) (% of births): Q1 (lowest),topics,Health,8
+SH.STA.BRTC.Q2.ZS,Assistance during delivery (any skilled personnel) (% of births): Q2,topics,Health,8
+SH.STA.BRTC.Q3.ZS,Assistance during delivery (any skilled personnel) (% of births): Q3,topics,Health,8
+SH.STA.BRTC.Q4.ZS,Assistance during delivery (any skilled personnel) (% of births): Q4,topics,Health,8
+SH.STA.BRTC.Q5.ZS,Assistance during delivery (any skilled personnel) (% of births): Q5 (highest),topics,Health,8
+SH.STA.BRTC.ZS,Births attended by skilled health staff (% of total),topics,Health,8
+SH.STA.BRTF.Q1.ZS,Place of delivery (births at health facility) (% of births): Q1 (lowest),topics,Health,8
+SH.STA.BRTF.Q2.ZS,Place of delivery (births at health facility) (% of births): Q2,topics,Health,8
+SH.STA.BRTF.Q3.ZS,Place of delivery (births at health facility) (% of births): Q3,topics,Health,8
+SH.STA.BRTF.Q4.ZS,Place of delivery (births at health facility) (% of births): Q4,topics,Health,8
+SH.STA.BRTF.Q5.ZS,Place of delivery (births at health facility) (% of births): Q5 (highest),topics,Health,8
+SH.STA.BRTP.Q1.ZS,Assistance during delivery (doctor) (% of births): Q1 (lowest),topics,Health,8
+SH.STA.BRTP.Q2.ZS,Assistance during delivery (doctor) (% of births): Q2,topics,Health,8
+SH.STA.BRTP.Q3.ZS,Assistance during delivery (doctor) (% of births): Q3,topics,Health,8
+SH.STA.BRTP.Q4.ZS,Assistance during delivery (doctor) (% of births): Q4,topics,Health,8
+SH.STA.BRTP.Q5.ZS,Assistance during delivery (doctor) (% of births): Q5 (highest),topics,Health,8
+SH.STA.BRTW.ZS,Low-birthweight babies (% of births),topics,Health,8
+SH.STA.DIAB.ZS,Diabetes prevalence (% of population ages 20 to 79),topics,Health,8
+SH.STA.DIRH.Q1.ZS,Prevalence of diarrhea (% of children under 5): Q1 (lowest),topics,Health,8
+SH.STA.DIRH.Q2.ZS,Prevalence of diarrhea (% of children under 5): Q2,topics,Health,8
+SH.STA.DIRH.Q3.ZS,Prevalence of diarrhea (% of children under 5): Q3,topics,Health,8
+SH.STA.DIRH.Q4.ZS,Prevalence of diarrhea (% of children under 5): Q4,topics,Health,8
+SH.STA.DIRH.Q5.ZS,Prevalence of diarrhea (% of children under 5): Q5 (highest),topics,Health,8
+SH.STA.DIRH.ZS,Diarrhea prevalence (% of children under 5),sources,WDI Database Archives,57
+SH.STA.FEVR.Q1.ZS,Prevalence of children with fever (% of children under 5): Q1 (lowest),topics,Health,8
+SH.STA.FEVR.Q2.ZS,Prevalence of children with fever (% of children under 5): Q2,topics,Health,8
+SH.STA.FEVR.Q3.ZS,Prevalence of children with fever (% of children under 5): Q3,topics,Health,8
+SH.STA.FEVR.Q4.ZS,Prevalence of children with fever (% of children under 5): Q4,topics,Health,8
+SH.STA.FEVR.Q5.ZS,Prevalence of children with fever (% of children under 5): Q5 (highest),topics,Health,8
+SH.STA.FGMO.NO.FE.ZS,Women who believe that female genital mutilation should not be continued (% of women ages 15-49 who have heard about FGM),sources,Gender Statistics,14
+SH.STA.FGMO.NO.MA.ZS,Men who believe that female genital mutilation should not be continued (% of men who have heard about FGM),sources,Gender Statistics,14
+SH.STA.FGMO.RE.FE.ZS,Women who believe religion requires female genital mutilation (% of women ages 15-49 who have heard about FGM),sources,Gender Statistics,14
+SH.STA.FGMO.RE.MA.ZS,Men who believe religion requires female genital mutilation (% of men who have heard about FGM),sources,Gender Statistics,14
+SH.STA.FGMS.Q1.ZS,Female genital mutilation prevalence (%): Q1 (lowest),sources,Gender Statistics,14
+SH.STA.FGMS.Q2.ZS,Female genital mutilation prevalence (%): Q2,sources,Gender Statistics,14
+SH.STA.FGMS.Q3.ZS,Female genital mutilation prevalence (%): Q3,sources,Gender Statistics,14
+SH.STA.FGMS.Q4.ZS,Female genital mutilation prevalence (%): Q4,sources,Gender Statistics,14
+SH.STA.FGMS.Q5.ZS,Female genital mutilation prevalence (%): Q5 (highest),sources,Gender Statistics,14
+SH.STA.FGMS.ZS,Female genital mutilation prevalence (%),topics,Health,8
+SH.STA.HYGN.Q1.ZS,People with basic handwashing facilities including soap and water (% of population): Q1 (lowest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.Q2.ZS,People with basic handwashing facilities including soap and water (% of population): Q2,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.Q3.ZS,People with basic handwashing facilities including soap and water (% of population): Q3,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.Q4.ZS,People with basic handwashing facilities including soap and water (% of population): Q4,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.Q5.ZS,People with basic handwashing facilities including soap and water (% of population): Q5 (highest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.Q1.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.Q2.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.Q3.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.Q4.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.Q5.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.RU.ZS,"People with basic handwashing facilities including soap and water, rural (% of rural population)",topics,Environment,6
+SH.STA.HYGN.UR.Q1.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.UR.Q2.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.UR.Q3.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.UR.Q4.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.UR.Q5.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.HYGN.UR.ZS,"People with basic handwashing facilities including soap and water, urban (% of urban population)",topics,Environment,6
+SH.STA.HYGN.ZS,People with basic handwashing facilities including soap and water (% of population),topics,Environment,6
+SH.STA.IYCF.ZS,"Infant and young child feeding practices, all 3 IYCF (% children ages 6-23 months)",sources,Health Nutrition and Population Statistics,16
+SH.STA.LBMI.Q1.ZS,Malnourished women (BMI is less than 18.5) (% of women): Q1 (lowest),topics,Health,8
+SH.STA.LBMI.Q2.ZS,Malnourished women (BMI is less than 18.5) (% of women): Q2,topics,Health,8
+SH.STA.LBMI.Q3.ZS,Malnourished women (BMI is less than 18.5) (% of women): Q3,topics,Health,8
+SH.STA.LBMI.Q4.ZS,Malnourished women (BMI is less than 18.5) (% of women): Q4,topics,Health,8
+SH.STA.LBMI.Q5.ZS,Malnourished women (BMI is less than 18.5) (% of women): Q5 (highest),topics,Health,8
+SH.STA.MALN.FE.ZS,"Prevalence of underweight, weight for age, female (% of children under 5)",topics,Health,8
+SH.STA.MALN.MA.ZS,"Prevalence of underweight, weight for age, male (% of children under 5)",topics,Health,8
+SH.STA.MALN.Q1.ZS,"Malnourished children (underweight, -2SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.MALN.Q2.ZS,"Malnourished children (underweight, -2SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.MALN.Q3.ZS,"Malnourished children (underweight, -2SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.MALN.Q4.ZS,"Malnourished children (underweight, -2SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.MALN.Q5.ZS,"Malnourished children (underweight, -2SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.MALN.ZS,"Prevalence of underweight, weight for age (% of children under 5)",topics,Health,8
+SH.STA.MALR,Malaria cases reported,sources,Health Nutrition and Population Statistics,16
+SH.STA.MLN3.Q1.ZS,"Malnourished children (underweight, -3SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.MLN3.Q2.ZS,"Malnourished children (underweight, -3SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.MLN3.Q3.ZS,"Malnourished children (underweight, -3SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.MLN3.Q4.ZS,"Malnourished children (underweight, -3SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.MLN3.Q5.ZS,"Malnourished children (underweight, -3SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.MMRT,"Maternal mortality ratio (modeled estimate, per 100,000 live births)",topics,Aid Effectiveness,2
+SH.STA.MMRT.NE,"Maternal mortality ratio (national estimate, per 100,000 live births)",topics,Health,8
+SH.STA.OB18.FE.ZS,"Prevalence of obesity, female (% of female population ages 18+)",topics,Gender,17
+SH.STA.OB18.MA.ZS,"Prevalence of obesity, male (% of male population ages 18+)",topics,Gender,17
+SH.STA.ODFC.Q1.ZS,People practicing open defecation (% of population): Q1 (lowest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.Q2.ZS,People practicing open defecation (% of population): Q2,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.Q3.ZS,People practicing open defecation (% of population): Q3,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.Q4.ZS,People practicing open defecation (% of population): Q4,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.Q5.ZS,People practicing open defecation (% of population): Q5 (highest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.Q1.ZS,"People practicing open defecation, rural (% of rural population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.Q2.ZS,"People practicing open defecation, rural (% of rural population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.Q3.ZS,"People practicing open defecation, rural (% of rural population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.Q4.ZS,"People practicing open defecation, rural (% of rural population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.Q5.ZS,"People practicing open defecation, rural (% of rural population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.RU.ZS,"People practicing open defecation, rural (% of rural population)",topics,Environment,6
+SH.STA.ODFC.UR.Q1.ZS,"People practicing open defecation, urban (% of urban population): Q1 (lowest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.UR.Q2.ZS,"People practicing open defecation, urban (% of urban population): Q2",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.UR.Q3.ZS,"People practicing open defecation, urban (% of urban population): Q3",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.UR.Q4.ZS,"People practicing open defecation, urban (% of urban population): Q4",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.UR.Q5.ZS,"People practicing open defecation, urban (% of urban population): Q5 (highest)",sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SH.STA.ODFC.UR.ZS,"People practicing open defecation, urban (% of urban population)",topics,Environment,6
+SH.STA.ODFC.ZS,People practicing open defecation (% of population),topics,Environment,6
+SH.STA.ORCF.ZS,Diarrhea treatment (% of children under 5 receiving oral rehydration and continued feeding),topics,Health,8
+SH.STA.ORHF.Q1.ZS,"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.ORHF.Q2.ZS,"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q2",topics,Health,8
+SH.STA.ORHF.Q3.ZS,"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q3",topics,Health,8
+SH.STA.ORHF.Q4.ZS,"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q4",topics,Health,8
+SH.STA.ORHF.Q5.ZS,"Treatment of diarrhea (ORS, RHS or increased fluids) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.ORHK.Q1.ZS,Knowledge of diarrhea care (% of mothers): Q1 (lowest),topics,Health,8
+SH.STA.ORHK.Q2.ZS,Knowledge of diarrhea care (% of mothers): Q2,topics,Health,8
+SH.STA.ORHK.Q3.ZS,Knowledge of diarrhea care (% of mothers): Q3,topics,Health,8
+SH.STA.ORHK.Q4.ZS,Knowledge of diarrhea care (% of mothers): Q4,topics,Health,8
+SH.STA.ORHK.Q5.ZS,Knowledge of diarrhea care (% of mothers): Q5 (highest),topics,Health,8
+SH.STA.ORHS.Q1ZS,Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q1 (lowest),topics,Health,8
+SH.STA.ORHS.Q2ZS,Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q2,topics,Health,8
+SH.STA.ORHS.Q3ZS,Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q3,topics,Health,8
+SH.STA.ORHS.Q4ZS,Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q4,topics,Health,8
+SH.STA.ORHS.Q5ZS,Treatment of diarrhea (either ORS or RHS) (% of children under 5): Q5 (highest),topics,Health,8
+SH.STA.ORTH,Diarrhea treatment (% of children under 5 who received ORS packet),topics,Health,8
+SH.STA.OWAD.FE.ZS,"Prevalence of overweight, female (% of female adults)",sources,Gender Statistics,14
+SH.STA.OWAD.MA.ZS,"Prevalence of overweight, male (% of male adults)",sources,Gender Statistics,14
+SH.STA.OWAD.ZS,Prevalence of overweight (% of adults),sources,Gender Statistics,14
+SH.STA.OWGH.FE.ZS,"Prevalence of overweight, weight for height, female (% of children under 5)",topics,Health,8
+SH.STA.OWGH.MA.ZS,"Prevalence of overweight, weight for height, male (% of children under 5)",topics,Health,8
+SH.STA.OWGH.ME.FE.ZS,"Prevalence of overweight, weight for height, female (modeled estimate, % of children under 5)",sources,World Development Indicators,2
+SH.STA.OWGH.ME.MA.ZS,"Prevalence of overweight, weight for height, male (modeled estimate, % of children under 5)",sources,World Development Indicators,2
+SH.STA.OWGH.ME.ZS,"Prevalence of overweight, weight for height (modeled estimate, % of children under 5)",topics,Health,8
+SH.STA.OWGH.ZS,"Prevalence of overweight, weight for height (% of children under 5)",topics,Health,8
+SH.STA.PNVC.ZS,Postnatal care coverage (% mothers),sources,Health Nutrition and Population Statistics,16
+SH.STA.POIS.P5,"Mortality rate attributed to unintentional poisoning (per 100,000 population)",topics,Environment,6
+SH.STA.POIS.P5.FE,"Mortality rate attributed to unintentional poisoning, female (per 100,000 female population)",topics,Environment,6
+SH.STA.POIS.P5.MA,"Mortality rate attributed to unintentional poisoning, male (per 100,000 male population)",topics,Environment,6
+SH.STA.SMSS.RU.ZS,"People using safely managed sanitation services, rural (% of rural population)",topics,Environment,6
+SH.STA.SMSS.UR.ZS,"People using safely managed sanitation services, urban (% of urban population)",topics,Environment,6
+SH.STA.SMSS.ZS,People using safely managed sanitation services (% of population),topics,Environment,6
+SH.STA.STN3.Q1.ZS,"Malnourished children (stunting, -3SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.STN3.Q2.ZS,"Malnourished children (stunting, -3SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.STN3.Q3.ZS,"Malnourished children (stunting, -3SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.STN3.Q4.ZS,"Malnourished children (stunting, -3SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.STN3.Q5.ZS,"Malnourished children (stunting, -3SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.STNT.FE.ZS,"Prevalence of stunting, height for age, female (% of children under 5)",topics,Health,8
+SH.STA.STNT.MA.ZS,"Prevalence of stunting, height for age, male (% of children under 5)",topics,Health,8
+SH.STA.STNT.ME.FE.ZS,"Prevalence of stunting, height for age, female (modeled estimate, % of children under 5)",sources,World Development Indicators,2
+SH.STA.STNT.ME.MA.ZS,"Prevalence of stunting, height for age, male (modeled estimate, % of children under 5)",sources,World Development Indicators,2
+SH.STA.STNT.ME.ZS,"Prevalence of stunting, height for age (modeled estimate, % of children under 5)",topics,Health,8
+SH.STA.STNT.Q1.ZS,"Malnourished children (stunting, -2SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.STNT.Q2.ZS,"Malnourished children (stunting, -2SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.STNT.Q3.ZS,"Malnourished children (stunting, -2SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.STNT.Q4.ZS,"Malnourished children (stunting, -2SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.STNT.Q5.ZS,"Malnourished children (stunting, -2SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.STNT.ZS,"Prevalence of stunting, height for age (% of children under 5)",topics,Aid Effectiveness,2
+SH.STA.SUIC.FE.P5,"Suicide mortality rate, female (per 100,000 female population)",topics,Health,8
+SH.STA.SUIC.MA.P5,"Suicide mortality rate, male (per 100,000 male population)",topics,Health,8
+SH.STA.SUIC.P5,"Suicide mortality rate (per 100,000 population)",topics,Health,8
+SH.STA.TRAF.FE.P5,"Mortality caused by road traffic injury, female (per 100,000 female population)",sources,Gender Statistics,14
+SH.STA.TRAF.MA.P5,"Mortality caused by road traffic injury, male (per 100,000 male population)",sources,Gender Statistics,14
+SH.STA.TRAF.P5,"Mortality caused by road traffic injury (per 100,000 population)",topics,Health,8
+SH.STA.WASH.FE.P5,"Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, female (per 100,000 female population)",sources,Gender Statistics,14
+SH.STA.WASH.MA.P5,"Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene, male (per 100,000 male population)",sources,Gender Statistics,14
+SH.STA.WASH.P5,"Mortality rate attributed to unsafe water, unsafe sanitation and lack of hygiene (per 100,000 population)",topics,Environment,6
+SH.STA.WAST.FE.ZS,"Prevalence of wasting, weight for height, female (% of children under 5)",topics,Health,8
+SH.STA.WAST.MA.ZS,"Prevalence of wasting, weight for height, male (% of children under 5)",topics,Health,8
+SH.STA.WAST.Q1.ZS,"Malnourished children (wasting, -2SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.WAST.Q2.ZS,"Malnourished children (wasting, -2SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.WAST.Q3.ZS,"Malnourished children (wasting, -2SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.WAST.Q4.ZS,"Malnourished children (wasting, -2SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.WAST.Q5.ZS,"Malnourished children (wasting, -2SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.STA.WAST.ZS,"Prevalence of wasting, weight for height (% of children under 5)",topics,Health,8
+SH.STA.WST3.Q1.ZS,"Malnourished children (wasting, -3SD) (% of children under 5): Q1 (lowest)",topics,Health,8
+SH.STA.WST3.Q2.ZS,"Malnourished children (wasting, -3SD) (% of children under 5): Q2",topics,Health,8
+SH.STA.WST3.Q3.ZS,"Malnourished children (wasting, -3SD) (% of children under 5): Q3",topics,Health,8
+SH.STA.WST3.Q4.ZS,"Malnourished children (wasting, -3SD) (% of children under 5): Q4",topics,Health,8
+SH.STA.WST3.Q5.ZS,"Malnourished children (wasting, -3SD) (% of children under 5): Q5 (highest)",topics,Health,8
+SH.SVR.WAST.FE.ZS,"Prevalence of severe wasting, weight for height, female (% of children under 5)",topics,Health,8
+SH.SVR.WAST.MA.ZS,"Prevalence of severe wasting, weight for height, male (% of children under 5)",topics,Health,8
+SH.SVR.WAST.ZS,"Prevalence of severe wasting, weight for height (% of children under 5)",topics,Health,8
+SH.TBS.CURE.ZS,Tuberculosis treatment success rate (% of new cases),topics,Health,8
+SH.TBS.DOTS,Tuberculosis cases detected under DOTS (%),sources,WDI Database Archives,57
+SH.TBS.DTEC.ZS,"Tuberculosis case detection rate (%, all forms)",topics,Health,8
+SH.TBS.INCD,"Incidence of tuberculosis (per 100,000 people)",topics,Aid Effectiveness,2
+SH.TBS.INCD.HG,"Incidence of tuberculosis, high uncertainty bound (per 100,000 people)",sources,Africa Development Indicators,11
+SH.TBS.INCD.LW,"Incidence of tuberculosis, low uncertainty bound (per 100,000 people)",sources,Africa Development Indicators,11
+SH.TBS.MORT,"Tuberculosis death rate (per 100,000 people)",sources,Africa Development Indicators,11
+SH.TBS.MORT.HG,"Deaths due to tuberculosis among HIV-negative people, high uncertainty bound (per 100,000 population)",sources,Africa Development Indicators,11
+SH.TBS.MORT.LW,"Deaths due to tuberculosis among HIV-negative people, low uncertainty bound (per 100,000 population)",sources,Africa Development Indicators,11
+SH.TBS.PREV,"Tuberculosis prevalence rate (per 1000,000 population, WHO)",sources,Africa Development Indicators,11
+SH.TBS.PREV.HG,"Tuberculosis prevalence rate, high uncertainty bound (per 1000,000 population, WHO)",sources,Africa Development Indicators,11
+SH.TBS.PREV.LW,"Tuberculosis prevalence rate, low uncertainty bound (per 1000,000 population, WHO)",sources,Africa Development Indicators,11
+SH.UHC.CONS.TO,Number of people pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure,topics,Health,8
+SH.UHC.CONS.ZS,Proportion of population pushed below the 50% median consumption poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.FBP1.TO,Number of people pushed further below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.FBP1.ZS,Proportion of population pushed further below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.FBP2.TO,Number of people pushed further below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.FBP2.ZS,Proportion of population pushed further below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.FBPR.TO,Number of people pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.FBPR.ZS,Proportion of population pushed further below the 60% median consumption poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.NOP1.CG,Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD),topics,Health,8
+SH.UHC.NOP1.TO,Number of people pushed below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,topics,Health,8
+SH.UHC.NOP1.ZG,Increase in poverty gap at $1.90 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line),topics,Health,8
+SH.UHC.NOP1.ZS,Proportion of population pushed below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.NOP2.CG,Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (USD),topics,Health,8
+SH.UHC.NOP2.TO,Number of people pushed below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,topics,Health,8
+SH.UHC.NOP2.ZG,Increase in poverty gap at $3.20 ($ 2011 PPP) poverty line due to out-of-pocket health care expenditure (% of poverty line),topics,Health,8
+SH.UHC.NOP2.ZS,Proportion of population pushed below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.NOPR.TO,Number of people pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.NOPR.ZS,Proportion of population pushed below the 60% median consumption poverty line by out-of-pocket health expenditure (%),topics,Health,8
+SH.UHC.OOPC.10.TO,Number of people spending more than 10% of household consumption or income on out-of-pocket health care expenditure,topics,Health,8
+SH.UHC.OOPC.10.ZS,Proportion of population spending more than 10% of household consumption or income on out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.OOPC.25.TO,Number of people spending more than 25% of household consumption or income on out-of-pocket health care expenditure,topics,Health,8
+SH.UHC.OOPC.25.ZS,Proportion of population spending more than 25% of household consumption or income on out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.SRVS.CV.XD,UHC service coverage index,topics,Health,8
+SH.UHC.TOT1.TO,Number of people pushed or further pushed below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.TOT1.ZS,Proportion of population pushed or further pushed below the $2.15 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.TOT2.TO,Number of people pushed or further pushed below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.TOT2.ZS,Proportion of population pushed or further pushed below the $3.65 ($ 2017 PPP) poverty line by out-of-pocket health care expenditure (%),topics,Health,8
+SH.UHC.TOTR.TO,Number of people pushed or further pushed below the 60% median consumption poverty line by out-of-pocket health care expenditure,sources,Health Nutrition and Population Statistics,16
+SH.UHC.TOTR.ZS,Proportion of population pushed or further pushed below the 60% median consumption poverty line by out-of-pocket health expenditure (%),topics,Health,8
+SH.VAC.TTNS.Q1.ZS,Tetanus toxoid vaccination (% of live births): Q1 (lowest),topics,Health,8
+SH.VAC.TTNS.Q2.ZS,Tetanus toxoid vaccination (% of live births): Q2,topics,Health,8
+SH.VAC.TTNS.Q3.ZS,Tetanus toxoid vaccination (% of live births): Q3,topics,Health,8
+SH.VAC.TTNS.Q4.ZS,Tetanus toxoid vaccination (% of live births): Q4,topics,Health,8
+SH.VAC.TTNS.Q5.ZS,Tetanus toxoid vaccination (% of live births): Q5 (highest),topics,Health,8
+SH.VAC.TTNS.ZS,Newborns protected against tetanus (%),topics,Health,8
+SH.VST.OUTP,Outpatient visits per capita,topics,Health,8
+SH.XPD.CHEX.GD.ZS,Current health expenditure (% of GDP),topics,Health,8
+SH.XPD.CHEX.PC.CD,Current health expenditure per capita (current US$),topics,Health,8
+SH.XPD.CHEX.PP.CD,"Current health expenditure per capita, PPP (current international $)",topics,Health,8
+SH.XPD.EHEX.CH.ZS,External health expenditure (% of current health expenditure),topics,Health,8
+SH.XPD.EHEX.EH.ZS,External health expenditure channeled through government (% of external health expenditure),sources,Health Nutrition and Population Statistics,16
+SH.XPD.EHEX.PC.CD,External health expenditure per capita (current US$),topics,Health,8
+SH.XPD.EHEX.PP.CD,"External health expenditure per capita, PPP (current international $)",topics,Health,8
+SH.XPD.EXTR.ZS,External resources for health (% of total expenditure on health),topics,Health,8
+SH.XPD.GHED.CH.ZS,Domestic general government health expenditure (% of current health expenditure),topics,Health,8
+SH.XPD.GHED.GD.ZS,Domestic general government health expenditure (% of GDP),topics,Health,8
+SH.XPD.GHED.GE.ZS,Domestic general government health expenditure (% of general government expenditure),topics,Health,8
+SH.XPD.GHED.PC.CD,Domestic general government health expenditure per capita (current US$),topics,Health,8
+SH.XPD.GHED.PP.CD,"Domestic general government health expenditure per capita, PPP (current international $)",topics,Health,8
+SH.XPD.HLTH.ZS,Public Expenditure on Health (% GDP),sources,WDI Database Archives,57
+SH.XPD.KHEX.GD.ZS,Capital health expenditure (% of GDP),sources,Health Nutrition and Population Statistics,16
+SH.XPD.OOPC.CH.ZS,Out-of-pocket expenditure (% of current health expenditure),topics,Health,8
+SH.XPD.OOPC.PC.CD,Out-of-pocket expenditure per capita (current US$),topics,Health,8
+SH.XPD.OOPC.PP.CD,"Out-of-pocket expenditure per capita, PPP (current international $)",topics,Health,8
+SH.XPD.OOPC.TO.ZS,Out-of-pocket health expenditure (% of total expenditure on health),topics,Health,8
+SH.XPD.OOPC.ZS,Out-of-pocket health expenditure (% of private expenditure on health),topics,Health,8
+SH.XPD.PCAP,Health expenditure per capita (current US$),topics,Health,8
+SH.XPD.PCAP.GX,Government health expenditure per capita (current US$),sources,Africa Development Indicators,11
+SH.XPD.PCAP.PP.KD,"Health expenditure per capita, PPP (constant 2011 international $)",topics,Health,8
+SH.XPD.PPPC,"Health expenditure per capita, PPP (current international $)",sources,WDI Database Archives,57
+SH.XPD.PRIV,"Health expenditure, private (% of total health expenditure)",topics,Health,8
+SH.XPD.PRIV.PRPP.ZS,Private prepaid plans (% of private expenditure on health),sources,Africa Development Indicators,11
+SH.XPD.PRIV.ZS,"Health expenditure, private (% of GDP)",topics,Health,8
+SH.XPD.PUBL,"Health expenditure, public (% of total health expenditure)",topics,Health,8
+SH.XPD.PUBL.GX.ZS,"Health expenditure, public (% of government expenditure)",topics,Health,8
+SH.XPD.PUBL.ZS,"Health expenditure, public (% of GDP)",topics,Health,8
+SH.XPD.PVTD.CH.ZS,Domestic private health expenditure (% of current health expenditure),topics,Health,8
+SH.XPD.PVTD.PC.CD,Domestic private health expenditure per capita (current US$),topics,Health,8
+SH.XPD.PVTD.PP.CD,"Domestic private health expenditure per capita, PPP (current international $)",topics,Health,8
+SH.XPD.SOSE.GX.ZS,Social Security expenditure on health (% government expenditure on health),sources,Africa Development Indicators,11
+SH.XPD.TOTL.CD,Health expenditure (current US$),sources,Africa Development Indicators,11
+SH.XPD.TOTL.ZS,"Health expenditure, total (% of GDP)",topics,Health,8
+SH_UHC_FH40,Proportion of population facing financial hardship due to out-of-pocket health expenditure (%),sources,World Development Indicators,2
+SH_UHC_FH40_FURTHER,"Proportion of population further impoverished due to out-of-pocket health expenditure, based on the societal poverty line (%)",sources,World Development Indicators,2
+SH_UHC_FH40_IMPOV,"Proportion of population facing impoverishing out-of-pocket health expenditure, based on the societal poverty line (%)",sources,World Development Indicators,2
+SH_UHC_FH40_LARGE,Proportion of population facing large (but non-impoverishing) out-of-pocket health expenditure (%),sources,World Development Indicators,2
+SH_UHC_FH40_PUSHED,Proportion of population pushed into poverty (based on the societal poverty line) due to out-of-pocket health expenditure (%),sources,World Development Indicators,2
+SH_UHC_SCI,UHC service coverage index,sources,World Development Indicators,2
+SH_UHC_SCI_CAPACITY,UHC service coverage sub-index on service capacity and access,sources,World Development Indicators,2
+SH_UHC_SCI_ID,UHC service coverage sub-index on infectious diseases,sources,World Development Indicators,2
+SH_UHC_SCI_NCD,UHC service coverage sub-index on non-communicable diseases,sources,World Development Indicators,2
+SH_UHC_SCI_RMNCH,"UHC service coverage sub-index on reproductive, maternal, newborn and child health",sources,World Development Indicators,2
+SI.DST.02ND.20,Income share held by second 20%,topics,Poverty,11
+SI.DST.03RD.20,Income share held by third 20%,topics,Poverty,11
+SI.DST.04TH.20,Income share held by fourth 20%,topics,Poverty,11
+SI.DST.05TH.20,Income share held by highest 20%,topics,Poverty,11
+SI.DST.10TH.10,Income share held by highest 10%,topics,Poverty,11
+SI.DST.50MD,Proportion of people living below 50 percent of median income (%),topics,Poverty,11
+SI.DST.FRST.10,Income share held by lowest 10%,topics,Poverty,11
+SI.DST.FRST.20,Income share held by lowest 20%,topics,Aid Effectiveness,2
+SI.POV.2DAY,Poverty headcount ratio at $3.10 a day (2011 PPP) (% of population),topics,Poverty,11
+SI.POV.BPL,Number of people live below the poverty line (in number of people),sources,Indonesia Database for Policy and Economic Research,45
+SI.POV.DDAY,Poverty headcount ratio at $3.00 a day (2021 PPP) (% of population),topics,Aid Effectiveness,2
+SI.POV.DDAY.CV,"Survey coverage for poverty headcount ratio (at $3.00 a day, 2021 PPP)",sources,WDI Database Archives,57
+SI.POV.DDAY.SH,"Share of total poor population (at $3.00 a day, 2021 PPP)",sources,WDI Database Archives,57
+SI.POV.GAP2,Poverty gap at $3.10 a day (2011 PPP) (%),topics,Poverty,11
+SI.POV.GAPS,Poverty gap at $3.00 a day (2021 PPP) (%),topics,Poverty,11
+SI.POV.GINI,Gini index,topics,Poverty,11
+SI.POV.LMIC,Poverty headcount ratio at $4.20 a day (2021 PPP) (% of population),topics,Poverty,11
+SI.POV.LMIC.GP,Poverty gap at $4.20 a day (2021 PPP) (%),topics,Poverty,11
+SI.POV.MDIM,Multidimensional poverty headcount ratio (% of total population),topics,Poverty,11
+SI.POV.MDIM.17,"Multidimensional poverty headcount ratio, children (% of population ages 0-17)",topics,Poverty,11
+SI.POV.MDIM.17.XQ,"Multidimensional poverty index, children (population ages 0-17) (scale 0-1)",topics,Poverty,11
+SI.POV.MDIM.FE,"Multidimensional poverty headcount ratio, female (% of female population)",topics,Poverty,11
+SI.POV.MDIM.HH,"Multidimensional poverty headcount ratio, household (% of total households)",topics,Poverty,11
+SI.POV.MDIM.IT,Multidimensional poverty intensity (average share of deprivations experienced by the poor),topics,Poverty,11
+SI.POV.MDIM.MA,"Multidimensional poverty headcount ratio, male (% of male population)",topics,Poverty,11
+SI.POV.MDIM.XQ,Multidimensional poverty index (scale 0-1),topics,Poverty,11
+SI.POV.MPUN,Multidimensional poverty headcount ratio (UNDP) (% of population),sources,World Development Indicators,2
+SI.POV.MPWB,Multidimensional poverty headcount ratio (World Bank) (% of population),sources,World Development Indicators,2
+SI.POV.NAGP,Poverty gap at national poverty lines (%),topics,Poverty,11
+SI.POV.NAHC,Poverty headcount ratio at national poverty lines (% of population),topics,Poverty,11
+SI.POV.NAPL,Poverty Line (in IDR),sources,Indonesia Database for Policy and Economic Research,45
+SI.POV.NAPR.ZS,Poverty Rate (in % of population),sources,Indonesia Database for Policy and Economic Research,45
+SI.POV.NGAP,Poverty Gap (index),sources,Indonesia Database for Policy and Economic Research,45
+SI.POV.NOP1,Number of poor at $3.00 a day (2021 PPP) (millions),sources,WDI Database Archives,57
+SI.POV.NSEV,Poverty Severity (index),sources,Indonesia Database for Policy and Economic Research,45
+SI.POV.RUGP,Rural poverty gap at national poverty lines (%),topics,Agriculture & Rural Development,1
+SI.POV.RUHC,Rural poverty headcount ratio at national poverty lines (% of rural population),topics,Agriculture & Rural Development,1
+SI.POV.SOPO,Poverty headcount ratio at societal poverty line (% of population),sources,World Development Indicators,2
+SI.POV.UMIC,Poverty headcount ratio at $8.30 a day (2021 PPP) (% of population),topics,Poverty,11
+SI.POV.UMIC.GP,Poverty gap at $8.30 a day (2021 PPP) (%),topics,Poverty,11
+SI.POV.URGP,Urban poverty gap at national poverty lines (%),topics,Poverty,11
+SI.POV.URHC,Urban poverty headcount ratio at national poverty lines (% of urban population),topics,Poverty,11
+SI.RMT.COST.IB.ZS,Average transaction cost of sending remittances to a specific country (%),topics,Financial Sector,7
+SI.RMT.COST.OB.ZS,Average transaction cost of sending remittances from a specific country (%),topics,Financial Sector,7
+SI.RMT.COST.ZS,Average transaction cost of remittances (%),sources,WDI Database Archives,57
+SI.SPR.PC40,"Survey mean consumption or income per capita, bottom 40% of population (2021 PPP $ per day)",topics,Poverty,11
+SI.SPR.PC40.05,"Survey mean consumption or income per capita, bottom 40% (2005 PPP $ per day)",topics,Poverty,11
+SI.SPR.PC40.ZG,"Annualized average growth rate in per capita real survey mean consumption or income, bottom 40% of population (%)",topics,Poverty,11
+SI.SPR.PCAP,"Survey mean consumption or income per capita, total population (2021 PPP $ per day)",topics,Poverty,11
+SI.SPR.PCAP.05,"Survey mean consumption or income per capita, total population (2005 PPP $ per day)",topics,Poverty,11
+SI.SPR.PCAP.ZG,"Annualized average growth rate in per capita real survey mean consumption or income, total population (%)",topics,Poverty,11
+SI.SPR.PGAP,Prosperity gap (average shortfall from a prosperity standard of $28/day),sources,World Development Indicators,2
+SL.AGR.0714.FE.ZS,"Child employment in agriculture, female (% of female economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.AGR.0714.MA.ZS,"Child employment in agriculture, male (% of male economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.AGR.0714.ZS,Child employment in agriculture (% of economically active children ages 7-14),topics,Social Protection & Labor,10
+SL.AGR.EMPL.FE.TO.ZS,"Employees, agriculture, female (% of total agricultural employment)",sources,WDI Database Archives,57
+SL.AGR.EMPL.FE.ZS,"Employment in agriculture, female (% of female employment) (modeled ILO estimate)",topics,Agriculture & Rural Development,1
+SL.AGR.EMPL.MA.ZS,"Employment in agriculture, male (% of male employment) (modeled ILO estimate)",topics,Agriculture & Rural Development,1
+SL.AGR.EMPL.ZS,Employment in agriculture (% of total employment) (modeled ILO estimate),topics,Agriculture & Rural Development,1
+SL.AGR.TOTL.IN.ZS,Labor force in agriculture (%),sources,WDI Database Archives,57
+SL.AGR.TOTL.MF,"Labor Force, Agriculture (%)",sources,WDI Database Archives,57
+SL.AGR.TOTL.ZS,Labor force in agriculture (% of total),sources,WDI Database Archives,57
+SL.EMP.1524.SP.FE.NE.ZS,"Employment to population ratio, ages 15-24, female (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.1524.SP.FE.ZS,"Employment to population ratio, ages 15-24, female (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.1524.SP.MA.NE.ZS,"Employment to population ratio, ages 15-24, male (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.1524.SP.MA.ZS,"Employment to population ratio, ages 15-24, male (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.1524.SP.NE.ZS,"Employment to population ratio, ages 15-24, total (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.1524.SP.ZS,"Employment to population ratio, ages 15-24, total (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.AGR.FRST.FSH,"Number of people employed in agriculture, forestry and fishery",sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.CNST,Number of people employed in construction sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.ELC,Number of people employed in electricity and utilities sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.FINS,Number of people employed in financial services sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.IND,Number of people employed in industrial sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.INSV.FE.ZS,Share of women in wage employment in the nonagricultural sector (% of total nonagricultural employment),topics,Social Protection & Labor,10
+SL.EMP.MINQ,Number of people employed in mining and quarrying sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.MPYR.FE.ZS,"Employers, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.MPYR.MA.ZS,"Employers, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.MPYR.ZS,"Employers, total (% of total employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.OWAC.FE.ZS,"Own-account workers, female (% of female employment) (modeled ILO estimate)",topics,Gender,17
+SL.EMP.OWAC.MA.ZS,"Own-account workers, male (% of male employment) (modeled ILO estimate)",topics,Gender,17
+SL.EMP.OWAC.ZS,"Own-account workers, total (% of total employment)",sources,Jobs,25
+SL.EMP.SELF.FE.ZS,"Self-employed, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.SELF.MA.ZS,"Self-employed, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.SELF.ZS,"Self-employed, total (% of total employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.SMGT.FE.ZS,Female share of employment in senior and middle management (%),topics,Social Protection & Labor,10
+SL.EMP.SOCL,Number of people employed in social services sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.TOTL,Number of people employed,sources,Africa Development Indicators,11
+SL.EMP.TOTL.FE,"Total employment, female (ages 15+)",sources,Africa Development Indicators,11
+SL.EMP.TOTL.MA,"Total employment, male (ages 15+)",sources,Africa Development Indicators,11
+SL.EMP.TOTL.SP.FE.NE.ZS,"Employment to population ratio, 15+, female (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.TOTL.SP.FE.ZS,"Employment to population ratio, 15+, female (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.TOTL.SP.MA.NE.ZS,"Employment to population ratio, 15+, male (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.TOTL.SP.MA.ZS,"Employment to population ratio, 15+, male (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.TOTL.SP.NE.ZS,"Employment to population ratio, 15+, total (%) (national estimate)",topics,Social Protection & Labor,10
+SL.EMP.TOTL.SP.ZS,"Employment to population ratio, 15+, total (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.TRAD,"Number of people employed in trade, hotel and restaurant sector",sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.TRAN,Number of people employed in transportation and telecommunication sector,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.UNDR,Number of people underemployed,sources,Indonesia Database for Policy and Economic Research,45
+SL.EMP.UNDR.FE.ZS,"Time-related underemployment, female (% of employment)",topics,Gender,17
+SL.EMP.UNDR.MA.ZS,"Time-related underemployment, male (% of employment)",topics,Gender,17
+SL.EMP.VULN.FE.ZS,"Vulnerable employment, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.VULN.MA.ZS,"Vulnerable employment, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.VULN.ZS,"Vulnerable employment, total (% of total employment) (modeled ILO estimate)",topics,Aid Effectiveness,2
+SL.EMP.WORK.FE.ZS,"Wage and salaried workers, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.WORK.MA.ZS,"Wage and salaried workers, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.EMP.WORK.ZS,"Wage and salaried workers, total (% of total employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.FAM.0714.FE.ZS,"Children in employment, unpaid family workers, female (% of female children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.FAM.0714.MA.ZS,"Children in employment, unpaid family workers, male (% of male children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.FAM.0714.ZS,"Children in employment, unpaid family workers (% of children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.FAM.WORK.FE.ZS,"Contributing family workers, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.FAM.WORK.MA.ZS,"Contributing family workers, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.FAM.WORK.ZS,"Contributing family workers, total (% of total employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.GDP.PCAP.EM.KD,GDP per person employed (constant 2021 PPP $),topics,Social Protection & Labor,10
+SL.GDP.PCAP.EM.KD.ZG,GDP per person employed (annual % growth),sources,Africa Development Indicators,11
+SL.GDP.PCAP.EM.XD,"GDP per person employed, index (1980 = 100)",sources,WDI Database Archives,57
+SL.IND.EMPL.FE.ZS,"Employment in industry, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.IND.EMPL.MA.ZS,"Employment in industry, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.IND.EMPL.ZS,Employment in industry (% of total employment) (modeled ILO estimate),topics,Social Protection & Labor,10
+SL.ISV.IFRM.FE.ZS,"Informal employment, female (% of total non-agricultural employment)",topics,Social Protection & Labor,10
+SL.ISV.IFRM.MA.ZS,"Informal employment, male (% of total non-agricultural employment)",topics,Social Protection & Labor,10
+SL.ISV.IFRM.ZS,Informal employment (% of total non-agricultural employment),topics,Social Protection & Labor,10
+SL.MNF.0714.FE.ZS,"Child employment in manufacturing, female (% of female economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.MNF.0714.MA.ZS,"Child employment in manufacturing, male (% of male economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.MNF.0714.ZS,Child employment in manufacturing (% of economically active children ages 7-14),topics,Social Protection & Labor,10
+SL.MNF.WAGE.FM,Ratio of female to male wages in manufacturing (%),topics,Social Protection & Labor,10
+SL.SLF.0714.FE.ZS,"Children in employment, self-employed, female (% of female children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.SLF.0714.MA.ZS,"Children in employment, self-employed, male (% of male children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.SLF.0714.ZS,"Children in employment, self-employed (% of children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.SRV.0714.FE.ZS,"Child employment in services, female (% of female economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.SRV.0714.MA.ZS,"Child employment in services, male (% of male economically active children ages 7-14)",topics,Social Protection & Labor,10
+SL.SRV.0714.ZS,Child employment in services (% of economically active children ages 7-14),topics,Social Protection & Labor,10
+SL.SRV.EMPL.FE.ZS,"Employment in services, female (% of female employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.SRV.EMPL.MA.ZS,"Employment in services, male (% of male employment) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.SRV.EMPL.ZS,Employment in services (% of total employment) (modeled ILO estimate),topics,Social Protection & Labor,10
+SL.TLF,Number of people in labor force,sources,Indonesia Database for Policy and Economic Research,45
+SL.TLF.0714.FE.ZS,"Children in employment, female (% of female children ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.MA.ZS,"Children in employment, male (% of male children ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.FE.TM,"Average working hours of children, study and work, female, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.FE.ZS,"Children in employment, study and work, female (% of female children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.MA.TM,"Average working hours of children, study and work, male, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.MA.ZS,"Children in employment, study and work, male (% of male children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.TM,"Average working hours of children, study and work, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.SW.ZS,"Children in employment, study and work (% of children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.FE.TM,"Average working hours of children, working only, female, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.FE.ZS,"Children in employment, work only, female (% of female children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.MA.TM,"Average working hours of children, working only, male, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.MA.ZS,"Children in employment, work only, male (% of male children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.TM,"Average working hours of children, working only, ages 7-14 (hours per week)",topics,Social Protection & Labor,10
+SL.TLF.0714.WK.ZS,"Children in employment, work only (% of children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.0714.ZS,"Children in employment, total (% of children ages 7-14)",topics,Social Protection & Labor,10
+SL.TLF.1524.FE.IN,"Labor force (15-24 years), female",sources,Africa Development Indicators,11
+SL.TLF.1524.FE.ZS,"Labor force (15-24 years), female (% of total labor force 15-24 years)",sources,Africa Development Indicators,11
+SL.TLF.1524.IN,"Labor force (15-24 years), total",sources,Africa Development Indicators,11
+SL.TLF.1524.MA.IN,"Labor force (15-24 years), male",sources,Africa Development Indicators,11
+SL.TLF.1524.MA.ZS,"Labor force (15-24 years), male (% of total labor force 15-24 years)",sources,Africa Development Indicators,11
+SL.TLF.1564.FE.IN,"Labor force (15-64 years), female",topics,Social Protection & Labor,10
+SL.TLF.1564.FE.ZS,"Labor force (15-64 years), female (% of total labor force 15-64 years)",topics,Social Protection & Labor,10
+SL.TLF.1564.IN,"Labor force (15-64 years), total",topics,Social Protection & Labor,10
+SL.TLF.1564.MA.IN,"Labor force (15-64 years), male",topics,Social Protection & Labor,10
+SL.TLF.1564.MA.ZS,"Labor force (15-64 years), male (% of total labor force 15-64 years)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.FE.NE.ZS,"Labor force participation rate for ages 15-24, female (%) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.FE.ZS,"Labor force participation rate for ages 15-24, female (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.MA.NE.ZS,"Labor force participation rate for ages 15-24, male (%) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.MA.ZS,"Labor force participation rate for ages 15-24, male (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.NE.ZS,"Labor force participation rate for ages 15-24, total (%) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.1524.ZS,"Labor force participation rate for ages 15-24, total (%) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.FE.ZS,"Labor force participation rate, female (% of female population ages 15-64) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.MA.ZS,"Labor force participation rate, male (% of male population ages 15-64) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ACTI.ZS,"Labor force participation rate, total (% of total population ages 15-64) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.ADVN.FE.ZS,"Labor force with advanced education, female (% of female working-age population with advanced education)",topics,Social Protection & Labor,10
+SL.TLF.ADVN.MA.ZS,"Labor force with advanced education, male (% of male working-age population with advanced education)",topics,Social Protection & Labor,10
+SL.TLF.ADVN.ZS,Labor force with advanced education (% of total working-age population with advanced education),topics,Social Protection & Labor,10
+SL.TLF.BASC.FE.ZS,"Labor force with basic education, female (% of female working-age population with basic education)",topics,Social Protection & Labor,10
+SL.TLF.BASC.MA.ZS,"Labor force with basic education, male (% of male working-age population with basic education)",topics,Social Protection & Labor,10
+SL.TLF.BASC.ZS,Labor force with basic education (% of total working-age population with basic education),topics,Social Protection & Labor,10
+SL.TLF.CACT.2534.FE.ZS,"Labor participation rate, female (% of female population ages 25-34)",sources,Africa Development Indicators,11
+SL.TLF.CACT.2534.MA.ZS,"Labor participation rate, male (% of male population ages 25-34)",sources,Africa Development Indicators,11
+SL.TLF.CACT.2534.ZS,"Labor participation rate, total (% of total population ages 25-34)",sources,Africa Development Indicators,11
+SL.TLF.CACT.2554.FE.ZS,"Labor participation rate, female (% of female population ages 25-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.2554.MA.ZS,"Labor participation rate, male (% of male population ages 25-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.2554.ZS,"Labor participation rate, total (% of total population ages 25-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.3554.FE.ZS,"Labor participation rate, female (% of female population ages 35-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.3554.MA.ZS,"Labor participation rate, male (% of male population ages 35-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.3554.ZS,"Labor participation rate, total (% of total population ages 35-54)",sources,Africa Development Indicators,11
+SL.TLF.CACT.5564.FE.ZS,"Labor participation rate, female (% of female population ages 55-64)",sources,Africa Development Indicators,11
+SL.TLF.CACT.5564.MA.ZS,"Labor participation rate, male (% of male population ages 55-64)",sources,Africa Development Indicators,11
+SL.TLF.CACT.5564.ZS,"Labor participation rate, total (% of total population ages 55-64)",sources,Africa Development Indicators,11
+SL.TLF.CACT.65UP.FE.ZS,"Labor participation rate, female (% of female population ages 65+)",sources,Africa Development Indicators,11
+SL.TLF.CACT.65UP.MA.ZS,"Labor participation rate, male (% of male population ages 65+)",sources,Africa Development Indicators,11
+SL.TLF.CACT.65UP.ZS,"Labor participation rate, total (% of total population ages 65+)",sources,Africa Development Indicators,11
+SL.TLF.CACT.FE.NE.ZS,"Labor force participation rate, female (% of female population ages 15+) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.CACT.FE.ZS,"Labor force participation rate, female (% of female population ages 15+) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.CACT.FM.NE.ZS,Ratio of female to male labor force participation rate (%) (national estimate),topics,Social Protection & Labor,10
+SL.TLF.CACT.FM.ZS,Ratio of female to male labor force participation rate (%) (modeled ILO estimate),topics,Social Protection & Labor,10
+SL.TLF.CACT.MA.NE.ZS,"Labor force participation rate, male (% of male population ages 15+) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.CACT.MA.ZS,"Labor force participation rate, male (% of male population ages 15+) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.CACT.NE.ZS,"Labor force participation rate, total (% of total population ages 15+) (national estimate)",topics,Social Protection & Labor,10
+SL.TLF.CACT.ZS,"Labor force participation rate, total (% of total population ages 15+) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.TLF.CHLD,"Labor force, children 10-14 (% of age group)",sources,WDI Database Archives,57
+SL.TLF.CHLD.ZS,"Labor force, children 10-14 (% of age group)",sources,WDI Database Archives,57
+SL.TLF.INTM.FE.ZS,"Labor force with intermediate education, female (% of female working-age population with intermediate education)",topics,Social Protection & Labor,10
+SL.TLF.INTM.MA.ZS,"Labor force with intermediate education, male (% of male working-age population with intermediate education)",topics,Social Protection & Labor,10
+SL.TLF.INTM.ZS,Labor force with intermediate education (% of total working-age population with intermediate education),topics,Social Protection & Labor,10
+SL.TLF.PART.FE.ZS,"Part time employment, female (% of total female employment)",topics,Social Protection & Labor,10
+SL.TLF.PART.MA.ZS,"Part time employment, male (% of total male employment)",topics,Social Protection & Labor,10
+SL.TLF.PART.TL.FE.ZS,"Part time employment, female (% of total part time employment)",topics,Social Protection & Labor,10
+SL.TLF.PART.ZS,"Part time employment, total (% of total employment)",topics,Social Protection & Labor,10
+SL.TLF.PRIM.FE.ZS,"Labor force with primary education, female (% of female labor force)",topics,Education,4
+SL.TLF.PRIM.MA.ZS,"Labor force with primary education, male (% of male labor force)",topics,Education,4
+SL.TLF.PRIM.ZS,Labor force with primary education (% of total),topics,Education,4
+SL.TLF.SECO.FE.ZS,"Labor force with secondary education, female (% of female labor force)",topics,Education,4
+SL.TLF.SECO.MA.ZS,"Labor force with secondary education, male (% of male labor force)",topics,Education,4
+SL.TLF.SECO.ZS,Labor force with secondary education (% of total),topics,Education,4
+SL.TLF.TERT.FE.ZS,"Labor force with tertiary education, female (% of female labor force)",topics,Education,4
+SL.TLF.TERT.MA.ZS,"Labor force with tertiary education, male (% of male labor force)",topics,Education,4
+SL.TLF.TERT.ZS,Labor force with tertiary education (% of total),topics,Education,4
+SL.TLF.TOTL.FE.IN,"Labor force, female",topics,Gender,17
+SL.TLF.TOTL.FE.IN.ZS,"Labor Force, Female (%)",sources,WDI Database Archives,57
+SL.TLF.TOTL.FE.ZS,"Labor force, female (% of total labor force)",topics,Education,4
+SL.TLF.TOTL.IN,"Labor force, total",topics,Education,4
+SL.TLF.TOTL.IN.ZG,"Labor force growth, total (annual %)",sources,WDI Database Archives,57
+SL.TLF.TOTL.MA.IN,"Labor force, male",sources,Africa Development Indicators,11
+SL.TLF.TOTL.MA.ZS,"Labor force, male (% of total labor force)",sources,Africa Development Indicators,11
+SL.UEM.1524.FE.NE.ZS,"Unemployment, youth female (% of female labor force ages 15-24) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.1524.FE.ZS,"Unemployment, youth female (% of female labor force ages 15-24) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.1524.FM.NE.ZS,Ratio of female to male youth unemployment rate (%) (national estimate),topics,Gender,17
+SL.UEM.1524.FM.ZS,Ratio of female to male youth unemployment rate (% ages 15-24) (modeled ILO estimate),topics,Gender,17
+SL.UEM.1524.MA.NE.ZS,"Unemployment, youth male (% of male labor force ages 15-24) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.1524.MA.ZS,"Unemployment, youth male (% of male labor force ages 15-24) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.1524.NE.ZS,"Unemployment, youth total (% of total labor force ages 15-24) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.1524.ZS,"Unemployment, youth total (% of total labor force ages 15-24) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.ADVN.FE.ZS,"Unemployment with advanced education, female (% of female labor force with advanced education)",topics,Social Protection & Labor,10
+SL.UEM.ADVN.MA.ZS,"Unemployment with advanced education, male (% of male labor force with advanced education)",topics,Social Protection & Labor,10
+SL.UEM.ADVN.ZS,Unemployment with advanced education (% of total labor force with advanced education),topics,Social Protection & Labor,10
+SL.UEM.BASC.FE.ZS,"Unemployment with basic education, female (% of female labor force with basic education)",topics,Social Protection & Labor,10
+SL.UEM.BASC.MA.ZS,"Unemployment with basic education, male (% of male labor force with basic education)",topics,Social Protection & Labor,10
+SL.UEM.BASC.ZS,Unemployment with basic education (% of total labor force with basic education),topics,Social Protection & Labor,10
+SL.UEM.INTM.FE.ZS,"Unemployment with intermediate education, female (% of female labor force with intermediate education)",topics,Social Protection & Labor,10
+SL.UEM.INTM.MA.ZS,"Unemployment with intermediate education, male (% of male labor force with intermediate education)",topics,Social Protection & Labor,10
+SL.UEM.INTM.ZS,Unemployment with intermediate education (% of total labor force with intermediate education),topics,Social Protection & Labor,10
+SL.UEM.LTRM.FE.ZS,"Long-term unemployment, female (% of female unemployment)",topics,Social Protection & Labor,10
+SL.UEM.LTRM.MA.ZS,"Long-term unemployment, male (% of male unemployment)",topics,Social Protection & Labor,10
+SL.UEM.LTRM.ZS,Long-term unemployment (% of total unemployment),topics,Social Protection & Labor,10
+SL.UEM.NEET.FE.ME.ZS,"Share of youth not in education, employment or training, female (% of female youth population) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.NEET.FE.ZS,"Share of youth not in education, employment or training, female (% of female youth population)",topics,Social Protection & Labor,10
+SL.UEM.NEET.MA.ME.ZS,"Share of youth not in education, employment or training, male (% of male youth population) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.NEET.MA.ZS,"Share of youth not in education, employment or training, male (% of male youth population)",topics,Social Protection & Labor,10
+SL.UEM.NEET.ME.ZS,"Share of youth not in education, employment or training, total (% of youth population) (modeled ILO estimate)",topics,Social Protection & Labor,10
+SL.UEM.NEET.ZS,"Share of youth not in education, employment or training, total (% of youth population)",topics,Social Protection & Labor,10
+SL.UEM.PRIM.FE.ZS,"Unemployment with primary education, female (% of female unemployment)",topics,Social Protection & Labor,10
+SL.UEM.PRIM.MA.ZS,"Unemployment with primary education, male (% of male unemployment)",topics,Social Protection & Labor,10
+SL.UEM.PRIM.ZS,Unemployment with primary education (% of total unemployment),topics,Social Protection & Labor,10
+SL.UEM.SECO.FE.ZS,"Unemployment with secondary education, female (% of female unemployment)",topics,Social Protection & Labor,10
+SL.UEM.SECO.MA.ZS,"Unemployment with secondary education, male (% of male unemployment)",topics,Social Protection & Labor,10
+SL.UEM.SECO.ZS,Unemployment with secondary education (% of total unemployment),topics,Social Protection & Labor,10
+SL.UEM.TERT.FE.ZS,"Unemployment with tertiary education, female (% of female unemployment)",topics,Social Protection & Labor,10
+SL.UEM.TERT.MA.ZS,"Unemployment with tertiary education, male (% of male unemployment)",topics,Social Protection & Labor,10
+SL.UEM.TERT.ZS,Unemployment with tertiary education (% of total unemployment),topics,Social Protection & Labor,10
+SL.UEM.TOTL,Number of people unemployed,sources,Indonesia Database for Policy and Economic Research,45
+SL.UEM.TOTL.FE.NE.ZS,"Unemployment, female (% of female labor force) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.TOTL.FE.ZS,"Unemployment, female (% of female labor force) (modeled ILO estimate)",topics,Education,4
+SL.UEM.TOTL.MA.NE.ZS,"Unemployment, male (% of male labor force) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.TOTL.MA.ZS,"Unemployment, male (% of male labor force) (modeled ILO estimate)",topics,Education,4
+SL.UEM.TOTL.NE.ZS,"Unemployment, total (% of total labor force) (national estimate)",topics,Social Protection & Labor,10
+SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",topics,Education,4
+SL.WAG.0714.FE.ZS,"Children in employment, wage workers, female (% of female children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.WAG.0714.MA.ZS,"Children in employment, wage workers, male (% of male children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SL.WAG.0714.ZS,"Children in employment, wage workers (% of children in employment, ages 7-14)",topics,Social Protection & Labor,10
+SM.EMI.TERT.ZS,Emigration rate of tertiary educated (% of total tertiary educated population),topics,Education,4
+SM.POP.ASYS.EA,Asylum-seekers by country or territory of asylum,sources,World Development Indicators,2
+SM.POP.ASYS.EO,Asylum-seekers by country or territory of origin,sources,World Development Indicators,2
+SM.POP.FDIP,Forcibly displaced people,sources,World Development Indicators,2
+SM.POP.FRGN,Foreign population,sources,WDI Database Archives,57
+SM.POP.FRGN.ZS,Foreign population (% of total population),sources,WDI Database Archives,57
+SM.POP.IASY,Inflows of asylum seekers,sources,WDI Database Archives,57
+SM.POP.IDPC,Internally displaced people (IDP) by country or territory of asylum / origin,sources,World Development Indicators,2
+SM.POP.IFRN,Inflows of foreign population,sources,WDI Database Archives,57
+SM.POP.NETM,Net migration,topics,Aid Effectiveness,2
+SM.POP.OPIP.EA,Other people in need of international protection by country or territory of asylum,sources,World Development Indicators,2
+SM.POP.OPIP.EO,Other people in need of international protection by country or territory of origin,sources,World Development Indicators,2
+SM.POP.REFG,Refugee population by country or territory of asylum,topics,Health,8
+SM.POP.REFG.OR,Refugee population by country or territory of origin,topics,Health,8
+SM.POP.RHCR.EA,Refugees under the mandate of the UNHCR by country or territory of asylum,sources,World Development Indicators,2
+SM.POP.RHCR.EO,Refugees under the mandate of the UNHCR by country or territory of origin,sources,World Development Indicators,2
+SM.POP.RRWA.EA,Refugees under the mandate of the UNRWA by country or territory of asylum,sources,World Development Indicators,2
+SM.POP.RRWA.EO,Refugees under the mandate of the UNRWA by country or territory of origin,sources,World Development Indicators,2
+SM.POP.TOTL,"International migrant stock, total",topics,Financial Sector,7
+SM.POP.TOTL.ZS,International migrant stock (% of population),topics,Financial Sector,7
+SM.TLF.FRGN.ZS,Foreign labor force (% of total labor force),sources,WDI Database Archives,57
+SM.TLF.IFRN,Inflows of foreign workers,sources,WDI Database Archives,57
+SN.ITK.DEFC,Number of people who are undernourished,sources,Health Nutrition and Population Statistics,16
+SN.ITK.DEFC.POP,Prevalence of undernourishment (population),sources,Africa Development Indicators,11
+SN.ITK.DEFC.ZS,Prevalence of undernourishment (% of population),topics,Health,8
+SN.ITK.DFCT,Depth of the food deficit (kilocalories per person per day),topics,Health,8
+SN.ITK.DPTH,Depth of hunger (kilocalories per person per day),topics,Health,8
+SN.ITK.MSFI.ZS,Prevalence of moderate or severe food insecurity in the population (%),topics,Health,8
+SN.ITK.SALT.ZS,Consumption of iodized salt (% of households),topics,Health,8
+SN.ITK.SVFI.ZS,Prevalence of severe food insecurity in the population (%),topics,Health,8
+SN.ITK.VAPP.Q1.ZS,Vitamin A supplements for postpartum women (% of women with a birth): Q1 (lowest),topics,Health,8
+SN.ITK.VAPP.Q2.ZS,Vitamin A supplements for postpartum women (% of women with a birth): Q2,topics,Health,8
+SN.ITK.VAPP.Q3.ZS,Vitamin A supplements for postpartum women (% of women with a birth): Q3,topics,Health,8
+SN.ITK.VAPP.Q4.ZS,Vitamin A supplements for postpartum women (% of women with a birth): Q4,topics,Health,8
+SN.ITK.VAPP.Q5.ZS,Vitamin A supplements for postpartum women (% of women with a birth): Q5 (highest),topics,Health,8
+SN.ITK.VITA.Q1.ZS,Vitamin A supplements for children (% of children ages 6-59 months): Q1 (lowest),topics,Health,8
+SN.ITK.VITA.Q2.ZS,Vitamin A supplements for children (% of children ages 6-59 months): Q2,topics,Health,8
+SN.ITK.VITA.Q3.ZS,Vitamin A supplements for children (% of children ages 6-59 months): Q3,topics,Health,8
+SN.ITK.VITA.Q4.ZS,Vitamin A supplements for children (% of children ages 6-59 months): Q4,topics,Health,8
+SN.ITK.VITA.Q5.ZS,Vitamin A supplements for children (% of children ages 6-59 months): Q5 (highest),topics,Health,8
+SN.ITK.VITA.ZS,Vitamin A supplementation coverage rate (% of children ages 6-59 months),topics,Health,8
+SN.PRD.FOOD,"Food Production, per capita (1979-81=100)",sources,WDI Database Archives,57
+SN.PRD.FOOD.ZC,"Food Production, per capita (1980=100)",sources,WDI Database Archives,57
+SN.SH.STA.MALN.ZS,"Sub-National Malnutrition prevalence, weight for age (% of children under 5)",sources,Subnational Malnutrition Database,5
+SN.SH.STA.OWGH.ZS,Sub-National Prevalence of overweight (% of children under 5),sources,Subnational Malnutrition Database,5
+SN.SH.STA.STNT.ZS,"Sub-National Malnutrition prevalence, height for age (% of children under 5)",sources,Subnational Malnutrition Database,5
+SN.SH.STA.WAST.ZS,Sub-National Prevalence of wasting (% of children under 5),sources,Subnational Malnutrition Database,5
+SN.SH.SVR.WAST.ZS,"Sub-National Prevalence of severe wasting, weight for height (% of children under 5)",sources,Subnational Malnutrition Database,5
+SN.STA.FPRD,Food Production per capita (1987=100),sources,WDI Database Archives,57
+SP.ADO.TFRT,"Adolescent fertility rate (births per 1,000 women ages 15-19)",topics,Health,8
+SP.BRT.CRUD.ZT,Crude Birth Rate (per 1000 population),sources,WDI Database Archives,57
+SP.DTH.INFR.ZS,Completeness of infant death reporting (% of reported infant deaths to estimated infant deaths),topics,Health,8
+SP.DTH.REPT.ZS,Completeness of total death reporting (% of reported total deaths to estimated total deaths),topics,Health,8
+SP.DYN.1ANTE.ZS,"Antenatal care coverage provided by a skilled health provider, at least one visit (%)",sources,Africa Development Indicators,11
+SP.DYN.4ANTE.ZS,"Antenatal care coverage provided by any provider (skilled or unskilled), at least four visits (%)",sources,Africa Development Indicators,11
+SP.DYN.AMRT.FE,"Mortality rate, adult, female (per 1,000 female adults)",topics,Health,8
+SP.DYN.AMRT.MA,"Mortality rate, adult, male (per 1,000 male adults)",topics,Health,8
+SP.DYN.CBRT,Crude Birth Rate (per thousand population),sources,WDI Database Archives,57
+SP.DYN.CBRT.IN,"Birth rate, crude (per 1,000 people)",topics,Health,8
+SP.DYN.CDRT.IN,"Death rate, crude (per 1,000 people)",topics,Health,8
+SP.DYN.CEBN.Q1,Mean number of children ever born to women aged 40-49: Q1 (lowest),topics,Health,8
+SP.DYN.CEBN.Q2,Mean number of children ever born to women aged 40-49: Q2,topics,Health,8
+SP.DYN.CEBN.Q3,Mean number of children ever born to women aged 40-49: Q3,topics,Health,8
+SP.DYN.CEBN.Q4,Mean number of children ever born to women aged 40-49: Q4,topics,Health,8
+SP.DYN.CEBN.Q5,Mean number of children ever born to women aged 40-49: Q5 (highest),topics,Health,8
+SP.DYN.CONM.AL.ZS,"Contraceptive prevalence, any modern method (% of all women ages 15-49)",sources,Health Nutrition and Population Statistics,16
+SP.DYN.CONM.Q1.ZS,Current use of contraception (modern method) (% of married women): Q1 (lowest),topics,Health,8
+SP.DYN.CONM.Q2.ZS,Current use of contraception (modern method) (% of married women): Q2,topics,Health,8
+SP.DYN.CONM.Q3.ZS,Current use of contraception (modern method) (% of married women): Q3,topics,Health,8
+SP.DYN.CONM.Q4.ZS,Current use of contraception (modern method) (% of married women): Q4,topics,Health,8
+SP.DYN.CONM.Q5.ZS,Current use of contraception (modern method) (% of married women): Q5 (highest),topics,Health,8
+SP.DYN.CONM.SA.ZS,"Contraceptive prevalence, any modern method (% of sexually active unmarried women ages 15-49)",sources,Health Nutrition and Population Statistics,16
+SP.DYN.CONM.ZS,"Contraceptive prevalence, any modern method (% of married women ages 15-49)",topics,Health,8
+SP.DYN.CONU.AL.ZS,"Contraceptive prevalence, any method (% of all women ages 15-49)",sources,Health Nutrition and Population Statistics,16
+SP.DYN.CONU.CDM.ZS,"Contraceptive use among married women 15-49 years old, condom (%)",sources,Africa Development Indicators,11
+SP.DYN.CONU.MDN.ZS,"Contraceptive use among married women 15-49 years old, modern method (%)",sources,Africa Development Indicators,11
+SP.DYN.CONU.Q1.ZS,Current use of contraception (any method) (% of married women): Q1 (lowest),topics,Health,8
+SP.DYN.CONU.Q2.ZS,Current use of contraception (any method) (% of married women): Q2,topics,Health,8
+SP.DYN.CONU.Q3.ZS,Current use of contraception (any method) (% of married women): Q3,topics,Health,8
+SP.DYN.CONU.Q4.ZS,Current use of contraception (any method) (% of married women): Q4,topics,Health,8
+SP.DYN.CONU.Q5.ZS,Current use of contraception (any method) (% of married women): Q5 (highest),topics,Health,8
+SP.DYN.CONU.SA.ZS,"Contraceptive prevalence, any method (% of sexually active unmarried women ages 15-49)",sources,Health Nutrition and Population Statistics,16
+SP.DYN.CONU.ZS,"Contraceptive prevalence, any method (% of married women ages 15-49)",topics,Health,8
+SP.DYN.IMRT,Infant Mortality Rate (per thousand live births),sources,WDI Database Archives,57
+SP.DYN.IMRT.FE.IN,"Mortality rate, infant, female (per 1,000 live births)",topics,Health,8
+SP.DYN.IMRT.IN,"Mortality rate, infant (per 1,000 live births)",topics,Health,8
+SP.DYN.IMRT.MA.IN,"Mortality rate, infant, male (per 1,000 live births)",topics,Health,8
+SP.DYN.IMRT.Q1,"Infant mortality rate (per 1,000 live births): Q1 (lowest)",topics,Health,8
+SP.DYN.IMRT.Q2,"Infant mortality rate (per 1,000 live births): Q2",topics,Health,8
+SP.DYN.IMRT.Q3,"Infant mortality rate (per 1,000 live births): Q3",topics,Health,8
+SP.DYN.IMRT.Q4,"Infant mortality rate (per 1,000 live births): Q4",topics,Health,8
+SP.DYN.IMRT.Q5,"Infant mortality rate (per 1,000 live births): Q5 (highest)",topics,Health,8
+SP.DYN.LE00.FE.IN,"Life expectancy at birth, female (years)",topics,Health,8
+SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",topics,Health,8
+SP.DYN.LE00.MA.IN,"Life expectancy at birth, male (years)",topics,Health,8
+SP.DYN.LE60.FE.IN,"Life expectancy at age 60, female (years)",topics,Gender,17
+SP.DYN.LE60.MA.IN,"Life expectancy at age 60, male (years)",topics,Gender,17
+SP.DYN.SMAM.FE,"Age at first marriage, female",topics,Gender,17
+SP.DYN.SMAM.MA,"Age at first marriage, male",topics,Gender,17
+SP.DYN.TFRT,Total Fertility Rate (births per woman),sources,WDI Database Archives,57
+SP.DYN.TFRT.IN,"Fertility rate, total (births per woman)",topics,Health,8
+SP.DYN.TFRT.Q1,Total fertility rate (TFR) (births per woman): Q1 (lowest),topics,Health,8
+SP.DYN.TFRT.Q2,Total fertility rate (TFR) (births per woman): Q2,topics,Health,8
+SP.DYN.TFRT.Q3,Total fertility rate (TFR) (births per woman): Q3,topics,Health,8
+SP.DYN.TFRT.Q4,Total fertility rate (TFR) (births per woman): Q4,topics,Health,8
+SP.DYN.TFRT.Q5,Total fertility rate (TFR) (births per woman): Q5 (highest),topics,Health,8
+SP.DYN.TO65.FE.ZS,"Survival to age 65, female (% of cohort)",topics,Health,8
+SP.DYN.TO65.MA.ZS,"Survival to age 65, male (% of cohort)",topics,Health,8
+SP.DYN.WFRT,Wanted fertility rate (births per woman),topics,Health,8
+SP.DYN.WFRT.Q1,Total wanted fertility rate (births per woman): Q1 (lowest),topics,Health,8
+SP.DYN.WFRT.Q2,Total wanted fertility rate (births per woman): Q2,topics,Health,8
+SP.DYN.WFRT.Q3,Total wanted fertility rate (births per woman): Q3,topics,Health,8
+SP.DYN.WFRT.Q4,Total wanted fertility rate (births per woman): Q4,topics,Health,8
+SP.DYN.WFRT.Q5,Total wanted fertility rate (births per woman): Q5 (highest),topics,Health,8
+SP.EXCHG.RATE.ICP,SP.EXCHG.RATE.ICP:Exchange Rate Value,sources,International Comparison Program (ICP) 2011,62
+SP.FER.TOTL.ZR,Total Fertility Rate,sources,WDI Database Archives,57
+SP.HOU.FEMA.ZS,Female headed households (% of households with a female head),topics,Health,8
+SP.M15.2024.FE.ZS,Women who were first married by age 15 (% of women ages 20-24),topics,Health,8
+SP.M18.2024.FE.ZS,Women who were first married by age 18 (% of women ages 20-24),topics,Health,8
+SP.MOR.INFA.ZT,Infant Mortality Rate (per 1000 infants),sources,WDI Database Archives,57
+SP.MTR.1519.Q1.ZS,Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q1 (lowest),topics,Health,8
+SP.MTR.1519.Q2.ZS,Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q2,topics,Health,8
+SP.MTR.1519.Q3.ZS,Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q3,topics,Health,8
+SP.MTR.1519.Q4.ZS,Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q4,topics,Health,8
+SP.MTR.1519.Q5.ZS,Teenage pregnancy and motherhood (% of women ages 15-19 who have had children or are currently pregnant): Q5 (highest),topics,Health,8
+SP.MTR.1519.ZS,Teenage mothers (% of women ages 15-19 who have had children or are currently pregnant),topics,Health,8
+SP.POP.0004.FE,"Population ages 00-04, female",sources,Gender Statistics,14
+SP.POP.0004.FE.5Y,"Population ages 00-04, female (% of female population)",topics,Health,8
+SP.POP.0004.MA,"Population ages 00-04, male",sources,Gender Statistics,14
+SP.POP.0004.MA.5Y,"Population ages 00-04, male (% of male population)",topics,Health,8
+SP.POP.0014.FE.IN,"Population ages 0-14, female",topics,Health,8
+SP.POP.0014.FE.ZS,"Population ages 0-14, female (% of female population)",topics,Health,8
+SP.POP.0014.MA.IN,"Population ages 0-14, male",topics,Health,8
+SP.POP.0014.MA.ZS,"Population ages 0-14, male (% of male population)",topics,Health,8
+SP.POP.0014.TO,"Population ages 0-14, total",topics,Health,8
+SP.POP.0014.TO.ZS,Population ages 0-14 (% of total population),topics,Education,4
+SP.POP.0024.TO.ZS,Population 0-24 (% of total population),sources,Africa Development Indicators,11
+SP.POP.0305.FE.UN,"Population, ages 3-5, female",topics,Education,4
+SP.POP.0305.MA.UN,"Population, ages 3-5, male",topics,Education,4
+SP.POP.0305.TO.UN,"Population, ages 3-5, total",topics,Education,4
+SP.POP.0406.FE.UN,"Population, ages 4-6, female",topics,Education,4
+SP.POP.0406.MA.UN,"Population, ages 4-6, male",topics,Education,4
+SP.POP.0406.TO.UN,"Population, ages 4-6, total",topics,Education,4
+SP.POP.0509.FE,"Population ages 05-09, female",sources,Gender Statistics,14
+SP.POP.0509.FE.5Y,"Population ages 05-09, female (% of female population)",topics,Health,8
+SP.POP.0509.FE.UN,"Population, ages 5-9, female",topics,Education,4
+SP.POP.0509.MA,"Population ages 05-09, male",sources,Gender Statistics,14
+SP.POP.0509.MA.5Y,"Population ages 05-09, male (% of male population)",topics,Health,8
+SP.POP.0509.MA.UN,"Population, ages 5-9, male",topics,Education,4
+SP.POP.0509.TO.UN,"Population, ages 5-9, total",topics,Education,4
+SP.POP.0510.FE.UN,"Population, ages 5-10, female",topics,Education,4
+SP.POP.0510.MA.UN,"Population, ages 5-10, male",topics,Education,4
+SP.POP.0510.TO.UN,"Population, ages 5-10, total",topics,Education,4
+SP.POP.0511.FE.UN,"Population, ages 5-11, female",topics,Education,4
+SP.POP.0511.MA.UN,"Population, ages 5-11, male",topics,Education,4
+SP.POP.0511.TO.UN,"Population, ages 5-11, total",topics,Education,4
+SP.POP.0609.FE.UN,"Population, ages 6-9, female",topics,Education,4
+SP.POP.0609.MA.UN,"Population, ages 6-9, male",topics,Education,4
+SP.POP.0609.TO.UN,"Population, ages 6-9, total",topics,Education,4
+SP.POP.0610.FE.UN,"Population, ages 6-10, female",topics,Education,4
+SP.POP.0610.MA.UN,"Population, ages 6-10, male",topics,Education,4
+SP.POP.0610.TO.UN,"Population, ages 6-10, total",topics,Education,4
+SP.POP.0611.FE.UN,"Population, ages 6-11, female",topics,Education,4
+SP.POP.0611.MA.UN,"Population, ages 6-11, male",topics,Education,4
+SP.POP.0611.TO.UN,"Population, ages 6-11, total",topics,Education,4
+SP.POP.0612.FE.UN,"Population, ages 6-12, female",topics,Education,4
+SP.POP.0612.MA.UN,"Population, ages 6-12, male",topics,Education,4
+SP.POP.0612.TO.UN,"Population, ages 6-12, total",topics,Education,4
+SP.POP.0709.FE.UN,"Population, ages 7-9, female",topics,Education,4
+SP.POP.0709.MA.UN,"Population, ages 7-9, male",topics,Education,4
+SP.POP.0709.TO.UN,"Population, ages 7-9, total",topics,Education,4
+SP.POP.0710.FE.UN,"Population, ages 7-10, female",topics,Education,4
+SP.POP.0710.MA.UN,"Population, ages 7-10, male",topics,Education,4
+SP.POP.0710.TO.UN,"Population, ages 7-10, total",topics,Education,4
+SP.POP.0711.FE.UN,"Population, ages 7-11, female",topics,Education,4
+SP.POP.0711.MA.UN,"Population, ages 7-11, male",topics,Education,4
+SP.POP.0711.TO.UN,"Population, ages 7-11, total",topics,Education,4
+SP.POP.0712.FE.UN,"Population, ages 7-12, female",topics,Education,4
+SP.POP.0712.MA.UN,"Population, ages 7-12, male",topics,Education,4
+SP.POP.0712.TO.UN,"Population, ages 7-12, total",topics,Education,4
+SP.POP.0713.FE.UN,"Population, ages 7-13, female",topics,Education,4
+SP.POP.0713.MA.UN,"Population, ages 7-13, male",topics,Education,4
+SP.POP.0713.TO.UN,"Population, ages 7-13, total",topics,Education,4
+SP.POP.1014.FE,"Population ages 10-14, female",sources,Gender Statistics,14
+SP.POP.1014.FE.5Y,"Population ages 10-14, female (% of female population)",topics,Health,8
+SP.POP.1014.FE.UN,"Population, ages 10-14, female",topics,Education,4
+SP.POP.1014.MA,"Population ages 10-14, male",sources,Gender Statistics,14
+SP.POP.1014.MA.5Y,"Population ages 10-14, male (% of male population)",topics,Health,8
+SP.POP.1014.MA.UN,"Population, ages 10-14, male",topics,Education,4
+SP.POP.1014.TO.UN,"Population, ages 10-14, total",topics,Education,4
+SP.POP.1015.FE.UN,"Population, ages 10-15, female",topics,Education,4
+SP.POP.1015.MA.UN,"Population, ages 10-15, male",topics,Education,4
+SP.POP.1015.TO.UN,"Population, ages 10-15, total",topics,Education,4
+SP.POP.1016.FE.UN,"Population, ages 10-16, female",topics,Education,4
+SP.POP.1016.MA.UN,"Population, ages 10-16, male",topics,Education,4
+SP.POP.1016.TO.UN,"Population, ages 10-16, total",topics,Education,4
+SP.POP.1017.FE.UN,"Population, ages 10-17, female",topics,Education,4
+SP.POP.1017.MA.UN,"Population, ages 10-17, male",topics,Education,4
+SP.POP.1017.TO.UN,"Population, ages 10-17, total",topics,Education,4
+SP.POP.1018.FE.UN,"Population, ages 10-18, female",topics,Education,4
+SP.POP.1018.MA.UN,"Population, ages 10-18, male",topics,Education,4
+SP.POP.1018.TO.UN,"Population, ages 10-18, total",topics,Education,4
+SP.POP.1115.FE.UN,"Population, ages 11-15, female",topics,Education,4
+SP.POP.1115.MA.UN,"Population, ages 11-15, male",topics,Education,4
+SP.POP.1115.TO.UN,"Population, ages 11-15, total",topics,Education,4
+SP.POP.1116.FE.UN,"Population, ages 11-16, female",topics,Education,4
+SP.POP.1116.MA.UN,"Population, ages 11-16, male",topics,Education,4
+SP.POP.1116.TO.UN,"Population, ages 11-16, total",topics,Education,4
+SP.POP.1117.FE.UN,"Population, ages 11-17, female",topics,Education,4
+SP.POP.1117.MA.UN,"Population, ages 11-17, male",topics,Education,4
+SP.POP.1117.TO.UN,"Population, ages 11-17, total",topics,Education,4
+SP.POP.1118.FE.UN,"Population, ages 11-18, female",topics,Education,4
+SP.POP.1118.MA.UN,"Population, ages 11-18, male",topics,Education,4
+SP.POP.1118.TO.UN,"Population, ages 11-18, total",topics,Education,4
+SP.POP.1215.FE.UN,"Population, ages 12-15, female",topics,Education,4
+SP.POP.1215.MA.UN,"Population, ages 12-15, male",topics,Education,4
+SP.POP.1215.TO.UN,"Population, ages 12-15, total",topics,Education,4
+SP.POP.1216.FE.UN,"Population, ages 12-16, female",topics,Education,4
+SP.POP.1216.MA.UN,"Population, ages 12-16, male",topics,Education,4
+SP.POP.1216.TO.UN,"Population, ages 12-16, total",topics,Education,4
+SP.POP.1217.FE.UN,"Population, ages 12-17, female",topics,Education,4
+SP.POP.1217.MA.UN,"Population, ages 12-17, male",topics,Education,4
+SP.POP.1217.TO.UN,"Population, ages 12-17, total",topics,Education,4
+SP.POP.1218.FE.UN,"Population, ages 12-18, female",topics,Education,4
+SP.POP.1218.MA.UN,"Population, ages 12-18, male",topics,Education,4
+SP.POP.1218.TO.UN,"Population, ages 12-18, total",topics,Education,4
+SP.POP.1316.FE.UN,"Population, ages 13-16, female",topics,Education,4
+SP.POP.1316.MA.UN,"Population, ages 13-16, male",topics,Education,4
+SP.POP.1316.TO.UN,"Population, ages 13-16, total",topics,Education,4
+SP.POP.1317.FE.UN,"Population, ages 13-17, female",topics,Education,4
+SP.POP.1317.MA.UN,"Population, ages 13-17, male",topics,Education,4
+SP.POP.1317.TO.UN,"Population, ages 13-17, total",topics,Education,4
+SP.POP.1318.FE.UN,"Population, ages 13-18, female",topics,Education,4
+SP.POP.1318.MA.UN,"Population, ages 13-18, male",topics,Education,4
+SP.POP.1318.TO.UN,"Population, ages 13-18, total",topics,Education,4
+SP.POP.1319.FE.UN,"Population, ages 13-19, female",topics,Education,4
+SP.POP.1319.MA.UN,"Population, ages 13-19, male",topics,Education,4
+SP.POP.1319.TO.UN,"Population, ages 13-19, total",topics,Education,4
+SP.POP.1418.FE.UN,"Population, ages 14-18, female",topics,Education,4
+SP.POP.1418.MA.UN,"Population, ages 14-18, male",topics,Education,4
+SP.POP.1418.TO.UN,"Population, ages 14-18, total",topics,Education,4
+SP.POP.1419.FE.UN,"Population, ages 14-19, female",topics,Education,4
+SP.POP.1419.MA.UN,"Population, ages 14-19, male",topics,Education,4
+SP.POP.1419.TO.UN,"Population, ages 14-19, total",topics,Education,4
+SP.POP.1519.FE,"Population ages 15-19, female",sources,Gender Statistics,14
+SP.POP.1519.FE.5Y,"Population ages 15-19, female (% of female population)",topics,Health,8
+SP.POP.1519.MA,"Population ages 15-19, male",sources,Gender Statistics,14
+SP.POP.1519.MA.5Y,"Population ages 15-19, male (% of male population)",topics,Health,8
+SP.POP.1524.FE.UN,"Population, ages 15-24, female",topics,Education,4
+SP.POP.1524.MA.UN,"Population, ages 15-24, male",topics,Education,4
+SP.POP.1524.TO.UN,"Population, ages 15-24, total",topics,Education,4
+SP.POP.1564.FE.IN,"Population ages 15-64, female",topics,Health,8
+SP.POP.1564.FE.ZS,"Population ages 15-64, female (% of female population)",topics,Health,8
+SP.POP.1564.IN,"Population aged 15-64, total",sources,WDI Database Archives,57
+SP.POP.1564.IN.ZS,Population ages 15-64 (% of total),sources,WDI Database Archives,57
+SP.POP.1564.MA.IN,"Population ages 15-64, male",topics,Health,8
+SP.POP.1564.MA.ZS,"Population ages 15-64, male (% of male population)",topics,Health,8
+SP.POP.1564.TO,"Population ages 15-64, total",topics,Health,8
+SP.POP.1564.TO.ZS,Population ages 15-64 (% of total population),topics,Education,4
+SP.POP.2024.FE,"Population ages 20-24, female",sources,Gender Statistics,14
+SP.POP.2024.FE.5Y,"Population ages 20-24, female (% of female population)",topics,Health,8
+SP.POP.2024.MA,"Population ages 20-24, male",sources,Gender Statistics,14
+SP.POP.2024.MA.5Y,"Population ages 20-24, male (% of male population)",topics,Health,8
+SP.POP.2529.FE,"Population ages 25-29, female",sources,Gender Statistics,14
+SP.POP.2529.FE.5Y,"Population ages 25-29, female (% of female population)",topics,Health,8
+SP.POP.2529.MA,"Population ages 25-29, male",sources,Gender Statistics,14
+SP.POP.2529.MA.5Y,"Population ages 25-29, male (% of male population)",topics,Health,8
+SP.POP.3034.FE,"Population ages 30-34, female",sources,Gender Statistics,14
+SP.POP.3034.FE.5Y,"Population ages 30-34, female (% of female population)",topics,Health,8
+SP.POP.3034.MA,"Population ages 30-34, male",sources,Gender Statistics,14
+SP.POP.3034.MA.5Y,"Population ages 30-34, male (% of male population)",topics,Health,8
+SP.POP.3539.FE,"Population ages 35-39, female",sources,Gender Statistics,14
+SP.POP.3539.FE.5Y,"Population ages 35-39, female (% of female population)",topics,Health,8
+SP.POP.3539.MA,"Population ages 35-39, male",sources,Gender Statistics,14
+SP.POP.3539.MA.5Y,"Population ages 35-39, male (% of male population)",topics,Health,8
+SP.POP.4044.FE,"Population ages 40-44, female",sources,Gender Statistics,14
+SP.POP.4044.FE.5Y,"Population ages 40-44, female (% of female population)",topics,Health,8
+SP.POP.4044.MA,"Population ages 40-44, male",sources,Gender Statistics,14
+SP.POP.4044.MA.5Y,"Population ages 40-44, male (% of male population)",topics,Health,8
+SP.POP.4549.FE,"Population ages 45-49, female",sources,Gender Statistics,14
+SP.POP.4549.FE.5Y,"Population ages 45-49, female (% of female population)",topics,Health,8
+SP.POP.4549.MA,"Population ages 45-49, male",sources,Gender Statistics,14
+SP.POP.4549.MA.5Y,"Population ages 45-49, male (% of male population)",topics,Health,8
+SP.POP.5054.FE,"Population ages 50-54, female",sources,Gender Statistics,14
+SP.POP.5054.FE.5Y,"Population ages 50-54, female (% of female population)",topics,Health,8
+SP.POP.5054.MA,"Population ages 50-54, male",sources,Gender Statistics,14
+SP.POP.5054.MA.5Y,"Population ages 50-54, male (% of male population)",topics,Health,8
+SP.POP.5559.FE,"Population ages 55-59, female",sources,Gender Statistics,14
+SP.POP.5559.FE.5Y,"Population ages 55-59, female (% of female population)",topics,Health,8
+SP.POP.5559.MA,"Population ages 55-59, male",sources,Gender Statistics,14
+SP.POP.5559.MA.5Y,"Population ages 55-59, male (% of male population)",topics,Health,8
+SP.POP.6064.FE,"Population ages 60-64, female",sources,Gender Statistics,14
+SP.POP.6064.FE.5Y,"Population ages 60-64, female (% of female population)",topics,Health,8
+SP.POP.6064.MA,"Population ages 60-64, male",sources,Gender Statistics,14
+SP.POP.6064.MA.5Y,"Population ages 60-64, male (% of male population)",topics,Health,8
+SP.POP.6569.FE,"Population ages 65-69, female",sources,Gender Statistics,14
+SP.POP.6569.FE.5Y,"Population ages 65-69, female (% of female population)",topics,Health,8
+SP.POP.6569.MA,"Population ages 65-69, male",sources,Gender Statistics,14
+SP.POP.6569.MA.5Y,"Population ages 65-69, male (% of male population)",topics,Health,8
+SP.POP.65UP.FE.IN,"Population ages 65 and above, female",topics,Health,8
+SP.POP.65UP.FE.ZS,"Population ages 65 and above, female (% of female population)",topics,Health,8
+SP.POP.65UP.MA.IN,"Population ages 65 and above, male",topics,Health,8
+SP.POP.65UP.MA.ZS,"Population ages 65 and above, male (% of male population)",topics,Health,8
+SP.POP.65UP.MF.ZS,Women ages 65 and above (per 100 men),sources,WDI Database Archives,57
+SP.POP.65UP.TO,"Population ages 65 and above, total",topics,Health,8
+SP.POP.65UP.TO.ZS,Population ages 65 and above (% of total population),topics,Health,8
+SP.POP.7074.FE,"Population ages 70-74, female",sources,Gender Statistics,14
+SP.POP.7074.FE.5Y,"Population ages 70-74, female (% of female population)",topics,Health,8
+SP.POP.7074.MA,"Population ages 70-74, male",sources,Gender Statistics,14
+SP.POP.7074.MA.5Y,"Population ages 70-74, male (% of male population)",topics,Health,8
+SP.POP.7579.FE,"Population ages 75-79, female",sources,Gender Statistics,14
+SP.POP.7579.FE.5Y,"Population ages 75-79, female (% of female population)",topics,Health,8
+SP.POP.7579.MA,"Population ages 75-79, male",sources,Gender Statistics,14
+SP.POP.7579.MA.5Y,"Population ages 75-79, male (% of male population)",topics,Health,8
+SP.POP.80UP.FE,"Population ages 80 and above, female",topics,Health,8
+SP.POP.80UP.FE.5Y,"Population ages 80 and above, female (% of female population)",topics,Health,8
+SP.POP.80UP.MA,"Population ages 80 and above, male",sources,Gender Statistics,14
+SP.POP.80UP.MA.5Y,"Population ages 80 and above, male (% of male population)",topics,Health,8
+SP.POP.AG00.FE.IN,"Age population, age 00, female, interpolated",topics,Gender,17
+SP.POP.AG00.FE.UN,"Population, age 0, female",topics,Education,4
+SP.POP.AG00.MA.IN,"Age population, age 00, male, interpolated",topics,Gender,17
+SP.POP.AG00.MA.UN,"Population, age 0, male",topics,Education,4
+SP.POP.AG00.TO.UN,"Population, age 0, total",topics,Education,4
+SP.POP.AG01.FE.IN,"Age population, age 01, female, interpolated",topics,Gender,17
+SP.POP.AG01.FE.UN,"Population, age 1, female",topics,Education,4
+SP.POP.AG01.MA.IN,"Age population, age 01, male, interpolated",topics,Gender,17
+SP.POP.AG01.MA.UN,"Population, age 1, male",topics,Education,4
+SP.POP.AG01.TO.UN,"Population, age 1, total",topics,Education,4
+SP.POP.AG02.FE.IN,"Age population, age 02, female, interpolated",topics,Gender,17
+SP.POP.AG02.FE.UN,"Population, age 2, female",topics,Education,4
+SP.POP.AG02.MA.IN,"Age population, age 02, male, interpolated",topics,Gender,17
+SP.POP.AG02.MA.UN,"Population, age 2, male",topics,Education,4
+SP.POP.AG02.TO.UN,"Population, age 2, total",topics,Education,4
+SP.POP.AG03.FE.IN,"Age population, age 03, female, interpolated",topics,Gender,17
+SP.POP.AG03.FE.UN,"Population, age 3, female",topics,Education,4
+SP.POP.AG03.MA.IN,"Age population, age 03, male, interpolated",topics,Gender,17
+SP.POP.AG03.MA.UN,"Population, age 3, male",topics,Education,4
+SP.POP.AG03.TO.UN,"Population, age 3, total",topics,Education,4
+SP.POP.AG04.FE.IN,"Age population, age 04, female, interpolated",topics,Gender,17
+SP.POP.AG04.FE.UN,"Population, age 4, female",topics,Education,4
+SP.POP.AG04.MA.IN,"Age population, age 04, male, interpolated",topics,Gender,17
+SP.POP.AG04.MA.UN,"Population, age 4, male",topics,Education,4
+SP.POP.AG04.TO.UN,"Population, age 4, total",topics,Education,4
+SP.POP.AG05.FE.IN,"Age population, age 05, female, interpolated",topics,Gender,17
+SP.POP.AG05.FE.UN,"Population, age 5, female",topics,Education,4
+SP.POP.AG05.MA.IN,"Age population, age 05, male, interpolated",topics,Gender,17
+SP.POP.AG05.MA.UN,"Population, age 5, male",topics,Education,4
+SP.POP.AG05.TO.UN,"Population, age 5, total",topics,Education,4
+SP.POP.AG06.FE.IN,"Age population, age 06, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG06.FE.UN,"Population, age 6, female",topics,Education,4
+SP.POP.AG06.MA.IN,"Age population, age 06, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG06.MA.UN,"Population, age 6, male",topics,Education,4
+SP.POP.AG06.TO.UN,"Population, age 6, total",topics,Education,4
+SP.POP.AG07.FE.IN,"Age population, age 07, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG07.FE.UN,"Population, age 7, female",topics,Education,4
+SP.POP.AG07.MA.IN,"Age population, age 07, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG07.MA.UN,"Population, age 7, male",topics,Education,4
+SP.POP.AG07.TO.UN,"Population, age 7, total",topics,Education,4
+SP.POP.AG08.FE.IN,"Age population, age 08, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG08.FE.UN,"Population, age 8, female",topics,Education,4
+SP.POP.AG08.MA.IN,"Age population, age 08, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG08.MA.UN,"Population, age 8, male",topics,Education,4
+SP.POP.AG08.TO.UN,"Population, age 8, total",topics,Education,4
+SP.POP.AG09.FE.IN,"Age population, age 09, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG09.FE.UN,"Population, age 9, female",topics,Education,4
+SP.POP.AG09.MA.IN,"Age population, age 09, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG09.MA.UN,"Population, age 9, male",topics,Education,4
+SP.POP.AG09.TO.UN,"Population, age 9, total",topics,Education,4
+SP.POP.AG10.FE.IN,"Age population, age 10, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG10.FE.UN,"Population, age 10, female",topics,Education,4
+SP.POP.AG10.MA.IN,"Age population, age 10, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG10.MA.UN,"Population, age 10, male",topics,Education,4
+SP.POP.AG10.TO.UN,"Population, age 10, total",topics,Education,4
+SP.POP.AG11.FE.IN,"Age population, age 11, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG11.FE.UN,"Population, age 11, female",topics,Education,4
+SP.POP.AG11.MA.IN,"Age population, age 11, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG11.MA.UN,"Population, age 11, male",topics,Education,4
+SP.POP.AG11.TO.UN,"Population, age 11, total",topics,Education,4
+SP.POP.AG12.FE.IN,"Age population, age 12, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG12.FE.UN,"Population, age 12, female",topics,Education,4
+SP.POP.AG12.MA.IN,"Age population, age 12, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG12.MA.UN,"Population, age 12, male",topics,Education,4
+SP.POP.AG12.TO.UN,"Population, age 12, total",topics,Education,4
+SP.POP.AG13.FE.IN,"Age population, age 13, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG13.FE.UN,"Population, age 13, female",topics,Education,4
+SP.POP.AG13.MA.IN,"Age population, age 13, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG13.MA.UN,"Population, age 13, male",topics,Education,4
+SP.POP.AG13.TO.UN,"Population, age 13, total",topics,Education,4
+SP.POP.AG14.FE.IN,"Age population, age 14, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG14.FE.UN,"Population, age 14, female",topics,Education,4
+SP.POP.AG14.MA.IN,"Age population, age 14, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG14.MA.UN,"Population, age 14, male",topics,Education,4
+SP.POP.AG14.TO.UN,"Population, age 14, total",topics,Education,4
+SP.POP.AG15.FE.IN,"Age population, age 15, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG15.FE.UN,"Population, age 15, female",topics,Education,4
+SP.POP.AG15.MA.IN,"Age population, age 15, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG15.MA.UN,"Population, age 15, male",topics,Education,4
+SP.POP.AG15.TO.UN,"Population, age 15, total",topics,Education,4
+SP.POP.AG16.FE.IN,"Age population, age 16, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG16.FE.UN,"Population, age 16, female",topics,Education,4
+SP.POP.AG16.MA.IN,"Age population, age 16, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG16.MA.UN,"Population, age 16, male",topics,Education,4
+SP.POP.AG16.TO.UN,"Population, age 16, total",topics,Education,4
+SP.POP.AG17.FE.IN,"Age population, age 17, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG17.FE.UN,"Population, age 17, female",topics,Education,4
+SP.POP.AG17.MA.IN,"Age population, age 17, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG17.MA.UN,"Population, age 17, male",topics,Education,4
+SP.POP.AG17.TO.UN,"Population, age 17, total",topics,Education,4
+SP.POP.AG18.FE.IN,"Age population, age 18, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG18.FE.UN,"Population, age 18, female",topics,Education,4
+SP.POP.AG18.MA.IN,"Age population, age 18, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG18.MA.UN,"Population, age 18, male",topics,Education,4
+SP.POP.AG18.TO.UN,"Population, age 18, total",topics,Education,4
+SP.POP.AG19.FE.IN,"Age population, age 19, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG19.FE.UN,"Population, age 19, female",topics,Education,4
+SP.POP.AG19.MA.IN,"Age population, age 19, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG19.MA.UN,"Population, age 19, male",topics,Education,4
+SP.POP.AG19.TO.UN,"Population, age 19, total",topics,Education,4
+SP.POP.AG20.FE.IN,"Age population, age 20, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG20.FE.UN,"Population, age 20, female",topics,Education,4
+SP.POP.AG20.MA.IN,"Age population, age 20, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG20.MA.UN,"Population, age 20, male",topics,Education,4
+SP.POP.AG20.TO.UN,"Population, age 20, total",topics,Education,4
+SP.POP.AG21.FE.IN,"Age population, age 21, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG21.FE.UN,"Population, age 21, female",topics,Education,4
+SP.POP.AG21.MA.IN,"Age population, age 21, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG21.MA.UN,"Population, age 21, male",topics,Education,4
+SP.POP.AG21.TO.UN,"Population, age 21, total",topics,Education,4
+SP.POP.AG22.FE.IN,"Age population, age 22, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG22.FE.UN,"Population, age 22, female",topics,Education,4
+SP.POP.AG22.MA.IN,"Age population, age 22, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG22.MA.UN,"Population, age 22, male",topics,Education,4
+SP.POP.AG22.TO.UN,"Population, age 22, total",topics,Education,4
+SP.POP.AG23.FE.IN,"Age population, age 23, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG23.FE.UN,"Population, age 23, female",topics,Education,4
+SP.POP.AG23.MA.IN,"Age population, age 23, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG23.MA.UN,"Population, age 23, male",topics,Education,4
+SP.POP.AG23.TO.UN,"Population, age 23, total",topics,Education,4
+SP.POP.AG24.FE.IN,"Age population, age 24, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG24.FE.UN,"Population, age 24, female",topics,Education,4
+SP.POP.AG24.MA.IN,"Age population, age 24, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG24.MA.UN,"Population, age 24, male",topics,Education,4
+SP.POP.AG24.TO.UN,"Population, age 24, total",topics,Education,4
+SP.POP.AG25.FE.IN,"Age population, age 25, female, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG25.FE.UN,"Population, age 25, female",topics,Education,4
+SP.POP.AG25.MA.IN,"Age population, age 25, male, interpolated",sources,Health Nutrition and Population Statistics,16
+SP.POP.AG25.MA.UN,"Population, age 25, male",topics,Education,4
+SP.POP.AG25.TO.UN,"Population, age 25, total",topics,Education,4
+SP.POP.BRTH.MF,Sex ratio at birth (male births per female births),topics,Health,8
+SP.POP.DPND,Age dependency ratio (% of working-age population),topics,Health,8
+SP.POP.DPND.OL,"Age dependency ratio, old (% of working-age population)",topics,Health,8
+SP.POP.DPND.YG,"Age dependency ratio, young (% of working-age population)",topics,Health,8
+SP.POP.GROW,Population growth (annual %),topics,Health,8
+SP.POP.LAND.ZS,Population density (people per sq km),sources,WDI Database Archives,57
+SP.POP.SCIE.RD,Scientists and engineers in research and dev. (per million people),sources,WDI Database Archives,57
+SP.POP.SCIE.RD.P6,Researchers in R&D (per million people),topics,Science & Technology,14
+SP.POP.TECH.RD,Technicians in research and development (per million people),sources,WDI Database Archives,57
+SP.POP.TECH.RD.P6,Technicians in R&D (per million people),topics,Science & Technology,14
+SP.POP.TOTL,"Population, total",topics,Health,8
+SP.POP.TOTL.FE.IN,"Population, female",topics,Health,8
+SP.POP.TOTL.FE.ZS,"Population, female (% of total population)",topics,Health,8
+SP.POP.TOTL.ICP,SP.POP.TOTL.ICP:Population,sources,International Comparison Program (ICP) 2011,62
+SP.POP.TOTL.ICP.ZS,SP.POP.TOTL.ICP.ZS:Population shares (World=100),sources,International Comparison Program (ICP) 2011,62
+SP.POP.TOTL.MA.IN,"Population, male",topics,Health,8
+SP.POP.TOTL.MA.ZS,"Population, male (% of total population)",topics,Health,8
+SP.POP.TOTL.ZS,Population (% of total),sources,Subnational Population,50
+SP.PRE.TOTL.FE.IN,"School age population, pre-primary education, female (number)",topics,Education,4
+SP.PRE.TOTL.IN,"School age population, pre-primary education, both sexes (number)",topics,Education,4
+SP.PRE.TOTL.MA.IN,"School age population, pre-primary education, male (number)",topics,Education,4
+SP.PRM.GRAD.FE,"School age population, last grade of primary education, female (number)",topics,Education,4
+SP.PRM.GRAD.MA,"School age population, last grade of primary education, male (number)",topics,Education,4
+SP.PRM.GRAD.TO,"School age population, last grade of primary education, both sexes (number)",topics,Education,4
+SP.PRM.TOTL.FE.IN,"School age population, primary education, female (number)",topics,Education,4
+SP.PRM.TOTL.IN,"School age population, primary education, both sexes (number)",topics,Education,4
+SP.PRM.TOTL.MA.IN,"School age population, primary education, male (number)",topics,Education,4
+SP.REG.BRTH.FE.ZS,"Completeness of birth registration, female (%)",topics,Health,8
+SP.REG.BRTH.MA.ZS,"Completeness of birth registration, male (%)",topics,Health,8
+SP.REG.BRTH.Q1.ZS,Completeness of birth registration (%): Q1 (lowest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SP.REG.BRTH.Q2.ZS,Completeness of birth registration (%): Q2,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SP.REG.BRTH.Q3.ZS,Completeness of birth registration (%): Q3,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SP.REG.BRTH.Q4.ZS,Completeness of birth registration (%): Q4,sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SP.REG.BRTH.Q5.ZS,Completeness of birth registration (%): Q5 (highest),sources,Health Nutrition and Population Statistics by Wealth Quintile,39
+SP.REG.BRTH.RU.ZS,"Completeness of birth registration, rural (%)",topics,Health,8
+SP.REG.BRTH.UR.ZS,"Completeness of birth registration, urban (%)",topics,Health,8
+SP.REG.BRTH.ZS,Completeness of birth registration (%),topics,Health,8
+SP.REG.DTHS.ZS,Completeness of death registration with cause-of-death information (%),topics,Health,8
+SP.RUR.TOTL,Rural population,topics,Agriculture & Rural Development,1
+SP.RUR.TOTL.FE.ZS,"Rural population, female (% of total)",topics,Gender,17
+SP.RUR.TOTL.MA.ZS,"Rural population, male (% of total)",topics,Gender,17
+SP.RUR.TOTL.ZG,Rural population growth (annual %),topics,Agriculture & Rural Development,1
+SP.RUR.TOTL.ZS,Rural population (% of total population),topics,Agriculture & Rural Development,1
+SP.SEC.LTOT.FE.IN,"School age population, lower secondary education, female (number)",topics,Education,4
+SP.SEC.LTOT.IN,"School age population, lower secondary education, both sexes (number)",topics,Education,4
+SP.SEC.LTOT.MA.IN,"School age population, lower secondary education, male (number)",topics,Education,4
+SP.SEC.TOTL.FE.IN,"School age population, secondary education, female (number)",topics,Education,4
+SP.SEC.TOTL.IN,"School age population, secondary education, both sexes (number)",topics,Education,4
+SP.SEC.TOTL.MA.IN,"School age population, secondary education, male (number)",topics,Education,4
+SP.SEC.UTOT.FE.IN,"School age population, upper secondary education, female (number)",topics,Education,4
+SP.SEC.UTOT.IN,"School age population, upper secondary education, both sexes (number)",topics,Education,4
+SP.SEC.UTOT.MA.IN,"School age population, upper secondary education, male (number)",topics,Education,4
+SP.TER.TOTL.FE.IN,"School age population, tertiary education, female (number)",topics,Education,4
+SP.TER.TOTL.IN,"School age population, tertiary education, both sexes (number)",topics,Education,4
+SP.TER.TOTL.MA.IN,"School age population, tertiary education, male (number)",topics,Education,4
+SP.URB.GROW,Urban population growth (annual %),topics,Urban Development,16
+SP.URB.LCTY,Population in largest city,sources,WDI Database Archives,57
+SP.URB.LCTY.UR.ZS,Population in the largest city (% of urban population),sources,WDI Database Archives,57
+SP.URB.MCTY,Population in urban agglomerations > 1 million,sources,WDI Database Archives,57
+SP.URB.MCTY.UR.ZS,Population in urban agglomerations > 1 million (% of total pop),sources,WDI Database Archives,57
+SP.URB.TOTL,Urban population,topics,Urban Development,16
+SP.URB.TOTL.FE.ZS,"Urban population, female (% of total)",topics,Gender,17
+SP.URB.TOTL.IN.ZS,Urban population (% of total population),topics,Urban Development,16
+SP.URB.TOTL.MA.ZS,"Urban population, male (% of total)",topics,Gender,17
+SP.URB.TOTL.ZS,Percentage of Population in Urban Areas (in % of Total Population),sources,Indonesia Database for Policy and Economic Research,45
+SP.URB.TOTL.ZS.SUS,"Percentage of Population in Urban Areas (in % of Total Population), SUSENAS",sources,Indonesia Database for Policy and Economic Research,45
+SP.UWT.LMTG.Q1.ZS,Unmet need for family planning (for limiting) (% of married women): Q1 (lowest),topics,Health,8
+SP.UWT.LMTG.Q2.ZS,Unmet need for family planning (for limiting) (% of married women): Q2,topics,Health,8
+SP.UWT.LMTG.Q3.ZS,Unmet need for family planning (for limiting) (% of married women): Q3,topics,Health,8
+SP.UWT.LMTG.Q4.ZS,Unmet need for family planning (for limiting) (% of married women): Q4,topics,Health,8
+SP.UWT.LMTG.Q5.ZS,Unmet need for family planning (for limiting) (% of married women): Q5 (highest),topics,Health,8
+SP.UWT.SPCG.Q1.ZS,Unmet need for family planning (for spacing) (% of married women): Q1 (lowest),topics,Health,8
+SP.UWT.SPCG.Q2.ZS,Unmet need for family planning (for spacing) (% of married women): Q2,topics,Health,8
+SP.UWT.SPCG.Q3.ZS,Unmet need for family planning (for spacing) (% of married women): Q3,topics,Health,8
+SP.UWT.SPCG.Q4.ZS,Unmet need for family planning (for spacing) (% of married women): Q4,topics,Health,8
+SP.UWT.SPCG.Q5.ZS,Unmet need for family planning (for spacing) (% of married women): Q5 (highest),topics,Health,8
+SP.UWT.TFRT,Unmet need for contraception (% of married women ages 15-49),topics,Health,8
+SP.UWT.TFRT.Q1.ZS,Unmet need for family planning (total) (% of married women): Q1 (lowest),topics,Health,8
+SP.UWT.TFRT.Q2.ZS,Unmet need for family planning (total) (% of married women): Q2,topics,Health,8
+SP.UWT.TFRT.Q3.ZS,Unmet need for family planning (total) (% of married women): Q3,topics,Health,8
+SP.UWT.TFRT.Q4.ZS,Unmet need for family planning (total) (% of married women): Q4,topics,Health,8
+SP.UWT.TFRT.Q5.ZS,Unmet need for family planning (total) (% of married women): Q5 (highest),topics,Health,8
+SR.ARE.ARBL.K2,Arable land area (sq km),sources,WDI Database Archives,57
+SR.ARE.SURF.K2,Surface area (sq km),sources,WDI Database Archives,57
+SS.H2O.FAIL.DY,Water supply failure for firms receiving water (average days/year),sources,Africa Development Indicators,11
+ST.INT.ARVL,"International tourism, number of arrivals",topics,Private Sector,12
+ST.INT.DPRT,"International tourism, number of departures",topics,Private Sector,12
+ST.INT.RCPT.CD,"International tourism, receipts (current US$)",topics,Private Sector,12
+ST.INT.RCPT.XP.ZS,"International tourism, receipts (% of total exports)",topics,Private Sector,12
+ST.INT.TRNR.CD,"International tourism, receipts for passenger transport items (current US$)",topics,Private Sector,12
+ST.INT.TRNX.CD,"International tourism, expenditures for passenger transport items (current US$)",topics,Private Sector,12
+ST.INT.TVLR.CD,"International tourism, receipts for travel items (current US$)",topics,Private Sector,12
+ST.INT.TVLX.CD,"International tourism, expenditures for travel items (current US$)",topics,Private Sector,12
+ST.INT.XPND.CD,"International tourism, expenditures (current US$)",topics,Private Sector,12
+ST.INT.XPND.MP.ZS,"International tourism, expenditures (% of total imports)",topics,Private Sector,12
+TG.VAL.TOTL.GD.PP.ZS,"Trade (% of GDP, PPP)",sources,WDI Database Archives,57
+TG.VAL.TOTL.GD.ZS,Merchandise trade (% of GDP),topics,Private Sector,12
+TG.VAL.TOTL.GG.ZS,Trade in goods (% of goods GDP),sources,WDI Database Archives,57
+TM.CONC.DIV.NO,Number of product (imports),sources,Africa Development Indicators,11
+TM.CONC.IND.XQ,Import product concentration index,sources,Africa Development Indicators,11
+TM.DIV.IND.XQ,Import product diversification index,sources,Africa Development Indicators,11
+TM.GATS.XD,"General Agreement on Trade in Services (GATS) Commitments Index, all service sectors (0 least liberal to 100 most liberal)",sources,Africa Development Indicators,11
+TM.MRC.NOTX.DV.ZS,Goods (excluding arms) admitted free of tariffs from developing countries (% total merchandise imports excluding arms),topics,Millenium development goals,18
+TM.MRC.NOTX.LD.ZS,Goods (excluding arms) admitted free of tariffs from least developed countries (% total merchandise imports excluding arms),topics,Millenium development goals,18
+TM.PRI.MRCH.CD.UN,Merchandise import price index (1987 = 100),sources,WDI Database Archives,57
+TM.PRI.MRCH.ID,"Import Price Index, cif (1980=100, US$-based)",sources,WDI Database Archives,57
+TM.PRI.MRCH.XD,"Import Price Index, cif (1987=100,US$-based)",sources,WDI Database Archives,57
+TM.PRI.MRCH.XD.WB,Merchandise import price index,sources,Africa Development Indicators,11
+TM.PRI.NFSV.XU,"Import price index, (nonfactor) services",sources,Africa Development Indicators,11
+TM.QTY.ENGY.XD.WB,"Import volume index, POL and other energy",sources,Africa Development Indicators,11
+TM.QTY.FOOD.XD.WB,"Import volume index, food",sources,Africa Development Indicators,11
+TM.QTY.KGDS.XD.WB,"Import volume index, capital goods",sources,Africa Development Indicators,11
+TM.QTY.MRCH.XD.WB,Merchandise import volume index,sources,Africa Development Indicators,11
+TM.QTY.MRCH.XD.WD,Import volume index (2015 = 100),topics,Private Sector,12
+TM.QTY.NFCG.XD.WB,"Import volume index, other consumer goods",sources,Africa Development Indicators,11
+TM.QTY.NFSV.XD,"Import volume index, (nonfactor) services",sources,Africa Development Indicators,11
+TM.QTY.RAWM.XD.WB,"Import volume index, manufactures",sources,Africa Development Indicators,11
+TM.QTY.RAWP.XD.WB,"Import volume index, primary goods",sources,Africa Development Indicators,11
+TM.QTY.RAWT.XD.WB,"Import volume index, intermediate goods",sources,Africa Development Indicators,11
+TM.TAX.AGRI.CD.DV,Average tariffs imposed by developed countries on agricultural products from developing countries (%),topics,Millenium development goals,18
+TM.TAX.AGRI.CD.LD,Average tariffs imposed by developed countries on agricultural products from least developed countries (%),topics,Millenium development goals,18
+TM.TAX.CLTH.CD.DV,Average tariffs imposed by developed countries on clothing products from developing countries (%),topics,Millenium development goals,18
+TM.TAX.CLTH.CD.LD,Average tariffs imposed by developed countries on clothing products from least developed countries (%),topics,Millenium development goals,18
+TM.TAX.MANF.B.ZS,"Tariff barriers, share of lines bound, manufactured products (%)",sources,Africa Development Indicators,11
+TM.TAX.MANF.BC.ZS,"Binding coverage, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.BR.ZS,"Bound rate, simple mean, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.DM.ZS,"Tariff barriers, dispersion around the mean, manufactured products (%)",sources,Africa Development Indicators,11
+TM.TAX.MANF.DP.ZS,"Tariff barriers, share of lines domestic peaks, manufactured products (%)",sources,Africa Development Indicators,11
+TM.TAX.MANF.IP.ZS,"Share of tariff lines with international peaks, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.SM.AR.ZS,"Tariff rate, applied, simple mean, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.SM.FN.ZS,"Tariff rate, most favored nation, simple mean, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.SR.ZS,"Share of tariff lines with specific rates, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.WM.AR.ZS,"Tariff rate, applied, weighted mean, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MANF.WM.FN.ZS,"Tariff rate, most favored nation, weighted mean, manufactured products (%)",topics,Private Sector,12
+TM.TAX.MRCH.B.ZS,"Tariff barriers, share of lines bound, all products (%)",sources,Africa Development Indicators,11
+TM.TAX.MRCH.BC.ZS,"Binding coverage, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.BR.ZS,"Bound rate, simple mean, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.DM.ZS,"Tariff barriers, dispersion around the mean, all products (%)",sources,Africa Development Indicators,11
+TM.TAX.MRCH.DP.ZS,"Tariff barriers, share of lines domestic peaks, all products (%)",sources,Africa Development Indicators,11
+TM.TAX.MRCH.IP.ZS,"Share of tariff lines with international peaks, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.SM.AR.ZS,"Tariff rate, applied, simple mean, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.SM.FN.ZS,"Tariff rate, most favored nation, simple mean, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.SR.ZS,"Share of tariff lines with specific rates, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.WM.AR.ZS,"Tariff rate, applied, weighted mean, all products (%)",topics,Private Sector,12
+TM.TAX.MRCH.WM.FN.ZS,"Tariff rate, most favored nation, weighted mean, all products (%)",topics,Private Sector,12
+TM.TAX.TCOM.B.ZS,"Tariff barriers, share of lines bound, primary products (%)",sources,Africa Development Indicators,11
+TM.TAX.TCOM.BC.ZS,"Binding coverage, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.BR.ZS,"Bound rate, simple mean, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.DM.ZS,"Tariff barriers, dispersion around the mean, primary products (%)",sources,Africa Development Indicators,11
+TM.TAX.TCOM.DP.ZS,"Tariff barriers, share of lines domestic peaks, primary (%)",sources,Africa Development Indicators,11
+TM.TAX.TCOM.IP.ZS,"Share of tariff lines with international peaks, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.SM.AR.ZS,"Tariff rate, applied, simple mean, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.SM.FN.ZS,"Tariff rate, most favored nation, simple mean, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.SR.ZS,"Share of tariff lines with specific rates, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.WM.AR.ZS,"Tariff rate, applied, weighted mean, primary products (%)",topics,Private Sector,12
+TM.TAX.TCOM.WM.FN.ZS,"Tariff rate, most favored nation, weighted mean, primary products (%)",topics,Private Sector,12
+TM.TAX.TXTL.CD.DV,Average tariffs imposed by developed countries on textile products from developing countries (%),topics,Millenium development goals,18
+TM.TAX.TXTL.CD.LD,Average tariffs imposed by developed countries on textile products from least developed countries (%),topics,Millenium development goals,18
+TM.UVI.MRCH.XD.WD,Import unit value index (2015 = 100),topics,Private Sector,12
+TM.VAL.AGRI.ZS.UN,Agricultural raw materials imports (% of merchandise imports),topics,Agriculture & Rural Development,1
+TM.VAL.ENGY.CD.WB,POL and other energy imports (current US$),sources,Africa Development Indicators,11
+TM.VAL.ENGY.KD.WB,POL and other energy imports (constant US$),sources,Africa Development Indicators,11
+TM.VAL.FOOD.CD.WB,Food imports (current US$),sources,Africa Development Indicators,11
+TM.VAL.FOOD.KD.WB,Food imports (constant US$),sources,Africa Development Indicators,11
+TM.VAL.FOOD.UN.ZS,Food (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.FOOD.ZS.UN,Food imports (% of merchandise imports),topics,Private Sector,12
+TM.VAL.FUEL.CD,CP Imports of Fuels (US$),sources,WDI Database Archives,57
+TM.VAL.FUEL.UN.ZS,Fuel (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.FUEL.ZS.UN,Fuel imports (% of merchandise imports),topics,Energy & Mining,5
+TM.VAL.ICTG.ZS.UN,ICT goods imports (% total goods imports),topics,Infrastructure,9
+TM.VAL.INSF.ZS.WT,Insurance and financial services (% of commercial service imports),topics,Private Sector,12
+TM.VAL.KGDS.CD.WB,Capital goods imports (current US$),sources,Africa Development Indicators,11
+TM.VAL.KGDS.KD.WB,Capital goods imports (constant US$),sources,Africa Development Indicators,11
+TM.VAL.MANF.CD,CP Imports of Manufactures (US$),sources,WDI Database Archives,57
+TM.VAL.MANF.ZS.UN,Manufactures imports (% of merchandise imports),topics,Private Sector,12
+TM.VAL.MCHT.UN.ZS,Machinery and transport equipment (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.METL.UN.ZS,Minerals and metals (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.MMTL.ZS.UN,Ores and metals imports (% of merchandise imports),topics,Energy & Mining,5
+TM.VAL.MRCH.AL.ZS,Merchandise imports from economies in the Arab World (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.CD,"CP Value of Imports, cif (US$)",sources,WDI Database Archives,57
+TM.VAL.MRCH.CD.UN,"Merchandise imports (UN, current US$)",sources,WDI Database Archives,57
+TM.VAL.MRCH.CD.UN.ZG,"Import growth, value (annual %)",sources,WDI Database Archives,57
+TM.VAL.MRCH.CD.WB,"Merchandise imports, WB (current US$)",sources,Africa Development Indicators,11
+TM.VAL.MRCH.CD.WT,Merchandise imports (current US$),topics,Private Sector,12
+TM.VAL.MRCH.HI.ZS,Merchandise imports from high-income economies (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.KD,"Imports, cif (1980 US$) (Const. Price)",sources,WDI Database Archives,57
+TM.VAL.MRCH.KD.UN,Merchandise imports (constant 1987 US$),sources,WDI Database Archives,57
+TM.VAL.MRCH.KD.UN.ZG,"Import growth, volume (annual %)",sources,WDI Database Archives,57
+TM.VAL.MRCH.KD.WB,Merchandise imports (constant US$),sources,Africa Development Indicators,11
+TM.VAL.MRCH.OR.ZS,Merchandise imports from low- and middle-income economies outside region (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R1.ZS,Merchandise imports from low- and middle-income economies in East Asia & Pacific (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R2.ZS,Merchandise imports from low- and middle-income economies in Europe & Central Asia (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R3.ZS,Merchandise imports from low- and middle-income economies in Latin America & the Caribbean (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R4.ZS,Merchandise imports from low- and middle-income economies in Middle East & North Africa (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R5.ZS,Merchandise imports from low- and middle-income economies in South Asia (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.R6.ZS,Merchandise imports from low- and middle-income economies in Sub-Saharan Africa (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.RS.ZS,"Merchandise imports by the reporting economy, residual (% of total merchandise imports)",topics,Private Sector,12
+TM.VAL.MRCH.WL.CD,Merchandise imports by the reporting economy (current US$),topics,Private Sector,12
+TM.VAL.MRCH.WR.ZS,Merchandise imports from low- and middle-income economies within region (% of total merchandise imports),topics,Private Sector,12
+TM.VAL.MRCH.XD.WD,Import value index (2015 = 100),topics,Private Sector,12
+TM.VAL.NFCG.CD.WB,Other consumer goods imports (current US$),sources,Africa Development Indicators,11
+TM.VAL.NFCG.KD.WB,Other consumer goods imports (constant US$),sources,Africa Development Indicators,11
+TM.VAL.NFOD.UN.ZS,Non-food primary commodities (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.NFPP.CD,"Imports of Nonfuel Primary Prod.(US$,curr. pr.)",sources,WDI Database Archives,57
+TM.VAL.NFPR.CD,CP Imports of Nonfuel Primary Products (US$),sources,WDI Database Archives,57
+TM.VAL.OMFG.UN.ZS,Other manufactures (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.OPRM.UN.ZS,Other primary commodities (% of merchandise imports),sources,WDI Database Archives,57
+TM.VAL.OTHR.ZS.WT,"Computer, communications and other services (% of commercial service imports)",topics,Private Sector,12
+TM.VAL.RAWM.CD.WB,"Intermediate goods imports, manufactures (current US$)",sources,Africa Development Indicators,11
+TM.VAL.RAWM.KD.WB,"Intermediate goods imports, manufactures (constant US$)",sources,Africa Development Indicators,11
+TM.VAL.RAWP.CD.WB,"Intermediate goods imports, primary (current US$)",sources,Africa Development Indicators,11
+TM.VAL.RAWP.KD.WB,"Intermediate goods imports, primary (constant US$)",sources,Africa Development Indicators,11
+TM.VAL.RAWT.CD.WB,"Intermediate goods imports, total (current US$)",sources,Africa Development Indicators,11
+TM.VAL.RAWT.KD.WB,"Intermediate goods imports, total (constant US$)",sources,Africa Development Indicators,11
+TM.VAL.SERV.CD.WT,Commercial service imports (current US$),topics,Private Sector,12
+TM.VAL.TRAN.ZS.WT,Transport services (% of commercial service imports),topics,Private Sector,12
+TM.VAL.TRVL.ZS.WT,Travel services (% of commercial service imports),topics,Private Sector,12
+TM.VOL.MRCH.ZG,Growth of merch. imports (av. ann grwth %),sources,WDI Database Archives,57
+TN.PRI.MRCH.ID,"Terms of Trade Index (1980=100, US$-based)",sources,WDI Database Archives,57
+TOT,Terms of Trade,sources,Global Economic Monitor,15
+TOTRESV,Total Reserves,sources,Global Economic Monitor,15
+TRAD.EXPT.BVTO,"Export: Beverages and tobacco (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.CHEM,"Export: Chemical and related products, nes (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.CRUD,"Export: Crude materials, inedible, except fuels (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.FLVSK,"Export: Food and Live Animals (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.FUEL,"Export: Mineral fuels, lubricants and related materials (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.MANF,"Export: Manufactured goods, classified chiefly by material (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.MANF.OTHR,"Export: Miscellaneous manufactures articles (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.MTRN,"Export: Machinery and transport equipment (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.OLFTW,"Export: Animals and vegetable oil, fat and waxes (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.EXPT.OTHR,"Export: Commodities and transaction not elsewhere classified (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.BVTO,"Import: Beverages and tobacco (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.CHEM,"Import: Chemical and related products, nes (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.CRUD,"Import: Crude materials, inedible, except fuels (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.FLVSK,"Import: Food and Live Animals (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.FUEL,"Import: Mineral fuels, lubricants and related materials (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.MANF,"Import: Manufactured goods, classified chiefly by material (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.MANF.OTHR,"Import: Miscellaneous manufactures articles (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.MTRN,"Import: Machinery and transport equipment (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.OLFTW,"Import: Animals and vegetable oil, fat and waxes (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRAD.IMPT.OTHR,"Import: Commodities and transaction not elsewhere classified (province Level, in USD)",sources,Indonesia Database for Policy and Economic Research,45
+TRD.ACRS.BRDR.DB0615.DFRN,Trading across borders (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.DB1619.DFRN,Trading across borders (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.DOC.COMP.HR.DB1619,Time to export: Documentary compliance (hours) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615,Trading across borders: Documents to export (number) (DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.DOCS.EXPT.NO.DB0615.DFRN,Trading across borders: Documents to export (number) (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615,Trading across borders: Documents to import (number) (DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.DOCS.IMP.NO.DB0615.DFRN,Trading across borders: Documents to import (number) (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.BRDR.COMP.HR.DB1619,Time to export: Border compliance (hours) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619,Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.BRDR.COMP.CD.DB1619.DFRN,Trading across borders: Cost to export: Border compliance (USD) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.CD.DB0615,Trading across borders: Cost to export (US$ per container deflated) (DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.CD.DB0615.DFRN,Trading across borders: Cost to export (US$ per container) (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619,Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.COST.DOC.COMP.CD.DB1619.DFRN,Trading across borders: Cost to export: Documentary compliance (USD) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.DURS.DY.DB0615,Time to export (days) (DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.TM.BRDR.COMP.HR.DB1619.DFRN,Trading across borders: Time to export: Border compliance (hours) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.TM.DOC.COMP.HR.DB1619.DFRN,Trading across borders: Time to export: Documentary compliance (hours) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.EXPT.TM.DY.DB0615.DFRN,Trading across borders: Time to export (days) (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.BRDR.COMP.HR.DB1619,Time to import: Border compliance (hours) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619,Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.BRDR.COMP.CD.DB1619.DFRN,Trading across borders: Cost to import: Border compliance (USD) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.CD.DB0615,Trading across borders: Cost to import (US$ per container deflated)(DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.CD.DB0615.DFRN,Trading across borders: Cost to import (US$ per container)(DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619,Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.COST.DOC.COMP.CD.DB1619.DFRN,Trading across borders: Cost to import: Documentary compliance (USD) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.DOC.COMP.HR.DB1619,Time to import: Documentary compliance (hours) (DB16-20 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.DURS.DY.DB0615,Time to import (days) (DB06-15 methodology),sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.TM.BRDR.COMP.HR.DB1619.DFRN,Trading across borders: Time to import: Border compliance (hours) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.TM.DOC.COMP.HR.DB1619.DFRN,Trading across borders: Time to import: Documentary compliance (hours) (DB16-20 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.IMP.TM.DY.DB0615.DFRN,Trading across borders: Time to import (days) (DB06-15 methodology) - Score,sources,Doing Business,1
+TRD.ACRS.BRDR.RK.DB19,Rank: Trading across borders (1=most business-friendly regulations),sources,Doing Business,1
+TT.INC.MRCH.XD.UN,Income terms of trade (1987 = 100),sources,WDI Database Archives,57
+TT.PRI.MRCH.XD,"Terms of Trade Index (1987=100,US$-based)",sources,WDI Database Archives,57
+TT.PRI.MRCH.XD.UN,Net barter terms of trade (1987 = 100),sources,WDI Database Archives,57
+TT.PRI.MRCH.XD.WB,Merchandise Terms of Trade (1987 = 100),sources,Africa Development Indicators,11
+TT.PRI.MRCH.XD.WD,Net barter terms of trade index (2015 = 100),topics,Private Sector,12
+TX.CONC.DIV.NO,Number of product (exports),sources,Africa Development Indicators,11
+TX.CONC.IND.XQ,Export product concentration index,sources,Africa Development Indicators,11
+TX.DIV.IND.XQ,Export product diversification index,sources,Africa Development Indicators,11
+TX.MNF.TECH.ZS.UN,Medium and high-tech exports (% manufactured exports),topics,Private Sector,12
+TX.PRI.FUEL.ID,"Fuel Export Price Index (1980=100, US$-based)",sources,WDI Database Archives,57
+TX.PRI.MANF.ID,"Manufactures Exp. Price Index (1980=100, US$-based)",sources,WDI Database Archives,57
+TX.PRI.MRCH.CD.UN,Merchandise export price index (1987 = 100),sources,WDI Database Archives,57
+TX.PRI.MRCH.ID,"Export Price Index, fob (1980=100, US$-based)",sources,WDI Database Archives,57
+TX.PRI.MRCH.XD,"Export Price Index, fob (1987=100,US$-based)",sources,WDI Database Archives,57
+TX.PRI.MRCH.XD.WB,Merchandise export price index (1987 = 100),sources,Africa Development Indicators,11
+TX.PRI.NFPR.ID,"Nonfuel Prim.Prod.Exp.Price Index (1980=100,US$-based)",sources,WDI Database Archives,57
+TX.PRI.NFSV.XU,"Export price index, (nonfactor) services",sources,Africa Development Indicators,11
+TX.QTY.COM1.XD.WB,Exports of commodity 1 (volume index),sources,Africa Development Indicators,11
+TX.QTY.COM2.XD.WB,Exports of commodity 2 (volume index),sources,Africa Development Indicators,11
+TX.QTY.COM3.XD.WB,Exports of commodity 3 (volume index),sources,Africa Development Indicators,11
+TX.QTY.COM4.XD.WB,Exports of commodity 4 (volume index),sources,Africa Development Indicators,11
+TX.QTY.MANF.XD.WB,"Export volume index, manufactures",sources,Africa Development Indicators,11
+TX.QTY.MRCH.XD.WB,Merchandise export volume index,sources,Africa Development Indicators,11
+TX.QTY.MRCH.XD.WD,Export volume index (2015 = 100),topics,Private Sector,12
+TX.QTY.NFSV.XD,"Export volume index, (nonfactor) services",sources,Africa Development Indicators,11
+TX.QTY.OCOM.XD.WB,"Export volume index, other primary commodities",sources,Africa Development Indicators,11
+TX.UVI.MRCH.XD.WD,Export unit value index (2015 = 100),topics,Private Sector,12
+TX.VAL.AGRI.ZS.UN,Agricultural raw materials exports (% of merchandise exports),topics,Agriculture & Rural Development,1
+TX.VAL.COM1.CD.WB,Exports of commodity 1 (current US$),sources,Africa Development Indicators,11
+TX.VAL.COM1.KD.WB,Exports of commodity 1 (constant US$),sources,Africa Development Indicators,11
+TX.VAL.COM2.CD.WB,Exports of commodity 2 (current US$),sources,Africa Development Indicators,11
+TX.VAL.COM2.KD.WB,Exports of commodity 2 (constant US$),sources,Africa Development Indicators,11
+TX.VAL.COM3.CD.WB,Exports of commodity 3 (current US$),sources,Africa Development Indicators,11
+TX.VAL.COM3.KD.WB,Exports of commodity 3 (constant US$),sources,Africa Development Indicators,11
+TX.VAL.COM4.CD.WB,Exports of commodity 4 (current US$),sources,Africa Development Indicators,11
+TX.VAL.COM4.KD.WB,Exports of commodity 4 (constant US$),sources,Africa Development Indicators,11
+TX.VAL.FMTL.UN.ZS,"Fuels, minerals, and metals (% of merchandise exports)",sources,WDI Database Archives,57
+TX.VAL.FOOD.UN.ZS,Food (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.FOOD.ZS.UN,Food exports (% of merchandise exports),topics,Private Sector,12
+TX.VAL.FUEL.CD,CP Exports of Fuels (US$),sources,WDI Database Archives,57
+TX.VAL.FUEL.ZS.UN,Fuel exports (% of merchandise exports),topics,Energy & Mining,5
+TX.VAL.ICTG.ZS.UN,ICT goods exports (% of total goods exports),topics,Infrastructure,9
+TX.VAL.INSF.ZS.WT,Insurance and financial services (% of commercial service exports),topics,Private Sector,12
+TX.VAL.MANF.CD,CP Exports of Manufactures (US$),sources,WDI Database Archives,57
+TX.VAL.MANF.CD.WB,Manufactures exports (current US$),sources,Africa Development Indicators,11
+TX.VAL.MANF.KD.WB,Manufactures exports (constant US$),sources,Africa Development Indicators,11
+TX.VAL.MANF.UN.ZS,Manufactures (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.MANF.ZS.UN,Manufactures exports (% of merchandise exports),topics,Private Sector,12
+TX.VAL.MCHT.UN.ZS,Machinery and transport equipment (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.METL.UN.ZS,Metals (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.MMTL.ZS.UN,Ores and metals exports (% of merchandise exports),topics,Energy & Mining,5
+TX.VAL.MNRL.UN.ZS,Minerals (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.MRCH.AL.ZS,Merchandise exports to economies in the Arab World (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.CD,"CP Value of Exports, fob (US$)",sources,WDI Database Archives,57
+TX.VAL.MRCH.CD.UN,"Merchandise exports (UN, current US$)",sources,WDI Database Archives,57
+TX.VAL.MRCH.CD.UN.ZG,"Export growth, value (annual %)",sources,WDI Database Archives,57
+TX.VAL.MRCH.CD.WB,"Merchandise exports, WB (current US$)",sources,Africa Development Indicators,11
+TX.VAL.MRCH.CD.WT,Merchandise exports (current US$),topics,Private Sector,12
+TX.VAL.MRCH.HI.CD,Merchandise exports to high-income economies (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.HI.ZS,Merchandise exports to high-income economies (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.KD,"Exports, fob (1980 US$) (Const. Price)",sources,WDI Database Archives,57
+TX.VAL.MRCH.KD.UN,Merchandise exports (constant 1987 US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.KD.UN.ZG,"Export growth, volume (annual %)",sources,WDI Database Archives,57
+TX.VAL.MRCH.KD.WB,Merchandise exports (constant US$),sources,Africa Development Indicators,11
+TX.VAL.MRCH.OR.CD,Merchandise exports to low- and middle-income economies outside region (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.OR.ZS,Merchandise exports to low- and middle-income economies outside region (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R1.CD,Merchandise exports to low- and middle-income economies in East Asia & Pacific (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R1.ZS,Merchandise exports to low- and middle-income economies in East Asia & Pacific (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R2.CD,Merchandise exports to low- and middle-income economies in Europe & Central Asia (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R2.ZS,Merchandise exports to low- and middle-income economies in Europe & Central Asia (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R3.CD,Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R3.ZS,Merchandise exports to low- and middle-income economies in Latin America & the Caribbean (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R4.CD,Merchandise exports to low- and middle-income economies in Middle East & North Africa (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R4.ZS,Merchandise exports to low- and middle-income economies in Middle East & North Africa (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R5.CD,Merchandise exports to low- and middle-income economies in South Asia (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R5.ZS,Merchandise exports to low- and middle-income economies in South Asia (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.R6.CD,Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.R6.ZS,Merchandise exports to low- and middle-income economies in Sub-Saharan Africa (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.RS.ZS,"Merchandise exports by the reporting economy, residual (% of total merchandise exports)",topics,Private Sector,12
+TX.VAL.MRCH.WL.CD,Merchandise exports by the reporting economy (current US$),topics,Private Sector,12
+TX.VAL.MRCH.WR.CD,Merchandise exports to low- and middle-income economies within region (current US$),sources,WDI Database Archives,57
+TX.VAL.MRCH.WR.ZS,Merchandise exports to low- and middle-income economies within region (% of total merchandise exports),topics,Private Sector,12
+TX.VAL.MRCH.XD.WD,Export value index (2015 = 100),topics,Private Sector,12
+TX.VAL.NFOD.UN.ZS,Non-food primary commodities (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.NFPP.CD,"Exports of Nonfuel Primary Prod.(US$,curr. pr.)",sources,WDI Database Archives,57
+TX.VAL.NFPR.CD,CP Exports of Nonfuel Primary Products (US$),sources,WDI Database Archives,57
+TX.VAL.OCOM.CD.WB,Other primary commodities exports (current US$),sources,Africa Development Indicators,11
+TX.VAL.OCOM.KD.WB,Other primary commodities exports (constant US$),sources,Africa Development Indicators,11
+TX.VAL.OPRM.UN.ZS,Other primary commodities (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.OTHR.ZS.WT,"Computer, communications and other services (% of commercial service exports)",topics,Private Sector,12
+TX.VAL.SERV.CD.WT,Commercial service exports (current US$),topics,Private Sector,12
+TX.VAL.SERV.MT.ZS,Ratio of commercial service exports to merchandise exports (%),sources,WDI Database Archives,57
+TX.VAL.TCOM.CD.WB,Primary commodities exports (current US$),sources,Africa Development Indicators,11
+TX.VAL.TCOM.KD.WB,Primary commodities exports (constant US$),sources,Africa Development Indicators,11
+TX.VAL.TECH.CD,High-technology exports (current US$),topics,Private Sector,12
+TX.VAL.TECH.MF.ZS,High-technology exports (% of manufactured exports),topics,Private Sector,12
+TX.VAL.TRAN.ZS.WT,Transport services (% of commercial service exports),topics,Private Sector,12
+TX.VAL.TRVL.ZS.WT,Travel services (% of commercial service exports),topics,Private Sector,12
+TX.VAL.TXTL.UN.ZS,Textiles and clothing (% of merchandise exports),sources,WDI Database Archives,57
+TX.VAL.XTHR.UN.ZS,Other manufactures (% of merchandise exports),sources,WDI Database Archives,57
+TX.VOL.MRCH.ZG,Growth of merch. exports (av. ann grwth %),sources,WDI Database Archives,57
+TXRV.SHR.ACQ.CR,"Total Tax Revenue Sharing from duty on the acquisition of land and building rights (BPHTB) (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+TXRV.SHR.INCM.CR,"Total Tax Revenue Sharing from income tax (PPh) (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+TXRV.SHR.LAND.CR,"Total Tax Revenue Sharing from land and building tax (PBB) (in IDR, realization value)",sources,Indonesia Database for Policy and Economic Research,45
+UHLG-01,Transfers from Higher Level of Government,sources,PEFA 2011,67
+UHLG-01.1,(i) Outturn of transfers from higher-level government,sources,PEFA 2011,67
+UHLG-01.2,(ii) Earmarked grants outturn,sources,PEFA 2011,67
+UHLG-01.3,(iii) Timeliness of transfers from higher-level government,sources,PEFA 2011,67
+UIS.ADMI.ENDOFLOWERSEC.MAT,Administration of a nationally-representative learning assessment at the end of lower secondary education in mathematics (number),sources,Education Statistics,12
+UIS.ADMI.ENDOFLOWERSEC.READ,Administration of a nationally-representative learning assessment at the end of lower secondary education in reading (number),sources,Education Statistics,12
+UIS.ADMI.ENDOFPRIM.MAT,Administration of a nationally-representative learning assessment at the end of primary in mathematics (number),sources,Education Statistics,12
+UIS.ADMI.ENDOFPRIM.READ,Administration of a nationally-representative learning assessment at the end of primary in reading (number),sources,Education Statistics,12
+UIS.ADMI.GRADE2OR3PRIM.MAT,Administration of a nationally representative learning assessment in Grade 2 or 3 in mathematics (number),sources,Education Statistics,12
+UIS.ADMI.GRADE2OR3PRIM.READ,Administration of a nationally representative learning assessment in Grade 2 or 3 in reading (number),sources,Education Statistics,12
+UIS.AIDEDUC.LOWINCOMECOUNT,Percentage of total aid to education allocated to least developed countries (%),sources,Education Statistics,12
+UIS.AIR.1.GLAST.GPIA,"Gross intake ratio to the last grade of primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.AIR.2.GPV.GLAST.GPIA,"Gross intake ratio to the last grade of lower secondary general education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ASTAFF.6T8,"Teachers in tertiary education ISCED 6, 7 and 8 programmes, both sexes (number)",sources,Education Statistics,12
+UIS.ASTAFF.6T8.F,"Teachers in tertiary education ISCED 6, 7 and 8 programmes, female (number)",sources,Education Statistics,12
+UIS.ASTAFF.6T8.M,"Teachers in tertiary education ISCED 6, 7 and 8 programmes, male (number)",sources,Education Statistics,12
+UIS.CEAGE.1,Official entrance age to compulsory education (years),topics,Education,4
+UIS.CR.1,"Completion rate, primary education, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.F,"Completion rate, primary education, female (%)",sources,Education Statistics,12
+UIS.CR.1.F.LPIA,"Completion rate, primary education, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.F.WPIA,"Completion rate, primary education, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.GPIA,"Completion rate, primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.LPIA,"Completion rate, primary education, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.M,"Completion rate, primary education, male (%)",sources,Education Statistics,12
+UIS.CR.1.M.LPIA,"Completion rate, primary education, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.M.WPIA,"Completion rate, primary education, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.Q1,"Completion rate, primary education, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.Q1.F,"Completion rate, primary education, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.Q1.F.LPIA,"Completion rate, primary education, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q1.GPIA,"Completion rate, primary education, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.Q1.LPIA,"Completion rate, primary education, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q1.M,"Completion rate, primary education, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.Q1.M.LPIA,"Completion rate, primary education, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q2,"Completion rate, primary education, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.Q2.F,"Completion rate, primary education, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.Q2.F.LPIA,"Completion rate, primary education, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q2.GPIA,"Completion rate, primary education, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.Q2.LPIA,"Completion rate, primary education, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q2.M,"Completion rate, primary education, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.Q2.M.LPIA,"Completion rate, primary education, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q3,"Completion rate, primary education, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.Q3.F,"Completion rate, primary education, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.Q3.F.LPIA,"Completion rate, primary education, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q3.GPIA,"Completion rate, primary education, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.Q3.LPIA,"Completion rate, primary education, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q3.M,"Completion rate, primary education, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.Q3.M.LPIA,"Completion rate, primary education, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q4,"Completion rate, primary education, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.Q4.F,"Completion rate, primary education, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.Q4.F.LPIA,"Completion rate, primary education, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q4.GPIA,"Completion rate, primary education, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.Q4.LPIA,"Completion rate, primary education, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q4.M,"Completion rate, primary education, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.Q4.M.LPIA,"Completion rate, primary education, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q5,"Completion rate, primary education, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.Q5.F,"Completion rate, primary education, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.Q5.F.LPIA,"Completion rate, primary education, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q5.GPIA,"Completion rate, primary education, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.Q5.LPIA,"Completion rate, primary education, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.Q5.M,"Completion rate, primary education, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.Q5.M.LPIA,"Completion rate, primary education, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR,"Completion rate, primary education, rural, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.F,"Completion rate, primary education, rural, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.F.WPIA,"Completion rate, primary education, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.GPIA,"Completion rate, primary education, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.M,"Completion rate, primary education, rural, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.M.WPIA,"Completion rate, primary education, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q1,"Completion rate, primary education, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q1.F,"Completion rate, primary education, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q1.GPIA,"Completion rate, primary education, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q1.M,"Completion rate, primary education, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q2,"Completion rate, primary education, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q2.F,"Completion rate, primary education, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q2.GPIA,"Completion rate, primary education, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q2.M,"Completion rate, primary education, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q3,"Completion rate, primary education, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q3.F,"Completion rate, primary education, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q3.GPIA,"Completion rate, primary education, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q3.M,"Completion rate, primary education, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q4,"Completion rate, primary education, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q4.F,"Completion rate, primary education, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q4.GPIA,"Completion rate, primary education, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q4.M,"Completion rate, primary education, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q5,"Completion rate, primary education, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q5.F,"Completion rate, primary education, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q5.GPIA,"Completion rate, primary education, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.RUR.Q5.M,"Completion rate, primary education, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.RUR.WPIA,"Completion rate, primary education, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.URB,"Completion rate, primary education, urban, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.F,"Completion rate, primary education, urban, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.F.WPIA,"Completion rate, primary education, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.GPIA,"Completion rate, primary education, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.M,"Completion rate, primary education, urban, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.M.WPIA,"Completion rate, primary education, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q1,"Completion rate, primary education, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q1.F,"Completion rate, primary education, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q1.GPIA,"Completion rate, primary education, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q1.M,"Completion rate, primary education, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q2,"Completion rate, primary education, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q2.F,"Completion rate, primary education, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q2.GPIA,"Completion rate, primary education, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q2.M,"Completion rate, primary education, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q3,"Completion rate, primary education, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q3.F,"Completion rate, primary education, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q3.GPIA,"Completion rate, primary education, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q3.M,"Completion rate, primary education, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q4,"Completion rate, primary education, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q4.F,"Completion rate, primary education, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q4.GPIA,"Completion rate, primary education, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q4.M,"Completion rate, primary education, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q5,"Completion rate, primary education, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q5.F,"Completion rate, primary education, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.1.URB.Q5.GPIA,"Completion rate, primary education, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.1.URB.Q5.M,"Completion rate, primary education, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.1.URB.WPIA,"Completion rate, primary education, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.1.WPIA,"Completion rate, primary education, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2,"Completion rate, lower secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.F,"Completion rate, lower secondary education, female (%)",sources,Education Statistics,12
+UIS.CR.2.F.LPIA,"Completion rate, lower secondary education, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.F.WPIA,"Completion rate, lower secondary education, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.GPIA,"Completion rate, lower secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.LPIA,"Completion rate, lower secondary education, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.M,"Completion rate, lower secondary education, male (%)",sources,Education Statistics,12
+UIS.CR.2.M.LPIA,"Completion rate, lower secondary education, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.M.WPIA,"Completion rate, lower secondary education, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.Q1,"Completion rate, lower secondary education, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.Q1.F,"Completion rate, lower secondary education, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.Q1.F.LPIA,"Completion rate, lower secondary education, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q1.GPIA,"Completion rate, lower secondary education, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.Q1.LPIA,"Completion rate, lower secondary education, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q1.M,"Completion rate, lower secondary education, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.Q1.M.LPIA,"Completion rate, lower secondary education, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q2,"Completion rate, lower secondary education, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.Q2.F,"Completion rate, lower secondary education, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.Q2.F.LPIA,"Completion rate, lower secondary education, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q2.GPIA,"Completion rate, lower secondary education, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.Q2.LPIA,"Completion rate, lower secondary education, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q2.M,"Completion rate, lower secondary education, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.Q2.M.LPIA,"Completion rate, lower secondary education, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q3,"Completion rate, lower secondary education, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.Q3.F,"Completion rate, lower secondary education, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.Q3.F.LPIA,"Completion rate, lower secondary education, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q3.GPIA,"Completion rate, lower secondary education, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.Q3.LPIA,"Completion rate, lower secondary education, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q3.M,"Completion rate, lower secondary education, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.Q3.M.LPIA,"Completion rate, lower secondary education, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q4,"Completion rate, lower secondary education, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.Q4.F,"Completion rate, lower secondary education, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.Q4.F.LPIA,"Completion rate, lower secondary education, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q4.GPIA,"Completion rate, lower secondary education, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.Q4.LPIA,"Completion rate, lower secondary education, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q4.M,"Completion rate, lower secondary education, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.Q4.M.LPIA,"Completion rate, lower secondary education, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q5,"Completion rate, lower secondary education, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.Q5.F,"Completion rate, lower secondary education, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.Q5.F.LPIA,"Completion rate, lower secondary education, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q5.GPIA,"Completion rate, lower secondary education, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.Q5.LPIA,"Completion rate, lower secondary education, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.Q5.M,"Completion rate, lower secondary education, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.Q5.M.LPIA,"Completion rate, lower secondary education, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR,"Completion rate, lower secondary education, rural, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.F,"Completion rate, lower secondary education, rural, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.F.WPIA,"Completion rate, lower secondary education, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.GPIA,"Completion rate, lower secondary education, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.M,"Completion rate, lower secondary education, rural, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.M.WPIA,"Completion rate, lower secondary education, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q1,"Completion rate, lower secondary education, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q1.F,"Completion rate, lower secondary education, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q1.GPIA,"Completion rate, lower secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q1.M,"Completion rate, lower secondary education, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q2,"Completion rate, lower secondary education, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q2.F,"Completion rate, lower secondary education, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q2.GPIA,"Completion rate, lower secondary education, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q2.M,"Completion rate, lower secondary education, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q3,"Completion rate, lower secondary education, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q3.F,"Completion rate, lower secondary education, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q3.GPIA,"Completion rate, lower secondary education, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q3.M,"Completion rate, lower secondary education, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q4,"Completion rate, lower secondary education, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q4.F,"Completion rate, lower secondary education, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q4.GPIA,"Completion rate, lower secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q4.M,"Completion rate, lower secondary education, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q5,"Completion rate, lower secondary education, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q5.F,"Completion rate, lower secondary education, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q5.GPIA,"Completion rate, lower secondary education, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.RUR.Q5.M,"Completion rate, lower secondary education, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.RUR.WPIA,"Completion rate, lower secondary education, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.URB,"Completion rate, lower secondary education, urban, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.F,"Completion rate, lower secondary education, urban, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.F.WPIA,"Completion rate, lower secondary education, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.GPIA,"Completion rate, lower secondary education, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.M,"Completion rate, lower secondary education, urban, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.M.WPIA,"Completion rate, lower secondary education, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q1,"Completion rate, lower secondary education, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q1.F,"Completion rate, lower secondary education, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q1.GPIA,"Completion rate, lower secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q1.M,"Completion rate, lower secondary education, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q2,"Completion rate, lower secondary education, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q2.F,"Completion rate, lower secondary education, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q2.GPIA,"Completion rate, lower secondary education, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q2.M,"Completion rate, lower secondary education, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q3,"Completion rate, lower secondary education, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q3.F,"Completion rate, lower secondary education, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q3.GPIA,"Completion rate, lower secondary education, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q3.M,"Completion rate, lower secondary education, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q4,"Completion rate, lower secondary education, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q4.F,"Completion rate, lower secondary education, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q4.GPIA,"Completion rate, lower secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q4.M,"Completion rate, lower secondary education, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q5,"Completion rate, lower secondary education, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q5.F,"Completion rate, lower secondary education, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.2.URB.Q5.GPIA,"Completion rate, lower secondary education, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.2.URB.Q5.M,"Completion rate, lower secondary education, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.2.URB.WPIA,"Completion rate, lower secondary education, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.2.WPIA,"Completion rate, lower secondary education, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3,"Completion rate, upper secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.F,"Completion rate, upper secondary education, female (%)",sources,Education Statistics,12
+UIS.CR.3.F.LPIA,"Completion rate, upper secondary education, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.F.WPIA,"Completion rate, upper secondary education, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.GPIA,"Completion rate, upper secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.LPIA,"Completion rate, upper secondary education, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.M,"Completion rate, upper secondary education, male (%)",sources,Education Statistics,12
+UIS.CR.3.M.LPIA,"Completion rate, upper secondary education, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.M.WPIA,"Completion rate, upper secondary education, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.Q1,"Completion rate, upper secondary education, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.Q1.F,"Completion rate, upper secondary education, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.Q1.F.LPIA,"Completion rate, upper secondary education, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q1.GPIA,"Completion rate, upper secondary education, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.Q1.LPIA,"Completion rate, upper secondary education, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q1.M,"Completion rate, upper secondary education, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.Q1.M.LPIA,"Completion rate, upper secondary education, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q2,"Completion rate, upper secondary education, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.Q2.F,"Completion rate, upper secondary education, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.Q2.F.LPIA,"Completion rate, upper secondary education, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q2.GPIA,"Completion rate, upper secondary education, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.Q2.LPIA,"Completion rate, upper secondary education, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q2.M,"Completion rate, upper secondary education, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.Q2.M.LPIA,"Completion rate, upper secondary education, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q3,"Completion rate, upper secondary education, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.Q3.F,"Completion rate, upper secondary education, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.Q3.F.LPIA,"Completion rate, upper secondary education, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q3.GPIA,"Completion rate, upper secondary education, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.Q3.LPIA,"Completion rate, upper secondary education, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q3.M,"Completion rate, upper secondary education, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.Q3.M.LPIA,"Completion rate, upper secondary education, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q4,"Completion rate, upper secondary education, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.Q4.F,"Completion rate, upper secondary education, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.Q4.F.LPIA,"Completion rate, upper secondary education, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q4.GPIA,"Completion rate, upper secondary education, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.Q4.LPIA,"Completion rate, upper secondary education, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q4.M,"Completion rate, upper secondary education, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.Q4.M.LPIA,"Completion rate, upper secondary education, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q5,"Completion rate, upper secondary education, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.Q5.F,"Completion rate, upper secondary education, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.Q5.F.LPIA,"Completion rate, upper secondary education, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q5.GPIA,"Completion rate, upper secondary education, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.Q5.LPIA,"Completion rate, upper secondary education, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.Q5.M,"Completion rate, upper secondary education, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.Q5.M.LPIA,"Completion rate, upper secondary education, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR,"Completion rate, upper secondary education, rural, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.F,"Completion rate, upper secondary education, rural, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.F.WPIA,"Completion rate, upper secondary education, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.GPIA,"Completion rate, upper secondary education, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.M,"Completion rate, upper secondary education, rural, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.M.WPIA,"Completion rate, upper secondary education, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q1,"Completion rate, upper secondary education, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q1.F,"Completion rate, upper secondary education, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q1.GPIA,"Completion rate, upper secondary education, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q1.M,"Completion rate, upper secondary education, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q2,"Completion rate, upper secondary education, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q2.F,"Completion rate, upper secondary education, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q2.GPIA,"Completion rate, upper secondary education, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q2.M,"Completion rate, upper secondary education, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q3,"Completion rate, upper secondary education, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q3.F,"Completion rate, upper secondary education, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q3.GPIA,"Completion rate, upper secondary education, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q3.M,"Completion rate, upper secondary education, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q4,"Completion rate, upper secondary education, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q4.F,"Completion rate, upper secondary education, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q4.GPIA,"Completion rate, upper secondary education, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q4.M,"Completion rate, upper secondary education, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q5,"Completion rate, upper secondary education, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q5.F,"Completion rate, upper secondary education, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q5.GPIA,"Completion rate, upper secondary education, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.RUR.Q5.M,"Completion rate, upper secondary education, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.RUR.WPIA,"Completion rate, upper secondary education, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.URB,"Completion rate, upper secondary education, urban, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.F,"Completion rate, upper secondary education, urban, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.F.WPIA,"Completion rate, upper secondary education, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.GPIA,"Completion rate, upper secondary education, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.M,"Completion rate, upper secondary education, urban, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.M.WPIA,"Completion rate, upper secondary education, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q1,"Completion rate, upper secondary education, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q1.F,"Completion rate, upper secondary education, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q1.GPIA,"Completion rate, upper secondary education, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q1.M,"Completion rate, upper secondary education, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q2,"Completion rate, upper secondary education, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q2.F,"Completion rate, upper secondary education, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q2.GPIA,"Completion rate, upper secondary education, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q2.M,"Completion rate, upper secondary education, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q3,"Completion rate, upper secondary education, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q3.F,"Completion rate, upper secondary education, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q3.GPIA,"Completion rate, upper secondary education, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q3.M,"Completion rate, upper secondary education, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q4,"Completion rate, upper secondary education, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q4.F,"Completion rate, upper secondary education, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q4.GPIA,"Completion rate, upper secondary education, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q4.M,"Completion rate, upper secondary education, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q5,"Completion rate, upper secondary education, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q5.F,"Completion rate, upper secondary education, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.CR.3.URB.Q5.GPIA,"Completion rate, upper secondary education, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.CR.3.URB.Q5.M,"Completion rate, upper secondary education, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.CR.3.URB.WPIA,"Completion rate, upper secondary education, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.CR.3.WPIA,"Completion rate, upper secondary education, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.E.0.F,"Enrolment in early childhood education, female (number)",sources,Education Statistics,12
+UIS.E.0.M,"Enrolment in early childhood education, male (number)",sources,Education Statistics,12
+UIS.E.0.T,"Enrolment in early childhood education, both sexes (number)",sources,Education Statistics,12
+UIS.E.01.F,"Enrolment in early childhood educational development programmes, female (number)",sources,Education Statistics,12
+UIS.E.01.M,"Enrolment in early childhood educational development programmes, male (number)",sources,Education Statistics,12
+UIS.E.01.T,"Enrolment in early childhood educational development programmes, both sexes (number)",sources,Education Statistics,12
+UIS.E.02.M,"Enrolment in pre-primary education, male (number)",sources,Education Statistics,12
+UIS.E.1.M,"Enrolment in primary education, male (number)",sources,Education Statistics,12
+UIS.E.2,"Enrolment in lower secondary education, both sexes (number)",topics,Education,4
+UIS.E.2.F,"Enrolment in lower secondary education, female (number)",topics,Education,4
+UIS.E.2.M,"Enrolment in lower secondary education, male (number)",sources,Education Statistics,12
+UIS.E.23.M,"Enrolment in secondary education, male (number)",sources,Education Statistics,12
+UIS.E.3,"Enrolment in upper secondary education, both sexes (number)",topics,Education,4
+UIS.E.3.F,"Enrolment in upper secondary education, female (number)",topics,Education,4
+UIS.E.3.M,"Enrolment in upper secondary education, male (number)",sources,Education Statistics,12
+UIS.E.4,"Enrolment in post-secondary non-tertiary education, both sexes (number)",topics,Education,4
+UIS.E.4.F,"Enrolment in post-secondary non-tertiary education, female (number)",topics,Education,4
+UIS.E.4.M,"Enrolment in post-secondary non-tertiary education, male (number)",sources,Education Statistics,12
+UIS.E.5,"Enrolment in tertiary education, ISCED 5 programmes, both sexes (number)",sources,Education Statistics,12
+UIS.E.5.F,"Enrolment in tertiary education, ISCED 5 programmes, female (number)",sources,Education Statistics,12
+UIS.E.5.M,"Enrolment in tertiary education, ISCED 5 programmes, male (number)",sources,Education Statistics,12
+UIS.E.58.M,"Enrolment in tertiary education, all programmes, male (number)",sources,Education Statistics,12
+UIS.E.6,"Enrolment in tertiary education, ISCED 6 programmes, both sexes (number)",topics,Education,4
+UIS.E.6.F,"Enrolment in tertiary education, ISCED 6 programmes, female (number)",topics,Education,4
+UIS.E.6.M,"Enrolment in tertiary education, ISCED 6 programmes, male (number)",sources,Education Statistics,12
+UIS.E.7,"Enrolment in tertiary education, ISCED 7 programmes, both sexes (number)",topics,Education,4
+UIS.E.7.F,"Enrolment in tertiary education, ISCED 7 programmes, female (number)",topics,Education,4
+UIS.E.7.M,"Enrolment in tertiary education, ISCED 7 programmes, male (number)",sources,Education Statistics,12
+UIS.E.8,"Enrolment in tertiary education, ISCED 8 programmes, both sexes (number)",topics,Education,4
+UIS.E.8.F,"Enrolment in tertiary education, ISCED 8 programmes, female (number)",topics,Education,4
+UIS.E.8.M,"Enrolment in tertiary education, ISCED 8 programmes, male (number)",sources,Education Statistics,12
+UIS.EA.1.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is primary, both sexes",sources,Education Statistics,12
+UIS.EA.1.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is primary, female",sources,Education Statistics,12
+UIS.EA.1.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is primary, male",sources,Education Statistics,12
+UIS.EA.1T6.AG25T99,UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Total,sources,Education Statistics,12
+UIS.EA.1T6.AG25T99.F,UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Female,sources,Education Statistics,12
+UIS.EA.1T6.AG25T99.M,UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Male,sources,Education Statistics,12
+UIS.EA.1T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least completed primary education (ISCED 1 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.2.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is lower secondary, both sexes",sources,Education Statistics,12
+UIS.EA.2.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is lower secondary, female",sources,Education Statistics,12
+UIS.EA.2.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is lower secondary, male",sources,Education Statistics,12
+UIS.EA.2T6.AG25T99,UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Total,sources,Education Statistics,12
+UIS.EA.2T6.AG25T99.F,UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Female,sources,Education Statistics,12
+UIS.EA.2T6.AG25T99.M,UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Male,sources,Education Statistics,12
+UIS.EA.2T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least completed lower secondary education (ISCED 2 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.3.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is upper secondary, both sexes",sources,Education Statistics,12
+UIS.EA.3.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is upper secondary, female",sources,Education Statistics,12
+UIS.EA.3.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is upper secondary, male",sources,Education Statistics,12
+UIS.EA.3T6.AG25T99,UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Total,sources,Education Statistics,12
+UIS.EA.3T6.AG25T99.F,UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Female,sources,Education Statistics,12
+UIS.EA.3T6.AG25T99.M,UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Male,sources,Education Statistics,12
+UIS.EA.3T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least completed upper secondary education (ISCED 3 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.4.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, both sexes",sources,Education Statistics,12
+UIS.EA.4.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, female",sources,Education Statistics,12
+UIS.EA.4.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is post-secondary non-tertiary, male",sources,Education Statistics,12
+UIS.EA.4T6.AG25T99,UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Total,sources,Education Statistics,12
+UIS.EA.4T6.AG25T99.F,UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Female,sources,Education Statistics,12
+UIS.EA.4T6.AG25T99.M,UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Male,sources,Education Statistics,12
+UIS.EA.4T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least completed post-secondary education (ISCED 4 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.5.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, both sexes",sources,Education Statistics,12
+UIS.EA.5.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, female",sources,Education Statistics,12
+UIS.EA.5.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is short cycle tertiary, male",sources,Education Statistics,12
+UIS.EA.5T8.AG25T99,UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Total,sources,Education Statistics,12
+UIS.EA.5T8.AG25T99.F,UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Female,sources,Education Statistics,12
+UIS.EA.5T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.5T8.AG25T99.M,UIS: Percentage of population age 25+ with at least a completed short-cycle tertiary degree (ISCED 5 or higher). Male,sources,Education Statistics,12
+UIS.EA.6.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), both sexes",sources,Education Statistics,12
+UIS.EA.6.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), female",sources,Education Statistics,12
+UIS.EA.6.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is Bachelor's or equivalent (ISCED 6), male",sources,Education Statistics,12
+UIS.EA.6T8.AG25T99,UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Total,sources,Education Statistics,12
+UIS.EA.6T8.AG25T99.F,UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Female,sources,Education Statistics,12
+UIS.EA.6T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.6T8.AG25T99.M,UIS: Percentage of population age 25+ with at least a completed bachelor's or equivalent degree (ISCED 6 or higher). Male,sources,Education Statistics,12
+UIS.EA.7.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), both sexes",sources,Education Statistics,12
+UIS.EA.7.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), female",sources,Education Statistics,12
+UIS.EA.7.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is Master's or equivalent (ISCED 7), male",sources,Education Statistics,12
+UIS.EA.7T8.AG25T99,UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Total,sources,Education Statistics,12
+UIS.EA.7T8.AG25T99.F,UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Female,sources,Education Statistics,12
+UIS.EA.7T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.7T8.AG25T99.M,UIS: Percentage of population age 25+ with at least a completed master's degree or equivalent (ISCED 7 or higher). Male,sources,Education Statistics,12
+UIS.EA.8.AG25T99,UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Total,sources,Education Statistics,12
+UIS.EA.8.AG25T99.F,UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Female,sources,Education Statistics,12
+UIS.EA.8.AG25T99.GPIA,UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.8.AG25T99.M,UIS: Percentage of population age 25+ with a doctoral degree or equivalent (ISCED 8). Male,sources,Education Statistics,12
+UIS.EA.MEAN.1T6.AG25T99,"UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, both sexes",sources,Education Statistics,12
+UIS.EA.MEAN.1T6.AG25T99.F,"UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, female",sources,Education Statistics,12
+UIS.EA.MEAN.1T6.AG25T99.M,"UIS: Mean years of schooling (ISCED 1 or higher), population 25+ years, male",sources,Education Statistics,12
+UIS.EA.NS.AG25T99,"UIS: Percentage of population age 25+ with no schooling, both sexes",sources,Education Statistics,12
+UIS.EA.NS.AG25T99.F,"UIS: Percentage of population age 25+ with no schooling, female",sources,Education Statistics,12
+UIS.EA.NS.AG25T99.M,"UIS: Percentage of population age 25+ with no schooling, male",sources,Education Statistics,12
+UIS.EA.S1.AG25T99,"UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, both sexes",sources,Education Statistics,12
+UIS.EA.S1.AG25T99.F,"UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, female",sources,Education Statistics,12
+UIS.EA.S1.AG25T99.M,"UIS: Percentage of population age 25+ whose highest level of education is incomplete primary, male",sources,Education Statistics,12
+UIS.EA.S1T8.AG25T99,UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Total,sources,Education Statistics,12
+UIS.EA.S1T8.AG25T99.F,UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Female,sources,Education Statistics,12
+UIS.EA.S1T8.AG25T99.GPIA,UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Adjusted Gender Parity Index (GPIA),sources,Education Statistics,12
+UIS.EA.S1T8.AG25T99.M,UIS: Percentage of population age 25+ with at least some primary (ISCED 1). Male,sources,Education Statistics,12
+UIS.EA.UK.AG25T99,UIS: Percentage of population age 25+ with unknown educational attainment. Total,sources,Education Statistics,12
+UIS.EA.UK.AG25T99.F,UIS: Percentage of population age 25+ with unknown educational attainment. Female,sources,Education Statistics,12
+UIS.EA.UK.AG25T99.M,UIS: Percentage of population age 25+ with unknown educational attainment. Male,sources,Education Statistics,12
+UIS.ESG.LOWERSEC,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, both sexes (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.COGN,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, both sexes (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.COGN.F,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, female (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.COGN.GPIA,Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Cognitive dimension‚ adjusted gender parity index (GPIA),sources,Education Statistics,12
+UIS.ESG.LOWERSEC.COGN.M,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Cognitive dimension, male (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.F,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, female (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.GPIA,Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ adjusted gender parity index (GPIA),sources,Education Statistics,12
+UIS.ESG.LOWERSEC.M,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, male (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.CONF,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, both sexes (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.CONF.F,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, female (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.CONF.GPI,Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Confidence‚ adjusted gender parity index (GPIA),sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.CONF.M,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Confidence, male (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.ENJO,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, both sexes (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.ENJO.F,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, female (%)",sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.ENJO.GPI,Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience‚ Non-cognitive dimension‚ Enjoyment‚ adjusted gender parity index (GPIA),sources,Education Statistics,12
+UIS.ESG.LOWERSEC.NCOG.ENJO.M,"Percentage of students in lower secondary education showing proficiency in knowledge of environmental science and geoscience, Non-cognitive dimension, Enjoyment, male (%)",sources,Education Statistics,12
+UIS.EV1524P.2T5.V,"Proportion of 15-24 year-olds enrolled in vocational education, both sexes (%)",sources,Education Statistics,12
+UIS.EV1524P.2T5.V.F,"Proportion of 15-24 year-olds enrolled in vocational education, female (%)",sources,Education Statistics,12
+UIS.EV1524P.2T5.V.GPIA,"Proportion of 15-24 year-olds enrolled in vocational education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.EV1524P.2T5.V.M,"Proportion of 15-24 year-olds enrolled in vocational education, male (%)",sources,Education Statistics,12
+UIS.FEP.2.V,Percentage of students in lower secondary vocational education who are female (%),sources,Gender Statistics,14
+UIS.FEP.3.V,Percentage of students in upper secondary vocational education who are female (%),sources,Gender Statistics,14
+UIS.FEP.4.V,Percentage of students in post-secondary non-tertiary vocational education who are female (%),sources,Gender Statistics,14
+UIS.FGP.5T8.F400,"Female share of graduates in Business, Administration and Law programmes, tertiary (%)",topics,Education,4
+UIS.FGP.5T8.F600,"Female share of graduates in Information and Communication Technologies programmes, tertiary (%)",topics,Education,4
+UIS.FGP.5T8.FNON500600700,"Female share of graduates in other fields than Science, Technology, Engineering and Mathematics programmes, tertiary (%)",topics,Education,4
+UIS.FHLANGILP.1,"Percentage of students in primary education who have their first or home language as language of instruction, both sexes (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.F,"Percentage of students in primary education who have their first or home language as language of instruction, female (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.GPIA,"Percentage of students in primary education who have their first or home language as language of instruction, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.FHLANGILP.1.HIGHSES,"Percentage of students in primary education who have their first or home language as language of instruction, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.LOWSES,"Percentage of students in primary education who have their first or home language as language of instruction, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.LPIA,"Percentage of students in primary education who have their first or home language as language of instruction, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.FHLANGILP.1.M,"Percentage of students in primary education who have their first or home language as language of instruction, male (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.RUR,"Percentage of students in primary education who have their first or home language as language of instruction, rural, both sexes (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.URB,"Percentage of students in primary education who have their first or home language as language of instruction, urban, both sexes (%)",sources,Education Statistics,12
+UIS.FHLANGILP.1.WPIA,"Percentage of students in primary education who have their first or home language as language of instruction, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.FOSGP.5T8.F400,"Percentage of graduates from tertiary education graduating from Business, Administration and Law programmes, both sexes (%)",sources,Education Statistics,12
+UIS.FOSGP.5T8.F500600700,"Percentage of graduates from Science, Technology, Engineering and Mathematics programmes in tertiary education, both sexes (%)",sources,Education Statistics,12
+UIS.FOSGP.5T8.F600,"Percentage of graduates from tertiary education graduating from Information and Communication Technologies programmes, both sexes (%)",sources,Education Statistics,12
+UIS.FOSGP.5T8.FNON500600700,"Percentage of graduates from programmes other than Science, Technology, Engineering and Mathematics in tertiary education, both sexes (%)",sources,Education Statistics,12
+UIS.FTP.2,Percentage of teachers in lower secondary education who are female (%),topics,Education,4
+UIS.FTP.3,Percentage of teachers in upper secondary education who are female (%),topics,Education,4
+UIS.FTP.4,Percentage of teachers in post-secondary non-tertiary education who are female (%),topics,Education,4
+UIS.GAR.5T8,"Gross attendance ratio for tertiary education, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.F,"Gross attendance ratio for tertiary education, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.F.LPIA,"Gross attendance ratio for tertiary education, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.F.WPIA,"Gross attendance ratio for tertiary education, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.GPIA,"Gross attendance ratio for tertiary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.LPIA,"Gross attendance ratio for tertiary education, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.M,"Gross attendance ratio for tertiary education, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.M.LPIA,"Gross attendance ratio for tertiary education, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.M.WPIA,"Gross attendance ratio for tertiary education, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1,"Gross attendance ratio for tertiary education, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.F,"Gross attendance ratio for tertiary education, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.F.LPIA,"Gross attendance ratio for tertiary education, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.GPIA,"Gross attendance ratio for tertiary education, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.LPIA,"Gross attendance ratio for tertiary education, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.M,"Gross attendance ratio for tertiary education, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q1.M.LPIA,"Gross attendance ratio for tertiary education, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2,"Gross attendance ratio for tertiary education, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.F,"Gross attendance ratio for tertiary education, second quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.F.LPIA,"Gross attendance ratio for tertiary education, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.GPIA,"Gross attendance ratio for tertiary education, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.LPIA,"Gross attendance ratio for tertiary education, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.M,"Gross attendance ratio for tertiary education, second quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q2.M.LPIA,"Gross attendance ratio for tertiary education, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3,"Gross attendance ratio for tertiary education, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.F,"Gross attendance ratio for tertiary education, middle quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.F.LPIA,"Gross attendance ratio for tertiary education, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.GPIA,"Gross attendance ratio for tertiary education, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.LPIA,"Gross attendance ratio for tertiary education, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.M,"Gross attendance ratio for tertiary education, middle quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q3.M.LPIA,"Gross attendance ratio for tertiary education, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4,"Gross attendance ratio for tertiary education, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.F,"Gross attendance ratio for tertiary education, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.F.LPIA,"Gross attendance ratio for tertiary education, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.GPIA,"Gross attendance ratio for tertiary education, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.LPIA,"Gross attendance ratio for tertiary education, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.M,"Gross attendance ratio for tertiary education, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q4.M.LPIA,"Gross attendance ratio for tertiary education, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5,"Gross attendance ratio for tertiary education, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.F,"Gross attendance ratio for tertiary education, richest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.F.LPIA,"Gross attendance ratio for tertiary education, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.GPIA,"Gross attendance ratio for tertiary education, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.LPIA,"Gross attendance ratio for tertiary education, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.M,"Gross attendance ratio for tertiary education, richest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.Q5.M.LPIA,"Gross attendance ratio for tertiary education, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR,"Gross attendance ratio for tertiary education, rural, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.F,"Gross attendance ratio for tertiary education, rural, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.F.WPIA,"Gross attendance ratio for tertiary education, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.GPIA,"Gross attendance ratio for tertiary education, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.M,"Gross attendance ratio for tertiary education, rural, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.M.WPIA,"Gross attendance ratio for tertiary education, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q1,"Gross attendance ratio for tertiary education, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q1.F,"Gross attendance ratio for tertiary education, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q1.GPIA,"Gross attendance ratio for tertiary education, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q1.M,"Gross attendance ratio for tertiary education, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q2,"Gross attendance ratio for tertiary education, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q2.F,"Gross attendance ratio for tertiary education, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q2.GPIA,"Gross attendance ratio for tertiary education, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q2.M,"Gross attendance ratio for tertiary education, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q3,"Gross attendance ratio for tertiary education, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q3.F,"Gross attendance ratio for tertiary education, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q3.GPIA,"Gross attendance ratio for tertiary education, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q3.M,"Gross attendance ratio for tertiary education, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q4,"Gross attendance ratio for tertiary education, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q4.F,"Gross attendance ratio for tertiary education, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q4.GPIA,"Gross attendance ratio for tertiary education, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q4.M,"Gross attendance ratio for tertiary education, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q5,"Gross attendance ratio for tertiary education, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q5.F,"Gross attendance ratio for tertiary education, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q5.GPIA,"Gross attendance ratio for tertiary education, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.Q5.M,"Gross attendance ratio for tertiary education, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.RUR.WPIA,"Gross attendance ratio for tertiary education, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB,"Gross attendance ratio for tertiary education, urban, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.F,"Gross attendance ratio for tertiary education, urban, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.F.WPIA,"Gross attendance ratio for tertiary education, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.GPIA,"Gross attendance ratio for tertiary education, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.M,"Gross attendance ratio for tertiary education, urban, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.M.WPIA,"Gross attendance ratio for tertiary education, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q1,"Gross attendance ratio for tertiary education, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q1.F,"Gross attendance ratio for tertiary education, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q1.GPIA,"Gross attendance ratio for tertiary education, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q1.M,"Gross attendance ratio for tertiary education, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q2,"Gross attendance ratio for tertiary education, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q2.F,"Gross attendance ratio for tertiary education, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q2.GPIA,"Gross attendance ratio for tertiary education, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q2.M,"Gross attendance ratio for tertiary education, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q3,"Gross attendance ratio for tertiary education, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q3.F,"Gross attendance ratio for tertiary education, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q3.GPIA,"Gross attendance ratio for tertiary education, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q3.M,"Gross attendance ratio for tertiary education, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q4,"Gross attendance ratio for tertiary education, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q4.F,"Gross attendance ratio for tertiary education, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q4.GPIA,"Gross attendance ratio for tertiary education, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q4.M,"Gross attendance ratio for tertiary education, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q5,"Gross attendance ratio for tertiary education, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q5.F,"Gross attendance ratio for tertiary education, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q5.GPIA,"Gross attendance ratio for tertiary education, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.Q5.M,"Gross attendance ratio for tertiary education, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.GAR.5T8.URB.WPIA,"Gross attendance ratio for tertiary education, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GAR.5T8.WPIA,"Gross attendance ratio for tertiary education, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.COG,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.COG.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.COG.GPIA,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.COG.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Cognitive Dimension, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.GPIA,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.FREE,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.FREE.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.FREE.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Freedom, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.FREE.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Freedom, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GEQU,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GEQU.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GEQU.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Gender equality, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GEQU.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Gender equality, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GLOC,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GLOC.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GLOC.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Global-local thinking, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.GLOC.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Global-local thinking, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.MULT,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.MULT.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.MULT.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Multiculturalism, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.MULT.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Multiculturalism, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.PEAC,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.PEAC.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.PEAC.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Peace, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.PEAC.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Peace, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SDEV,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SDEV.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SDEV.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Sustainable development, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SDEV.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Sustainable development, male (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SJUS,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, both sexes (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SJUS.F,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, female (%)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SJUS.GPI,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability‚ Non-cognitive Dimension‚ Social Justice, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GCS.LOWERSEC.NCOG.SJUS.M,"Percentage of students in lower secondary education showing adequate understanding of issues relating to global citizenship and sustainability, Non-cognitive Dimension, Social Justice, male (%)",sources,Education Statistics,12
+UIS.GER.0,"Gross enrolment ratio, early childhood education, both sexes (%)",sources,Education Statistics,12
+UIS.GER.0.F,"Gross enrolment ratio, early childhood education, female (%)",sources,Education Statistics,12
+UIS.GER.0.GPIA,"Gross enrolment ratio, early childhood education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GER.0.M,"Gross enrolment ratio, early childhood education, male (%)",sources,Education Statistics,12
+UIS.GER.01,"Gross enrolment ratio, early childhood educational development programmes, both sexes (%)",sources,Education Statistics,12
+UIS.GER.01.F,"Gross enrolment ratio, early childhood educational development programmes, female (%)",sources,Education Statistics,12
+UIS.GER.01.GPIA,"Gross enrolment ratio, early childhood educational development programmes, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GER.01.M,"Gross enrolment ratio, early childhood educational development programmes, male (%)",sources,Education Statistics,12
+UIS.GER.02.GPIA,"Gross enrolment ratio, pre-primary, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GER.12,"Gross enrolment ratio, primary and lower secondary, both sexes (%)",sources,Education Statistics,12
+UIS.GER.12.F,"Gross enrolment ratio, primary and lower secondary, female (%)",sources,Education Statistics,12
+UIS.GER.12.GPI,"Gross enrolment ratio, primary and lower secondary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.GER.12.M,"Gross enrolment ratio, primary and lower secondary, male (%)",sources,Education Statistics,12
+UIS.GER.123,"Gross enrolment ratio, primary and secondary, both sexes (%)",topics,Education,4
+UIS.GER.123.F,"Gross enrolment ratio, primary and secondary, female (%)",topics,Education,4
+UIS.GER.123.M,"Gross enrolment ratio, primary and secondary, male (%)",topics,Education,4
+UIS.GER.1T6.F,"Gross enrolment ratio, primary to tertiary, female (%)",topics,Education,4
+UIS.GER.1T6.GPI,"Gross enrolment ratio, primary to tertiary, gender parity index (GPI)",topics,Education,4
+UIS.GER.1T6.M,"Gross enrolment ratio, primary to tertiary, male (%)",topics,Education,4
+UIS.GER.2.GPI,"Gross enrolment ratio, lower secondary, gender parity index (GPI)",topics,Education,4
+UIS.GER.3.GPI,"Gross enrolment ratio, upper secondary, gender parity index (GPI)",topics,Education,4
+UIS.GER.4,"Gross enrolment ratio, post-secondary non-tertiary, both sexes (%)",sources,Education Statistics,12
+UIS.GER.4.F,"Gross enrolment ratio, post-secondary non-tertiary, female (%)",sources,Education Statistics,12
+UIS.GER.4.GPI,"Gross enrolment ratio, post-secondary non-tertiary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.GER.4.M,"Gross enrolment ratio, post-secondary non-tertiary, male (%)",sources,Education Statistics,12
+UIS.GER.5T8.GPIA,"Gross enrolment ratio for tertiary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.GGR.5.A.GPI,"Gross graduation ratio from first degree programmes (ISCED 6 and 7) in tertiary education, gender parity index (GPI)",topics,Education,4
+UIS.GTVP.2.GPV,Share of all students in lower secondary education enrolled in general programmes (%),sources,Education Statistics,12
+UIS.GTVP.2.V,Share of all students in lower secondary education enrolled in vocational programmes (%),topics,Education,4
+UIS.GTVP.2.V.F,Share of female students in lower secondary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.GTVP.2.V.M,Share of male students in lower secondary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.GTVP.23.GPV,Share of all students in secondary education enrolled in general programmes (%),sources,Education Statistics,12
+UIS.GTVP.3.GPV,Share of all students in upper secondary education enrolled in general programmes (%),sources,Education Statistics,12
+UIS.GTVP.3.V,Share of all students in upper secondary education enrolled in vocational programmes (%),topics,Education,4
+UIS.GTVP.3.V.F,Share of female students in upper secondary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.GTVP.3.V.M,Share of male students in upper secondary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.GTVP.4.GPV,Share of all students in post-secondary non-tertiary education enrolled in general programmes (%),sources,Education Statistics,12
+UIS.GTVP.4.V,Share of all students in post-secondary non-tertiary education enrolled in vocational programmes (%),sources,Education Statistics,12
+UIS.GTVP.4.V.F,Share of female students in post-secondary non-tertiary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.GTVP.4.V.M,Share of male students in post-secondary non-tertiary education enrolled in vocational programmes (%),sources,Gender Statistics,14
+UIS.ICTSKILLATTACH,"Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLATTACH.F,"Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), female (%)",sources,Education Statistics,12
+UIS.ICTSKILLATTACH.GPIA,"Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLATTACH.M,"Proportion of youth and adults who have sent e-mails with attached files (e.g. document, picture, video), male (%)",sources,Education Statistics,12
+UIS.ICTSKILLCONNEC,Proportion of youth and adults who have connected and installed new devices (%),sources,Education Statistics,12
+UIS.ICTSKILLCONNEC.F,"Proportion of youth and adults who have connected and installed new devices, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLCONNEC.GPIA,"Proportion of youth and adults who have connected and installed new devices, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLCONNEC.M,"Proportion of youth and adults who have connected and installed new devices, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLCOPI,Proportion of youth and adults who have copied or moved a file or folder (%),sources,Education Statistics,12
+UIS.ICTSKILLCOPI.F,"Proportion of youth and adults who have copied or moved a file or folder, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLCOPI.GPIA,"Proportion of youth and adults who have copied or moved a file or folder, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLCOPI.M,"Proportion of youth and adults who have copied or moved a file or folder, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLCREAT,Proportion of youth and adults who have created electronic presentations with presentation software (%),sources,Education Statistics,12
+UIS.ICTSKILLCREAT.F,"Proportion of youth and adults who have created electronic presentations with presentation software, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLCREAT.GPIA,"Proportion of youth and adults who have created electronic presentations with presentation software, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLCREAT.M,"Proportion of youth and adults who have created electronic presentations with presentation software, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLDUPLIC,"Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document , both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLDUPLIC.F,"Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLDUPLIC.GPIA,"Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLDUPLIC.M,"Proportion of youth and adults who have used copy and paste tools to duplicate or move information within a document, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLFORMULA,"Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLFORMULA.F,"Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLFORMULA.GPIA,"Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLFORMULA.M,"Proportion of youth and adults who have used basic arithmetic formulae in a spreadsheet, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLPROGLANG,"Proportion of youth and adults who have wrote a computer program using a specialised programming language, both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLPROGLANG.F,"Proportion of youth and adults who have wrote a computer program using a specialised programming language, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLPROGLANG.GPIA,"Proportion of youth and adults who have wrote a computer program using a specialised programming language, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLPROGLANG.M,"Proportion of youth and adults who have wrote a computer program using a specialised programming language, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLSOFTWARE,"Proportion of youth and adults who have found, downloaded, installed and configured software, both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLSOFTWARE.F,"Proportion of youth and adults who have found, downloaded, installed and configured software, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLSOFTWARE.GPIA,"Proportion of youth and adults who have found, downloaded, installed and configured software, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLSOFTWARE.M,"Proportion of youth and adults who have found, downloaded, installed and configured software, male (%)",sources,Education Statistics,12
+UIS.ICTSKILLTRANSFERFILE,"Proportion of youth and adults who have transferred files between a computer and other devices, both sexes (%)",sources,Education Statistics,12
+UIS.ICTSKILLTRANSFERFILE.F,"Proportion of youth and adults who have transferred files between a computer and other devices, female (%)",sources,Education Statistics,12
+UIS.ICTSKILLTRANSFERFILE.GPIA,"Proportion of youth and adults who have transferred files between a computer and other devices, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ICTSKILLTRANSFERFILE.M,"Proportion of youth and adults who have transferred files between a computer and other devices, male (%)",sources,Education Statistics,12
+UIS.ILLPOP.AG25T64,"Illiterate population, 25-64 years, both sexes (number)",sources,Education Statistics,12
+UIS.ILLPOP.AG25T64.F,"Illiterate population, 25-64 years, female (number)",sources,Education Statistics,12
+UIS.ILLPOP.AG25T64.M,"Illiterate population, 25-64 years, male (number)",sources,Education Statistics,12
+UIS.ILLPOPF.AG25T64,"Illiterate population, 25-64 years, % female",sources,Education Statistics,12
+UIS.LP.AG15T24,"Youth illiterate population, 15-24 years, both sexes (number)",topics,Education,4
+UIS.LP.AG15T24.F,"Youth illiterate population, 15-24 years, female (number)",topics,Education,4
+UIS.LP.AG15T24.M,"Youth illiterate population, 15-24 years, male (number)",topics,Education,4
+UIS.LP.AG15T99,"Adult illiterate population, 15+ years, both sexes (number)",topics,Education,4
+UIS.LP.AG15T99.F,"Adult illiterate population, 15+ years, female (number)",topics,Education,4
+UIS.LP.AG15T99.M,"Adult illiterate population, 15+ years, male (number)",topics,Education,4
+UIS.LP.AG65,"Elderly illiterate population, 65+ years, both sexes (number)",sources,Education Statistics,12
+UIS.LP.AG65.F,"Elderly illiterate population, 65+ years, female (number)",sources,Education Statistics,12
+UIS.LP.AG65.M,"Elderly illiterate population, 65+ years, male (number)",sources,Education Statistics,12
+UIS.LPP.AG15T24,"Youth illiterate population, 15-24 years, % female",topics,Education,4
+UIS.LPP.AG15T99,"Adult illiterate population, 15+ years, % female",topics,Education,4
+UIS.LPP.AG65,"Elderly illiterate population, 65+ years, % female",sources,Education Statistics,12
+UIS.LR.AG15T24.F.LPIA,"Youth literacy rate, population 15-24 years, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.GPIA,"Youth literacy rate, population 15-24 years, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.LPIA,"Youth literacy rate, population 15-24 years, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.M.LPIA,"Youth literacy rate, population 15-24 years, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.RUR,"Youth literacy rate, population 15-24 years, rural, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG15T24.RUR.F,"Youth literacy rate, population 15-24 years, rural, female (%)",sources,Education Statistics,12
+UIS.LR.AG15T24.RUR.GPIA,"Youth literacy rate, population 15-24 years, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.RUR.M,"Youth literacy rate, population 15-24 years, rural, male (%)",sources,Education Statistics,12
+UIS.LR.AG15T24.URB,"Youth literacy rate, population 15-24 years, urban, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG15T24.URB.F,"Youth literacy rate, population 15-24 years, urban, female (%)",sources,Education Statistics,12
+UIS.LR.AG15T24.URB.GPIA,"Youth literacy rate, population 15-24 years, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T24.URB.M,"Youth literacy rate, population 15-24 years, urban, male (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.F.LPIA,"Adult literacy rate, population 15+ years, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.GPIA,"Adult literacy rate, population 15+ years, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.LPIA,"Adult literacy rate, population 15+ years, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.M.LPIA,"Adult literacy rate, population 15+ years, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.RUR,"Adult literacy rate, population 15+ years, rural, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.RUR.F,"Adult literacy rate, population 15+ years, rural, female (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.RUR.GPIA,"Adult literacy rate, population 15+ years, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.RUR.M,"Adult literacy rate, population 15+ years, rural, male (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.URB,"Adult literacy rate, population 15+ years, urban, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.URB.F,"Adult literacy rate, population 15+ years, urban, female (%)",sources,Education Statistics,12
+UIS.LR.AG15T99.URB.GPIA,"Adult literacy rate, population 15+ years, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG15T99.URB.M,"Adult literacy rate, population 15+ years, urban, male (%)",sources,Education Statistics,12
+UIS.LR.AG25T64,"Literacy rate, population 25-64 years, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.F,"Literacy rate, population 25-64 years, female (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.F.LPIA,"Literacy rate, population 25-64 years, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.GPIA,"Literacy rate, population 25-64 years, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.LPIA,"Literacy rate, population 25-64 years, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.M,"Literacy rate, population 25-64 years, male (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.M.LPIA,"Literacy rate, population 25-64 years, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.RUR,"Literacy rate, population 25-64 years, rural, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.RUR.F,"Literacy rate, population 25-64 years, rural, female (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.RUR.GPIA,"Literacy rate, population 25-64 years, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.RUR.M,"Literacy rate, population 25-64 years, rural, male (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.URB,"Literacy rate, population 25-64 years, urban, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.URB.F,"Literacy rate, population 25-64 years, urban, female (%)",sources,Education Statistics,12
+UIS.LR.AG25T64.URB.GPIA,"Literacy rate, population 25-64 years, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG25T64.URB.M,"Literacy rate, population 25-64 years, urban, male (%)",sources,Education Statistics,12
+UIS.LR.AG65,"Elderly literacy rate, population 65+ years, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG65.F,"Elderly literacy rate, population 65+ years, female (%)",sources,Education Statistics,12
+UIS.LR.AG65.M,"Elderly literacy rate, population 65+ years, male (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.F.LPIA,"Elderly literacy rate, population 65+ years, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.GPIA,"Elderly literacy rate, population 65+ years, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.LPIA,"Elderly literacy rate, population 65+ years, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.M.LPIA,"Elderly literacy rate, population 65+ years, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.RUR,"Elderly literacy rate, population 65+ years, rural, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.RUR.F,"Elderly literacy rate, population 65+ years, rural, female (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.RUR.GPIA,"Elderly literacy rate, population 65+ years, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.RUR.M,"Elderly literacy rate, population 65+ years, rural, male (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.URB,"Elderly literacy rate, population 65+ years, urban, both sexes (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.URB.F,"Elderly literacy rate, population 65+ years, urban, female (%)",sources,Education Statistics,12
+UIS.LR.AG65T99.URB.GPIA,"Elderly literacy rate, population 65+ years, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.LR.AG65T99.URB.M,"Elderly literacy rate, population 65+ years, urban, male (%)",sources,Education Statistics,12
+UIS.MATH.G2T3,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.F,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, female (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.GPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.MATH.G2T3.HIGHSES,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.LANGTEST,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.LOWSES,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.LPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.MATH.G2T3.LTPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.MATH.G2T3.M,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, male (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.NATIVE,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.NONLANGTEST,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.NONNATIVE,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.NPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.MATH.G2T3.RURAL,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.URBAN,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.G2T3.WPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.F,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, female (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.GPIA,"Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.HIGHSES,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.LANGTEST,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.LOWSES,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.LPIA,"Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.LTPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.M,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, male (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.NATIVE,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.NONLANGTEST,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.NONNATIVE,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.NPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.RURAL,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.URBAN,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.LOWERSEC.WPIA,"Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.MATH.PRIMARY,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.F,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, female (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.GPIA,"Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.HIGHSES,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.LANGTEST,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.LOWSES,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.LPIA,"Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.LTPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.M,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, male (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.NATIVE,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.NONLANGTEST,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.NONNATIVE,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.NPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.RURAL,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.URBAN,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in mathematics, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.MATH.PRIMARY.WPIA,"Proportion of students at the end of primary achieving at least a minimum proficiency level in mathematics, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.MENF.56,"Net flow of internationally mobile students (inbound - outbound), both sexes (number)",sources,Education Statistics,12
+UIS.MENFR.56,"Net flow ratio of internationally mobile students (inbound - outbound), both sexes (%)",sources,Education Statistics,12
+UIS.MS.56.F,"Total inbound internationally mobile students, female (number)",topics,Education,4
+UIS.MS.56.M,"Total inbound internationally mobile students, male (number)",sources,Education Statistics,12
+UIS.MS.56.T,"Total inbound internationally mobile students, both sexes (number)",topics,Education,4
+UIS.MSEP.56,"Inbound mobility rate, both sexes (%)",topics,Education,4
+UIS.MSEP.56.F,"Inbound mobility rate, female (%)",sources,Education Statistics,12
+UIS.MSEP.56.M,"Inbound mobility rate, male (%)",sources,Education Statistics,12
+UIS.N.ATTACKS,"Number of attacks on students, personnel and institutions",sources,Education Statistics,12
+UIS.NARA.AGM1,"Adjusted net attendance rate, one year before the official primary entry age, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.F,"Adjusted net attendance rate, one year before the official primary entry age, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.F.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.M,"Adjusted net attendance rate, one year before the official primary entry age, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.M.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.F,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.M,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q1.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.F,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.M,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q2.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.F,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.M,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q3.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.F,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.M,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q4.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.F,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.F.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.M,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.Q5.M.LPIA,"Adjusted net attendance rate, one year before the official primary entry age, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR,"Adjusted net attendance rate, one year before the official primary entry age, rural, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.F.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.M.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q1,"Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q1.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q1.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q1.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q2,"Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q2.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q2.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q2.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q3,"Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q3.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q3.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q3.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q4,"Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q4.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q4.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q4.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q5,"Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q5.F,"Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q5.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.Q5.M,"Adjusted net attendance rate, one year before the official primary entry age, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.RUR.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB,"Adjusted net attendance rate, one year before the official primary entry age, urban, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.F.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.M.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q1,"Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q1.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q1.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q1.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q2,"Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q2.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q2.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q2.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q3,"Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q3.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q3.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q3.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q4,"Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q4.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q4.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q4.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q5,"Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q5.F,"Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q5.GPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.Q5.M,"Adjusted net attendance rate, one year before the official primary entry age, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NARA.AGM1.URB.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NARA.AGM1.WPIA,"Adjusted net attendance rate, one year before the official primary entry age, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1,"Total net attendance rate, primary, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.F,"Total net attendance rate, primary, female (%)",sources,Education Statistics,12
+UIS.NART.1.F.LPIA,"Total net attendance rate, primary, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.F.WPIA,"Total net attendance rate, primary, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.GPIA,"Total net attendance rate, primary, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.LPIA,"Total net attendance rate, primary, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.M,"Total net attendance rate, primary, male (%)",sources,Education Statistics,12
+UIS.NART.1.M.LPIA,"Total net attendance rate, primary, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.M.WPIA,"Total net attendance rate, primary, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.Q1,"Total net attendance rate, primary, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.Q1.F,"Total net attendance rate, primary, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.Q1.F.LPIA,"Total net attendance rate, primary, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q1.GPIA,"Total net attendance rate, primary, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.Q1.LPIA,"Total net attendance rate, primary, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q1.M,"Total net attendance rate, primary, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.Q1.M.LPIA,"Total net attendance rate, primary, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q2,"Total net attendance rate, primary, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.Q2.F,"Total net attendance rate, primary, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.Q2.F.LPIA,"Total net attendance rate, primary, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q2.GPIA,"Total net attendance rate, primary, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.Q2.LPIA,"Total net attendance rate, primary, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q2.M,"Total net attendance rate, primary, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.Q2.M.LPIA,"Total net attendance rate, primary, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q3,"Total net attendance rate, primary, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.Q3.F,"Total net attendance rate, primary, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.Q3.F.LPIA,"Total net attendance rate, primary, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q3.GPIA,"Total net attendance rate, primary, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.Q3.LPIA,"Total net attendance rate, primary, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q3.M,"Total net attendance rate, primary, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.Q3.M.LPIA,"Total net attendance rate, primary, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q4,"Total net attendance rate, primary, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.Q4.F,"Total net attendance rate, primary, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.Q4.F.LPIA,"Total net attendance rate, primary, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q4.GPIA,"Total net attendance rate, primary, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.Q4.LPIA,"Total net attendance rate, primary, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q4.M,"Total net attendance rate, primary, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.Q4.M.LPIA,"Total net attendance rate, primary, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q5,"Total net attendance rate, primary, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.Q5.F,"Total net attendance rate, primary, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.Q5.F.LPIA,"Total net attendance rate, primary, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q5.GPIA,"Total net attendance rate, primary, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.Q5.LPIA,"Total net attendance rate, primary, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.Q5.M,"Total net attendance rate, primary, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.Q5.M.LPIA,"Total net attendance rate, primary, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR,"Total net attendance rate, primary, rural, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.F,"Total net attendance rate, primary, rural, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.F.WPIA,"Total net attendance rate, primary, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.GPIA,"Total net attendance rate, primary, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.M,"Total net attendance rate, primary, rural, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.M.WPIA,"Total net attendance rate, primary, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q1,"Total net attendance rate, primary, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q1.F,"Total net attendance rate, primary, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q1.GPIA,"Total net attendance rate, primary, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q1.M,"Total net attendance rate, primary, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q2,"Total net attendance rate, primary, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q2.F,"Total net attendance rate, primary, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q2.GPIA,"Total net attendance rate, primary, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q2.M,"Total net attendance rate, primary, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q3,"Total net attendance rate, primary, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q3.F,"Total net attendance rate, primary, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q3.GPIA,"Total net attendance rate, primary, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q3.M,"Total net attendance rate, primary, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q4,"Total net attendance rate, primary, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q4.F,"Total net attendance rate, primary, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q4.GPIA,"Total net attendance rate, primary, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q4.M,"Total net attendance rate, primary, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q5,"Total net attendance rate, primary, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q5.F,"Total net attendance rate, primary, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q5.GPIA,"Total net attendance rate, primary, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.RUR.Q5.M,"Total net attendance rate, primary, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.RUR.WPIA,"Total net attendance rate, primary, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.URB,"Total net attendance rate, primary, urban, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.F,"Total net attendance rate, primary, urban, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.F.WPIA,"Total net attendance rate, primary, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.GPIA,"Total net attendance rate, primary, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.M,"Total net attendance rate, primary, urban, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.M.WPIA,"Total net attendance rate, primary, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q1,"Total net attendance rate, primary, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q1.F,"Total net attendance rate, primary, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q1.GPIA,"Total net attendance rate, primary, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q1.M,"Total net attendance rate, primary, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q2,"Total net attendance rate, primary, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q2.F,"Total net attendance rate, primary, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q2.GPIA,"Total net attendance rate, primary, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q2.M,"Total net attendance rate, primary, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q3,"Total net attendance rate, primary, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q3.F,"Total net attendance rate, primary, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q3.GPIA,"Total net attendance rate, primary, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q3.M,"Total net attendance rate, primary, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q4,"Total net attendance rate, primary, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q4.F,"Total net attendance rate, primary, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q4.GPIA,"Total net attendance rate, primary, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q4.M,"Total net attendance rate, primary, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q5,"Total net attendance rate, primary, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q5.F,"Total net attendance rate, primary, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.1.URB.Q5.GPIA,"Total net attendance rate, primary, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.1.URB.Q5.M,"Total net attendance rate, primary, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.1.URB.WPIA,"Total net attendance rate, primary, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.1.WPIA,"Total net attendance rate, primary, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2,"Total net attendance rate, lower secondary, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.F,"Total net attendance rate, lower secondary, female (%)",sources,Education Statistics,12
+UIS.NART.2.F.LPIA,"Total net attendance rate, lower secondary, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.F.WPIA,"Total net attendance rate, lower secondary, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.GPIA,"Total net attendance rate, lower secondary, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.LPIA,"Total net attendance rate, lower secondary, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.M,"Total net attendance rate, lower secondary, male (%)",sources,Education Statistics,12
+UIS.NART.2.M.LPIA,"Total net attendance rate, lower secondary, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.M.WPIA,"Total net attendance rate, lower secondary, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.Q1,"Total net attendance rate, lower secondary, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.Q1.F,"Total net attendance rate, lower secondary, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.Q1.F.LPIA,"Total net attendance rate, lower secondary, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q1.GPIA,"Total net attendance rate, lower secondary, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.Q1.LPIA,"Total net attendance rate, lower secondary, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q1.M,"Total net attendance rate, lower secondary, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.Q1.M.LPIA,"Total net attendance rate, lower secondary, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q2,"Total net attendance rate, lower secondary, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.Q2.F,"Total net attendance rate, lower secondary, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.Q2.F.LPIA,"Total net attendance rate, lower secondary, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q2.GPIA,"Total net attendance rate, lower secondary, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.Q2.LPIA,"Total net attendance rate, lower secondary, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q2.M,"Total net attendance rate, lower secondary, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.Q2.M.LPIA,"Total net attendance rate, lower secondary, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q3,"Total net attendance rate, lower secondary, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.Q3.F,"Total net attendance rate, lower secondary, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.Q3.F.LPIA,"Total net attendance rate, lower secondary, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q3.GPIA,"Total net attendance rate, lower secondary, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.Q3.LPIA,"Total net attendance rate, lower secondary, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q3.M,"Total net attendance rate, lower secondary, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.Q3.M.LPIA,"Total net attendance rate, lower secondary, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q4,"Total net attendance rate, lower secondary, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.Q4.F,"Total net attendance rate, lower secondary, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.Q4.F.LPIA,"Total net attendance rate, lower secondary, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q4.GPIA,"Total net attendance rate, lower secondary, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.Q4.LPIA,"Total net attendance rate, lower secondary, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q4.M,"Total net attendance rate, lower secondary, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.Q4.M.LPIA,"Total net attendance rate, lower secondary, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q5,"Total net attendance rate, lower secondary, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.Q5.F,"Total net attendance rate, lower secondary, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.Q5.F.LPIA,"Total net attendance rate, lower secondary, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q5.GPIA,"Total net attendance rate, lower secondary, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.Q5.LPIA,"Total net attendance rate, lower secondary, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.Q5.M,"Total net attendance rate, lower secondary, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.Q5.M.LPIA,"Total net attendance rate, lower secondary, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR,"Total net attendance rate, lower secondary, rural, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.F,"Total net attendance rate, lower secondary, rural, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.F.WPIA,"Total net attendance rate, lower secondary, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.GPIA,"Total net attendance rate, lower secondary, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.M,"Total net attendance rate, lower secondary, rural, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.M.WPIA,"Total net attendance rate, lower secondary, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q1,"Total net attendance rate, lower secondary, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q1.F,"Total net attendance rate, lower secondary, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q1.GPIA,"Total net attendance rate, lower secondary, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q1.M,"Total net attendance rate, lower secondary, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q2,"Total net attendance rate, lower secondary, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q2.F,"Total net attendance rate, lower secondary, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q2.GPIA,"Total net attendance rate, lower secondary, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q2.M,"Total net attendance rate, lower secondary, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q3,"Total net attendance rate, lower secondary, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q3.F,"Total net attendance rate, lower secondary, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q3.GPIA,"Total net attendance rate, lower secondary, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q3.M,"Total net attendance rate, lower secondary, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q4,"Total net attendance rate, lower secondary, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q4.F,"Total net attendance rate, lower secondary, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q4.GPIA,"Total net attendance rate, lower secondary, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q4.M,"Total net attendance rate, lower secondary, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q5,"Total net attendance rate, lower secondary, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q5.F,"Total net attendance rate, lower secondary, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q5.GPIA,"Total net attendance rate, lower secondary, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.RUR.Q5.M,"Total net attendance rate, lower secondary, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.RUR.WPIA,"Total net attendance rate, lower secondary, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.URB,"Total net attendance rate, lower secondary, urban, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.F,"Total net attendance rate, lower secondary, urban, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.F.WPIA,"Total net attendance rate, lower secondary, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.GPIA,"Total net attendance rate, lower secondary, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.M,"Total net attendance rate, lower secondary, urban, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.M.WPIA,"Total net attendance rate, lower secondary, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q1,"Total net attendance rate, lower secondary, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q1.F,"Total net attendance rate, lower secondary, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q1.GPIA,"Total net attendance rate, lower secondary, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q1.M,"Total net attendance rate, lower secondary, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q2,"Total net attendance rate, lower secondary, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q2.F,"Total net attendance rate, lower secondary, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q2.GPIA,"Total net attendance rate, lower secondary, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q2.M,"Total net attendance rate, lower secondary, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q3,"Total net attendance rate, lower secondary, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q3.F,"Total net attendance rate, lower secondary, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q3.GPIA,"Total net attendance rate, lower secondary, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q3.M,"Total net attendance rate, lower secondary, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q4,"Total net attendance rate, lower secondary, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q4.F,"Total net attendance rate, lower secondary, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q4.GPIA,"Total net attendance rate, lower secondary, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q4.M,"Total net attendance rate, lower secondary, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q5,"Total net attendance rate, lower secondary, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q5.F,"Total net attendance rate, lower secondary, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.2.URB.Q5.GPIA,"Total net attendance rate, lower secondary, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.2.URB.Q5.M,"Total net attendance rate, lower secondary, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.2.URB.WPIA,"Total net attendance rate, lower secondary, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.2.WPIA,"Total net attendance rate, lower secondary, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3,"Total net attendance rate, upper secondary, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.F,"Total net attendance rate, upper secondary, female (%)",sources,Education Statistics,12
+UIS.NART.3.F.LPIA,"Total net attendance rate, upper secondary, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.F.WPIA,"Total net attendance rate, upper secondary, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.GPIA,"Total net attendance rate, upper secondary, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.LPIA,"Total net attendance rate, upper secondary, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.M,"Total net attendance rate, upper secondary, male (%)",sources,Education Statistics,12
+UIS.NART.3.M.LPIA,"Total net attendance rate, upper secondary, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.M.WPIA,"Total net attendance rate, upper secondary, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.Q1,"Total net attendance rate, upper secondary, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.Q1.F,"Total net attendance rate, upper secondary, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.Q1.F.LPIA,"Total net attendance rate, upper secondary, poorest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q1.GPIA,"Total net attendance rate, upper secondary, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.Q1.LPIA,"Total net attendance rate, upper secondary, poorest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q1.M,"Total net attendance rate, upper secondary, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.Q1.M.LPIA,"Total net attendance rate, upper secondary, poorest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q2,"Total net attendance rate, upper secondary, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.Q2.F,"Total net attendance rate, upper secondary, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.Q2.F.LPIA,"Total net attendance rate, upper secondary, second quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q2.GPIA,"Total net attendance rate, upper secondary, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.Q2.LPIA,"Total net attendance rate, upper secondary, second quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q2.M,"Total net attendance rate, upper secondary, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.Q2.M.LPIA,"Total net attendance rate, upper secondary, second quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q3,"Total net attendance rate, upper secondary, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.Q3.F,"Total net attendance rate, upper secondary, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.Q3.F.LPIA,"Total net attendance rate, upper secondary, middle quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q3.GPIA,"Total net attendance rate, upper secondary, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.Q3.LPIA,"Total net attendance rate, upper secondary, middle quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q3.M,"Total net attendance rate, upper secondary, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.Q3.M.LPIA,"Total net attendance rate, upper secondary, middle quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q4,"Total net attendance rate, upper secondary, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.Q4.F,"Total net attendance rate, upper secondary, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.Q4.F.LPIA,"Total net attendance rate, upper secondary, fourth quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q4.GPIA,"Total net attendance rate, upper secondary, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.Q4.LPIA,"Total net attendance rate, upper secondary, fourth quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q4.M,"Total net attendance rate, upper secondary, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.Q4.M.LPIA,"Total net attendance rate, upper secondary, fourth quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q5,"Total net attendance rate, upper secondary, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.Q5.F,"Total net attendance rate, upper secondary, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.Q5.F.LPIA,"Total net attendance rate, upper secondary, richest quintile, female, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q5.GPIA,"Total net attendance rate, upper secondary, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.Q5.LPIA,"Total net attendance rate, upper secondary, richest quintile, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.Q5.M,"Total net attendance rate, upper secondary, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.Q5.M.LPIA,"Total net attendance rate, upper secondary, richest quintile, male, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR,"Total net attendance rate, upper secondary, rural, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.F,"Total net attendance rate, upper secondary, rural, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.F.WPIA,"Total net attendance rate, upper secondary, rural, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.GPIA,"Total net attendance rate, upper secondary, rural, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.M,"Total net attendance rate, upper secondary, rural, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.M.WPIA,"Total net attendance rate, upper secondary, rural, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q1,"Total net attendance rate, upper secondary, rural, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q1.F,"Total net attendance rate, upper secondary, rural, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q1.GPIA,"Total net attendance rate, upper secondary, rural, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q1.M,"Total net attendance rate, upper secondary, rural, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q2,"Total net attendance rate, upper secondary, rural, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q2.F,"Total net attendance rate, upper secondary, rural, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q2.GPIA,"Total net attendance rate, upper secondary, rural, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q2.M,"Total net attendance rate, upper secondary, rural, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q3,"Total net attendance rate, upper secondary, rural, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q3.F,"Total net attendance rate, upper secondary, rural, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q3.GPIA,"Total net attendance rate, upper secondary, rural, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q3.M,"Total net attendance rate, upper secondary, rural, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q4,"Total net attendance rate, upper secondary, rural, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q4.F,"Total net attendance rate, upper secondary, rural, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q4.GPIA,"Total net attendance rate, upper secondary, rural, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q4.M,"Total net attendance rate, upper secondary, rural, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q5,"Total net attendance rate, upper secondary, rural, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q5.F,"Total net attendance rate, upper secondary, rural, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q5.GPIA,"Total net attendance rate, upper secondary, rural, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.RUR.Q5.M,"Total net attendance rate, upper secondary, rural, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.RUR.WPIA,"Total net attendance rate, upper secondary, rural, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.URB,"Total net attendance rate, upper secondary, urban, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.F,"Total net attendance rate, upper secondary, urban, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.F.WPIA,"Total net attendance rate, upper secondary, urban, female, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.GPIA,"Total net attendance rate, upper secondary, urban, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.M,"Total net attendance rate, upper secondary, urban, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.M.WPIA,"Total net attendance rate, upper secondary, urban, male, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q1,"Total net attendance rate, upper secondary, urban, poorest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q1.F,"Total net attendance rate, upper secondary, urban, poorest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q1.GPIA,"Total net attendance rate, upper secondary, urban, poorest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q1.M,"Total net attendance rate, upper secondary, urban, poorest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q2,"Total net attendance rate, upper secondary, urban, second quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q2.F,"Total net attendance rate, upper secondary, urban, second quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q2.GPIA,"Total net attendance rate, upper secondary, urban, second quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q2.M,"Total net attendance rate, upper secondary, urban, second quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q3,"Total net attendance rate, upper secondary, urban, middle quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q3.F,"Total net attendance rate, upper secondary, urban, middle quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q3.GPIA,"Total net attendance rate, upper secondary, urban, middle quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q3.M,"Total net attendance rate, upper secondary, urban, middle quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q4,"Total net attendance rate, upper secondary, urban, fourth quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q4.F,"Total net attendance rate, upper secondary, urban, fourth quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q4.GPIA,"Total net attendance rate, upper secondary, urban, fourth quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q4.M,"Total net attendance rate, upper secondary, urban, fourth quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q5,"Total net attendance rate, upper secondary, urban, richest quintile, both sexes (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q5.F,"Total net attendance rate, upper secondary, urban, richest quintile, female (%)",sources,Education Statistics,12
+UIS.NART.3.URB.Q5.GPIA,"Total net attendance rate, upper secondary, urban, richest quintile, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NART.3.URB.Q5.M,"Total net attendance rate, upper secondary, urban, richest quintile, male (%)",sources,Education Statistics,12
+UIS.NART.3.URB.WPIA,"Total net attendance rate, upper secondary, urban, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NART.3.WPIA,"Total net attendance rate, upper secondary, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.NERA.AGM1,"Adjusted net enrolment rate, one year before the official primary entry age, both sexes (%)",sources,Education Statistics,12
+UIS.NERA.AGM1.F,"Adjusted net enrolment rate, one year before the official primary entry age, female (%)",sources,Education Statistics,12
+UIS.NERA.AGM1.GPIA.CP,"Adjusted net enrolment rate, one year before the official primary entry age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.NERA.AGM1.M,"Adjusted net enrolment rate, one year before the official primary entry age, male (%)",sources,Education Statistics,12
+UIS.NERT.1,"Total net enrolment rate, primary, both sexes (%)",sources,Education Statistics,12
+UIS.NERT.1.F,"Total net enrolment rate, primary, female (%)",sources,Education Statistics,12
+UIS.NERT.1.GPI,"Total net enrolment rate, primary, gender parity index (GPI)",topics,Education,4
+UIS.NERT.1.M,"Total net enrolment rate, primary, male (%)",sources,Education Statistics,12
+UIS.NERT.2,"Total net enrolment rate, lower secondary, both sexes (%)",sources,Education Statistics,12
+UIS.NERT.2.F,"Total net enrolment rate, lower secondary, female (%)",sources,Education Statistics,12
+UIS.NERT.2.GPI,"Total net enrolment rate, lower secondary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.NERT.2.M,"Total net enrolment rate, lower secondary, male (%)",sources,Education Statistics,12
+UIS.NERT.3,"Total net enrolment rate, upper secondary, both sexes (%)",sources,Education Statistics,12
+UIS.NERT.3.F,"Total net enrolment rate, upper secondary, female (%)",sources,Education Statistics,12
+UIS.NERT.3.GPI,"Total net enrolment rate, upper secondary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.NERT.3.M,"Total net enrolment rate, upper secondary, male (%)",sources,Education Statistics,12
+UIS.OAEPG.1,"Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, both sexes (%)",sources,Education Statistics,12
+UIS.OAEPG.1.F,"Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, female (%)",sources,Education Statistics,12
+UIS.OAEPG.1.GPIA,"Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.OAEPG.1.M,"Percentage of pupils enrolled in primary education who are at least 2 years over-age for their current grade, male (%)",sources,Education Statistics,12
+UIS.OAEPG.2.GPV,"Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, both sexes (%)",sources,Education Statistics,12
+UIS.OAEPG.2.GPV.F,"Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, female (%)",sources,Education Statistics,12
+UIS.OAEPG.2.GPV.GPIA,"Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.OAEPG.2.GPV.M,"Percentage of pupils enrolled in lower secondary general education who are at least 2 years over-age for their current grade, male (%)",sources,Education Statistics,12
+UIS.ODAFLOW.VOLUMESCHOLARSHIP,"Volume of official development assistance flows for scholarships by sector and type of study, constant US$",sources,Education Statistics,12
+UIS.OE.56.40510,"Total outbound internationally mobile tertiary students studying abroad, all countries, both sexes (number)",topics,Education,4
+UIS.OFST.1T2.CP,"Out-of-school children and adolescents of primary and lower secondary school age, both sexes (number)",sources,Education Statistics,12
+UIS.OFST.1T2.F.CP,"Out-of-school children and adolescents of primary and lower secondary school age, female (number)",sources,Education Statistics,12
+UIS.OFST.1T2.M.CP,"Out-of-school children and adolescents of primary and lower secondary school age, male (number)",sources,Education Statistics,12
+UIS.OFST.1T3.CP,"Out-of-school children, adolescents and youth of primary and secondary school age, both sexes (number)",sources,Education Statistics,12
+UIS.OFST.1T3.F.CP,"Out-of-school children, adolescents and youth of primary and secondary school age, female (number)",sources,Education Statistics,12
+UIS.OFST.1T3.M.CP,"Out-of-school children, adolescents and youth of primary and secondary school age, male (number)",sources,Education Statistics,12
+UIS.OFST.2,"Out-of-school adolescents of lower secondary school age, both sexes (number)",topics,Education,4
+UIS.OFST.2.F,"Out-of-school adolescents of lower secondary school age, female (number)",topics,Education,4
+UIS.OFST.2.M,"Out-of-school adolescents of lower secondary school age, male (number)",topics,Education,4
+UIS.OFST.2T3.CP,"Out-of-school adolescents and youth of secondary school age, both sexes (number)",sources,Education Statistics,12
+UIS.OFST.2T3.F.CP,"Out-of-school adolescents and youth of secondary school age, female (number)",sources,Education Statistics,12
+UIS.OFST.2T3.M.CP,"Out-of-school adolescents and youth of secondary school age, male (number)",sources,Education Statistics,12
+UIS.OFST.3.CP,"Out-of-school youth of upper secondary school age, both sexes (number)",sources,Education Statistics,12
+UIS.OFST.3.F.CP,"Out-of-school youth of upper secondary school age, female (number)",sources,Education Statistics,12
+UIS.OFST.3.M.CP,"Out-of-school youth of upper secondary school age, male (number)",sources,Education Statistics,12
+UIS.OFST.AGM1.CP,"Out-of-school children, one year younger than official primary entry age, both sexes (number)",sources,Education Statistics,12
+UIS.OFST.AGM1.F.CP,"Out-of-school children, one year younger than official primary entry age, female (number)",sources,Education Statistics,12
+UIS.OFST.AGM1.M.CP,"Out-of-school children, one year younger than official primary entry age, male (number)",sources,Education Statistics,12
+UIS.OMR.56,"Outbound mobility ratio, all regions, both sexes (%)",topics,Education,4
+UIS.ONTRACK.THREE.DOMAINS,"Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, both sexes (%)",sources,Education Statistics,12
+UIS.ONTRACK.THREE.DOMAINS.F,"Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, female (%)",sources,Education Statistics,12
+UIS.ONTRACK.THREE.DOMAINS.GPIA,"Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ONTRACK.THREE.DOMAINS.M,"Proportion of children aged 24-59 months who are developmentally on track in health, learning and psychosocial well-being, male (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED,"Percentage of students experiencing bullying in the last 12 months, both sexes (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.F,"Percentage of students experiencing bullying in the last 12 months, female (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.GPIA,"Percentage of students experiencing bullying in the last 12 months, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.HIGHSES,"Percentage of students experiencing bullying in the last 12 months, high socio-economic status, both sexes (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.LOWSES,"Percentage of students experiencing bullying in the last 12 months, low socio-economic status, both sexes (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.M,"Percentage of students experiencing bullying in the last 12 months, male (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.NATIVE,"Percentage of students experiencing bullying in the last 12 months, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.NON,"Percentage of students experiencing bullying in the last 12 months, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.NPIA,"Percentage of students experiencing bullying in the last 12 months, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.PER.11T15.BULLIED.WPIA,"Percentage of students experiencing bullying in the last 12 months, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.PLILLITP,"Participants in literacy programmes as a % of the illiterate population, both sexes",sources,Education Statistics,12
+UIS.PLILLITP.F,"Participants in literacy programmes as a % of the illiterate population, female",sources,Education Statistics,12
+UIS.PLILLITP.M,"Participants in literacy programmes as a % of the illiterate population, male",sources,Education Statistics,12
+UIS.POSTIMUENV,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, both sexes (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.F,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, female (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.GPIA,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.POSTIMUENV.LPIA,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.POSTIMUENV.M,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, male (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.RUR,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, rural (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.URB,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, urban (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.WPIA,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.POSTIMUENV.WQ1,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, poorest quintile (%)",sources,Education Statistics,12
+UIS.POSTIMUENV.WQ5,"Percentage of children under 5 years experiencing positive and stimulating home learning environments, richest quintile (%)",sources,Education Statistics,12
+UIS.PRP.0,Percentage of enrolment in early childhood education programmes in private institutions (%),sources,Education Statistics,12
+UIS.PRP.01,Percentage of enrolment in early childhood educational development programmes in private institutions (%),sources,Education Statistics,12
+UIS.PRP.2,Percentage of enrolment in lower secondary education in private institutions (%),sources,Education Statistics,12
+UIS.PRP.3,Percentage of enrolment in upper secondary education in private institutions (%),sources,Education Statistics,12
+UIS.PRP.4,Percentage of enrolment in post-secondary non-tertiary education in private institutions (%),sources,Education Statistics,12
+UIS.PRYA.12MO,"Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, both sexes (%)",sources,Education Statistics,12
+UIS.PRYA.12MO.F,"Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, female (%)",sources,Education Statistics,12
+UIS.PRYA.12MO.GPI,"Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.PRYA.12MO.M,"Participation rate of youth and adults in formal and non-formal education and training in the previous 12 months, male (%)",sources,Education Statistics,12
+UIS.PTRHC.02.QUALIFIED,Pupil-qualified teacher ratio in pre-primary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.02.TRAINED,Pupil-trained teacher ratio in pre-primary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.1.QUALIFIED,Pupil-qualified teacher ratio in primary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.1.TRAINED,Pupil-trained teacher ratio in primary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.2.QUALIFIED,Pupil-qualified teacher ratio in lower secondary (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.2.TRAINED,Pupil-trained teacher ratio in lower secondary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.2T3.QUALIFIED,Pupil-qualified teacher ratio in secondary (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.2T3.TRAINED,Pupil-trained teacher ratio in secondary education (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.3.QUALIFIED,Pupil-qualified teacher ratio in upper secondary (headcount basis),sources,Education Statistics,12
+UIS.PTRHC.3.TRAINED,Pupil-trained teacher ratio in upper secondary education (headcount basis),sources,Education Statistics,12
+UIS.QUTP.02,"Percentage of qualified teachers in pre-primary education, both sexes (%)",sources,Education Statistics,12
+UIS.QUTP.02.F,"Percentage of qualified teachers in pre-primary education, female (%)",sources,Education Statistics,12
+UIS.QUTP.02.GPIA,"Percentage of qualified teachers in pre-primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.QUTP.02.M,"Percentage of qualified teachers in pre-primary education, male (%)",sources,Education Statistics,12
+UIS.QUTP.1,"Percentage of qualified teachers in primary education, both sexes (%)",sources,Education Statistics,12
+UIS.QUTP.1.F,"Percentage of qualified teachers in primary education, female (%)",sources,Education Statistics,12
+UIS.QUTP.1.GPIA,"Percentage of qualified teachers in primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.QUTP.1.M,"Percentage of qualified teachers in primary education, male (%)",sources,Education Statistics,12
+UIS.QUTP.2,"Percentage of qualified teachers in lower secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.QUTP.2.F,"Percentage of qualified teachers in lower secondary education, female (%)",sources,Education Statistics,12
+UIS.QUTP.2.GPIA,"Percentage of qualified teachers in lower secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.QUTP.2.M,"Percentage of qualified teachers in lower secondary education, male (%)",sources,Education Statistics,12
+UIS.QUTP.2T3,"Percentage of qualified teachers in secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.QUTP.2T3.F,"Percentage of qualified teachers in secondary education, female (%)",sources,Education Statistics,12
+UIS.QUTP.2T3.GPIA,"Percentage of qualified teachers in secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.QUTP.2T3.M,"Percentage of qualified teachers in secondary education, male (%)",sources,Education Statistics,12
+UIS.QUTP.3,"Percentage of qualified teachers in upper secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.QUTP.3.F,"Percentage of qualified teachers in upper secondary education, female (%)",sources,Education Statistics,12
+UIS.QUTP.3.GPIA,"Percentage of qualified teachers in upper secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.QUTP.3.M,"Percentage of qualified teachers in upper secondary education, male (%)",sources,Education Statistics,12
+UIS.R.1,"Repeaters in primary education, all grades, both sexes (number)",topics,Education,4
+UIS.R.1.F,"Repeaters in primary education, all grades, female (number)",topics,Education,4
+UIS.R.1.G1,"Repeaters in Grade 1 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G1.F,"Repeaters in Grade 1 of primary education, female (number)",topics,Education,4
+UIS.R.1.G1.M,"Repeaters in Grade 1 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G2,"Repeaters in Grade 2 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G2.F,"Repeaters in Grade 2 of primary education, female (number)",topics,Education,4
+UIS.R.1.G2.M,"Repeaters in Grade 2 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G3,"Repeaters in Grade 3 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G3.F,"Repeaters in Grade 3 of primary education, female (number)",topics,Education,4
+UIS.R.1.G3.M,"Repeaters in Grade 3 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G4,"Repeaters in Grade 4 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G4.F,"Repeaters in Grade 4 of primary education, female (number)",topics,Education,4
+UIS.R.1.G4.M,"Repeaters in Grade 4 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G5,"Repeaters in Grade 5 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G5.F,"Repeaters in Grade 5 of primary education, female (number)",topics,Education,4
+UIS.R.1.G5.M,"Repeaters in Grade 5 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G6,"Repeaters in Grade 6 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G6.F,"Repeaters in Grade 6 of primary education, female (number)",topics,Education,4
+UIS.R.1.G6.M,"Repeaters in Grade 6 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.G7,"Repeaters in Grade 7 of primary education, both sexes (number)",topics,Education,4
+UIS.R.1.G7.F,"Repeaters in Grade 7 of primary education, female (number)",topics,Education,4
+UIS.R.1.G7.M,"Repeaters in Grade 7 of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.GUK,"Repeaters in grade unknown of primary education, both sexes (number)",sources,Education Statistics,12
+UIS.R.1.GUK.F,"Repeaters in grade unknown of primary education, female (number)",sources,Education Statistics,12
+UIS.R.1.GUK.M,"Repeaters in grade unknown of primary education, male (number)",sources,Education Statistics,12
+UIS.R.1.M,"Repeaters in primary education, all grades, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV,"Repeaters in lower secondary general education, all grades, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.F,"Repeaters in lower secondary general education, all grades, female (number)",topics,Education,4
+UIS.R.2.GPV.G1,"Repeaters in Grade 1 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G1.F,"Repeaters in Grade 1 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G1.M,"Repeaters in Grade 1 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.G2,"Repeaters in Grade 2 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G2.F,"Repeaters in Grade 2 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G2.M,"Repeaters in Grade 2 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.G3,"Repeaters in Grade 3 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G3.F,"Repeaters in Grade 3 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G3.M,"Repeaters in Grade 3 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.G4,"Repeaters in Grade 4 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G4.F,"Repeaters in Grade 4 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G4.M,"Repeaters in Grade 4 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.G5,"Repeaters in Grade 5 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G5.F,"Repeaters in Grade 5 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G5.M,"Repeaters in Grade 5 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.G6,"Repeaters in Grade 6 of lower secondary general education, both sexes (number)",topics,Education,4
+UIS.R.2.GPV.G6.F,"Repeaters in Grade 6 of lower secondary general education, female (number)",topics,Education,4
+UIS.R.2.GPV.G6.M,"Repeaters in Grade 6 of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.GUK,"Repeaters in grade unknown of lower secondary general education, both sexes (number)",sources,Education Statistics,12
+UIS.R.2.GPV.GUK.F,"Repeaters in grade unknown of lower secondary general education, female (number)",sources,Education Statistics,12
+UIS.R.2.GPV.GUK.M,"Repeaters in grade unknown of lower secondary general education, male (number)",sources,Education Statistics,12
+UIS.R.2.GPV.M,"Repeaters in lower secondary general education, all grades, male (number)",sources,Education Statistics,12
+UIS.READ.G2T3,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.F,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, female (%)",sources,Education Statistics,12
+UIS.READ.G2T3.GPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.READ.G2T3.HIGHSES,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.LANGTEST,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.LOWSES,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.LPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.READ.G2T3.LTPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.READ.G2T3.M,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, male (%)",sources,Education Statistics,12
+UIS.READ.G2T3.NATIVE,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.NONLANGTEST,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.NONNATIVE,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.NPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.READ.G2T3.RURAL,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.URBAN,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.G2T3.WPIA,"Proportion of students in Grade 2 or 3 achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.READ.LOWERSEC,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.F,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, female (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.GPIA,"Proportion of students at the end of lower secondary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.HIGHSES,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.LANGTEST,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.LOWSES,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.LPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.LTPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.M,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, male (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.NATIVE,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.NONLANGTEST,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.NONNATIVE,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.NPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.RURAL,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.URBAN,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.LOWERSEC.WPIA,"Proportion of students at the end of lower secondary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.READ.PRIMARY,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.F,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, female (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.GPIA,"Proportion of students at the end of primary achieving at least a minimum proficiency level in reading, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.READ.PRIMARY.HIGHSES,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very affluent socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.LANGTEST,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, spoke the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.LOWSES,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, very poor socioeconomic background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.LPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted location parity index (LPIA)",sources,Education Statistics,12
+UIS.READ.PRIMARY.LTPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted speaks language of the test parity index (LTPIA)",sources,Education Statistics,12
+UIS.READ.PRIMARY.M,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, male (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.NATIVE,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, non-immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.NONLANGTEST,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, did not speak the language of the test at home, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.NONNATIVE,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, immigrant background, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.NPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.READ.PRIMARY.RURAL,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, rural areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.URBAN,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, urban areas, both sexes (%)",sources,Education Statistics,12
+UIS.READ.PRIMARY.WPIA,"Proportion of students at the end of primary education achieving at least a minimum proficiency level in reading, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.REPR.1,"Repetition rate in primary education (all grades), both sexes (%)",sources,Education Statistics,12
+UIS.REPR.1.F,"Repetition rate in primary education (all grades), female (%)",sources,Education Statistics,12
+UIS.REPR.1.G1,"Repetition rate in Grade 1 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G1.F,"Repetition rate in Grade 1 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G1.M,"Repetition rate in Grade 1 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G2,"Repetition rate in Grade 2 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G2.F,"Repetition rate in Grade 2 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G2.M,"Repetition rate in Grade 2 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G3,"Repetition rate in Grade 3 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G3.F,"Repetition rate in Grade 3 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G3.M,"Repetition rate in Grade 3 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G4,"Repetition rate in Grade 4 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G4.F,"Repetition rate in Grade 4 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G4.M,"Repetition rate in Grade 4 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G5,"Repetition rate in Grade 5 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G5.F,"Repetition rate in Grade 5 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G5.M,"Repetition rate in Grade 5 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G6,"Repetition rate in Grade 6 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G6.F,"Repetition rate in Grade 6 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G6.M,"Repetition rate in Grade 6 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.G7,"Repetition rate in Grade 7 of primary education, both sexes (%)",topics,Education,4
+UIS.REPR.1.G7.F,"Repetition rate in Grade 7 of primary education, female (%)",topics,Education,4
+UIS.REPR.1.G7.M,"Repetition rate in Grade 7 of primary education, male (%)",topics,Education,4
+UIS.REPR.1.M,"Repetition rate in primary education (all grades), male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV,"Repetition rate in lower secondary general education (all grades), both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.F,"Repetition rate in lower secondary general education (all grades), female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G1,"Repetition rate in Grade 1 of lower secondary general education, both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G1.F,"Repetition rate in Grade 1 of lower secondary general education, female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G1.M,"Repetition rate in Grade 1 of lower secondary general education, male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G2,"Repetition rate in Grade 2 of lower secondary general education, both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G2.F,"Repetition rate in Grade 2 of lower secondary general education, female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G2.M,"Repetition rate in Grade 2 of lower secondary general education, male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G3,"Repetition rate in Grade 3 of lower secondary general education, both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G3.F,"Repetition rate in Grade 3 of lower secondary general education, female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G3.M,"Repetition rate in Grade 3 of lower secondary general education, male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G4,"Repetition rate in Grade 4 of lower secondary general education, both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G4.F,"Repetition rate in Grade 4 of lower secondary general education, female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G4.M,"Repetition rate in Grade 4 of lower secondary general education, male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G5,"Repetition rate in Grade 5 of lower secondary general education, both sexes (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G5.F,"Repetition rate in Grade 5 of lower secondary general education, female (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.G5.M,"Repetition rate in Grade 5 of lower secondary general education, male (%)",sources,Education Statistics,12
+UIS.REPR.2.GPV.M,"Repetition rate in lower secondary general education (all grades), male (%)",sources,Education Statistics,12
+UIS.ROFST.1,"Out-of-school rate for children of primary school age, both sexes (%)",topics,Education,4
+UIS.ROFST.1.F,"Out-of-school rate for children of primary school age, female (%)",topics,Education,4
+UIS.ROFST.1.GPIA.CP,"Out-of-school rate for children of primary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.1.M,"Out-of-school rate for children of primary school age, male (%)",topics,Education,4
+UIS.ROFST.1T2.CP,"Out-of-school rate for children and adolescents of primary and lower secondary school age, both sexes (%)",sources,Education Statistics,12
+UIS.ROFST.1T2.F.CP,"Out-of-school rate for children and adolescents of primary and lower secondary school age, female (%)",sources,Education Statistics,12
+UIS.ROFST.1T2.GPIA.CP,"Out-of-school rate for children and adolescents of primary and lower secondary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.1T2.M.CP,"Out-of-school rate for children and adolescents of primary and lower secondary school age, male (%)",sources,Education Statistics,12
+UIS.ROFST.1T3.CP,"Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, both sexes (%)",sources,Education Statistics,12
+UIS.ROFST.1T3.F.CP,"Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, female (%)",sources,Education Statistics,12
+UIS.ROFST.1T3.GPIA.CP,"Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.1T3.M.CP,"Out-of-school rate for children, adolescents and youth of primary, lower secondary and upper secondary school age, male (%)",sources,Education Statistics,12
+UIS.ROFST.2,"Out-of-school rate for adolescents of lower secondary school age, both sexes (%)",topics,Education,4
+UIS.ROFST.2.F,"Out-of-school rate for adolescents of lower secondary school age, female (%)",topics,Education,4
+UIS.ROFST.2.GPIA.CP,"Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.2.M,"Out-of-school rate for adolescents of lower secondary school age, male (%)",topics,Education,4
+UIS.ROFST.2T3.CP,"Out-of-school rate for adolescents and youth of lower and upper secondary school age, both sexes (%)",sources,Education Statistics,12
+UIS.ROFST.2T3.F.CP,"Out-of-school rate for adolescents and youth of lower and upper secondary school age, female (%)",sources,Education Statistics,12
+UIS.ROFST.2T3.GPIA.CP,"Out-of-school rate for adolescents and youth of lower and upper secondary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.2T3.M.CP,"Out-of-school rate for adolescents and youth of lower and upper secondary school age, male (%)",sources,Education Statistics,12
+UIS.ROFST.3.CP,"Out-of-school rate for youth of upper secondary school age, both sexes (%)",sources,Education Statistics,12
+UIS.ROFST.3.F.CP,"Out-of-school rate for youth of upper secondary school age, female (%)",sources,Education Statistics,12
+UIS.ROFST.3.GPIA.CP,"Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.3.M.CP,"Out-of-school rate for youth of upper secondary school age, male (%)",sources,Education Statistics,12
+UIS.ROFST.AGM1.CP,"Out-of-school rate for children one year younger than official primary entrance age, both sexes (%)",sources,Education Statistics,12
+UIS.ROFST.AGM1.F.CP,"Out-of-school rate for children one year younger than official primary entrance age, female (%)",sources,Education Statistics,12
+UIS.ROFST.AGM1.GPIA.CP,"Out-of-school rate for children one year younger than official age, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.ROFST.AGM1.M.CP,"Out-of-school rate for children one year younger than official primary entrance age, male (%)",sources,Education Statistics,12
+UIS.ROFST.H.1,"Out-of-school rate for children of primary school age, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.F,"Out-of-school rate for children of primary school age, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.F.LPIA,"Out-of-school rate for children of primary school age, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.F.WPIA,"Out-of-school rate for children of primary school age, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.GPIA,"Out-of-school rate for children of primary school age, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.LPIA,"Out-of-school rate for children of primary school age, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.M,"Out-of-school rate for children of primary school age, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.M.LPIA,"Out-of-school rate for children of primary school age, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.M.WPIA,"Out-of-school rate for children of primary school age, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1,"Out-of-school rate for children of primary school age, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.F,"Out-of-school rate for children of primary school age, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.F.LPIA,"Out-of-school rate for children of primary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.GPIA,"Out-of-school rate for children of primary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.LPIA,"Out-of-school rate for children of primary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.M,"Out-of-school rate for children of primary school age, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q1.M.LPIA,"Out-of-school rate for children of primary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2,"Out-of-school rate for children of primary school age, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.F,"Out-of-school rate for children of primary school age, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.F.LPIA,"Out-of-school rate for children of primary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.GPIA,"Out-of-school rate for children of primary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.LPIA,"Out-of-school rate for children of primary school age, second quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.M,"Out-of-school rate for children of primary school age, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q2.M.LPIA,"Out-of-school rate for children of primary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3,"Out-of-school rate for children of primary school age, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.F,"Out-of-school rate for children of primary school age, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.F.LPIA,"Out-of-school rate for children of primary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.GPIA,"Out-of-school rate for children of primary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.LPIA,"Out-of-school rate for children of primary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.M,"Out-of-school rate for children of primary school age, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q3.M.LPIA,"Out-of-school rate for children of primary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4,"Out-of-school rate for children of primary school age, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.F,"Out-of-school rate for children of primary school age, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.F.LPIA,"Out-of-school rate for children of primary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.GPIA,"Out-of-school rate for children of primary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.LPIA,"Out-of-school rate for children of primary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.M,"Out-of-school rate for children of primary school age, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q4.M.LPIA,"Out-of-school rate for children of primary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5,"Out-of-school rate for children of primary school age, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.F,"Out-of-school rate for children of primary school age, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.F.LPIA,"Out-of-school rate for children of primary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.GPIA,"Out-of-school rate for children of primary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.LPIA,"Out-of-school rate for children of primary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.M,"Out-of-school rate for children of primary school age, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.Q5.M.LPIA,"Out-of-school rate for children of primary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR,"Out-of-school rate for children of primary school age, rural, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.F,"Out-of-school rate for children of primary school age, rural, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.F.WPIA,"Out-of-school rate for children of primary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.GPIA,"Out-of-school rate for children of primary school age, rural, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.M,"Out-of-school rate for children of primary school age, rural, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.M.WPIA,"Out-of-school rate for children of primary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q1,"Out-of-school rate for children of primary school age, rural, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q1.F,"Out-of-school rate for children of primary school age, rural, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q1.GPIA,"Out-of-school rate for children of primary school age, primary education, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q1.M,"Out-of-school rate for children of primary school age, rural, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q2,"Out-of-school rate for children of primary school age, rural, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q2.F,"Out-of-school rate for children of primary school age, rural, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q2.GPIA,"Out-of-school rate for children of primary school age, primary education, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q2.M,"Out-of-school rate for children of primary school age, rural, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q3,"Out-of-school rate for children of primary school age, rural, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q3.F,"Out-of-school rate for children of primary school age, rural, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q3.GPIA,"Out-of-school rate for children of primary school age, primary education, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q3.M,"Out-of-school rate for children of primary school age, rural, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q4,"Out-of-school rate for children of primary school age, rural, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q4.F,"Out-of-school rate for children of primary school age, rural, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q4.GPIA,"Out-of-school rate for children of primary school age, primary education, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q4.M,"Out-of-school rate for children of primary school age, rural, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q5,"Out-of-school rate for children of primary school age, rural, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q5.F,"Out-of-school rate for children of primary school age, rural, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q5.GPIA,"Out-of-school rate for children of primary school age, primary education, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.Q5.M,"Out-of-school rate for children of primary school age, rural, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.RUR.WPIA,"Out-of-school rate for children of primary school age, rural, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB,"Out-of-school rate for children of primary school age, urban, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.F,"Out-of-school rate for children of primary school age, urban, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.F.WPIA,"Out-of-school rate for children of primary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.GPIA,"Out-of-school rate for children of primary school age, urban, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.M,"Out-of-school rate for children of primary school age, urban, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.M.WPIA,"Out-of-school rate for children of primary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q1,"Out-of-school rate for children of primary school age, urban, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q1.F,"Out-of-school rate for children of primary school age, urban, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q1.GPIA,"Out-of-school rate for children of primary school age, primary education, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q1.M,"Out-of-school rate for children of primary school age, urban, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q2,"Out-of-school rate for children of primary school age, urban, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q2.F,"Out-of-school rate for children of primary school age, urban, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q2.GPIA,"Out-of-school rate for children of primary school age, primary education, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q2.M,"Out-of-school rate for children of primary school age, urban, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q3,"Out-of-school rate for children of primary school age, urban, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q3.F,"Out-of-school rate for children of primary school age, urban, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q3.GPIA,"Out-of-school rate for children of primary school age, primary education, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q3.M,"Out-of-school rate for children of primary school age, urban, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q4,"Out-of-school rate for children of primary school age, urban, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q4.F,"Out-of-school rate for children of primary school age, urban, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q4.GPIA,"Out-of-school rate for children of primary school age, primary education, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q4.M,"Out-of-school rate for children of primary school age, urban, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q5,"Out-of-school rate for children of primary school age, urban, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q5.F,"Out-of-school rate for children of primary school age, urban, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q5.GPIA,"Out-of-school rate for children of primary school age, primary education, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.Q5.M,"Out-of-school rate for children of primary school age, urban, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.1.URB.WPIA,"Out-of-school rate for children of primary school age, urban, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.1.WPIA,"Out-of-school rate for children of primary school age, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2,"Out-of-school rate for adolescents of lower secondary school age, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.F,"Out-of-school rate for adolescents of lower secondary school age, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.F.WPIA,"Out-of-school rate for adolescents of lower secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.GPIA,"Out-of-school rate for adolescents of lower secondary school age, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.LPIA,"Out-of-school rate for adolescents of lower secondary school age, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.M,"Out-of-school rate for adolescents of lower secondary school age, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.M.WPIA,"Out-of-school rate for adolescents of lower secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.F,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.GPIA,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.LPIA,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.M,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q1.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2,"Out-of-school rate for adolescents of lower secondary school age, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.F,"Out-of-school rate for adolescents of lower secondary school age, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.GPIA,"Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.LPIA,"Out-of-school rate for adolescents of lower secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.M,"Out-of-school rate for adolescents of lower secondary school age, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q2.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.F,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.GPIA,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.LPIA,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.M,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q3.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.F,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.GPIA,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.LPIA,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.M,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q4.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.F,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.F.LPIA,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.GPIA,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.LPIA,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.M,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.Q5.M.LPIA,"Out-of-school rate for adolescents of lower secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR,"Out-of-school rate for adolescents of lower secondary school age, rural, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.F,"Out-of-school rate for adolescents of lower secondary school age, rural, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.F.WPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.M,"Out-of-school rate for adolescents of lower secondary school age, rural, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.M.WPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q1,"Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q1.F,"Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q1.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q1.M,"Out-of-school rate for adolescents of lower secondary school age, rural, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q2,"Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q2.F,"Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q2.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q2.M,"Out-of-school rate for adolescents of lower secondary school age, rural, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q3,"Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q3.F,"Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q3.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q3.M,"Out-of-school rate for adolescents of lower secondary school age, rural, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q4,"Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q4.F,"Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q4.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q4.M,"Out-of-school rate for adolescents of lower secondary school age, rural, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q5,"Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q5.F,"Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q5.GPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.Q5.M,"Out-of-school rate for adolescents of lower secondary school age, rural, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.RUR.WPIA,"Out-of-school rate for adolescents of lower secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB,"Out-of-school rate for adolescents of lower secondary school age, urban, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.F,"Out-of-school rate for adolescents of lower secondary school age, urban, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.F.WPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.M,"Out-of-school rate for adolescents of lower secondary school age, urban, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.M.WPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q1,"Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q1.F,"Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q1.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q1.M,"Out-of-school rate for adolescents of lower secondary school age, urban, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q2,"Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q2.F,"Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q2.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q2.M,"Out-of-school rate for adolescents of lower secondary school age, urban, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q3,"Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q3.F,"Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q3.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q3.M,"Out-of-school rate for adolescents of lower secondary school age, urban, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q4,"Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q4.F,"Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q4.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q4.M,"Out-of-school rate for adolescents of lower secondary school age, urban, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q5,"Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q5.F,"Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q5.GPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.Q5.M,"Out-of-school rate for adolescents of lower secondary school age, urban, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.2.URB.WPIA,"Out-of-school rate for adolescents of lower secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.2.WPIA,"Out-of-school rate for adolescents of lower secondary school age, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3,"Out-of-school rate for youth of upper secondary school age, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.F,"Out-of-school rate for youth of upper secondary school age, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.F.LPIA,"Out-of-school rate for youth of upper secondary school age, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.F.WPIA,"Out-of-school rate for youth of upper secondary school age, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.GPIA,"Out-of-school rate for youth of upper secondary school age, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.LPIA,"Out-of-school rate for youth of upper secondary school age, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.M,"Out-of-school rate for youth of upper secondary school age, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.M.LPIA,"Out-of-school rate for youth of upper secondary school age, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.M.WPIA,"Out-of-school rate for youth of upper secondary school age, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1,"Out-of-school rate for youth of upper secondary school age, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.F,"Out-of-school rate for youth of upper secondary school age, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.F.LPIA,"Out-of-school rate for youth of upper secondary school age, poorest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.GPIA,"Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.LPIA,"Out-of-school rate for youth of upper secondary school age, poorest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.M,"Out-of-school rate for youth of upper secondary school age, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q1.M.LPIA,"Out-of-school rate for youth of upper secondary school age, poorest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2,"Out-of-school rate for youth of upper secondary school age, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.F,"Out-of-school rate for youth of upper secondary school age, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.F.LPIA,"Out-of-school rate for youth of upper secondary school age, second quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.GPIA,"Out-of-school rate for youth of upper secondary school age, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.LPIA,"Out-of-school rate for youth of upper secondary school age, second quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.M,"Out-of-school rate for youth of upper secondary school age, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q2.M.LPIA,"Out-of-school rate for youth of upper secondary school age, second quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3,"Out-of-school rate for youth of upper secondary school age, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.F,"Out-of-school rate for youth of upper secondary school age, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.F.LPIA,"Out-of-school rate for youth of upper secondary school age, middle quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.GPIA,"Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.LPIA,"Out-of-school rate for youth of upper secondary school age, middle quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.M,"Out-of-school rate for youth of upper secondary school age, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q3.M.LPIA,"Out-of-school rate for youth of upper secondary school age, middle quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4,"Out-of-school rate for youth of upper secondary school age, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.F,"Out-of-school rate for youth of upper secondary school age, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.F.LPIA,"Out-of-school rate for youth of upper secondary school age, fourth quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.GPIA,"Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.LPIA,"Out-of-school rate for youth of upper secondary school age, fourth quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.M,"Out-of-school rate for youth of upper secondary school age, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q4.M.LPIA,"Out-of-school rate for youth of upper secondary school age, fourth quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5,"Out-of-school rate for youth of upper secondary school age, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.F,"Out-of-school rate for youth of upper secondary school age, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.F.LPIA,"Out-of-school rate for youth of upper secondary school age, richest quintile, female, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.GPIA,"Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.LPIA,"Out-of-school rate for youth of upper secondary school age, richest quintile, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.M,"Out-of-school rate for youth of upper secondary school age, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.Q5.M.LPIA,"Out-of-school rate for youth of upper secondary school age, richest quintile, male, adjusted location parity index (household survey data) (LPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR,"Out-of-school rate for youth of upper secondary school age, rural, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.F,"Out-of-school rate for youth of upper secondary school age, rural, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.F.WPIA,"Out-of-school rate for youth of upper secondary school age, rural, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.M,"Out-of-school rate for youth of upper secondary school age, rural, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.M.WPIA,"Out-of-school rate for youth of upper secondary school age, rural, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q1,"Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q1.F,"Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q1.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q1.M,"Out-of-school rate for youth of upper secondary school age, rural, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q2,"Out-of-school rate for youth of upper secondary school age, rural, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q2.F,"Out-of-school rate for youth of upper secondary school age, rural, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q2.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q2.M,"Out-of-school rate for youth of upper secondary school age, rural, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q3,"Out-of-school rate for youth of upper secondary school age, rural, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q3.F,"Out-of-school rate for youth of upper secondary school age, rural, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q3.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q3.M,"Out-of-school rate for youth of upper secondary school age, rural, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q4,"Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q4.F,"Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q4.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q4.M,"Out-of-school rate for youth of upper secondary school age, rural, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q5,"Out-of-school rate for youth of upper secondary school age, rural, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q5.F,"Out-of-school rate for youth of upper secondary school age, rural, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q5.GPIA,"Out-of-school rate for youth of upper secondary school age, rural, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.Q5.M,"Out-of-school rate for youth of upper secondary school age, rural, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.RUR.WPIA,"Out-of-school rate for youth of upper secondary school age, rural, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB,"Out-of-school rate for youth of upper secondary school age, urban, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.F,"Out-of-school rate for youth of upper secondary school age, urban, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.F.WPIA,"Out-of-school rate for youth of upper secondary school age, urban, female, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.M,"Out-of-school rate for youth of upper secondary school age, urban, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.M.WPIA,"Out-of-school rate for youth of upper secondary school age, urban, male, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q1,"Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q1.F,"Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q1.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q1.M,"Out-of-school rate for youth of upper secondary school age, urban, poorest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q2,"Out-of-school rate for youth of upper secondary school age, urban, second quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q2.F,"Out-of-school rate for youth of upper secondary school age, urban, second quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q2.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, second quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q2.M,"Out-of-school rate for youth of upper secondary school age, urban, second quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q3,"Out-of-school rate for youth of upper secondary school age, urban, middle quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q3.F,"Out-of-school rate for youth of upper secondary school age, urban, middle quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q3.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, middle quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q3.M,"Out-of-school rate for youth of upper secondary school age, urban, middle quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q4,"Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q4.F,"Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q4.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q4.M,"Out-of-school rate for youth of upper secondary school age, urban, fourth quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q5,"Out-of-school rate for youth of upper secondary school age, urban, richest quintile, both sexes (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q5.F,"Out-of-school rate for youth of upper secondary school age, urban, richest quintile, female (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q5.GPIA,"Out-of-school rate for youth of upper secondary school age, urban, richest quintile, adjusted gender parity index (household survey data) (GPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.Q5.M,"Out-of-school rate for youth of upper secondary school age, urban, richest quintile, male (household survey data) (%)",sources,Education Statistics,12
+UIS.ROFST.H.3.URB.WPIA,"Out-of-school rate for youth of upper secondary school age, urban, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.ROFST.H.3.WPIA,"Out-of-school rate for youth of upper secondary school age, adjusted wealth parity index (household survey data) (WPIA)",sources,Education Statistics,12
+UIS.SAP.0,"School age population, early childhood education, both sexes (number)",sources,Education Statistics,12
+UIS.SAP.0.F,"School age population, early childhood education, female (number)",sources,Education Statistics,12
+UIS.SAP.0.M,"School age population, early childhood education, male (number)",sources,Education Statistics,12
+UIS.SAP.01,"School age population, early childhood educational development programmes, both sexes (number)",sources,Education Statistics,12
+UIS.SAP.01.F,"School age population, early childhood educational development programmes, female (number)",sources,Education Statistics,12
+UIS.SAP.01.M,"School age population, early childhood educational development programmes, male (number)",sources,Education Statistics,12
+UIS.SAP.1.AGM1,"School age population, one year before than official primary entry age, both sexes (number)",sources,Education Statistics,12
+UIS.SAP.1.AGM1.F,"School age population, one year before than official primary entry age, female (number)",sources,Education Statistics,12
+UIS.SAP.1.AGM1.M,"School age population, one year before than official primary entry age, male (number)",sources,Education Statistics,12
+UIS.SAP.1.G1,"Population of the official entrance age to primary education, both sexes (number)",topics,Education,4
+UIS.SAP.1.G1.F,"Population of the official entrance age to primary education, female (number)",topics,Education,4
+UIS.SAP.1.G1.M,"Population of the official entrance age to primary education, male (number)",topics,Education,4
+UIS.SAP.23.GPV.G1,"Population of the official entrance age to secondary general education, both sexes (number)",sources,Education Statistics,12
+UIS.SAP.23.GPV.G1.F,"Population of the official entrance age to secondary general education, female (number)",sources,Education Statistics,12
+UIS.SAP.23.GPV.G1.M,"Population of the official entrance age to secondary general education, male (number)",sources,Education Statistics,12
+UIS.SAP.4,"School age population, post-secondary non-tertiary education, both sexes (number)",topics,Education,4
+UIS.SAP.4.F,"School age population, post-secondary non-tertiary education, female (number)",topics,Education,4
+UIS.SAP.4.M,"School age population, post-secondary non-tertiary education, male (number)",topics,Education,4
+UIS.SAP.CE,"Population of compulsory school age, both sexes (number)",sources,Education Statistics,12
+UIS.SAP.CE.F,"Population of compulsory school age, female (number)",sources,Education Statistics,12
+UIS.SAP.CE.M,"Population of compulsory school age, male (number)",sources,Education Statistics,12
+UIS.SCHBSP.1.WCOMPUT,Proportion of primary schools with access to computers for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WELEC,Proportion of primary schools with access to electricity (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WHIVSEXED,Percentage of primary schools providing life skills-based HIV and sexuality education,sources,Education Statistics,12
+UIS.SCHBSP.1.WINFSTUDIS,Proportion of primary schools with access to adapted infrastructure and materials for students with disabilities (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WINTERN,Proportion of primary schools with access to Internet for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WTOILA,Proportion of primary schools with single-sex basic sanitation facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WWASH,Proportion of primary schools with basic handwashing facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.1.WWATA,Proportion of primary schools with access to basic drinking water (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WCOMPUT,Proportion of lower secondary schools with access to computers for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WELEC,Proportion of lower secondary schools with access to electricity (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WHIVSEXED,Percentage of lower secondary schools providing life skills-based HIV and sexuality education,sources,Education Statistics,12
+UIS.SCHBSP.2.WINFSTUDIS,Proportion of lower secondary schools with access to adapted infrastructure and materials for students with disabilities (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WINTERN,Proportion of lower secondary schools with access to Internet for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WTOILA,Proportion of lower secondary schools with single-sex basic sanitation facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WWASH,Proportion of lower secondary schools with basic handwashing facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.2.WWATA,Proportion of lower secondary schools with access to basic drinking water (%),sources,Education Statistics,12
+UIS.SCHBSP.2T3.WCOMPUT,Proportion of secondary schools with access to computers for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.2T3.WINTERN,Proportion of secondary schools with access to Internet for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WCOMPUT,Proportion of upper secondary schools with access to computers for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WELEC,Proportion of upper secondary schools with access to electricity (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WHIVSEXED,Percentage of upper secondary schools providing life skills-based HIV and sexuality education,sources,Education Statistics,12
+UIS.SCHBSP.3.WINFSTUDIS,Proportion of upper secondary schools with access to adapted infrastructure and materials for students with disabilities (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WINTERN,Proportion of upper secondary schools with access to Internet for pedagogical purposes (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WTOILA,Proportion of upper secondary schools with single-sex basic sanitation facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WWASH,Proportion of upper secondary schools with basic handwashing facilities (%),sources,Education Statistics,12
+UIS.SCHBSP.3.WWATA,Proportion of upper secondary schools with access to basic drinking water (%),sources,Education Statistics,12
+UIS.SLE.02,"School life expectancy, pre-primary, both sexes (years)",sources,Education Statistics,12
+UIS.SLE.02.F,"School life expectancy, pre-primary, female (years)",sources,Education Statistics,12
+UIS.SLE.02.GPI,"School life expectancy, pre-primary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.SLE.02.M,"School life expectancy, pre-primary, male (years)",sources,Education Statistics,12
+UIS.SLE.1,"School life expectancy, primary, both sexes (years)",sources,Education Statistics,12
+UIS.SLE.1.F,"School life expectancy, primary, female (years)",sources,Education Statistics,12
+UIS.SLE.1.GPI,"School life expectancy, primary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.SLE.1.M,"School life expectancy, primary, male (years)",sources,Education Statistics,12
+UIS.SLE.12,"School life expectancy, primary and lower secondary, both sexes (years)",sources,Education Statistics,12
+UIS.SLE.12.F,"School life expectancy, primary and lower secondary, female (years)",sources,Education Statistics,12
+UIS.SLE.12.M,"School life expectancy, primary and lower secondary, male (years)",sources,Education Statistics,12
+UIS.SLE.123,"School life expectancy, primary and secondary, both sexes (years)",topics,Education,4
+UIS.SLE.123.F,"School life expectancy, primary and secondary, female (years)",topics,Education,4
+UIS.SLE.123.GPI,"School life expectancy, primary and secondary, gender parity index (GPI)",topics,Education,4
+UIS.SLE.123.M,"School life expectancy, primary and secondary, male (years)",topics,Education,4
+UIS.SLE.1T2.GPI,"School life expectancy, primary and lower secondary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.SLE.1T6.GPI,"School life expectancy, primary to tertiary, gender parity index (GPI)",topics,Education,4
+UIS.SLE.23,"School life expectancy, secondary, both sexes (years)",sources,Education Statistics,12
+UIS.SLE.23.F,"School life expectancy, secondary, female (years)",sources,Education Statistics,12
+UIS.SLE.23.GPI,"School life expectancy, secondary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.SLE.23.M,"School life expectancy, secondary, male (years)",sources,Education Statistics,12
+UIS.SLE.4,"School life expectancy, post-secondary non-tertiary, both sexes (years)",sources,Education Statistics,12
+UIS.SLE.4.F,"School life expectancy, post-secondary non-tertiary, female (years)",sources,Education Statistics,12
+UIS.SLE.4.GPI,"School life expectancy, post-secondary non-tertiary, gender parity index (GPI)",sources,Education Statistics,12
+UIS.SLE.4.M,"School life expectancy, post-secondary non-tertiary, male (years)",sources,Education Statistics,12
+UIS.SLE.56,"School life expectancy, tertiary, both sexes (years)",topics,Education,4
+UIS.SLE.56.F,"School life expectancy, tertiary, female (years)",topics,Education,4
+UIS.SLE.56.GPI,"School life expectancy, tertiary, gender parity index (GPI)",topics,Education,4
+UIS.SLE.56.M,"School life expectancy, tertiary, male (years)",topics,Education,4
+UIS.SR.1.G4,"Survival rate to Grade 4 of primary education, both sexes (%)",topics,Education,4
+UIS.SR.1.G4.F,"Survival rate to Grade 4 of primary education, female (%)",topics,Education,4
+UIS.SR.1.G4.GPI,"Survival rate to Grade 4 of primary education, gender parity index (GPI)",topics,Education,4
+UIS.SR.1.G4.M,"Survival rate to Grade 4 of primary education, male (%)",topics,Education,4
+UIS.SR.1.G5.GPI,"Survival rate to Grade 5 of primary education, gender parity index (GPI)",topics,Education,4
+UIS.SR.1.GLAST.GPI,"Survival rate to the last grade of primary education, gender parity index (GPI)",topics,Education,4
+UIS.T.01,"Teachers in early childhood educational development programmes, both sexes (number)",sources,Education Statistics,12
+UIS.T.01.F,"Teachers in early childhood educational development programmes, female (number)",sources,Education Statistics,12
+UIS.T.01.M,"Teachers in early childhood educational development programmes, male (number)",sources,Education Statistics,12
+UIS.T.02.M,"Teachers in pre-primary education, male (number)",sources,Education Statistics,12
+UIS.T.1.M,"Teachers in primary education, male (number)",sources,Education Statistics,12
+UIS.T.2,"Teachers in lower secondary education, both sexes (number)",topics,Education,4
+UIS.T.2.F,"Teachers in lower secondary education, female (number)",topics,Education,4
+UIS.T.2.M,"Teachers in lower secondary education, male (number)",sources,Education Statistics,12
+UIS.T.23.M,"Teachers in secondary education, male (number)",sources,Education Statistics,12
+UIS.T.3,"Teachers in upper secondary education, both sexes (number)",topics,Education,4
+UIS.T.3.F,"Teachers in upper secondary education, female (number)",topics,Education,4
+UIS.T.3.M,"Teachers in upper secondary education, male (number)",sources,Education Statistics,12
+UIS.T.4,"Teachers in post-secondary non-tertiary education, both sexes (number)",topics,Education,4
+UIS.T.4.F,"Teachers in post-secondary non-tertiary education, female (number)",topics,Education,4
+UIS.T.4.M,"Teachers in post-secondary non-tertiary education, male (number)",sources,Education Statistics,12
+UIS.T.5,"Teachers in tertiary education ISCED 5 programmes, both sexes (number)",sources,Education Statistics,12
+UIS.T.5.F,"Teachers in tertiary education ISCED 5 programmes, female (number)",sources,Education Statistics,12
+UIS.T.5.M,"Teachers in tertiary education ISCED 5 programmes, male (number)",sources,Education Statistics,12
+UIS.T.58.M,"Teachers in tertiary education programmes, male (number)",sources,Education Statistics,12
+UIS.TATTRR.02,"Teacher attrition rate from pre-primary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.02.F,"Teacher attrition rate from pre-primary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.02.GPIA,"Teacher attrition rate from pre-primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TATTRR.02.M,"Teacher attrition rate from pre-primary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.1.F,"Teacher attrition rate from primary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.1.GPIA,"Teacher attrition rate from primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TATTRR.1.M,"Teacher attrition rate from primary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.1.T,"Teacher attrition rate from primary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.2.F,"Teacher attrition rate from lower secondary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.2.GPIA,"Teacher attrition rate from lower secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TATTRR.2.M,"Teacher attrition rate from lower secondary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.2.T,"Teacher attrition rate from lower secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3,"Teacher attrition rate from secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.F,"Teacher attrition rate from secondary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.GPIA,"Teacher attrition rate from secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TATTRR.2T3.GPV,"Teacher attrition rate from general secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.GPV.F,"Teacher attrition rate from general secondary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.GPV.M,"Teacher attrition rate from general secondary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.M,"Teacher attrition rate from secondary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.V,"Teacher attrition rate from vocational secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.V.F,"Teacher attrition rate from vocational secondary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.2T3.V.M,"Teacher attrition rate from vocational secondary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.3.F,"Teacher attrition rate from upper secondary education, female (%)",sources,Education Statistics,12
+UIS.TATTRR.3.GPIA,"Teacher attrition rate from upper secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TATTRR.3.M,"Teacher attrition rate from upper secondary education, male (%)",sources,Education Statistics,12
+UIS.TATTRR.3.T,"Teacher attrition rate from upper secondary education, both sexes (%)",sources,Education Statistics,12
+UIS.THAGE.0,Official entrance age to early childhood education (years),topics,Education,4
+UIS.THAGE.01,Official entrance age to early childhood educational development (years),sources,Education Statistics,12
+UIS.THAGE.02,Official entrance age to pre-primary education (years),sources,Education Statistics,12
+UIS.THAGE.3.A.GPV,Official entrance age to upper secondary education (years),topics,Education,4
+UIS.THAGE.4.A.GPV,Official entrance age to post-secondary non-tertiary education (years),topics,Education,4
+UIS.THDUR.0,Theoretical duration of early childhood education (years),topics,Education,4
+UIS.THDUR.01,Theoretical duration of early childhood educational development (years),sources,Education Statistics,12
+UIS.THDUR.02,Theoretical duration of pre-primary education (years),sources,Education Statistics,12
+UIS.THDUR.4.A.GPV,Theoretical duration of post-secondary non-tertiary education (years),topics,Education,4
+UIS.TRTP.02,"Proportion of teachers with the minimum required qualifications in pre-primary education, both sexes (%)",sources,Education Statistics,12
+UIS.TRTP.02.F,"Proportion of teachers with the minimum required qualifications in pre-primary education, female (%)",sources,Education Statistics,12
+UIS.TRTP.02.GPIA,"Proportion of teachers with the minimum required qualifications in pre-primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TRTP.02.M,"Proportion of teachers with the minimum required qualifications in pre-primary education, male (%)",sources,Education Statistics,12
+UIS.TRTP.1.GPIA,"Proportion of teachers with the minimum required qualifications in primary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TRTP.2,"Proportion of teachers with the minimum required qualifications in lower secondary education, both sexes (%)",topics,Education,4
+UIS.TRTP.2.F,"Proportion of teachers with the minimum required qualifications in lower secondary education, female (%)",topics,Education,4
+UIS.TRTP.2.GPIA,"Proportion of teachers with the minimum required qualifications in lower secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TRTP.2.M,"Proportion of teachers with the minimum required qualifications in lower secondary education, male (%)",topics,Education,4
+UIS.TRTP.2T3.GPIA,"Proportion of teachers with the minimum required qualifications in secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TRTP.3,"Proportion of teachers with the minimum required qualifications in upper secondary education, both sexes (%)",topics,Education,4
+UIS.TRTP.3.F,"Proportion of teachers with the minimum required qualifications in upper secondary education, female (%)",topics,Education,4
+UIS.TRTP.3.GPIA,"Proportion of teachers with the minimum required qualifications in upper secondary education, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.TRTP.3.M,"Proportion of teachers with the minimum required qualifications in upper secondary education, male (%)",topics,Education,4
+UIS.X.PPP.02.FSGOV,"Government expenditure on pre-primary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.1.FSGOV,"Government expenditure on primary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.2.FSGOV,"Government expenditure on lower secondary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.2T3.FSGOV,"Government expenditure on secondary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.2T4.V.FSGOV,"Government expenditure on secondary and post-secondary non-tertiary vocational education only, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.3.FSGOV,"Government expenditure on upper secondary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.4.FSGOV,"Government expenditure on post-secondary non-tertiary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.5T8.FSGOV,"Government expenditure on tertiary education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.FSGOV,"Government expenditure on education, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPP.UK.FSGOV,"Government expenditure on education not specified by level, PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.02.FSGOV,"Government expenditure on pre-primary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.1.FSGOV,"Government expenditure on primary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.2.FSGOV,"Government expenditure on lower secondary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.2T3.FSGOV,"Government expenditure on secondary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.2T4.V.FSGOV,"Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.3.FSGOV,"Government expenditure on upper secondary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.4.FSGOV,"Government expenditure on post-secondary non-tertiary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.5T8.FSGOV,"Government expenditure on tertiary education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.FSGOV,"Government expenditure on education, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.PPPCONST.UK.FSGOV,"Government expenditure on education not specified by level, constant PPP$ (millions)",sources,Education Statistics,12
+UIS.X.US.02.FSGOV,"Government expenditure on pre-primary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.1.FSGOV,"Government expenditure on primary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.2.FSGOV,"Government expenditure on lower secondary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.2T3.FSGOV,"Government expenditure on secondary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.2T4.V.FSGOV,"Government expenditure on secondary and post-secondary non-tertiary vocational education only, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.3.FSGOV,"Government expenditure on upper secondary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.4.FSGOV,"Government expenditure on post-secondary non-tertiary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.5T8.FSGOV,"Government expenditure on tertiary education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.FSGOV,"Government expenditure on education, US$ (millions)",sources,Education Statistics,12
+UIS.X.US.UK.FSGOV,"Government expenditure on education not specified by level, US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.02.FSGOV,"Government expenditure on pre-primary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.1.FSGOV,"Government expenditure on primary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.2.FSGOV,"Government expenditure on lower secondary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.2T3.FSGOV,"Government expenditure on secondary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.2T4.V.FSGOV,"Government expenditure on secondary and post-secondary non-tertiary vocational education only, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.3.FSGOV,"Government expenditure on upper secondary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.4.FSGOV,"Government expenditure on post-secondary non-tertiary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.5T8.FSGOV,"Government expenditure on tertiary education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.FSGOV,"Government expenditure on education, constant US$ (millions)",sources,Education Statistics,12
+UIS.X.USCONST.UK.FSGOV,"Government expenditure on education not specified by level, constant US$ (millions)",sources,Education Statistics,12
+UIS.XGDP.0.FSGOV,Government expenditure on pre-primary education as % of GDP (%),sources,Education Statistics,12
+UIS.XGDP.1.FSGOV,Government expenditure on primary education as % of GDP (%),sources,Education Statistics,12
+UIS.XGDP.2.FSGOV,Government expenditure on lower secondary education as a percentage of GDP (%),sources,Education Statistics,12
+UIS.XGDP.23.FSGOV,Government expenditure on secondary education as % of GDP (%),sources,Education Statistics,12
+UIS.XGDP.2T4.V.FSGOV,Government expenditure on secondary and post-secondary non-tertiary vocational education as % of GDP (%),sources,Education Statistics,12
+UIS.XGDP.3.FSGOV,Government expenditure on upper secondary education as a percentage of GDP (%),sources,Education Statistics,12
+UIS.XGDP.4.FSGOV,Government expenditure on post-secondary non-tertiary education as % of GDP (%),sources,Education Statistics,12
+UIS.XGDP.56.FSGOV,Government expenditure on tertiary education as % of GDP (%),sources,Education Statistics,12
+UIS.XSPENDP.0.FDPUB.FNCAP,Capital expenditure as % of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.0.FDPUB.FNCUR,Current expenditure as % of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.0.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.0.FDPUB.FNS,All staff compensation as % of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.02.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.02.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in pre-primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNBOOKS,Expenditure on school books and teaching material as % of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNCAP,Capital expenditure as % of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNCUR,Current expenditure as % of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNS,All staff compensation as % of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.1.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in primary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNCAP,Capital expenditure as % of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNCUR,Current expenditure as % of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNS,All staff compensation as % of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.2.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in lower secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNBOOKS,Expenditure on school books and teaching material as % of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNCAP,Capital expenditure as % of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNCUR,Current expenditure as % of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNS,All staff compensation as % of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.23.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNCAP,Capital expenditure as % of total expenditure in upper-secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNCUR,Current expenditure as % of total expenditure in upper-secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in upper secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNS,All staff compensation as % of total expenditure in upper secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.3.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in upper secondary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNCAP,Capital expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNCUR,Current expenditure as % of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNS,All staff compensation as % of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.4.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in post-secondary non-tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.56.FDPUB.FNCAP,Capital expenditure as % of total expenditure in tertiary public institutions (%),topics,Education,4
+UIS.XSPENDP.56.FDPUB.FNCUR,Current expenditure as % of total expenditure in tertiary public institutions (%),topics,Education,4
+UIS.XSPENDP.56.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in tertiary public institutions (%),topics,Education,4
+UIS.XSPENDP.56.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.56.FDPUB.FNS,All staff compensation as % of total expenditure in tertiary public institutions (%),topics,Education,4
+UIS.XSPENDP.56.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in tertiary public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.FDPUB.FNCAP,Capital expenditure as % of total expenditure in public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.FDPUB.FNNONS,Current expenditure other than staff compensation as % of total expenditure in public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.FDPUB.FNNTS,Non-teaching staff compensation as a percentage of total expenditure in public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.FDPUB.FNS,All staff compensation as % of total expenditure in public institutions (%),sources,Education Statistics,12
+UIS.XSPENDP.FDPUB.FNTS,Teaching staff compensation as a percentage of total expenditure in public institutions (%),sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.02.FSGOV,Initial government funding per pre-primary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.1.FSGOV,Initial government funding per primary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.1.FSHH,Initial household funding per primary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.2.FSGOV,Initial government funding per lower secondary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.23.FSGOV,Initial government funding per secondary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.23.FSHH,Initial household funding per secondary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.3.FSGOV,Initial government funding per upper secondary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.5T8.FSGOV,Initial government funding per tertiary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.GDPCAP.5T8.FSHH,Initial household funding per tertiary student as a percentage of GDP per capita,sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.02.FSGOV,"Initial government funding per pre-primary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.1.FSGOV,"Initial government funding per primary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.1.FSHH,"Initial household funding per primary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.2.FSGOV,"Initial government funding per lower secondary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.23.FSGOV,"Initial government funding per secondary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.23.FSHH,"Initial household funding per secondary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.3.FSGOV,"Initial government funding per upper secondary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.5T8.FSGOV,"Initial government funding per tertiary student, constant PPP$",sources,Education Statistics,12
+UIS.XUNIT.PPPCONST.5T8.FSHH,"Initial household funding per tertiary student, constant PPP$",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, both sexes (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.F,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, female (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.GPIA,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.HSES,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, high socio-economic status (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.LSES,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, low socio-economic status (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.M,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, male (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.NAT,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, non-immigrant background (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.NON,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, immigrant background (%)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.NPIA,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.YADULT.PROFILITERACY.WPIA,"Proportion of population achieving at least a fixed level of proficiency in functional literacy skills, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, both sexes (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.F,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, female (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.GPIA,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted gender parity index (GPIA)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.HSES,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, high socio-economic status (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.LSES,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, low socio-economic status (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.M,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, male (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.NAT,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, non-immigrant background (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.NON,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, immigrant background (%)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.NPIA,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted native parity index (NPIA)",sources,Education Statistics,12
+UIS.YADULT.PROFINUMERACY.WPIA,"Proportion of population achieving at least a fixed level of proficiency in functional numeracy skills, adjusted wealth parity index (WPIA)",sources,Education Statistics,12
+UIS.YEARS.FC.COMP.02,Number of years of compulsory pre-primary education guaranteed in legal frameworks,sources,Education Statistics,12
+UIS.YEARS.FC.COMP.1T3,Number of years of compulsory primary and secondary education guaranteed in legal frameworks,sources,Education Statistics,12
+UIS.YEARS.FC.FREE.02,Number of years of free pre-primary education guaranteed in legal frameworks,sources,Education Statistics,12
+UIS.YEARS.FC.FREE.1T3,Number of years of free primary and secondary education guaranteed in legal frameworks,sources,Education Statistics,12
+UIS.YR.END.01T5,End of the academic school year (pre-primary to post-secondary non tertiary education),sources,Education Statistics,12
+UIS.YR.END.6T8,End of the academic school year (tertiary education),sources,Education Statistics,12
+UIS.YR.END.MON.01T5,End month of the academic school year (pre-primary to post-secondary non-tertiary education),sources,Education Statistics,12
+UIS.YR.END.MON.6T8,End month of the academic school year (tertiary education),sources,Education Statistics,12
+UIS.YR.ST.01T5,Start of the academic school year (pre-primary to post-secondary non tertiary education),sources,Education Statistics,12
+UIS.YR.ST.6T8,Start of the academic school year (tertiary education),sources,Education Statistics,12
+UIS.YR.ST.MON.01T5,Start month of the academic school year (pre-primary to post-secondary non-tertiary education),sources,Education Statistics,12
+UIS.YR.ST.MON.6T8,Start month of the academic school year (tertiary education),sources,Education Statistics,12
+UM.EMP.ROUT.IN,Manufacturing Real Output per Empl. (1980=100),sources,WDI Database Archives,57
+UM.EMP.ROUT.XD,Manufacturing Real Output per Empl. (1987=100),sources,WDI Database Archives,57
+UM.EMP.RWAG.IN,Manufacturing Real Earnings per Empl. (1980=100),sources,WDI Database Archives,57
+UM.EMP.RWAG.XD,Manufacturing Real Earnings per Empl.(1987=100),sources,WDI Database Archives,57
+UM.EMP.TOTL.IN,Manufacturing Employment (1980=100),sources,WDI Database Archives,57
+UM.EMP.TOTL.XU,Manufacturing Employment (1987=100),sources,WDI Database Archives,57
+UM.VAD.WAGE.SN,Manufacturing Earnings as % of Value Added,sources,WDI Database Archives,57
+UM.VAD.WAGE.ZS,Manufacturing Earnings as % of Value Added,sources,WDI Database Archives,57
+UNDP.HDI.XD,Human development index (HDI),sources,Africa Development Indicators,11
+UNEMPSA_,"Unemployment rate,Percent,,,",sources,Global Economic Monitor,15
+UPP.COM.POL.XQ,Combined polity score,sources,Africa Development Indicators,11
+UPP.INS.AUTO.XQ,Institutionalized autocracy,sources,Africa Development Indicators,11
+UPP.INS.DEMO.XQ,Institutionalized democracy,sources,Africa Development Indicators,11
+UPP.REV.POL.XQ,Revised Combined Polity Score,sources,Africa Development Indicators,11
+VA.EST,Voice and Accountability: Estimate,topics,Public Sector,13
+VA.NO.SRC,Voice and Accountability: Number of Sources,topics,Public Sector,13
+VA.PER.RNK,Voice and Accountability: Percentile Rank,topics,Public Sector,13
+VA.PER.RNK.LOWER,"Voice and Accountability: Percentile Rank, Lower Bound of 90% Confidence Interval",topics,Public Sector,13
+VA.PER.RNK.UPPER,"Voice and Accountability: Percentile Rank, Upper Bound of 90% Confidence Interval",topics,Public Sector,13
+VA.STD.ERR,Voice and Accountability: Standard Error,topics,Public Sector,13
+VC.BTL.DETH,Battle-related deaths (number of people),topics,Public Sector,13
+VC.HOM.ITEN.P5.HE,"Intentional homicide rate (per 100,000 people, CTS and national sources)",sources,WDI Database Archives,57
+VC.HOM.ITEN.P5.LE,"Intentional homicide rate (per 100,000 people, WHO)",sources,WDI Database Archives,57
+VC.IDP.NWCV,"Internally displaced persons, new displacement associated with conflict and violence (number of cases)",topics,Public Sector,13
+VC.IDP.NWDS,"Internally displaced persons, new displacement associated with disasters (number of cases)",topics,Public Sector,13
+VC.IDP.TOCV,"Internally displaced persons, total displaced by conflict and violence (number of people)",topics,Public Sector,13
+VC.IDP.TOTL,Internally displaced persons (number),sources,WDI Database Archives,57
+VC.IDP.TOTL.HE,"Internally displaced persons (number, high estimate)",topics,Public Sector,13
+VC.IDP.TOTL.LE,"Internally displaced persons (number, low estimate)",topics,Public Sector,13
+VC.IHR.ICTS.P5,"Intentional homicides, UN Crime Trends Survey (CTS) source (per 100,000 people)",sources,WDI Database Archives,57
+VC.IHR.IPBH.P5,"Intentional homicides, international public health sources (per 100,000 people)",sources,WDI Database Archives,57
+VC.IHR.IPOL.P5,"Intentional homicides, international police sources (per 100,000 people)",sources,WDI Database Archives,57
+VC.IHR.NPOL.P5,"Intentional homicides, government police sources (per 100,000 people)",sources,WDI Database Archives,57
+VC.IHR.PSRC.FE.P5,"Intentional homicides, female (per 100,000 female)",topics,Public Sector,13
+VC.IHR.PSRC.MA.P5,"Intentional homicides, male (per 100,000 male)",topics,Public Sector,13
+VC.IHR.PSRC.P5,"Intentional homicides (per 100,000 people)",topics,Public Sector,13
+VC.PKP.TOTL.UN,"Presence of peace keepers (number of troops, police, and military observers in mandate)",topics,Public Sector,13
+WP15163_4.1,Mobile account (% age 15+),topics,Financial Sector,7
+WP15163_4.2,"Mobile account, male (% age 15+)",topics,Financial Sector,7
+WP15163_4.3,"Mobile account, female (% age 15+)",topics,Financial Sector,7
+WP15163_4.8,"Mobile account, income, poorest 40% (% ages 15+)",topics,Financial Sector,7
+WP15163_4.9,"Mobile account, income, richest 60% (% ages 15+)",topics,Financial Sector,7
+WP_time_01.1,Account at a financial institution (% age 15+),topics,Financial Sector,7
+WP_time_01.2,"Account at a financial institution, male (% age 15+)",topics,Financial Sector,7
+WP_time_01.3,"Account at a financial institution, female (% age 15+)",topics,Financial Sector,7
+WP_time_01.8,"Account at a financial institution, income, poorest 40% (% ages 15+)",topics,Financial Sector,7
+WP_time_01.9,"Account at a financial institution, income, richest 60% (% ages 15+)",topics,Financial Sector,7
+WP_time_10.1,Account (% age 15+) [ts],topics,Financial Sector,7
+WP_time_10.2,"Account, male (% age 15+) [ts]",topics,Financial Sector,7
+WP_time_10.3,"Account, female (% age 15+) [ts]",topics,Financial Sector,7
+WP_time_10.4,"Account, young adults (% ages 15-24) [ts]",topics,Financial Sector,7
+WP_time_10.5,"Account, older adults (% ages 25+) [ts]",topics,Financial Sector,7
+WP_time_10.6,"Account, primary education or less (% ages 15+) [ts]",topics,Financial Sector,7
+WP_time_10.7,"Account, secondary education or more (% ages 15+) [ts]",topics,Financial Sector,7
+WP_time_10.8,"Account, income, poorest 40% (% ages 15+) [ts]",topics,Financial Sector,7
+WP_time_10.9,"Account, income, richest 60% (% ages 15+) [ts]",topics,Financial Sector,7
+account.t.d,Account (% age 15+),sources,Gender Statistics,14
+account.t.d.1,"Account, female (% age 15+)",sources,Gender Statistics,14
+account.t.d.10,"Account, urban (% age 15+)",sources,Global Findex database,28
+account.t.d.11,"Account, out of labor force (% age 15+)",sources,Global Findex database,28
+account.t.d.12,"Account, in labor force (% age 15+)",sources,Global Findex database,28
+account.t.d.2,"Account, male (% age 15+)",sources,Gender Statistics,14
+account.t.d.3,"Account, young (% ages 15-24)",sources,Global Findex database,28
+account.t.d.4,"Account, older (% age 25+)",sources,Global Findex database,28
+account.t.d.5,"Account, primary education or less (% ages 15+)",sources,Global Findex database,28
+account.t.d.6,"Account, secondary education or more (% ages 15+)",sources,Global Findex database,28
+account.t.d.7,"Account, income, poorest 40% (% ages 15+)",sources,Global Findex database,28
+account.t.d.8,"Account, income, richest 60% (% ages 15+)",sources,Global Findex database,28
+account.t.d.9,"Account, rural (% age 15+)",sources,Global Findex database,28
+account_t_d,Account (% age 15+),sources,G20 Financial Inclusion Indicators,33
+account_t_d_1,"Account, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+account_t_d_2,"Account, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+account_t_d_3,"Account, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+account_t_d_4,"Account, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+account_t_d_5,Account (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+account_t_d_6,Account (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+account_t_d_7,Account (% age 60+),sources,G20 Financial Inclusion Indicators,33
+allsa.bi_q1,Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits),sources,WDI Database Archives,57
+allsa.cov_pop,Coverage of social safety net programs (% of population),sources,WDI Database Archives,57
+allsa.gen_pop,Generosity of social safety net programs (% of total welfare of beneficiary households),sources,WDI Database Archives,57
+allsi.bi_q1,Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits),sources,WDI Database Archives,57
+allsi.cov_pop,Coverage of social insurance programs (% of population),sources,WDI Database Archives,57
+allsi.gen_pop,Generosity of social insurance programs (% of total welfare of beneficiary households),sources,WDI Database Archives,57
+allsp.bi_q1,Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits),sources,WDI Database Archives,57
+allsp.cov_pop,Coverage of social protection and labor programs (% of population),sources,WDI Database Archives,57
+allsp.gen_pop,Generosity of social protection and labor programs (% of total welfare of beneficiary households),sources,WDI Database Archives,57
+borrow.any.t.d,Borrowed any money (% age 15+),sources,Gender Statistics,14
+borrow.any.t.d.1,"Borrowed any money, women (% age 15+)",sources,Gender Statistics,14
+borrow.any.t.d.10,"Borrowed any money, urban (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.11,"Borrowed any money, out of laborforce (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.12,"Borrowed any money, in laborforce (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.2,"Borrowed any money, men (% age 15+)",sources,Gender Statistics,14
+borrow.any.t.d.3,"Borrowed any money, young (% ages 15-24)",sources,Global Findex database,28
+borrow.any.t.d.4,"Borrowed any money, older (% age 25+)",sources,Global Findex database,28
+borrow.any.t.d.5,"Borrowed any money, primary education or less (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.6,"Borrowed any money, secondary education or more (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.7,"Borrowed any money, poorest 40% (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.8,"Borrowed any money, richest 60% (% age 15+)",sources,Global Findex database,28
+borrow.any.t.d.9,"Borrowed any money, rural (% age 15+)",sources,Global Findex database,28
+con1,Own a mobile phone (% age 15+),sources,Gender Statistics,14
+con1.1,"Own a mobile phone, women (% age 15+)",sources,Gender Statistics,14
+con1.10,"Own a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+con1.11,"Own a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con1.12,"Own a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con1.2,"Own a mobile phone, men (% age 15+)",sources,Gender Statistics,14
+con1.3,"Own a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+con1.4,"Own a mobile phone, older (% age 25+)",sources,Global Findex database,28
+con1.5,"Own a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con1.6,"Own a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con1.7,"Own a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con1.8,"Own a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con1.9,"Own a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+con10,Can use WhatsApp on basic text phone (% age 15+),sources,Global Findex database,28
+con10.1,"Can use WhatsApp on basic text phone, women (% age 15+)",sources,Global Findex database,28
+con10.10,"Can use WhatsApp on basic text phone, urban (% age 15+)",sources,Global Findex database,28
+con10.11,"Can use WhatsApp on basic text phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con10.12,"Can use WhatsApp on basic text phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con10.2,"Can use WhatsApp on basic text phone, men (% age 15+)",sources,Global Findex database,28
+con10.3,"Can use WhatsApp on basic text phone, young (% ages 15-24)",sources,Global Findex database,28
+con10.4,"Can use WhatsApp on basic text phone, older (% age 25+)",sources,Global Findex database,28
+con10.5,"Can use WhatsApp on basic text phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con10.6,"Can use WhatsApp on basic text phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con10.7,"Can use WhatsApp on basic text phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con10.8,"Can use WhatsApp on basic text phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con10.9,"Can use WhatsApp on basic text phone, rural (% age 15+)",sources,Global Findex database,28
+con10.s,"Can use WhatsApp on basic text phone (% basic phone owners, age 15+)",sources,Global Findex database,28
+con11,SIM number registered in own name (% age 15+),sources,Gender Statistics,14
+con11.1,"SIM number registered in own name, women (% age 15+)",sources,Gender Statistics,14
+con11.10,"SIM number registered in own name, urban (% age 15+)",sources,Global Findex database,28
+con11.11,"SIM number registered in own name, out of laborforce (% age 15+)",sources,Global Findex database,28
+con11.12,"SIM number registered in own name, in laborforce (% age 15+)",sources,Global Findex database,28
+con11.2,"SIM number registered in own name, men (% age 15+)",sources,Gender Statistics,14
+con11.3,"SIM number registered in own name, young (% ages 15-24)",sources,Global Findex database,28
+con11.4,"SIM number registered in own name, older (% age 25+)",sources,Global Findex database,28
+con11.5,"SIM number registered in own name, primary education or less (% age 15+)",sources,Global Findex database,28
+con11.6,"SIM number registered in own name, secondary education or more (% age 15+)",sources,Global Findex database,28
+con11.7,"SIM number registered in own name, poorest 40% (% age 15+)",sources,Global Findex database,28
+con11.8,"SIM number registered in own name, richest 60% (% age 15+)",sources,Global Findex database,28
+con11.9,"SIM number registered in own name, rural (% age 15+)",sources,Global Findex database,28
+con11.s,"SIM number registered in own name (% with a phone, age 15+)",sources,Global Findex database,28
+con12d,Daily mobile phone use (% age 15+),sources,Gender Statistics,14
+con12d.1,"Daily mobile phone use, women (% age 15+)",sources,Gender Statistics,14
+con12d.10,"Daily mobile phone use, urban (% age 15+)",sources,Global Findex database,28
+con12d.11,"Daily mobile phone use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con12d.12,"Daily mobile phone use, in laborforce (% age 15+)",sources,Global Findex database,28
+con12d.2,"Daily mobile phone use, men (% age 15+)",sources,Gender Statistics,14
+con12d.3,"Daily mobile phone use, young (% ages 15-24)",sources,Global Findex database,28
+con12d.4,"Daily mobile phone use, older (% age 25+)",sources,Global Findex database,28
+con12d.5,"Daily mobile phone use, primary education or less (% age 15+)",sources,Global Findex database,28
+con12d.6,"Daily mobile phone use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con12d.7,"Daily mobile phone use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con12d.8,"Daily mobile phone use, richest 60% (% age 15+)",sources,Global Findex database,28
+con12d.9,"Daily mobile phone use, rural (% age 15+)",sources,Global Findex database,28
+con12d.s,"Daily mobile phone use (% with a phone, age 15+)",sources,Global Findex database,28
+con12lm,Less than once a month mobile phone use (% age 15+),sources,Global Findex database,28
+con12m,Monthly mobile phone use (% age 15+),sources,Global Findex database,28
+con12m.1,"Monthly mobile phone use, women (% age 15+)",sources,Global Findex database,28
+con12m.10,"Monthly mobile phone use, urban (% age 15+)",sources,Global Findex database,28
+con12m.11,"Monthly mobile phone use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con12m.12,"Monthly mobile phone use, in laborforce (% age 15+)",sources,Global Findex database,28
+con12m.2,"Monthly mobile phone use, men (% age 15+)",sources,Global Findex database,28
+con12m.3,"Monthly mobile phone use, young (% ages 15-24)",sources,Global Findex database,28
+con12m.4,"Monthly mobile phone use, older (% age 25+)",sources,Global Findex database,28
+con12m.5,"Monthly mobile phone use, primary education or less (% age 15+)",sources,Global Findex database,28
+con12m.6,"Monthly mobile phone use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con12m.7,"Monthly mobile phone use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con12m.8,"Monthly mobile phone use, richest 60% (% age 15+)",sources,Global Findex database,28
+con12m.9,"Monthly mobile phone use, rural (% age 15+)",sources,Global Findex database,28
+con12m.s,"Monthly mobile phone use (% with a phone, age 15+)",sources,Global Findex database,28
+con12w,Weekly mobile phone use (% age 15+),sources,Global Findex database,28
+con12w.1,"Weekly mobile phone use, women (% age 15+)",sources,Global Findex database,28
+con12w.10,"Weekly mobile phone use, urban (% age 15+)",sources,Global Findex database,28
+con12w.11,"Weekly mobile phone use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con12w.12,"Weekly mobile phone use, in laborforce (% age 15+)",sources,Global Findex database,28
+con12w.2,"Weekly mobile phone use, men (% age 15+)",sources,Global Findex database,28
+con12w.3,"Weekly mobile phone use, young (% ages 15-24)",sources,Global Findex database,28
+con12w.4,"Weekly mobile phone use, older (% age 25+)",sources,Global Findex database,28
+con12w.5,"Weekly mobile phone use, primary education or less (% age 15+)",sources,Global Findex database,28
+con12w.6,"Weekly mobile phone use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con12w.7,"Weekly mobile phone use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con12w.8,"Weekly mobile phone use, richest 60% (% age 15+)",sources,Global Findex database,28
+con12w.9,"Weekly mobile phone use, rural (% age 15+)",sources,Global Findex database,28
+con12w.s,"Weekly mobile phone use (% with a phone, age 15+)",sources,Global Findex database,28
+con13,Used a mobile phone in the past three months (% age 15+),sources,Global Findex database,28
+con13.1,"Used a mobile phone in the past three months, women (% age 15+)",sources,Global Findex database,28
+con13.10,"Used a mobile phone in the past three months, urban (% age 15+)",sources,Global Findex database,28
+con13.11,"Used a mobile phone in the past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con13.12,"Used a mobile phone in the past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con13.2,"Used a mobile phone in the past three months, men (% age 15+)",sources,Global Findex database,28
+con13.3,"Used a mobile phone in the past three months, young (% ages 15-24)",sources,Global Findex database,28
+con13.4,"Used a mobile phone in the past three months, older (% age 25+)",sources,Global Findex database,28
+con13.5,"Used a mobile phone in the past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con13.6,"Used a mobile phone in the past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con13.9,"Used a mobile phone in the past three months, rural (% age 15+)",sources,Global Findex database,28
+con13.s,"Used a mobile phone in the past three months (% with a phone, age 15+)",sources,Global Findex database,28
+con14,Read a text message on a mobile phone (% age 15+),sources,Gender Statistics,14
+con14.1,"Read a text message on a mobile phone, women (% age 15+)",sources,Gender Statistics,14
+con14.10,"Read a text message on a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+con14.11,"Read a text message on a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con14.12,"Read a text message on a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con14.2,"Read a text message on a mobile phone, men (% age 15+)",sources,Gender Statistics,14
+con14.3,"Read a text message on a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+con14.4,"Read a text message on a mobile phone, older (% age 25+)",sources,Global Findex database,28
+con14.5,"Read a text message on a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con14.6,"Read a text message on a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con14.7,"Read a text message on a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con14.8,"Read a text message on a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con14.9,"Read a text message on a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+con14.s,"Read a text message on a mobile phone (% with a phone, age 15+)",sources,Global Findex database,28
+con15,"Can read and understand a text message using English letters (% who, age 15+) (% age 15+)",sources,Global Findex database,28
+con15.1,"Can read and understand a text message using English letters (% who, age 15+), women (% age 15+)",sources,Global Findex database,28
+con15.10,"Can read and understand a text message using English letters (% who, age 15+), urban (% age 15+)",sources,Global Findex database,28
+con15.11,"Can read and understand a text message using English letters (% who, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+con15.12,"Can read and understand a text message using English letters (% who, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+con15.2,"Can read and understand a text message using English letters (% who, age 15+), men (% age 15+)",sources,Global Findex database,28
+con15.3,"Can read and understand a text message using English letters (% who, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+con15.4,"Can read and understand a text message using English letters (% who, age 15+), older (% age 25+)",sources,Global Findex database,28
+con15.5,"Can read and understand a text message using English letters (% who, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+con15.6,"Can read and understand a text message using English letters (% who, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+con15.7,"Can read and understand a text message using English letters (% who, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+con15.8,"Can read and understand a text message using English letters (% who, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+con15.9,"Can read and understand a text message using English letters (% who, age 15+), rural (% age 15+)",sources,Global Findex database,28
+con15.s,"Can read and understand a text message using English letters (% who read a text message, age 15+)",sources,Global Findex database,28
+con16,Can send a text message on a mobile phone (% age 15+),sources,Gender Statistics,14
+con16.1,"Can send a text message on a mobile phone, women (% age 15+)",sources,Gender Statistics,14
+con16.10,"Can send a text message on a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+con16.11,"Can send a text message on a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con16.12,"Can send a text message on a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con16.2,"Can send a text message on a mobile phone, men (% age 15+)",sources,Gender Statistics,14
+con16.3,"Can send a text message on a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+con16.4,"Can send a text message on a mobile phone, older (% age 25+)",sources,Global Findex database,28
+con16.5,"Can send a text message on a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con16.6,"Can send a text message on a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con16.7,"Can send a text message on a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con16.8,"Can send a text message on a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con16.9,"Can send a text message on a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+con16.s,"Can send a text message on a mobile phone (% with a phone, age 15+)",sources,Global Findex database,28
+con17a,Prefers receiving government news by SMS or text (% age 15+),sources,Gender Statistics,14
+con17a.1,"Prefers receiving government news by SMS or text, women (% age 15+)",sources,Gender Statistics,14
+con17a.10,"Prefers receiving government news by SMS or text, urban (% age 15+)",sources,Global Findex database,28
+con17a.11,"Prefers receiving government news by SMS or text, out of laborforce (% age 15+)",sources,Global Findex database,28
+con17a.12,"Prefers receiving government news by SMS or text, in laborforce (% age 15+)",sources,Global Findex database,28
+con17a.2,"Prefers receiving government news by SMS or text, men (% age 15+)",sources,Gender Statistics,14
+con17a.3,"Prefers receiving government news by SMS or text, young (% ages 15-24)",sources,Global Findex database,28
+con17a.4,"Prefers receiving government news by SMS or text, older (% age 25+)",sources,Global Findex database,28
+con17a.5,"Prefers receiving government news by SMS or text, primary education or less (% age 15+)",sources,Global Findex database,28
+con17a.6,"Prefers receiving government news by SMS or text, secondary education or more (% age 15+)",sources,Global Findex database,28
+con17a.7,"Prefers receiving government news by SMS or text, poorest 40% (% age 15+)",sources,Global Findex database,28
+con17a.8,"Prefers receiving government news by SMS or text, richest 60% (% age 15+)",sources,Global Findex database,28
+con17a.9,"Prefers receiving government news by SMS or text, rural (% age 15+)",sources,Global Findex database,28
+con17a.s,"Prefers receiving government news by SMS or text (% with a phone, age 15+)",sources,Global Findex database,28
+con17b,Prefers receiving government news by phone call (% age 15+),sources,Gender Statistics,14
+con17b.1,"Prefers receiving government news by phone call, women (% age 15+)",sources,Gender Statistics,14
+con17b.10,"Prefers receiving government news by phone call, urban (% age 15+)",sources,Global Findex database,28
+con17b.11,"Prefers receiving government news by phone call, out of laborforce (% age 15+)",sources,Global Findex database,28
+con17b.12,"Prefers receiving government news by phone call, in laborforce (% age 15+)",sources,Global Findex database,28
+con17b.2,"Prefers receiving government news by phone call, men (% age 15+)",sources,Gender Statistics,14
+con17b.3,"Prefers receiving government news by phone call, young (% ages 15-24)",sources,Global Findex database,28
+con17b.4,"Prefers receiving government news by phone call, older (% age 25+)",sources,Global Findex database,28
+con17b.5,"Prefers receiving government news by phone call, primary education or less (% age 15+)",sources,Global Findex database,28
+con17b.6,"Prefers receiving government news by phone call, secondary education or more (% age 15+)",sources,Global Findex database,28
+con17b.7,"Prefers receiving government news by phone call, poorest 40% (% age 15+)",sources,Global Findex database,28
+con17b.8,"Prefers receiving government news by phone call, richest 60% (% age 15+)",sources,Global Findex database,28
+con17b.9,"Prefers receiving government news by phone call, rural (% age 15+)",sources,Global Findex database,28
+con17b.s,"Prefers receiving government news by phone call (% with a phone, age 15+)",sources,Global Findex database,28
+con17c,Prefers receiving government news by neither call or text (% age 15+),sources,Global Findex database,28
+con17c.1,"Prefers receiving government news by neither call or text, women (% age 15+)",sources,Global Findex database,28
+con17c.10,"Prefers receiving government news by neither call or text, urban (% age 15+)",sources,Global Findex database,28
+con17c.11,"Prefers receiving government news by neither call or text, out of laborforce (% age 15+)",sources,Global Findex database,28
+con17c.12,"Prefers receiving government news by neither call or text, in laborforce (% age 15+)",sources,Global Findex database,28
+con17c.2,"Prefers receiving government news by neither call or text, men (% age 15+)",sources,Global Findex database,28
+con17c.3,"Prefers receiving government news by neither call or text, young (% ages 15-24)",sources,Global Findex database,28
+con17c.4,"Prefers receiving government news by neither call or text, older (% age 25+)",sources,Global Findex database,28
+con17c.5,"Prefers receiving government news by neither call or text, primary education or less (% age 15+)",sources,Global Findex database,28
+con17c.6,"Prefers receiving government news by neither call or text, secondary education or more (% age 15+)",sources,Global Findex database,28
+con17c.7,"Prefers receiving government news by neither call or text, poorest 40% (% age 15+)",sources,Global Findex database,28
+con17c.8,"Prefers receiving government news by neither call or text, richest 60% (% age 15+)",sources,Global Findex database,28
+con17c.9,"Prefers receiving government news by neither call or text, rural (% age 15+)",sources,Global Findex database,28
+con17c.s,"Prefers receiving government news by neither call or text (% with a phone, age 15+)",sources,Global Findex database,28
+con17d,Prefers receiving government news by both call or text (% age 15+),sources,Global Findex database,28
+con17d.1,"Prefers receiving government news by both call or text, women (% age 15+)",sources,Global Findex database,28
+con17d.10,"Prefers receiving government news by both call or text, urban (% age 15+)",sources,Global Findex database,28
+con17d.11,"Prefers receiving government news by both call or text, out of laborforce (% age 15+)",sources,Global Findex database,28
+con17d.12,"Prefers receiving government news by both call or text, in laborforce (% age 15+)",sources,Global Findex database,28
+con17d.2,"Prefers receiving government news by both call or text, men (% age 15+)",sources,Global Findex database,28
+con17d.3,"Prefers receiving government news by both call or text, young (% ages 15-24)",sources,Global Findex database,28
+con17d.4,"Prefers receiving government news by both call or text, older (% age 25+)",sources,Global Findex database,28
+con17d.5,"Prefers receiving government news by both call or text, primary education or less (% age 15+)",sources,Global Findex database,28
+con17d.6,"Prefers receiving government news by both call or text, secondary education or more (% age 15+)",sources,Global Findex database,28
+con17d.7,"Prefers receiving government news by both call or text, poorest 40% (% age 15+)",sources,Global Findex database,28
+con17d.8,"Prefers receiving government news by both call or text, richest 60% (% age 15+)",sources,Global Findex database,28
+con17d.9,"Prefers receiving government news by both call or text, rural (% age 15+)",sources,Global Findex database,28
+con17d.s,"Prefers receiving government news by both call or text (% with a phone, age 15+)",sources,Global Findex database,28
+con18,"Phone has a lock (PIN, password, fingerprint) (% age 15+)",sources,Gender Statistics,14
+con18.1,"Phone has a lock (PIN, password, fingerprint), women (% age 15+)",sources,Gender Statistics,14
+con18.10,"Phone has a lock (PIN, password, fingerprint), urban (% age 15+)",sources,Global Findex database,28
+con18.11,"Phone has a lock (PIN, password, fingerprint), out of laborforce (% age 15+)",sources,Global Findex database,28
+con18.12,"Phone has a lock (PIN, password, fingerprint), in laborforce (% age 15+)",sources,Global Findex database,28
+con18.2,"Phone has a lock (PIN, password, fingerprint), men (% age 15+)",sources,Gender Statistics,14
+con18.3,"Phone has a lock (PIN, password, fingerprint), young (% ages 15-24)",sources,Global Findex database,28
+con18.4,"Phone has a lock (PIN, password, fingerprint), older (% age 25+)",sources,Global Findex database,28
+con18.5,"Phone has a lock (PIN, password, fingerprint), primary education or less (% age 15+)",sources,Global Findex database,28
+con18.6,"Phone has a lock (PIN, password, fingerprint), secondary education or more (% age 15+)",sources,Global Findex database,28
+con18.7,"Phone has a lock (PIN, password, fingerprint), poorest 40% (% age 15+)",sources,Global Findex database,28
+con18.8,"Phone has a lock (PIN, password, fingerprint), richest 60% (% age 15+)",sources,Global Findex database,28
+con18.9,"Phone has a lock (PIN, password, fingerprint), rural (% age 15+)",sources,Global Findex database,28
+con18.s,"Phone has a lock (PIN, password, fingerprint) (% with a phone, age 15+)",sources,Global Findex database,28
+con19,Can change PIN or password on mobile phone without help (% age 15+),sources,Gender Statistics,14
+con19.1,"Can change PIN or password on mobile phone without help, women (% age 15+)",sources,Gender Statistics,14
+con19.10,"Can change PIN or password on mobile phone without help, urban (% age 15+)",sources,Global Findex database,28
+con19.11,"Can change PIN or password on mobile phone without help, out of laborforce (% age 15+)",sources,Global Findex database,28
+con19.12,"Can change PIN or password on mobile phone without help, in laborforce (% age 15+)",sources,Global Findex database,28
+con19.2,"Can change PIN or password on mobile phone without help, men (% age 15+)",sources,Gender Statistics,14
+con19.3,"Can change PIN or password on mobile phone without help, young (% ages 15-24)",sources,Global Findex database,28
+con19.4,"Can change PIN or password on mobile phone without help, older (% age 25+)",sources,Global Findex database,28
+con19.5,"Can change PIN or password on mobile phone without help, primary education or less (% age 15+)",sources,Global Findex database,28
+con19.6,"Can change PIN or password on mobile phone without help, secondary education or more (% age 15+)",sources,Global Findex database,28
+con19.7,"Can change PIN or password on mobile phone without help, poorest 40% (% age 15+)",sources,Global Findex database,28
+con19.8,"Can change PIN or password on mobile phone without help, richest 60% (% age 15+)",sources,Global Findex database,28
+con19.9,"Can change PIN or password on mobile phone without help, rural (% age 15+)",sources,Global Findex database,28
+con19.s,"Can change PIN or password on mobile phone without help (% with a password, age 15+)",sources,Global Findex database,28
+con20,Family member sets rules for mobile phone use (% age 15+),sources,Gender Statistics,14
+con20.1,"Family member sets rules for mobile phone use, women (% age 15+)",sources,Gender Statistics,14
+con20.10,"Family member sets rules for mobile phone use, urban (% age 15+)",sources,Global Findex database,28
+con20.11,"Family member sets rules for mobile phone use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con20.12,"Family member sets rules for mobile phone use, in laborforce (% age 15+)",sources,Global Findex database,28
+con20.2,"Family member sets rules for mobile phone use, men (% age 15+)",sources,Gender Statistics,14
+con20.3,"Family member sets rules for mobile phone use, young (% ages 15-24)",sources,Global Findex database,28
+con20.4,"Family member sets rules for mobile phone use, older (% age 25+)",sources,Global Findex database,28
+con20.5,"Family member sets rules for mobile phone use, primary education or less (% age 15+)",sources,Global Findex database,28
+con20.6,"Family member sets rules for mobile phone use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con20.7,"Family member sets rules for mobile phone use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con20.8,"Family member sets rules for mobile phone use, richest 60% (% age 15+)",sources,Global Findex database,28
+con20.9,"Family member sets rules for mobile phone use, rural (% age 15+)",sources,Global Findex database,28
+con20.s,"Family member sets rules for mobile phone use (% with a phone, age 15+)",sources,Global Findex database,28
+con21,Received phone call or SMS asking for money in the past 12 months (% age 15+),sources,Gender Statistics,14
+con21.1,"Received phone call or SMS asking for money in the past 12 months, women (% age 15+)",sources,Gender Statistics,14
+con21.10,"Received phone call or SMS asking for money in the past 12 months, urban (% age 15+)",sources,Global Findex database,28
+con21.11,"Received phone call or SMS asking for money in the past 12 months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con21.12,"Received phone call or SMS asking for money in the past 12 months, in laborforce (% age 15+)",sources,Global Findex database,28
+con21.2,"Received phone call or SMS asking for money in the past 12 months, men (% age 15+)",sources,Gender Statistics,14
+con21.3,"Received phone call or SMS asking for money in the past 12 months, young (% ages 15-24)",sources,Global Findex database,28
+con21.4,"Received phone call or SMS asking for money in the past 12 months, older (% age 25+)",sources,Global Findex database,28
+con21.5,"Received phone call or SMS asking for money in the past 12 months, primary education or less (% age 15+)",sources,Global Findex database,28
+con21.6,"Received phone call or SMS asking for money in the past 12 months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con21.7,"Received phone call or SMS asking for money in the past 12 months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con21.8,"Received phone call or SMS asking for money in the past 12 months, richest 60% (% age 15+)",sources,Global Findex database,28
+con21.9,"Received phone call or SMS asking for money in the past 12 months, rural (% age 15+)",sources,Global Findex database,28
+con21.s,"Received phone call or SMS asking for money in the past 12 months (% with a phone, age 15+)",sources,Global Findex database,28
+con22,Sent money to person asking for it via phone/SMS (% age 15+),sources,Global Findex database,28
+con23,"Received unwanted offensive messages, photos, or videos (% age 15+)",sources,Global Findex database,28
+con23.1,"Received unwanted offensive messages, photos, or videos, women (% age 15+)",sources,Global Findex database,28
+con23.10,"Received unwanted offensive messages, photos, or videos, urban (% age 15+)",sources,Global Findex database,28
+con23.11,"Received unwanted offensive messages, photos, or videos, out of laborforce (% age 15+)",sources,Global Findex database,28
+con23.12,"Received unwanted offensive messages, photos, or videos, in laborforce (% age 15+)",sources,Global Findex database,28
+con23.2,"Received unwanted offensive messages, photos, or videos, men (% age 15+)",sources,Global Findex database,28
+con23.3,"Received unwanted offensive messages, photos, or videos, young (% ages 15-24)",sources,Global Findex database,28
+con23.4,"Received unwanted offensive messages, photos, or videos, older (% age 25+)",sources,Global Findex database,28
+con23.5,"Received unwanted offensive messages, photos, or videos, primary education or less (% age 15+)",sources,Global Findex database,28
+con23.6,"Received unwanted offensive messages, photos, or videos, secondary education or more (% age 15+)",sources,Global Findex database,28
+con23.7,"Received unwanted offensive messages, photos, or videos, poorest 40% (% age 15+)",sources,Global Findex database,28
+con23.8,"Received unwanted offensive messages, photos, or videos, richest 60% (% age 15+)",sources,Global Findex database,28
+con23.9,"Received unwanted offensive messages, photos, or videos, rural (% age 15+)",sources,Global Findex database,28
+con23.s,"Received unwanted offensive messages, photos, or videos (% with a phone, age 15+)",sources,Global Findex database,28
+con26d,Daily internet use (% age 15+),sources,Gender Statistics,14
+con26d.1,"Daily internet use, women (% age 15+)",sources,Gender Statistics,14
+con26d.10,"Daily internet use, urban (% age 15+)",sources,Global Findex database,28
+con26d.11,"Daily internet use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con26d.12,"Daily internet use, in laborforce (% age 15+)",sources,Global Findex database,28
+con26d.2,"Daily internet use, men (% age 15+)",sources,Gender Statistics,14
+con26d.3,"Daily internet use, young (% ages 15-24)",sources,Global Findex database,28
+con26d.4,"Daily internet use, older (% age 25+)",sources,Global Findex database,28
+con26d.5,"Daily internet use, primary education or less (% age 15+)",sources,Global Findex database,28
+con26d.6,"Daily internet use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con26d.7,"Daily internet use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con26d.8,"Daily internet use, richest 60% (% age 15+)",sources,Global Findex database,28
+con26d.9,"Daily internet use, rural (% age 15+)",sources,Global Findex database,28
+con26d.s,"Daily internet use (% internet users, age 15+)",sources,Global Findex database,28
+con26lm,Less than once a month internet use (% age 15+),sources,Global Findex database,28
+con26lm.1,"Less than once a month internet use, women (% age 15+)",sources,Global Findex database,28
+con26lm.10,"Less than once a month internet use, urban (% age 15+)",sources,Global Findex database,28
+con26lm.11,"Less than once a month internet use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con26lm.12,"Less than once a month internet use, in laborforce (% age 15+)",sources,Global Findex database,28
+con26lm.2,"Less than once a month internet use, men (% age 15+)",sources,Global Findex database,28
+con26lm.3,"Less than once a month internet use, young (% ages 15-24)",sources,Global Findex database,28
+con26lm.4,"Less than once a month internet use, older (% age 25+)",sources,Global Findex database,28
+con26lm.5,"Less than once a month internet use, primary education or less (% age 15+)",sources,Global Findex database,28
+con26lm.6,"Less than once a month internet use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con26lm.7,"Less than once a month internet use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con26lm.8,"Less than once a month internet use, richest 60% (% age 15+)",sources,Global Findex database,28
+con26lm.9,"Less than once a month internet use, rural (% age 15+)",sources,Global Findex database,28
+con26lm.s,"Less than once a month internet use (% internet users, age 15+)",sources,Global Findex database,28
+con26m,Monthly internet use (% age 15+),sources,Global Findex database,28
+con26m.1,"Monthly internet use, women (% age 15+)",sources,Global Findex database,28
+con26m.10,"Monthly internet use, urban (% age 15+)",sources,Global Findex database,28
+con26m.11,"Monthly internet use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con26m.12,"Monthly internet use, in laborforce (% age 15+)",sources,Global Findex database,28
+con26m.2,"Monthly internet use, men (% age 15+)",sources,Global Findex database,28
+con26m.3,"Monthly internet use, young (% ages 15-24)",sources,Global Findex database,28
+con26m.4,"Monthly internet use, older (% age 25+)",sources,Global Findex database,28
+con26m.5,"Monthly internet use, primary education or less (% age 15+)",sources,Global Findex database,28
+con26m.6,"Monthly internet use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con26m.9,"Monthly internet use, rural (% age 15+)",sources,Global Findex database,28
+con26m.s,"Monthly internet use (% internet users, age 15+)",sources,Global Findex database,28
+con26w,Weekly internet use (% age 15+),sources,Global Findex database,28
+con26w.1,"Weekly internet use, women (% age 15+)",sources,Global Findex database,28
+con26w.10,"Weekly internet use, urban (% age 15+)",sources,Global Findex database,28
+con26w.11,"Weekly internet use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con26w.12,"Weekly internet use, in laborforce (% age 15+)",sources,Global Findex database,28
+con26w.2,"Weekly internet use, men (% age 15+)",sources,Global Findex database,28
+con26w.3,"Weekly internet use, young (% ages 15-24)",sources,Global Findex database,28
+con26w.4,"Weekly internet use, older (% age 25+)",sources,Global Findex database,28
+con26w.5,"Weekly internet use, primary education or less (% age 15+)",sources,Global Findex database,28
+con26w.6,"Weekly internet use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con26w.7,"Weekly internet use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con26w.8,"Weekly internet use, richest 60% (% age 15+)",sources,Global Findex database,28
+con26w.9,"Weekly internet use, rural (% age 15+)",sources,Global Findex database,28
+con26w.s,"Weekly internet use (% internet users, age 15+)",sources,Global Findex database,28
+con27,Buys data package for internet use (% age 15+),sources,Gender Statistics,14
+con27.1,"Buys data package for internet use, women (% age 15+)",sources,Gender Statistics,14
+con27.10,"Buys data package for internet use, urban (% age 15+)",sources,Global Findex database,28
+con27.11,"Buys data package for internet use, out of laborforce (% age 15+)",sources,Global Findex database,28
+con27.12,"Buys data package for internet use, in laborforce (% age 15+)",sources,Global Findex database,28
+con27.2,"Buys data package for internet use, men (% age 15+)",sources,Gender Statistics,14
+con27.3,"Buys data package for internet use, young (% ages 15-24)",sources,Global Findex database,28
+con27.4,"Buys data package for internet use, older (% age 25+)",sources,Global Findex database,28
+con27.5,"Buys data package for internet use, primary education or less (% age 15+)",sources,Global Findex database,28
+con27.6,"Buys data package for internet use, secondary education or more (% age 15+)",sources,Global Findex database,28
+con27.7,"Buys data package for internet use, poorest 40% (% age 15+)",sources,Global Findex database,28
+con27.8,"Buys data package for internet use, richest 60% (% age 15+)",sources,Global Findex database,28
+con27.9,"Buys data package for internet use, rural (% age 15+)",sources,Global Findex database,28
+con27.s,"Buys data package for internet use (% internet users, age 15+)",sources,Global Findex database,28
+con28d,Buys data package daily (% age 15+),sources,Global Findex database,28
+con28d.1,"Buys data package daily, women (% age 15+)",sources,Global Findex database,28
+con28d.10,"Buys data package daily, urban (% age 15+)",sources,Global Findex database,28
+con28d.11,"Buys data package daily, out of laborforce (% age 15+)",sources,Global Findex database,28
+con28d.12,"Buys data package daily, in laborforce (% age 15+)",sources,Global Findex database,28
+con28d.2,"Buys data package daily, men (% age 15+)",sources,Global Findex database,28
+con28d.3,"Buys data package daily, young (% ages 15-24)",sources,Global Findex database,28
+con28d.4,"Buys data package daily, older (% age 25+)",sources,Global Findex database,28
+con28d.5,"Buys data package daily, primary education or less (% age 15+)",sources,Global Findex database,28
+con28d.6,"Buys data package daily, secondary education or more (% age 15+)",sources,Global Findex database,28
+con28d.7,"Buys data package daily, poorest 40% (% age 15+)",sources,Global Findex database,28
+con28d.8,"Buys data package daily, richest 60% (% age 15+)",sources,Global Findex database,28
+con28d.9,"Buys data package daily, rural (% age 15+)",sources,Global Findex database,28
+con28d.s,"Buys data package daily (% who purchase a data package, age 15+)",sources,Global Findex database,28
+con28lm,Buys data package less than once a month (% age 15+),sources,Global Findex database,28
+con28lm.1,"Buys data package less than once a month, women (% age 15+)",sources,Global Findex database,28
+con28lm.10,"Buys data package less than once a month, urban (% age 15+)",sources,Global Findex database,28
+con28lm.11,"Buys data package less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+con28lm.12,"Buys data package less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+con28lm.2,"Buys data package less than once a month, men (% age 15+)",sources,Global Findex database,28
+con28lm.3,"Buys data package less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+con28lm.4,"Buys data package less than once a month, older (% age 25+)",sources,Global Findex database,28
+con28lm.5,"Buys data package less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+con28lm.6,"Buys data package less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+con28lm.7,"Buys data package less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+con28lm.8,"Buys data package less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+con28lm.9,"Buys data package less than once a month, rural (% age 15+)",sources,Global Findex database,28
+con28lm.s,"Buys data package less than once a month (% who purchase a data package, age 15+)",sources,Global Findex database,28
+con28m,Buys data package monthly (% age 15+),sources,Gender Statistics,14
+con28m.1,"Buys data package monthly, women (% age 15+)",sources,Gender Statistics,14
+con28m.10,"Buys data package monthly, urban (% age 15+)",sources,Global Findex database,28
+con28m.11,"Buys data package monthly, out of laborforce (% age 15+)",sources,Global Findex database,28
+con28m.12,"Buys data package monthly, in laborforce (% age 15+)",sources,Global Findex database,28
+con28m.2,"Buys data package monthly, men (% age 15+)",sources,Gender Statistics,14
+con28m.3,"Buys data package monthly, young (% ages 15-24)",sources,Global Findex database,28
+con28m.4,"Buys data package monthly, older (% age 25+)",sources,Global Findex database,28
+con28m.5,"Buys data package monthly, primary education or less (% age 15+)",sources,Global Findex database,28
+con28m.6,"Buys data package monthly, secondary education or more (% age 15+)",sources,Global Findex database,28
+con28m.7,"Buys data package monthly, poorest 40% (% age 15+)",sources,Global Findex database,28
+con28m.8,"Buys data package monthly, richest 60% (% age 15+)",sources,Global Findex database,28
+con28m.9,"Buys data package monthly, rural (% age 15+)",sources,Global Findex database,28
+con28m.s,"Buys data package monthly (% who purchase a data package, age 15+)",sources,Global Findex database,28
+con28n,Never buys data package (% age 15+),sources,Global Findex database,28
+con28w,Buys data package weekly (% age 15+),sources,Global Findex database,28
+con28w.1,"Buys data package weekly, women (% age 15+)",sources,Global Findex database,28
+con28w.10,"Buys data package weekly, urban (% age 15+)",sources,Global Findex database,28
+con28w.11,"Buys data package weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+con28w.12,"Buys data package weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+con28w.2,"Buys data package weekly, men (% age 15+)",sources,Global Findex database,28
+con28w.3,"Buys data package weekly, young (% ages 15-24)",sources,Global Findex database,28
+con28w.4,"Buys data package weekly, older (% age 25+)",sources,Global Findex database,28
+con28w.5,"Buys data package weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+con28w.6,"Buys data package weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+con28w.7,"Buys data package weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+con28w.8,"Buys data package weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+con28w.9,"Buys data package weekly, rural (% age 15+)",sources,Global Findex database,28
+con28w.s,"Buys data package weekly (% who purchase a data package, age 15+)",sources,Global Findex database,28
+con29,Connects to Internet only through free WiFi (% age 15+),sources,Global Findex database,28
+con29.1,"Connects to Internet only through free WiFi, women (% age 15+)",sources,Global Findex database,28
+con29.10,"Connects to Internet only through free WiFi, urban (% age 15+)",sources,Global Findex database,28
+con29.11,"Connects to Internet only through free WiFi, out of laborforce (% age 15+)",sources,Global Findex database,28
+con29.12,"Connects to Internet only through free WiFi, in laborforce (% age 15+)",sources,Global Findex database,28
+con29.2,"Connects to Internet only through free WiFi, men (% age 15+)",sources,Global Findex database,28
+con29.3,"Connects to Internet only through free WiFi, young (% ages 15-24)",sources,Global Findex database,28
+con29.4,"Connects to Internet only through free WiFi, older (% age 25+)",sources,Global Findex database,28
+con29.5,"Connects to Internet only through free WiFi, primary education or less (% age 15+)",sources,Global Findex database,28
+con29.6,"Connects to Internet only through free WiFi, secondary education or more (% age 15+)",sources,Global Findex database,28
+con29.7,"Connects to Internet only through free WiFi, poorest 40% (% age 15+)",sources,Global Findex database,28
+con29.8,"Connects to Internet only through free WiFi, richest 60% (% age 15+)",sources,Global Findex database,28
+con29.9,"Connects to Internet only through free WiFi, rural (% age 15+)",sources,Global Findex database,28
+con29.s,"Connects to Internet only through free WiFi (% internet users, age 15+)",sources,Global Findex database,28
+con2a,No mobile phone due to lack of money (% age 15+),sources,Global Findex database,28
+con2a.1,"No mobile phone due to lack of money, women (% age 15+)",sources,Global Findex database,28
+con2a.10,"No mobile phone due to lack of money, urban (% age 15+)",sources,Global Findex database,28
+con2a.11,"No mobile phone due to lack of money, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2a.12,"No mobile phone due to lack of money, in laborforce (% age 15+)",sources,Global Findex database,28
+con2a.2,"No mobile phone due to lack of money, men (% age 15+)",sources,Global Findex database,28
+con2a.3,"No mobile phone due to lack of money, young (% ages 15-24)",sources,Global Findex database,28
+con2a.4,"No mobile phone due to lack of money, older (% age 25+)",sources,Global Findex database,28
+con2a.5,"No mobile phone due to lack of money, primary education or less (% age 15+)",sources,Global Findex database,28
+con2a.6,"No mobile phone due to lack of money, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2a.7,"No mobile phone due to lack of money, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2a.8,"No mobile phone due to lack of money, richest 60% (% age 15+)",sources,Global Findex database,28
+con2a.9,"No mobile phone due to lack of money, rural (% age 15+)",sources,Global Findex database,28
+con2a.s,"No mobile phone due to lack of money (% without a phone, age 15+)",sources,Global Findex database,28
+con2b,No mobile phone due to expensive minutes (% age 15+),sources,Global Findex database,28
+con2b.1,"No mobile phone due to expensive minutes, women (% age 15+)",sources,Global Findex database,28
+con2b.10,"No mobile phone due to expensive minutes, urban (% age 15+)",sources,Global Findex database,28
+con2b.11,"No mobile phone due to expensive minutes, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2b.12,"No mobile phone due to expensive minutes, in laborforce (% age 15+)",sources,Global Findex database,28
+con2b.2,"No mobile phone due to expensive minutes, men (% age 15+)",sources,Global Findex database,28
+con2b.3,"No mobile phone due to expensive minutes, young (% ages 15-24)",sources,Global Findex database,28
+con2b.4,"No mobile phone due to expensive minutes, older (% age 25+)",sources,Global Findex database,28
+con2b.5,"No mobile phone due to expensive minutes, primary education or less (% age 15+)",sources,Global Findex database,28
+con2b.6,"No mobile phone due to expensive minutes, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2b.7,"No mobile phone due to expensive minutes, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2b.8,"No mobile phone due to expensive minutes, richest 60% (% age 15+)",sources,Global Findex database,28
+con2b.9,"No mobile phone due to expensive minutes, rural (% age 15+)",sources,Global Findex database,28
+con2b.s,"No mobile phone due to expensive minutes(% without a phone, age 15+)",sources,Global Findex database,28
+con2c,No mobile phone due to unreliable coverage (% age 15+),sources,Global Findex database,28
+con2c.1,"No mobile phone due to unreliable coverage, women (% age 15+)",sources,Global Findex database,28
+con2c.10,"No mobile phone due to unreliable coverage, urban (% age 15+)",sources,Global Findex database,28
+con2c.11,"No mobile phone due to unreliable coverage, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2c.12,"No mobile phone due to unreliable coverage, in laborforce (% age 15+)",sources,Global Findex database,28
+con2c.2,"No mobile phone due to unreliable coverage, men (% age 15+)",sources,Global Findex database,28
+con2c.3,"No mobile phone due to unreliable coverage, young (% ages 15-24)",sources,Global Findex database,28
+con2c.4,"No mobile phone due to unreliable coverage, older (% age 25+)",sources,Global Findex database,28
+con2c.5,"No mobile phone due to unreliable coverage, primary education or less (% age 15+)",sources,Global Findex database,28
+con2c.6,"No mobile phone due to unreliable coverage, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2c.7,"No mobile phone due to unreliable coverage, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2c.8,"No mobile phone due to unreliable coverage, richest 60% (% age 15+)",sources,Global Findex database,28
+con2c.9,"No mobile phone due to unreliable coverage, rural (% age 15+)",sources,Global Findex database,28
+con2c.s,"No mobile phone due to unreliable coverage(% without a phone, age 15+)",sources,Global Findex database,28
+con2d,No mobile phone due to reading or typing difficulties (% age 15+),sources,Global Findex database,28
+con2d.1,"No mobile phone due to reading or typing difficulties, women (% age 15+)",sources,Global Findex database,28
+con2d.10,"No mobile phone due to reading or typing difficulties, urban (% age 15+)",sources,Global Findex database,28
+con2d.11,"No mobile phone due to reading or typing difficulties, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2d.12,"No mobile phone due to reading or typing difficulties, in laborforce (% age 15+)",sources,Global Findex database,28
+con2d.2,"No mobile phone due to reading or typing difficulties, men (% age 15+)",sources,Global Findex database,28
+con2d.3,"No mobile phone due to reading or typing difficulties, young (% ages 15-24)",sources,Global Findex database,28
+con2d.4,"No mobile phone due to reading or typing difficulties, older (% age 25+)",sources,Global Findex database,28
+con2d.5,"No mobile phone due to reading or typing difficulties, primary education or less (% age 15+)",sources,Global Findex database,28
+con2d.6,"No mobile phone due to reading or typing difficulties, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2d.7,"No mobile phone due to reading or typing difficulties, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2d.8,"No mobile phone due to reading or typing difficulties, richest 60% (% age 15+)",sources,Global Findex database,28
+con2d.9,"No mobile phone due to reading or typing difficulties, rural (% age 15+)",sources,Global Findex database,28
+con2d.s,"No mobile phone due to reading or typing difficulties (% without a phone, age 15+)",sources,Global Findex database,28
+con2e,No mobile phone due to family or community disapproval (% age 15+),sources,Global Findex database,28
+con2e.1,"No mobile phone due to family or community disapproval, women (% age 15+)",sources,Global Findex database,28
+con2e.10,"No mobile phone due to family or community disapproval, urban (% age 15+)",sources,Global Findex database,28
+con2e.11,"No mobile phone due to family or community disapproval, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2e.12,"No mobile phone due to family or community disapproval, in laborforce (% age 15+)",sources,Global Findex database,28
+con2e.2,"No mobile phone due to family or community disapproval, men (% age 15+)",sources,Global Findex database,28
+con2e.3,"No mobile phone due to family or community disapproval, young (% ages 15-24)",sources,Global Findex database,28
+con2e.4,"No mobile phone due to family or community disapproval, older (% age 25+)",sources,Global Findex database,28
+con2e.5,"No mobile phone due to family or community disapproval, primary education or less (% age 15+)",sources,Global Findex database,28
+con2e.6,"No mobile phone due to family or community disapproval, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2e.7,"No mobile phone due to family or community disapproval, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2e.8,"No mobile phone due to family or community disapproval, richest 60% (% age 15+)",sources,Global Findex database,28
+con2e.9,"No mobile phone due to family or community disapproval, rural (% age 15+)",sources,Global Findex database,28
+con2e.s,"No mobile phone due to family or community disapproval (% without a phone, age 15+)",sources,Global Findex database,28
+con2f,No mobile phone due to personal safety concerns (% age 15+),sources,Global Findex database,28
+con2f.1,"No mobile phone due to personal safety concerns, women (% age 15+)",sources,Global Findex database,28
+con2f.10,"No mobile phone due to personal safety concerns, urban (% age 15+)",sources,Global Findex database,28
+con2f.11,"No mobile phone due to personal safety concerns, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2f.12,"No mobile phone due to personal safety concerns, in laborforce (% age 15+)",sources,Global Findex database,28
+con2f.2,"No mobile phone due to personal safety concerns, men (% age 15+)",sources,Global Findex database,28
+con2f.3,"No mobile phone due to personal safety concerns, young (% ages 15-24)",sources,Global Findex database,28
+con2f.4,"No mobile phone due to personal safety concerns, older (% age 25+)",sources,Global Findex database,28
+con2f.5,"No mobile phone due to personal safety concerns, primary education or less (% age 15+)",sources,Global Findex database,28
+con2f.6,"No mobile phone due to personal safety concerns, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2f.7,"No mobile phone due to personal safety concerns, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2f.8,"No mobile phone due to personal safety concerns, richest 60% (% age 15+)",sources,Global Findex database,28
+con2f.9,"No mobile phone due to personal safety concerns, rural (% age 15+)",sources,Global Findex database,28
+con2f.s,"No mobile phone due to personal safety concerns (% without a phone, age 15+)",sources,Global Findex database,28
+con2g,No mobile phone because using someone else's phone (% age 15+),sources,Global Findex database,28
+con2g.1,"No mobile phone because using someone else's phone, women (% age 15+)",sources,Global Findex database,28
+con2g.10,"No mobile phone because using someone else's phone, urban (% age 15+)",sources,Global Findex database,28
+con2g.11,"No mobile phone because using someone else's phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con2g.12,"No mobile phone because using someone else's phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con2g.2,"No mobile phone because using someone else's phone, men (% age 15+)",sources,Global Findex database,28
+con2g.3,"No mobile phone because using someone else's phone, young (% ages 15-24)",sources,Global Findex database,28
+con2g.4,"No mobile phone because using someone else's phone, older (% age 25+)",sources,Global Findex database,28
+con2g.5,"No mobile phone because using someone else's phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con2g.6,"No mobile phone because using someone else's phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con2g.7,"No mobile phone because using someone else's phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con2g.8,"No mobile phone because using someone else's phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con2g.9,"No mobile phone because using someone else's phone, rural (% age 15+)",sources,Global Findex database,28
+con2g.s,"No mobile phone because using someone else's phone (% without a phone, age 15+)",sources,Global Findex database,28
+con30a,Sent a voice message in past three months (% age 15+),sources,Gender Statistics,14
+con30a.1,"Sent a voice message in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30a.10,"Sent a voice message in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30a.11,"Sent a voice message in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30a.12,"Sent a voice message in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30a.2,"Sent a voice message in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30a.3,"Sent a voice message in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30a.4,"Sent a voice message in past three months, older (% age 25+)",sources,Global Findex database,28
+con30a.5,"Sent a voice message in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30a.6,"Sent a voice message in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30a.7,"Sent a voice message in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30a.8,"Sent a voice message in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30a.9,"Sent a voice message in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30a.s,"Sent a voice message in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30b,Sent a photo in past three months (% age 15+),sources,Gender Statistics,14
+con30b.1,"Sent a photo in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30b.10,"Sent a photo in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30b.11,"Sent a photo in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30b.12,"Sent a photo in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30b.2,"Sent a photo in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30b.3,"Sent a photo in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30b.4,"Sent a photo in past three months, older (% age 25+)",sources,Global Findex database,28
+con30b.5,"Sent a photo in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30b.6,"Sent a photo in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30b.7,"Sent a photo in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30b.8,"Sent a photo in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30b.9,"Sent a photo in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30b.s,"Sent a photo in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30c,Used social media in past three months (% age 15+),sources,Gender Statistics,14
+con30c.1,"Used social media in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30c.10,"Used social media in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30c.11,"Used social media in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30c.12,"Used social media in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30c.2,"Used social media in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30c.3,"Used social media in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30c.4,"Used social media in past three months, older (% age 25+)",sources,Global Findex database,28
+con30c.5,"Used social media in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30c.6,"Used social media in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30c.7,"Used social media in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30c.8,"Used social media in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30c.9,"Used social media in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30c.s,"Used social media in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30d,Read news online in past three months (% age 15+),sources,Gender Statistics,14
+con30d.1,"Read news online in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30d.10,"Read news online in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30d.11,"Read news online in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30d.12,"Read news online in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30d.2,"Read news online in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30d.3,"Read news online in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30d.4,"Read news online in past three months, older (% age 25+)",sources,Global Findex database,28
+con30d.5,"Read news online in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30d.6,"Read news online in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30d.7,"Read news online in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30d.8,"Read news online in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30d.9,"Read news online in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30d.s,"Read news online in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30e,Accessed online info to learn/train/educate in past three months (% age 15+),sources,Gender Statistics,14
+con30e.1,"Accessed online info to learn/train/educate in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30e.10,"Accessed online info to learn/train/educate in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30e.11,"Accessed online info to learn/train/educate in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30e.12,"Accessed online info to learn/train/educate in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30e.2,"Accessed online info to learn/train/educate in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30e.3,"Accessed online info to learn/train/educate in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30e.4,"Accessed online info to learn/train/educate in past three months, older (% age 25+)",sources,Global Findex database,28
+con30e.5,"Accessed online info to learn/train/educate in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30e.6,"Accessed online info to learn/train/educate in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30e.7,"Accessed online info to learn/train/educate in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30e.8,"Accessed online info to learn/train/educate in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30e.9,"Accessed online info to learn/train/educate in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30e.s,"Accessed online info to learn/train/educate in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30f,Used apps/websites to earn money in past three months (% age 15+),sources,Global Findex database,28
+con30f.1,"Used apps/websites to earn money in past three months, women (% age 15+)",sources,Global Findex database,28
+con30f.10,"Used apps/websites to earn money in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30f.11,"Used apps/websites to earn money in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30f.12,"Used apps/websites to earn money in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30f.2,"Used apps/websites to earn money in past three months, men (% age 15+)",sources,Global Findex database,28
+con30f.3,"Used apps/websites to earn money in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30f.4,"Used apps/websites to earn money in past three months, older (% age 25+)",sources,Global Findex database,28
+con30f.5,"Used apps/websites to earn money in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30f.6,"Used apps/websites to earn money in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30f.7,"Used apps/websites to earn money in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30f.8,"Used apps/websites to earn money in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30f.9,"Used apps/websites to earn money in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30f.s,"Used apps/websites to earn money in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30g,Accessed government services/info online in past three months (% age 15+),sources,Gender Statistics,14
+con30g.1,"Accessed government services/info online in past three months, women (% age 15+)",sources,Gender Statistics,14
+con30g.10,"Accessed government services/info online in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30g.11,"Accessed government services/info online in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30g.12,"Accessed government services/info online in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30g.2,"Accessed government services/info online in past three months, men (% age 15+)",sources,Gender Statistics,14
+con30g.3,"Accessed government services/info online in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30g.4,"Accessed government services/info online in past three months, older (% age 25+)",sources,Global Findex database,28
+con30g.5,"Accessed government services/info online in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30g.6,"Accessed government services/info online in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30g.7,"Accessed government services/info online in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30g.8,"Accessed government services/info online in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30g.9,"Accessed government services/info online in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30g.s,"Accessed government services/info online in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con30h,Searched/applied for a job online in past three months (% age 15+),sources,Global Findex database,28
+con30h.1,"Searched/applied for a job online in past three months, women (% age 15+)",sources,Global Findex database,28
+con30h.10,"Searched/applied for a job online in past three months, urban (% age 15+)",sources,Global Findex database,28
+con30h.11,"Searched/applied for a job online in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con30h.12,"Searched/applied for a job online in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con30h.2,"Searched/applied for a job online in past three months, men (% age 15+)",sources,Global Findex database,28
+con30h.3,"Searched/applied for a job online in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con30h.4,"Searched/applied for a job online in past three months, older (% age 25+)",sources,Global Findex database,28
+con30h.5,"Searched/applied for a job online in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con30h.6,"Searched/applied for a job online in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con30h.7,"Searched/applied for a job online in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con30h.8,"Searched/applied for a job online in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con30h.9,"Searched/applied for a job online in past three months, rural (% age 15+)",sources,Global Findex database,28
+con30h.s,"Searched/applied for a job online in past three months (% internet users, age 15+)",sources,Global Findex database,28
+con31a,Does not own a smartphone due to cost (% age 15+),sources,Gender Statistics,14
+con31a.1,"Does not own a smartphone due to cost, women (% age 15+)",sources,Gender Statistics,14
+con31a.10,"Does not own a smartphone due to cost, urban (% age 15+)",sources,Global Findex database,28
+con31a.11,"Does not own a smartphone due to cost, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31a.12,"Does not own a smartphone due to cost, in laborforce (% age 15+)",sources,Global Findex database,28
+con31a.2,"Does not own a smartphone due to cost, men (% age 15+)",sources,Gender Statistics,14
+con31a.3,"Does not own a smartphone due to cost, young (% ages 15-24)",sources,Global Findex database,28
+con31a.4,"Does not own a smartphone due to cost, older (% age 25+)",sources,Global Findex database,28
+con31a.5,"Does not own a smartphone due to cost, primary education or less (% age 15+)",sources,Global Findex database,28
+con31a.6,"Does not own a smartphone due to cost, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31a.7,"Does not own a smartphone due to cost, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31a.8,"Does not own a smartphone due to cost, richest 60% (% age 15+)",sources,Global Findex database,28
+con31a.9,"Does not own a smartphone due to cost, rural (% age 15+)",sources,Global Findex database,28
+con31a.s,"Does not own a smartphone due to cost (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con31b,Does not own a smartphone due to data cost (% age 15+),sources,Global Findex database,28
+con31b.1,"Does not own a smartphone due to data cost, women (% age 15+)",sources,Global Findex database,28
+con31b.10,"Does not own a smartphone due to data cost, urban (% age 15+)",sources,Global Findex database,28
+con31b.11,"Does not own a smartphone due to data cost, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31b.12,"Does not own a smartphone due to data cost, in laborforce (% age 15+)",sources,Global Findex database,28
+con31b.2,"Does not own a smartphone due to data cost, men (% age 15+)",sources,Global Findex database,28
+con31b.3,"Does not own a smartphone due to data cost, young (% ages 15-24)",sources,Global Findex database,28
+con31b.4,"Does not own a smartphone due to data cost, older (% age 25+)",sources,Global Findex database,28
+con31b.5,"Does not own a smartphone due to data cost, primary education or less (% age 15+)",sources,Global Findex database,28
+con31b.6,"Does not own a smartphone due to data cost, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31b.7,"Does not own a smartphone due to data cost, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31b.8,"Does not own a smartphone due to data cost, richest 60% (% age 15+)",sources,Global Findex database,28
+con31b.9,"Does not own a smartphone due to data cost, rural (% age 15+)",sources,Global Findex database,28
+con31b.s,"Does not own a smartphone due to data cost (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con31c,Does not own a smartphone due to lack of reliable internet coverage (% age 15+),sources,Global Findex database,28
+con31c.1,"Does not own a smartphone due to lack of reliable internet coverage, women (% age 15+)",sources,Global Findex database,28
+con31c.10,"Does not own a smartphone due to lack of reliable internet coverage, urban (% age 15+)",sources,Global Findex database,28
+con31c.11,"Does not own a smartphone due to lack of reliable internet coverage, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31c.12,"Does not own a smartphone due to lack of reliable internet coverage, in laborforce (% age 15+)",sources,Global Findex database,28
+con31c.2,"Does not own a smartphone due to lack of reliable internet coverage, men (% age 15+)",sources,Global Findex database,28
+con31c.3,"Does not own a smartphone due to lack of reliable internet coverage, young (% ages 15-24)",sources,Global Findex database,28
+con31c.4,"Does not own a smartphone due to lack of reliable internet coverage, older (% age 25+)",sources,Global Findex database,28
+con31c.5,"Does not own a smartphone due to lack of reliable internet coverage, primary education or less (% age 15+)",sources,Global Findex database,28
+con31c.6,"Does not own a smartphone due to lack of reliable internet coverage, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31c.7,"Does not own a smartphone due to lack of reliable internet coverage, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31c.8,"Does not own a smartphone due to lack of reliable internet coverage, richest 60% (% age 15+)",sources,Global Findex database,28
+con31c.9,"Does not own a smartphone due to lack of reliable internet coverage, rural (% age 15+)",sources,Global Findex database,28
+con31c.s,"Does not own a smartphone due to lack of reliable internet coverage (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con31d,Does not own a smartphone due to difficulty reading/typing on a smartphone (% age 15+),sources,Global Findex database,28
+con31d.1,"Does not own a smartphone due to difficulty reading/typing on a smartphone, women (% age 15+)",sources,Global Findex database,28
+con31d.10,"Does not own a smartphone due to difficulty reading/typing on a smartphone, urban (% age 15+)",sources,Global Findex database,28
+con31d.11,"Does not own a smartphone due to difficulty reading/typing on a smartphone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31d.12,"Does not own a smartphone due to difficulty reading/typing on a smartphone, in laborforce (% age 15+)",sources,Global Findex database,28
+con31d.2,"Does not own a smartphone due to difficulty reading/typing on a smartphone, men (% age 15+)",sources,Global Findex database,28
+con31d.3,"Does not own a smartphone due to difficulty reading/typing on a smartphone, young (% ages 15-24)",sources,Global Findex database,28
+con31d.4,"Does not own a smartphone due to difficulty reading/typing on a smartphone, older (% age 25+)",sources,Global Findex database,28
+con31d.5,"Does not own a smartphone due to difficulty reading/typing on a smartphone, primary education or less (% age 15+)",sources,Global Findex database,28
+con31d.6,"Does not own a smartphone due to difficulty reading/typing on a smartphone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31d.7,"Does not own a smartphone due to difficulty reading/typing on a smartphone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31d.8,"Does not own a smartphone due to difficulty reading/typing on a smartphone, richest 60% (% age 15+)",sources,Global Findex database,28
+con31d.9,"Does not own a smartphone due to difficulty reading/typing on a smartphone, rural (% age 15+)",sources,Global Findex database,28
+con31d.s,"Does not own a smartphone due to difficulty reading/typing on a smartphone (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con31e,Does not own a smartphone due to disapproval from family/community (% age 15+),sources,Global Findex database,28
+con31f,Does not own a smartphone due to safety/security concerns (% age 15+),sources,Global Findex database,28
+con31f.1,"Does not own a smartphone due to safety/security concerns, women (% age 15+)",sources,Global Findex database,28
+con31f.10,"Does not own a smartphone due to safety/security concerns, urban (% age 15+)",sources,Global Findex database,28
+con31f.11,"Does not own a smartphone due to safety/security concerns, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31f.12,"Does not own a smartphone due to safety/security concerns, in laborforce (% age 15+)",sources,Global Findex database,28
+con31f.2,"Does not own a smartphone due to safety/security concerns, men (% age 15+)",sources,Global Findex database,28
+con31f.3,"Does not own a smartphone due to safety/security concerns, young (% ages 15-24)",sources,Global Findex database,28
+con31f.4,"Does not own a smartphone due to safety/security concerns, older (% age 25+)",sources,Global Findex database,28
+con31f.5,"Does not own a smartphone due to safety/security concerns, primary education or less (% age 15+)",sources,Global Findex database,28
+con31f.6,"Does not own a smartphone due to safety/security concerns, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31f.7,"Does not own a smartphone due to safety/security concerns, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31f.8,"Does not own a smartphone due to safety/security concerns, richest 60% (% age 15+)",sources,Global Findex database,28
+con31f.9,"Does not own a smartphone due to safety/security concerns, rural (% age 15+)",sources,Global Findex database,28
+con31f.s,"Does not own a smartphone due to safety/security concerns (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con31g,Does not own a smartphone because they use someone else's (% age 15+),sources,Global Findex database,28
+con31h,Does not own a smartphone because they don't need one (% age 15+),sources,Global Findex database,28
+con31h.1,"Does not own a smartphone because they don't need one, women (% age 15+)",sources,Global Findex database,28
+con31h.10,"Does not own a smartphone because they don't need one, urban (% age 15+)",sources,Global Findex database,28
+con31h.11,"Does not own a smartphone because they don't need one, out of laborforce (% age 15+)",sources,Global Findex database,28
+con31h.12,"Does not own a smartphone because they don't need one, in laborforce (% age 15+)",sources,Global Findex database,28
+con31h.2,"Does not own a smartphone because they don't need one, men (% age 15+)",sources,Global Findex database,28
+con31h.3,"Does not own a smartphone because they don't need one, young (% ages 15-24)",sources,Global Findex database,28
+con31h.4,"Does not own a smartphone because they don't need one, older (% age 25+)",sources,Global Findex database,28
+con31h.5,"Does not own a smartphone because they don't need one, primary education or less (% age 15+)",sources,Global Findex database,28
+con31h.6,"Does not own a smartphone because they don't need one, secondary education or more (% age 15+)",sources,Global Findex database,28
+con31h.7,"Does not own a smartphone because they don't need one, poorest 40% (% age 15+)",sources,Global Findex database,28
+con31h.8,"Does not own a smartphone because they don't need one, richest 60% (% age 15+)",sources,Global Findex database,28
+con31h.9,"Does not own a smartphone because they don't need one, rural (% age 15+)",sources,Global Findex database,28
+con31h.s,"Does not own a smartphone because they don't need one (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con32a,Main reason for not owning a smartphone: lack of money (% age 15+),sources,Global Findex database,28
+con32a.1,"Main reason for not owning a smartphone: lack of money, women (% age 15+)",sources,Global Findex database,28
+con32a.10,"Main reason for not owning a smartphone: lack of money, urban (% age 15+)",sources,Global Findex database,28
+con32a.11,"Main reason for not owning a smartphone: lack of money, out of laborforce (% age 15+)",sources,Global Findex database,28
+con32a.12,"Main reason for not owning a smartphone: lack of money, in laborforce (% age 15+)",sources,Global Findex database,28
+con32a.2,"Main reason for not owning a smartphone: lack of money, men (% age 15+)",sources,Global Findex database,28
+con32a.3,"Main reason for not owning a smartphone: lack of money, young (% ages 15-24)",sources,Global Findex database,28
+con32a.4,"Main reason for not owning a smartphone: lack of money, older (% age 25+)",sources,Global Findex database,28
+con32a.5,"Main reason for not owning a smartphone: lack of money, primary education or less (% age 15+)",sources,Global Findex database,28
+con32a.6,"Main reason for not owning a smartphone: lack of money, secondary education or more (% age 15+)",sources,Global Findex database,28
+con32a.7,"Main reason for not owning a smartphone: lack of money, poorest 40% (% age 15+)",sources,Global Findex database,28
+con32a.8,"Main reason for not owning a smartphone: lack of money, richest 60% (% age 15+)",sources,Global Findex database,28
+con32a.9,"Main reason for not owning a smartphone: lack of money, rural (% age 15+)",sources,Global Findex database,28
+con32a.s,"Main reason for not owning a smartphone: lack of money (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con32b,Main reason for not owning a smartphone: mobile minutes too expensive (% age 15+),sources,Global Findex database,28
+con32c,Main reason for not owning a smartphone: no reliable coverage (% age 15+),sources,Global Findex database,28
+con32d,Main reason for not owning a smartphone: difficulty reading/typing (% age 15+),sources,Global Findex database,28
+con32e,Main reason for not owning a smartphone: family/community disapproval (% age 15+),sources,Global Findex database,28
+con32f,Main reason for not owning a smartphone: safety/security concerns (% age 15+),sources,Global Findex database,28
+con32g,Main reason for not owning a smartphone: uses someone else's phone (% age 15+),sources,Global Findex database,28
+con32h,Main reason for not owning a smartphone: no need for a smartphone (% age 15+),sources,Global Findex database,28
+con32h.1,"Main reason for not owning a smartphone: no need for a smartphone, women (% age 15+)",sources,Global Findex database,28
+con32h.10,"Main reason for not owning a smartphone: no need for a smartphone, urban (% age 15+)",sources,Global Findex database,28
+con32h.11,"Main reason for not owning a smartphone: no need for a smartphone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con32h.12,"Main reason for not owning a smartphone: no need for a smartphone, in laborforce (% age 15+)",sources,Global Findex database,28
+con32h.2,"Main reason for not owning a smartphone: no need for a smartphone, men (% age 15+)",sources,Global Findex database,28
+con32h.3,"Main reason for not owning a smartphone: no need for a smartphone, young (% ages 15-24)",sources,Global Findex database,28
+con32h.4,"Main reason for not owning a smartphone: no need for a smartphone, older (% age 25+)",sources,Global Findex database,28
+con32h.5,"Main reason for not owning a smartphone: no need for a smartphone, primary education or less (% age 15+)",sources,Global Findex database,28
+con32h.6,"Main reason for not owning a smartphone: no need for a smartphone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con32h.7,"Main reason for not owning a smartphone: no need for a smartphone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con32h.8,"Main reason for not owning a smartphone: no need for a smartphone, richest 60% (% age 15+)",sources,Global Findex database,28
+con32h.9,"Main reason for not owning a smartphone: no need for a smartphone, rural (% age 15+)",sources,Global Findex database,28
+con32h.s,"Main reason for not owning a smartphone: no need for a smartphone (% non-smartphone owners, age 15+)",sources,Global Findex database,28
+con3a,Main reason for no phone: Not enough money (% age 15+),sources,Global Findex database,28
+con3a.1,"Main reason for no phone: Not enough money, women (% age 15+)",sources,Global Findex database,28
+con3a.10,"Main reason for no phone: Not enough money, urban (% age 15+)",sources,Global Findex database,28
+con3a.11,"Main reason for no phone: Not enough money, out of laborforce (% age 15+)",sources,Global Findex database,28
+con3a.12,"Main reason for no phone: Not enough money, in laborforce (% age 15+)",sources,Global Findex database,28
+con3a.2,"Main reason for no phone: Not enough money, men (% age 15+)",sources,Global Findex database,28
+con3a.3,"Main reason for no phone: Not enough money, young (% ages 15-24)",sources,Global Findex database,28
+con3a.4,"Main reason for no phone: Not enough money, older (% age 25+)",sources,Global Findex database,28
+con3a.5,"Main reason for no phone: Not enough money, primary education or less (% age 15+)",sources,Global Findex database,28
+con3a.6,"Main reason for no phone: Not enough money, secondary education or more (% age 15+)",sources,Global Findex database,28
+con3a.7,"Main reason for no phone: Not enough money, poorest 40% (% age 15+)",sources,Global Findex database,28
+con3a.8,"Main reason for no phone: Not enough money, richest 60% (% age 15+)",sources,Global Findex database,28
+con3a.9,"Main reason for no phone: Not enough money, rural (% age 15+)",sources,Global Findex database,28
+con3a.s,"Main reason for no phone: Not enough money (% without a phone, age 15+)",sources,Global Findex database,28
+con3b,Main reason for no phone: Buying minutes too expensive (% age 15+),sources,Global Findex database,28
+con3c,Main reason for no phone: No reliable coverage (% age 15+),sources,Global Findex database,28
+con3d,Main reason for no phone: Difficulty reading or typing (% age 15+),sources,Global Findex database,28
+con3e,Main reason for no phone: Family/community disapproval (% age 15+),sources,Global Findex database,28
+con3f,Main reason for no phone: Personal safety/security concerns (% age 15+),sources,Global Findex database,28
+con3g,Main reason for no phone: Use someone else's phone (% age 15+),sources,Global Findex database,28
+con4,Used someone else's phone in past three months (% age 15+),sources,Global Findex database,28
+con4.1,"Used someone else's phone in past three months, women (% age 15+)",sources,Global Findex database,28
+con4.10,"Used someone else's phone in past three months, urban (% age 15+)",sources,Global Findex database,28
+con4.11,"Used someone else's phone in past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+con4.12,"Used someone else's phone in past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+con4.2,"Used someone else's phone in past three months, men (% age 15+)",sources,Global Findex database,28
+con4.3,"Used someone else's phone in past three months, young (% ages 15-24)",sources,Global Findex database,28
+con4.4,"Used someone else's phone in past three months, older (% age 25+)",sources,Global Findex database,28
+con4.5,"Used someone else's phone in past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+con4.6,"Used someone else's phone in past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+con4.7,"Used someone else's phone in past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+con4.8,"Used someone else's phone in past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+con4.9,"Used someone else's phone in past three months, rural (% age 15+)",sources,Global Findex database,28
+con4.s,"Used someone else's phone in past three months (% without a phone, age 15+)",sources,Global Findex database,28
+con5a,Phone used was a smartphone (% age 15+),sources,Global Findex database,28
+con5a.1,"Phone used was a smartphone, women (% age 15+)",sources,Global Findex database,28
+con5a.10,"Phone used was a smartphone, urban (% age 15+)",sources,Global Findex database,28
+con5a.11,"Phone used was a smartphone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con5a.12,"Phone used was a smartphone, in laborforce (% age 15+)",sources,Global Findex database,28
+con5a.2,"Phone used was a smartphone, men (% age 15+)",sources,Global Findex database,28
+con5a.3,"Phone used was a smartphone, young (% ages 15-24)",sources,Global Findex database,28
+con5a.4,"Phone used was a smartphone, older (% age 25+)",sources,Global Findex database,28
+con5a.5,"Phone used was a smartphone, primary education or less (% age 15+)",sources,Global Findex database,28
+con5a.6,"Phone used was a smartphone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con5a.7,"Phone used was a smartphone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con5a.8,"Phone used was a smartphone, richest 60% (% age 15+)",sources,Global Findex database,28
+con5a.9,"Phone used was a smartphone, rural (% age 15+)",sources,Global Findex database,28
+con5a.s,"Phone used was a smartphone (% who used someone else's phone, age 15+)",sources,Global Findex database,28
+con5b,Phone used was a basic text phone (% age 15+),sources,Global Findex database,28
+con5b.1,"Phone used was a basic text phone, women (% age 15+)",sources,Global Findex database,28
+con5b.10,"Phone used was a basic text phone, urban (% age 15+)",sources,Global Findex database,28
+con5b.11,"Phone used was a basic text phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con5b.12,"Phone used was a basic text phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con5b.2,"Phone used was a basic text phone, men (% age 15+)",sources,Global Findex database,28
+con5b.3,"Phone used was a basic text phone, young (% ages 15-24)",sources,Global Findex database,28
+con5b.4,"Phone used was a basic text phone, older (% age 25+)",sources,Global Findex database,28
+con5b.5,"Phone used was a basic text phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con5b.6,"Phone used was a basic text phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con5b.7,"Phone used was a basic text phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con5b.8,"Phone used was a basic text phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con5b.9,"Phone used was a basic text phone, rural (% age 15+)",sources,Global Findex database,28
+con5b.s,"Phone used was a basic text phone (% who used someone else's phone, age 15+)",sources,Global Findex database,28
+con6,Used personal SIM card in someone else's phone (% age 15+),sources,Global Findex database,28
+con7,Used someone else's phone and family member sets rules for use (% age 15+),sources,Global Findex database,28
+con8,Someone in household owns a mobile phone (% age 15+),sources,Global Findex database,28
+con8.1,"Someone in household owns a mobile phone, women (% age 15+)",sources,Global Findex database,28
+con8.10,"Someone in household owns a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+con8.11,"Someone in household owns a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con8.12,"Someone in household owns a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con8.2,"Someone in household owns a mobile phone, men (% age 15+)",sources,Global Findex database,28
+con8.3,"Someone in household owns a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+con8.4,"Someone in household owns a mobile phone, older (% age 25+)",sources,Global Findex database,28
+con8.5,"Someone in household owns a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con8.6,"Someone in household owns a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con8.7,"Someone in household owns a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con8.8,"Someone in household owns a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con8.9,"Someone in household owns a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+con9a,Main mobile phone is a smartphone (% age 15+),sources,Gender Statistics,14
+con9a.1,"Main mobile phone is a smartphone, women (% age 15+)",sources,Gender Statistics,14
+con9a.10,"Main mobile phone is a smartphone, urban (% age 15+)",sources,Global Findex database,28
+con9a.11,"Main mobile phone is a smartphone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con9a.12,"Main mobile phone is a smartphone, in laborforce (% age 15+)",sources,Global Findex database,28
+con9a.2,"Main mobile phone is a smartphone, men (% age 15+)",sources,Gender Statistics,14
+con9a.3,"Main mobile phone is a smartphone, young (% ages 15-24)",sources,Global Findex database,28
+con9a.4,"Main mobile phone is a smartphone, older (% age 25+)",sources,Global Findex database,28
+con9a.5,"Main mobile phone is a smartphone, primary education or less (% age 15+)",sources,Global Findex database,28
+con9a.6,"Main mobile phone is a smartphone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con9a.7,"Main mobile phone is a smartphone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con9a.8,"Main mobile phone is a smartphone, richest 60% (% age 15+)",sources,Global Findex database,28
+con9a.9,"Main mobile phone is a smartphone, rural (% age 15+)",sources,Global Findex database,28
+con9b,Main mobile phone is a basic text phone (% age 15+),sources,Gender Statistics,14
+con9b.1,"Main mobile phone is a basic text phone, women (% age 15+)",sources,Gender Statistics,14
+con9b.10,"Main mobile phone is a basic text phone, urban (% age 15+)",sources,Global Findex database,28
+con9b.11,"Main mobile phone is a basic text phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+con9b.12,"Main mobile phone is a basic text phone, in laborforce (% age 15+)",sources,Global Findex database,28
+con9b.2,"Main mobile phone is a basic text phone, men (% age 15+)",sources,Gender Statistics,14
+con9b.3,"Main mobile phone is a basic text phone, young (% ages 15-24)",sources,Global Findex database,28
+con9b.4,"Main mobile phone is a basic text phone, older (% age 25+)",sources,Global Findex database,28
+con9b.5,"Main mobile phone is a basic text phone, primary education or less (% age 15+)",sources,Global Findex database,28
+con9b.6,"Main mobile phone is a basic text phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+con9b.7,"Main mobile phone is a basic text phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+con9b.8,"Main mobile phone is a basic text phone, richest 60% (% age 15+)",sources,Global Findex database,28
+con9b.9,"Main mobile phone is a basic text phone, rural (% age 15+)",sources,Global Findex database,28
+dig.acc,Digitally enabled account (% age 15+),sources,Gender Statistics,14
+dig.acc.1,"Digitally enabled account, women (% age 15+)",sources,Gender Statistics,14
+dig.acc.10,"Digitally enabled account, urban (% age 15+)",sources,Global Findex database,28
+dig.acc.11,"Digitally enabled account, out of laborforce (% age 15+)",sources,Global Findex database,28
+dig.acc.12,"Digitally enabled account, in laborforce (% age 15+)",sources,Global Findex database,28
+dig.acc.2,"Digitally enabled account, men (% age 15+)",sources,Gender Statistics,14
+dig.acc.3,"Digitally enabled account, young (% ages 15-24)",sources,Global Findex database,28
+dig.acc.4,"Digitally enabled account, older (% age 25+)",sources,Global Findex database,28
+dig.acc.5,"Digitally enabled account, primary education or less (% age 15+)",sources,Global Findex database,28
+dig.acc.6,"Digitally enabled account, secondary education or more (% age 15+)",sources,Global Findex database,28
+dig.acc.7,"Digitally enabled account, poorest 40% (% age 15+)",sources,Global Findex database,28
+dig.acc.8,"Digitally enabled account, richest 60% (% age 15+)",sources,Global Findex database,28
+dig.acc.9,"Digitally enabled account, rural (% age 15+)",sources,Global Findex database,28
+fh1,Sent domestic remittances (% age 15+),sources,Gender Statistics,14
+fh1.1,"Sent domestic remittances, women (% age 15+)",sources,Gender Statistics,14
+fh1.10,"Sent domestic remittances, urban (% age 15+)",sources,Global Findex database,28
+fh1.11,"Sent domestic remittances, out of laborforce (% age 15+)",sources,Global Findex database,28
+fh1.12,"Sent domestic remittances, in laborforce (% age 15+)",sources,Global Findex database,28
+fh1.2,"Sent domestic remittances, men (% age 15+)",sources,Gender Statistics,14
+fh1.3,"Sent domestic remittances, young (% ages 15-24)",sources,Global Findex database,28
+fh1.4,"Sent domestic remittances, older (% age 25+)",sources,Global Findex database,28
+fh1.5,"Sent domestic remittances, primary education or less (% age 15+)",sources,Global Findex database,28
+fh1.6,"Sent domestic remittances, secondary education or more (% age 15+)",sources,Global Findex database,28
+fh1.7,"Sent domestic remittances, poorest 40% (% age 15+)",sources,Global Findex database,28
+fh1.8,"Sent domestic remittances, richest 60% (% age 15+)",sources,Global Findex database,28
+fh1.9,"Sent domestic remittances, rural (% age 15+)",sources,Global Findex database,28
+fh1.fh2,Sent or received domestic remittances (% age 15+),sources,Gender Statistics,14
+fh1.fh2.1,"Sent or received domestic remittances, women (% age 15+)",sources,Gender Statistics,14
+fh1.fh2.10,"Sent or received domestic remittances, urban (% age 15+)",sources,Global Findex database,28
+fh1.fh2.11,"Sent or received domestic remittances, out of laborforce (% age 15+)",sources,Global Findex database,28
+fh1.fh2.12,"Sent or received domestic remittances, in laborforce (% age 15+)",sources,Global Findex database,28
+fh1.fh2.2,"Sent or received domestic remittances, men (% age 15+)",sources,Gender Statistics,14
+fh1.fh2.3,"Sent or received domestic remittances, young (% ages 15-24)",sources,Global Findex database,28
+fh1.fh2.4,"Sent or received domestic remittances, older (% age 25+)",sources,Global Findex database,28
+fh1.fh2.5,"Sent or received domestic remittances, primary education or less (% age 15+)",sources,Global Findex database,28
+fh1.fh2.6,"Sent or received domestic remittances, secondary education or more (% age 15+)",sources,Global Findex database,28
+fh1.fh2.7,"Sent or received domestic remittances, poorest 40% (% age 15+)",sources,Global Findex database,28
+fh1.fh2.8,"Sent or received domestic remittances, richest 60% (% age 15+)",sources,Global Findex database,28
+fh1.fh2.9,"Sent or received domestic remittances, rural (% age 15+)",sources,Global Findex database,28
+fh2,Received domestic remittances (% age 15+),sources,Gender Statistics,14
+fh2.1,"Received domestic remittances, women (% age 15+)",sources,Gender Statistics,14
+fh2.10,"Received domestic remittances, urban (% age 15+)",sources,Global Findex database,28
+fh2.11,"Received domestic remittances, out of laborforce (% age 15+)",sources,Global Findex database,28
+fh2.12,"Received domestic remittances, in laborforce (% age 15+)",sources,Global Findex database,28
+fh2.2,"Received domestic remittances, men (% age 15+)",sources,Gender Statistics,14
+fh2.3,"Received domestic remittances, young (% ages 15-24)",sources,Global Findex database,28
+fh2.4,"Received domestic remittances, older (% age 25+)",sources,Global Findex database,28
+fh2.5,"Received domestic remittances, primary education or less (% age 15+)",sources,Global Findex database,28
+fh2.6,"Received domestic remittances, secondary education or more (% age 15+)",sources,Global Findex database,28
+fh2.7,"Received domestic remittances, poorest 40% (% age 15+)",sources,Global Findex database,28
+fh2.8,"Received domestic remittances, richest 60% (% age 15+)",sources,Global Findex database,28
+fh2.9,"Received domestic remittances, rural (% age 15+)",sources,Global Findex database,28
+fh2a,Received international remittances (% age 15+),sources,Gender Statistics,14
+fh2a.1,"Received international remittances , women (% age 15+)",sources,Gender Statistics,14
+fh2a.10,"Received international remittances , urban (% age 15+)",sources,Global Findex database,28
+fh2a.11,"Received international remittances , out of laborforce (% age 15+)",sources,Global Findex database,28
+fh2a.12,"Received international remittances , in laborforce (% age 15+)",sources,Global Findex database,28
+fh2a.2,"Received international remittances , men (% age 15+)",sources,Gender Statistics,14
+fh2a.3,"Received international remittances , young (% ages 15-24)",sources,Global Findex database,28
+fh2a.4,"Received international remittances , older (% age 25+)",sources,Global Findex database,28
+fh2a.5,"Received international remittances , primary education or less (% age 15+)",sources,Global Findex database,28
+fh2a.6,"Received international remittances , secondary education or more (% age 15+)",sources,Global Findex database,28
+fh2a.7,"Received international remittances , poorest 40% (% age 15+)",sources,Global Findex database,28
+fh2a.8,"Received international remittances , richest 60% (% age 15+)",sources,Global Findex database,28
+fh2a.9,"Received international remittances , rural (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d,Bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fiaccount.t.d.1,"Bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fiaccount.t.d.10,"Bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.11,"Bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.12,"Bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.2,"Bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fiaccount.t.d.3,"Bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fiaccount.t.d.4,"Bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fiaccount.t.d.5,"Bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.6,"Bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.7,"Bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.8,"Bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fiaccount.t.d.9,"Bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin10,Owns a credit card (% age 15+),sources,Gender Statistics,14
+fin10.1,"Owns a credit card, women (% age 15+)",sources,Gender Statistics,14
+fin10.10,"Owns a credit card, urban (% age 15+)",sources,Global Findex database,28
+fin10.11,"Owns a credit card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin10.12,"Owns a credit card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin10.2,"Owns a credit card, men (% age 15+)",sources,Gender Statistics,14
+fin10.3,"Owns a credit card, young (% ages 15-24)",sources,Global Findex database,28
+fin10.4,"Owns a credit card, older (% age 25+)",sources,Global Findex database,28
+fin10.5,"Owns a credit card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin10.6,"Owns a credit card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin10.7,"Owns a credit card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin10.8,"Owns a credit card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin10.9,"Owns a credit card, rural (% age 15+)",sources,Global Findex database,28
+fin11_0,Own a card that you can add money to and use to send and receive money or make purchases (age 15+) (% age 15+),sources,Global Findex database,28
+fin11_1,Ever had an account at a bank or similar bank or similar financial institution (% age 15+),sources,Global Findex database,28
+fin11_1.1,"Ever had an account at a bank or similar bank or similar financial institution, women (% age 15+)",sources,Global Findex database,28
+fin11_1.10,"Ever had an account at a bank or similar bank or similar financial institution, urban (% age 15+)",sources,Global Findex database,28
+fin11_1.11,"Ever had an account at a bank or similar bank or similar financial institution, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11_1.12,"Ever had an account at a bank or similar bank or similar financial institution, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11_1.2,"Ever had an account at a bank or similar bank or similar financial institution, men (% age 15+)",sources,Global Findex database,28
+fin11_1.3,"Ever had an account at a bank or similar bank or similar financial institution, young (% ages 15-24)",sources,Global Findex database,28
+fin11_1.4,"Ever had an account at a bank or similar bank or similar financial institution, older (% age 25+)",sources,Global Findex database,28
+fin11_1.5,"Ever had an account at a bank or similar bank or similar financial institution, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11_1.6,"Ever had an account at a bank or similar bank or similar financial institution, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11_1.7,"Ever had an account at a bank or similar bank or similar financial institution, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11_1.8,"Ever had an account at a bank or similar bank or similar financial institution, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11_1.9,"Ever had an account at a bank or similar bank or similar financial institution, rural (% age 15+)",sources,Global Findex database,28
+fin11_1.s,"Ever had an account at a bank or similar bank or similar financial institution, of unbanked (% without an account, age 15+ )",sources,Global Findex database,28
+fin11_2a,Can use account at a bank or similar financial institution without help if opened (% age 15+),sources,Global Findex database,28
+fin11_2a.1,"Can use account at a bank or similar financial institution without help if opened, women (% age 15+)",sources,Global Findex database,28
+fin11_2a.10,"Can use account at a bank or similar financial institution without help if opened, urban (% age 15+)",sources,Global Findex database,28
+fin11_2a.11,"Can use account at a bank or similar financial institution without help if opened, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11_2a.12,"Can use account at a bank or similar financial institution without help if opened, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11_2a.2,"Can use account at a bank or similar financial institution without help if opened, men (% age 15+)",sources,Global Findex database,28
+fin11_2a.3,"Can use account at a bank or similar financial institution without help if opened, young (% ages 15-24)",sources,Global Findex database,28
+fin11_2a.4,"Can use account at a bank or similar financial institution without help if opened, older (% age 25+)",sources,Global Findex database,28
+fin11_2a.5,"Can use account at a bank or similar financial institution without help if opened, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11_2a.6,"Can use account at a bank or similar financial institution without help if opened, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11_2a.7,"Can use account at a bank or similar financial institution without help if opened, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11_2a.8,"Can use account at a bank or similar financial institution without help if opened, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11_2a.9,"Can use account at a bank or similar financial institution without help if opened, rural (% age 15+)",sources,Global Findex database,28
+fin11_2a.s,"Can use account at a bank or similar financial institution without help if opened (% without an account, age 15+)",sources,Global Findex database,28
+fin11a,No account because financial institutions are too far away (% age 15+),sources,Global Findex database,28
+fin11a.1,"No account because bank or similar financial institutions are too far away, women (% age 15+)",sources,Global Findex database,28
+fin11a.10,"No account because bank or similar financial institutions are too far away, urban (% age 15+)",sources,Global Findex database,28
+fin11a.11,"No account because bank or similar financial institutions are too far away, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11a.12,"No account because bank or similar financial institutions are too far away, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11a.2,"No account because bank or similar financial institutions are too far away, men (% age 15+)",sources,Global Findex database,28
+fin11a.3,"No account because bank or similar financial institutions are too far away, young (% ages 15-24)",sources,Global Findex database,28
+fin11a.4,"No account because bank or similar financial institutions are too far away, older (% age 25+)",sources,Global Findex database,28
+fin11a.5,"No account because bank or similar financial institutions are too far away, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11a.6,"No account because bank or similar financial institutions are too far away, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11a.7,"No account because bank or similar financial institutions are too far away, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11a.8,"No account because bank or similar financial institutions are too far away, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11a.9,"No account because bank or similar financial institutions are too far away, rural (% age 15+)",sources,Global Findex database,28
+fin11a.s,"No account because financial institutions are too far away (% without an account, age 15+)",sources,Global Findex database,28
+fin11b,No account because financial services are too expensive (% age 15+),sources,Global Findex database,28
+fin11b.1,"No account because financial services are too expensive, women (% age 15+)",sources,Global Findex database,28
+fin11b.10,"No account because financial services are too expensive, urban (% age 15+)",sources,Global Findex database,28
+fin11b.11,"No account because financial services are too expensive, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11b.12,"No account because financial services are too expensive, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11b.2,"No account because financial services are too expensive, men (% age 15+)",sources,Global Findex database,28
+fin11b.3,"No account because financial services are too expensive, young (% ages 15-24)",sources,Global Findex database,28
+fin11b.4,"No account because financial services are too expensive, older (% age 25+)",sources,Global Findex database,28
+fin11b.5,"No account because financial services are too expensive, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11b.6,"No account because financial services are too expensive, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11b.7,"No account because financial services are too expensive, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11b.8,"No account because financial services are too expensive, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11b.9,"No account because financial services are too expensive, rural (% age 15+)",sources,Global Findex database,28
+fin11b.s,"No account because financial services are too expensive (% without an account, age 15+)",sources,Global Findex database,28
+fin11c,No account because of a lack of necessary documentation (% age 15+),sources,Global Findex database,28
+fin11c.1,"No account because of a lack of necessary documentation, women (% age 15+)",sources,Global Findex database,28
+fin11c.10,"No account because of a lack of necessary documentation, urban (% age 15+)",sources,Global Findex database,28
+fin11c.11,"No account because of a lack of necessary documentation, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11c.12,"No account because of a lack of necessary documentation, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11c.2,"No account because of a lack of necessary documentation, men (% age 15+)",sources,Global Findex database,28
+fin11c.3,"No account because of a lack of necessary documentation, young (% ages 15-24)",sources,Global Findex database,28
+fin11c.4,"No account because of a lack of necessary documentation, older (% age 25+)",sources,Global Findex database,28
+fin11c.5,"No account because of a lack of necessary documentation, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11c.6,"No account because of a lack of necessary documentation, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11c.7,"No account because of a lack of necessary documentation, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11c.8,"No account because of a lack of necessary documentation, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11c.9,"No account because of a lack of necessary documentation, rural (% age 15+)",sources,Global Findex database,28
+fin11d,No account because of a lack of trust in financial institutions (% age 15+),sources,Global Findex database,28
+fin11d.1,"No account because of insufficient funds, women (% age 15+)",sources,Global Findex database,28
+fin11d.10,"No account because of insufficient funds, urban (% age 15+)",sources,Global Findex database,28
+fin11d.11,"No account because of insufficient funds, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11d.12,"No account because of insufficient funds, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11d.2,"No account because of insufficient funds, men (% age 15+)",sources,Global Findex database,28
+fin11d.3,"No account because of insufficient funds, young (% ages 15-24)",sources,Global Findex database,28
+fin11d.4,"No account because of insufficient funds, older (% age 25+)",sources,Global Findex database,28
+fin11d.5,"No account because of insufficient funds, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11d.6,"No account because of insufficient funds, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11d.7,"No account because of insufficient funds, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11d.8,"No account because of insufficient funds, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11d.9,"No account because of insufficient funds, rural (% age 15+)",sources,Global Findex database,28
+fin11d.s,"No account because of a lack of trust in financial institutions (% without an account, age 15+)",sources,Global Findex database,28
+fin11e,No account because of religious reasons (% age 15+),sources,Gender Statistics,14
+fin11e.1,"No account because someone in the family has one, women (% age 15+)",sources,Gender Statistics,14
+fin11e.10,"No account because someone in the family has one, urban (% age 15+)",sources,Global Findex database,28
+fin11e.11,"No account because someone in the family has one, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11e.12,"No account because someone in the family has one, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11e.2,"No account because someone in the family has one, men (% age 15+)",sources,Gender Statistics,14
+fin11e.3,"No account because someone in the family has one, young (% ages 15-24)",sources,Global Findex database,28
+fin11e.4,"No account because someone in the family has one, older (% age 25+)",sources,Global Findex database,28
+fin11e.5,"No account because someone in the family has one, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11e.6,"No account because someone in the family has one, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11e.7,"No account because someone in the family has one, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11e.8,"No account because someone in the family has one, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11e.9,"No account because someone in the family has one, rural (% age 15+)",sources,Global Findex database,28
+fin11e.s,"No account because of religious reasons (% without an account, age 15+)",sources,Global Findex database,28
+fin11f,No account because of insufficient funds (% age 15+),sources,Global Findex database,28
+fin11f.1,"No account because of a lack of trust in bank or similar financial institutions, women (% age 15+)",sources,Global Findex database,28
+fin11f.10,"No account because of a lack of trust in bank or similar financial institutions, urban (% age 15+)",sources,Global Findex database,28
+fin11f.11,"No account because of a lack of trust in bank or similar financial institutions, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin11f.12,"No account because of a lack of trust in bank or similar financial institutions, in laborforce (% age 15+)",sources,Global Findex database,28
+fin11f.2,"No account because of a lack of trust in bank or similar financial institutions, men (% age 15+)",sources,Global Findex database,28
+fin11f.3,"No account because of a lack of trust in bank or similar financial institutions, young (% ages 15-24)",sources,Global Findex database,28
+fin11f.4,"No account because of a lack of trust in bank or similar financial institutions, older (% age 25+)",sources,Global Findex database,28
+fin11f.5,"No account because of a lack of trust in bank or similar financial institutions, primary education or less (% age 15+)",sources,Global Findex database,28
+fin11f.6,"No account because of a lack of trust in bank or similar financial institutions, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin11f.7,"No account because of a lack of trust in bank or similar financial institutions, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin11f.8,"No account because of a lack of trust in bank or similar financial institutions, richest 60% (% age 15+)",sources,Global Findex database,28
+fin11f.9,"No account because of a lack of trust in bank or similar financial institutions, rural (% age 15+)",sources,Global Findex database,28
+fin11f.s,"No account because of insufficient funds (% without an account, age 15+)",sources,Global Findex database,28
+fin11q1,SMEs with at least one female owner with a proportion of loans requiring collateral,sources,G20 Financial Inclusion Indicators,33
+fin11q2,SMEs with a proportion of loans requiring collateral,sources,G20 Financial Inclusion Indicators,33
+fin13_1a,"Mobile money account meets financial needs (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin13_1a.1,"Mobile money account meets financial needs (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin13_1a.10,"Mobile money account meets financial needs (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin13_1a.11,"Mobile money account meets financial needs (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13_1a.12,"Mobile money account meets financial needs (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin13_1a.2,"Mobile money account meets financial needs (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin13_1a.3,"Mobile money account meets financial needs (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin13_1a.4,"Mobile money account meets financial needs (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin13_1a.5,"Mobile money account meets financial needs (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin13_1a.6,"Mobile money account meets financial needs (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13_1a.7,"Mobile money account meets financial needs (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13_1a.8,"Mobile money account meets financial needs (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin13_1a.9,"Mobile money account meets financial needs (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin13_1b,"Have a mobile money account and would like to open a bank account (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin13_1b.1,"Have a mobile money account and would like to open a bank account (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin13_1b.10,"Have a mobile money account and would like to open a bank account (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin13_1b.11,"Have a mobile money account and would like to open a bank account (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13_1b.12,"Have a mobile money account and would like to open a bank account (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin13_1b.2,"Have a mobile money account and would like to open a bank account (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin13_1b.3,"Have a mobile money account and would like to open a bank account (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin13_1b.4,"Have a mobile money account and would like to open a bank account (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin13_1b.5,"Have a mobile money account and would like to open a bank account (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin13_1b.6,"Have a mobile money account and would like to open a bank account (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13_1b.7,"Have a mobile money account and would like to open a bank account (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13_1b.8,"Have a mobile money account and would like to open a bank account (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin13_1b.9,"Have a mobile money account and would like to open a bank account (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin13alm,"Deposited money into a mobile money account, less than once a month (% age 15+)",sources,Global Findex database,28
+fin13alm.1,"Deposited money into a mobile money account, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin13alm.10,"Deposited money into a mobile money account, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin13alm.11,"Deposited money into a mobile money account, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13alm.12,"Deposited money into a mobile money account, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13alm.2,"Deposited money into a mobile money account, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin13alm.3,"Deposited money into a mobile money account, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin13alm.4,"Deposited money into a mobile money account, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin13alm.5,"Deposited money into a mobile money account, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13alm.6,"Deposited money into a mobile money account, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13alm.7,"Deposited money into a mobile money account, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13alm.8,"Deposited money into a mobile money account, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13alm.9,"Deposited money into a mobile money account, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin13am,"Deposited money into a mobile money account, monthly (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin13am.1,"Deposited money into a mobile money account, monthly (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin13am.10,"Deposited money into a mobile money account, monthly (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin13am.11,"Deposited money into a mobile money account, monthly (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13am.12,"Deposited money into a mobile money account, monthly (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin13am.2,"Deposited money into a mobile money account, monthly (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin13am.3,"Deposited money into a mobile money account, monthly (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin13am.4,"Deposited money into a mobile money account, monthly (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin13am.5,"Deposited money into a mobile money account, monthly (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin13am.6,"Deposited money into a mobile money account, monthly (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13am.7,"Deposited money into a mobile money account, monthly (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13am.8,"Deposited money into a mobile money account, monthly (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin13am.9,"Deposited money into a mobile money account, monthly (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin13an,"Deposited money into a mobile money account, Never (% age 15+) (% age 15+)",sources,Global Findex database,28
+fin13aw,"Deposited money into a mobile money account, weekly (% age 15+)",sources,Global Findex database,28
+fin13aw.1,"Deposited money into a mobile money account, weekly, women (% age 15+)",sources,Global Findex database,28
+fin13aw.10,"Deposited money into a mobile money account, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin13aw.11,"Deposited money into a mobile money account, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13aw.12,"Deposited money into a mobile money account, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13aw.2,"Deposited money into a mobile money account, weekly, men (% age 15+)",sources,Global Findex database,28
+fin13aw.3,"Deposited money into a mobile money account, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin13aw.4,"Deposited money into a mobile money account, weekly, older (% age 25+)",sources,Global Findex database,28
+fin13aw.5,"Deposited money into a mobile money account, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13aw.6,"Deposited money into a mobile money account, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13aw.7,"Deposited money into a mobile money account, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13aw.8,"Deposited money into a mobile money account, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13aw.9,"Deposited money into a mobile money account, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin13blm,"Sent money from a mobile money account, less than once a month (% age 15+)",sources,Global Findex database,28
+fin13blm.1,"Sent money from a mobile money account, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin13blm.10,"Sent money from a mobile money account, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin13blm.11,"Sent money from a mobile money account, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13blm.12,"Sent money from a mobile money account, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13blm.2,"Sent money from a mobile money account, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin13blm.3,"Sent money from a mobile money account, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin13blm.4,"Sent money from a mobile money account, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin13blm.5,"Sent money from a mobile money account, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13blm.6,"Sent money from a mobile money account, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13blm.7,"Sent money from a mobile money account, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13blm.8,"Sent money from a mobile money account, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13blm.9,"Sent money from a mobile money account, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin13bm,"Sent money from a mobile money account, monthly (% age 15+) (% age 15+)",sources,Global Findex database,28
+fin13bm.1,"Sent money from a mobile money account, monthly (% age 15+), women (% age 15+)",sources,Global Findex database,28
+fin13bm.10,"Sent money from a mobile money account, monthly (% age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin13bm.11,"Sent money from a mobile money account, monthly (% age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13bm.12,"Sent money from a mobile money account, monthly (% age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin13bm.2,"Sent money from a mobile money account, monthly (% age 15+), men (% age 15+)",sources,Global Findex database,28
+fin13bm.3,"Sent money from a mobile money account, monthly (% age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin13bm.4,"Sent money from a mobile money account, monthly (% age 15+), older (% age 25+)",sources,Global Findex database,28
+fin13bm.5,"Sent money from a mobile money account, monthly (% age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin13bm.6,"Sent money from a mobile money account, monthly (% age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13bm.7,"Sent money from a mobile money account, monthly (% age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13bm.8,"Sent money from a mobile money account, monthly (% age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin13bm.9,"Sent money from a mobile money account, monthly (% age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin13bn,"Sent or withdrew money from a mobile money account, Never (% age 15+) (% age 15+)",sources,Global Findex database,28
+fin13bw,"Sent money from a mobile money account, weekly (% age 15+)",sources,Global Findex database,28
+fin13bw.1,"Sent money from a mobile money account, weekly, women (% age 15+)",sources,Global Findex database,28
+fin13bw.10,"Sent money from a mobile money account, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin13bw.11,"Sent money from a mobile money account, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13bw.12,"Sent money from a mobile money account, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13bw.2,"Sent money from a mobile money account, weekly, men (% age 15+)",sources,Global Findex database,28
+fin13bw.3,"Sent money from a mobile money account, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin13bw.4,"Sent money from a mobile money account, weekly, older (% age 25+)",sources,Global Findex database,28
+fin13bw.5,"Sent money from a mobile money account, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13bw.6,"Sent money from a mobile money account, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13bw.7,"Sent money from a mobile money account, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13bw.8,"Sent money from a mobile money account, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13bw.9,"Sent money from a mobile money account, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin13clm,"Took out money from a mobile money account, less than once a month (% age 15+)",sources,Global Findex database,28
+fin13clm.1,"Took out money from a mobile money account, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin13clm.10,"Took out money from a mobile money account, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin13clm.11,"Took out money from a mobile money account, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13clm.12,"Took out money from a mobile money account, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13clm.2,"Took out money from a mobile money account, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin13clm.3,"Took out money from a mobile money account, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin13clm.4,"Took out money from a mobile money account, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin13clm.5,"Took out money from a mobile money account, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13clm.6,"Took out money from a mobile money account, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13clm.7,"Took out money from a mobile money account, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13clm.8,"Took out money from a mobile money account, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13clm.9,"Took out money from a mobile money account, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin13cm,"Took out money from a mobile money account, monthly (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin13cm.1,"Took out money from a mobile money account, monthly (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin13cm.10,"Took out money from a mobile money account, monthly (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin13cm.11,"Took out money from a mobile money account, monthly (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13cm.12,"Took out money from a mobile money account, monthly (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin13cm.2,"Took out money from a mobile money account, monthly (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin13cm.3,"Took out money from a mobile money account, monthly (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin13cm.4,"Took out money from a mobile money account, monthly (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin13cm.5,"Took out money from a mobile money account, monthly (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin13cm.6,"Took out money from a mobile money account, monthly (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13cm.7,"Took out money from a mobile money account, monthly (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13cm.8,"Took out money from a mobile money account, monthly (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin13cm.9,"Took out money from a mobile money account, monthly (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin13cn,"Took out or withdrew money from a mobile money account, Never (% age 15+) (% age 15+)",sources,Global Findex database,28
+fin13cw,"Took out money from a mobile money account, weekly (% age 15+)",sources,Global Findex database,28
+fin13cw.1,"Took out money from a mobile money account, weekly, women (% age 15+)",sources,Global Findex database,28
+fin13cw.10,"Took out money from a mobile money account, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin13cw.11,"Took out money from a mobile money account, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13cw.12,"Took out money from a mobile money account, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13cw.2,"Took out money from a mobile money account, weekly, men (% age 15+)",sources,Global Findex database,28
+fin13cw.3,"Took out money from a mobile money account, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin13cw.4,"Took out money from a mobile money account, weekly, older (% age 25+)",sources,Global Findex database,28
+fin13cw.5,"Took out money from a mobile money account, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13cw.6,"Took out money from a mobile money account, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13cw.7,"Took out money from a mobile money account, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13cw.8,"Took out money from a mobile money account, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13cw.9,"Took out money from a mobile money account, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin13e,Asked for mobile money PIN or password (% age 15+),sources,Global Findex database,28
+fin13e.1,"Asked for mobile money PIN or password, women (% age 15+)",sources,Global Findex database,28
+fin13e.10,"Asked for mobile money PIN or password, urban (% age 15+)",sources,Global Findex database,28
+fin13e.11,"Asked for mobile money PIN or password, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13e.12,"Asked for mobile money PIN or password, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13e.2,"Asked for mobile money PIN or password, men (% age 15+)",sources,Global Findex database,28
+fin13e.3,"Asked for mobile money PIN or password, young (% ages 15-24)",sources,Global Findex database,28
+fin13e.4,"Asked for mobile money PIN or password, older (% age 25+)",sources,Global Findex database,28
+fin13e.5,"Asked for mobile money PIN or password, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13e.6,"Asked for mobile money PIN or password, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13e.7,"Asked for mobile money PIN or password, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13e.8,"Asked for mobile money PIN or password, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13e.9,"Asked for mobile money PIN or password, rural (% age 15+)",sources,Global Findex database,28
+fin13f,Sent money to the wrong number (% age 15+),sources,Global Findex database,28
+fin13f.1,"Sent money to the wrong number, women (% age 15+)",sources,Global Findex database,28
+fin13f.10,"Sent money to the wrong number, urban (% age 15+)",sources,Global Findex database,28
+fin13f.11,"Sent money to the wrong number, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13f.12,"Sent money to the wrong number, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13f.2,"Sent money to the wrong number, men (% age 15+)",sources,Global Findex database,28
+fin13f.3,"Sent money to the wrong number, young (% ages 15-24)",sources,Global Findex database,28
+fin13f.4,"Sent money to the wrong number, older (% age 25+)",sources,Global Findex database,28
+fin13f.5,"Sent money to the wrong number, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13f.6,"Sent money to the wrong number, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13f.7,"Sent money to the wrong number, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13f.8,"Sent money to the wrong number, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13f.9,"Sent money to the wrong number, rural (% age 15+)",sources,Global Findex database,28
+fin13f_1,Received money back after sending to the wrong number (% age 15+),sources,Global Findex database,28
+fin13f_1.1,"Received money back after sending to the wrong number, women (% age 15+)",sources,Global Findex database,28
+fin13f_1.10,"Received money back after sending to the wrong number, urban (% age 15+)",sources,Global Findex database,28
+fin13f_1.11,"Received money back after sending to the wrong number, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin13f_1.12,"Received money back after sending to the wrong number, in laborforce (% age 15+)",sources,Global Findex database,28
+fin13f_1.2,"Received money back after sending to the wrong number, men (% age 15+)",sources,Global Findex database,28
+fin13f_1.3,"Received money back after sending to the wrong number, young (% ages 15-24)",sources,Global Findex database,28
+fin13f_1.4,"Received money back after sending to the wrong number, older (% age 25+)",sources,Global Findex database,28
+fin13f_1.5,"Received money back after sending to the wrong number, primary education or less (% age 15+)",sources,Global Findex database,28
+fin13f_1.6,"Received money back after sending to the wrong number, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin13f_1.7,"Received money back after sending to the wrong number, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin13f_1.8,"Received money back after sending to the wrong number, richest 60% (% age 15+)",sources,Global Findex database,28
+fin13f_1.9,"Received money back after sending to the wrong number, rural (% age 15+)",sources,Global Findex database,28
+fin14a,Reason for not having a mobile money account: mobile money agents are too far away (% age 15+),sources,Global Findex database,28
+fin14a.1,"Reason for not having a mobile money account: mobile money agents are too far away, women (% age 15+)",sources,Global Findex database,28
+fin14a.10,"Reason for not having a mobile money account: mobile money agents are too far away, urban (% age 15+)",sources,Global Findex database,28
+fin14a.11,"Reason for not having a mobile money account: mobile money agents are too far away, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin14a.12,"Reason for not having a mobile money account: mobile money agents are too far away, in laborforce (% age 15+)",sources,Global Findex database,28
+fin14a.2,"Reason for not having a mobile money account: mobile money agents are too far away, men (% age 15+)",sources,Global Findex database,28
+fin14a.3,"Reason for not having a mobile money account: mobile money agents are too far away, young (% ages 15-24)",sources,Global Findex database,28
+fin14a.4,"Reason for not having a mobile money account: mobile money agents are too far away, older (% age 25+)",sources,Global Findex database,28
+fin14a.5,"Reason for not having a mobile money account: mobile money agents are too far away, primary education or less (% age 15+)",sources,Global Findex database,28
+fin14a.6,"Reason for not having a mobile money account: mobile money agents are too far away, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin14a.7,"Reason for not having a mobile money account: mobile money agents are too far away, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin14a.8,"Reason for not having a mobile money account: mobile money agents are too far away, richest 60% (% age 15+)",sources,Global Findex database,28
+fin14a.9,"Reason for not having a mobile money account: mobile money agents are too far away, rural (% age 15+)",sources,Global Findex database,28
+fin14b,Reason for not having a mobile money account: available mobile money products are too expensive (% age 15+),sources,Global Findex database,28
+fin14b.1,"Reason for not having a mobile money account: available mobile money products are too expensive, women (% age 15+)",sources,Global Findex database,28
+fin14b.10,"Reason for not having a mobile money account: available mobile money products are too expensive, urban (% age 15+)",sources,Global Findex database,28
+fin14b.11,"Reason for not having a mobile money account: available mobile money products are too expensive, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin14b.12,"Reason for not having a mobile money account: available mobile money products are too expensive, in laborforce (% age 15+)",sources,Global Findex database,28
+fin14b.2,"Reason for not having a mobile money account: available mobile money products are too expensive, men (% age 15+)",sources,Global Findex database,28
+fin14b.3,"Reason for not having a mobile money account: available mobile money products are too expensive, young (% ages 15-24)",sources,Global Findex database,28
+fin14b.4,"Reason for not having a mobile money account: available mobile money products are too expensive, older (% age 25+)",sources,Global Findex database,28
+fin14b.5,"Reason for not having a mobile money account: available mobile money products are too expensive, primary education or less (% age 15+)",sources,Global Findex database,28
+fin14b.6,"Reason for not having a mobile money account: available mobile money products are too expensive, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin14b.7,"Reason for not having a mobile money account: available mobile money products are too expensive, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin14b.8,"Reason for not having a mobile money account: available mobile money products are too expensive, richest 60% (% age 15+)",sources,Global Findex database,28
+fin14b.9,"Reason for not having a mobile money account: available mobile money products are too expensive, rural (% age 15+)",sources,Global Findex database,28
+fin14c,Reason for not having a mobile money account: don't have the necessary documentation (% age 15+),sources,Global Findex database,28
+fin14c.1,"Reason for not having a mobile money account: don't have the necessary documentation, women (% age 15+)",sources,Global Findex database,28
+fin14c.10,"Reason for not having a mobile money account: don't have the necessary documentation, urban (% age 15+)",sources,Global Findex database,28
+fin14c.11,"Reason for not having a mobile money account: don't have the necessary documentation, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin14c.12,"Reason for not having a mobile money account: don't have the necessary documentation, in laborforce (% age 15+)",sources,Global Findex database,28
+fin14c.2,"Reason for not having a mobile money account: don't have the necessary documentation, men (% age 15+)",sources,Global Findex database,28
+fin14c.3,"Reason for not having a mobile money account: don't have the necessary documentation, young (% ages 15-24)",sources,Global Findex database,28
+fin14c.4,"Reason for not having a mobile money account: don't have the necessary documentation, older (% age 25+)",sources,Global Findex database,28
+fin14c.5,"Reason for not having a mobile money account: don't have the necessary documentation, primary education or less (% age 15+)",sources,Global Findex database,28
+fin14c.6,"Reason for not having a mobile money account: don't have the necessary documentation, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin14c.7,"Reason for not having a mobile money account: don't have the necessary documentation, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin14c.8,"Reason for not having a mobile money account: don't have the necessary documentation, richest 60% (% age 15+)",sources,Global Findex database,28
+fin14c.9,"Reason for not having a mobile money account: don't have the necessary documentation, rural (% age 15+)",sources,Global Findex database,28
+fin14d,Reason for not having a mobile money account: don't have enough money to use a mobile money account (% age 15+),sources,Global Findex database,28
+fin14d.1,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, women (% age 15+)",sources,Global Findex database,28
+fin14d.10,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, urban (% age 15+)",sources,Global Findex database,28
+fin14d.11,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin14d.12,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin14d.2,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, men (% age 15+)",sources,Global Findex database,28
+fin14d.3,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+fin14d.4,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, older (% age 25+)",sources,Global Findex database,28
+fin14d.5,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin14d.6,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin14d.7,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin14d.8,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin14d.9,"Reason for not having a mobile money account: don't have enough money to use a mobile money account, rural (% age 15+)",sources,Global Findex database,28
+fin14d.s,"Reason for not having a mobile money account: don't have enough money to use a mobile money account (% without an account, age 15+)",sources,Global Findex database,28
+fin14q1,SMEs with at least one female owner with an outstanding loan or line of credit,sources,G20 Financial Inclusion Indicators,33
+fin14q2,SMEs with an outstanding loan or line of credit,sources,G20 Financial Inclusion Indicators,33
+fin15,Used an agent or someone else to make a mobile money payment (% age 15+),sources,Global Findex database,28
+fin15.1,"Used an agent or someone else to make a mobile money payment, women (% age 15+)",sources,Global Findex database,28
+fin15.10,"Used an agent or someone else to make a mobile money payment, urban (% age 15+)",sources,Global Findex database,28
+fin15.11,"Used an agent or someone else to make a mobile money payment, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin15.12,"Used an agent or someone else to make a mobile money payment, in laborforce (% age 15+)",sources,Global Findex database,28
+fin15.2,"Used an agent or someone else to make a mobile money payment, men (% age 15+)",sources,Global Findex database,28
+fin15.3,"Used an agent or someone else to make a mobile money payment, young (% ages 15-24)",sources,Global Findex database,28
+fin15.4,"Used an agent or someone else to make a mobile money payment, older (% age 25+)",sources,Global Findex database,28
+fin15.5,"Used an agent or someone else to make a mobile money payment, primary education or less (% age 15+)",sources,Global Findex database,28
+fin15.6,"Used an agent or someone else to make a mobile money payment, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin15.7,"Used an agent or someone else to make a mobile money payment, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin15.8,"Used an agent or someone else to make a mobile money payment, richest 60% (% age 15+)",sources,Global Findex database,28
+fin15.9,"Used an agent or someone else to make a mobile money payment, rural (% age 15+)",sources,Global Findex database,28
+fin15q1,SMEs with at least one female owner with an account at a formal financial institution,sources,G20 Financial Inclusion Indicators,33
+fin15q2,SMEs with an account at a formal financial institution,sources,G20 Financial Inclusion Indicators,33
+fin16,Ever had a mobile money account (% age 15+),sources,Global Findex database,28
+fin16.1,"Ever had a mobile money account, women (% age 15+)",sources,Global Findex database,28
+fin16.10,"Ever had a mobile money account, urban (% age 15+)",sources,Global Findex database,28
+fin16.11,"Ever had a mobile money account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin16.12,"Ever had a mobile money account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin16.2,"Ever had a mobile money account, men (% age 15+)",sources,Global Findex database,28
+fin16.3,"Ever had a mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+fin16.4,"Ever had a mobile money account, older (% age 25+)",sources,Global Findex database,28
+fin16.5,"Ever had a mobile money account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin16.6,"Ever had a mobile money account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin16.7,"Ever had a mobile money account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin16.8,"Ever had a mobile money account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin16.9,"Ever had a mobile money account, rural (% age 15+)",sources,Global Findex database,28
+fin16_t_a,Saved for old age (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_1,"Saved for old age, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_2,"Saved for old age, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_3,"Saved for old age, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_4,"Saved for old age, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_5,Saved for old age (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_6,Saved for old age (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin16_t_a_7,Saved for old age (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin17a,Saved at a bank or similar financial institution (% age 15+),sources,Gender Statistics,14
+fin17a.1,"Saved at a bank or similar financial institution, women (% age 15+)",sources,Gender Statistics,14
+fin17a.10,"Saved at a bank or similar financial institution, urban (% age 15+)",sources,Global Findex database,28
+fin17a.11,"Saved at a bank or similar financial institution, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17a.12,"Saved at a bank or similar financial institution, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17a.17a1.d,Saved at a financial institution or using a mobile money account (% age 15+),sources,Gender Statistics,14
+fin17a.17a1.d.1,"Saved at a financial institution or using a mobile money account, female (% age 15+)",sources,Gender Statistics,14
+fin17a.17a1.d.10,"Saved at a financial institution or using a mobile money account, urban (% age 15+)",sources,Global Findex database,28
+fin17a.17a1.d.11,"Saved at a financial institution or using a mobile money account, out of labor force (% age 15+)",sources,Global Findex database,28
+fin17a.17a1.d.12,"Saved at a financial institution or using a mobile money account, in labor force (% age 15+)",sources,Global Findex database,28
+fin17a.17a1.d.2,"Saved at a financial institution or using a mobile money account, male (% age 15+)",sources,Gender Statistics,14
+fin17a.17a1.d.3,"Saved at a financial institution or using a mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+fin17a.17a1.d.4,"Saved at a financial institution or using a mobile money account, older (% age 25+)",sources,Global Findex database,28
+fin17a.17a1.d.5,"Saved at a financial institution or using a mobile money account, primary education or less (% ages 15+)",sources,Global Findex database,28
+fin17a.17a1.d.6,"Saved at a financial institution or using a mobile money account, secondary education or more (% ages 15+)",sources,Global Findex database,28
+fin17a.17a1.d.7,"Saved at a financial institution or using a mobile money account, income, poorest 40% (% ages 15+)",sources,Global Findex database,28
+fin17a.17a1.d.8,"Saved at a financial institution or using a mobile money account, income, richest 60% (% ages 15+)",sources,Global Findex database,28
+fin17a.17a1.d.9,"Saved at a financial institution or using a mobile money account, rural (% age 15+)",sources,Global Findex database,28
+fin17a.2,"Saved at a bank or similar financial institution, men (% age 15+)",sources,Gender Statistics,14
+fin17a.3,"Saved at a bank or similar financial institution, young (% ages 15-24)",sources,Global Findex database,28
+fin17a.4,"Saved at a bank or similar financial institution, older (% age 25+)",sources,Global Findex database,28
+fin17a.5,"Saved at a bank or similar financial institution, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17a.6,"Saved at a bank or similar financial institution, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17a.7,"Saved at a bank or similar financial institution, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17a.8,"Saved at a bank or similar financial institution, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17a.9,"Saved at a bank or similar financial institution, rural (% age 15+)",sources,Global Findex database,28
+fin17a_t_a,Saved at a financial institution (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_1,"Saved at a financial institution, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_2,"Saved at a financial institution, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_3,"Saved at a financial institution, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_4,"Saved at a financial institution, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_5,Saved at a financial institution (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_6,Saved at a financial institution (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin17a_t_a_7,Saved at a financial institution (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin17b,Saved money using a mobile money account (% age 15+),sources,Gender Statistics,14
+fin17b.1,"Saved money using a mobile money account, women (% age 15+)",sources,Gender Statistics,14
+fin17b.10,"Saved money using a mobile money account, urban (% age 15+)",sources,Global Findex database,28
+fin17b.11,"Saved money using a mobile money account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17b.12,"Saved money using a mobile money account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17b.2,"Saved money using a mobile money account, men (% age 15+)",sources,Gender Statistics,14
+fin17b.3,"Saved money using a mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+fin17b.4,"Saved money using a mobile money account, older (% age 25+)",sources,Global Findex database,28
+fin17b.5,"Saved money using a mobile money account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17b.6,"Saved money using a mobile money account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17b.7,"Saved money using a mobile money account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17b.8,"Saved money using a mobile money account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17b.9,"Saved money using a mobile money account, rural (% age 15+)",sources,Global Findex database,28
+fin17c,Saved using a savings club or a person outside the family (% age 15+),sources,Gender Statistics,14
+fin17c.1,"Saved using a savings club or a person outside the family, women (% age 15+)",sources,Gender Statistics,14
+fin17c.10,"Saved using a savings club or a person outside the family, urban (% age 15+)",sources,Global Findex database,28
+fin17c.11,"Saved using a savings club or a person outside the family, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17c.12,"Saved using a savings club or a person outside the family, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17c.2,"Saved using a savings club or a person outside the family, men (% age 15+)",sources,Gender Statistics,14
+fin17c.3,"Saved using a savings club or a person outside the family, young (% ages 15-24)",sources,Global Findex database,28
+fin17c.4,"Saved using a savings club or a person outside the family, older (% age 25+)",sources,Global Findex database,28
+fin17c.5,"Saved using a savings club or a person outside the family, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17c.6,"Saved using a savings club or a person outside the family, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17c.7,"Saved using a savings club or a person outside the family, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17c.8,"Saved using a savings club or a person outside the family, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17c.9,"Saved using a savings club or a person outside the family, rural (% age 15+)",sources,Global Findex database,28
+fin17dlm,"Saved or set aside money into an account, less than once a month (% age 15+)",sources,Global Findex database,28
+fin17dlm.1,"Saved or set aside money into an account, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin17dlm.10,"Saved or set aside money into an account, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin17dlm.11,"Saved or set aside money into an account, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17dlm.12,"Saved or set aside money into an account, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17dlm.2,"Saved or set aside money into an account, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin17dlm.3,"Saved or set aside money into an account, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin17dlm.4,"Saved or set aside money into an account, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin17dlm.5,"Saved or set aside money into an account, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17dlm.6,"Saved or set aside money into an account, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17dlm.7,"Saved or set aside money into an account, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17dlm.8,"Saved or set aside money into an account, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17dlm.9,"Saved or set aside money into an account, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin17dlm.s,"Saved or set aside money into an account, less than once a month (% people who save)",sources,Global Findex database,28
+fin17dm,"Saved or set aside money into an account, monthly (% age 15+)",sources,Gender Statistics,14
+fin17dm.1,"Saved or set aside money into an account, monthly, women (% age 15+)",sources,Gender Statistics,14
+fin17dm.10,"Saved or set aside money into an account, monthly, urban (% age 15+)",sources,Global Findex database,28
+fin17dm.11,"Saved or set aside money into an account, monthly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17dm.12,"Saved or set aside money into an account, monthly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17dm.2,"Saved or set aside money into an account, monthly, men (% age 15+)",sources,Gender Statistics,14
+fin17dm.3,"Saved or set aside money into an account, monthly, young (% ages 15-24)",sources,Global Findex database,28
+fin17dm.4,"Saved or set aside money into an account, monthly, older (% age 25+)",sources,Global Findex database,28
+fin17dm.5,"Saved or set aside money into an account, monthly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17dm.6,"Saved or set aside money into an account, monthly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17dm.7,"Saved or set aside money into an account, monthly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17dm.8,"Saved or set aside money into an account, monthly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17dm.9,"Saved or set aside money into an account, monthly, rural (% age 15+)",sources,Global Findex database,28
+fin17dm.s,"Saved or set aside money into an account, monthly (% people who save)",sources,Global Findex database,28
+fin17dw,"Saved or set aside money into an account, weekly (% age 15+)",sources,Global Findex database,28
+fin17dw.1,"Saved or set aside money into an account, weekly, women (% age 15+)",sources,Global Findex database,28
+fin17dw.10,"Saved or set aside money into an account, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin17dw.11,"Saved or set aside money into an account, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17dw.12,"Saved or set aside money into an account, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17dw.2,"Saved or set aside money into an account, weekly, men (% age 15+)",sources,Global Findex database,28
+fin17dw.3,"Saved or set aside money into an account, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin17dw.4,"Saved or set aside money into an account, weekly, older (% age 25+)",sources,Global Findex database,28
+fin17dw.5,"Saved or set aside money into an account, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17dw.6,"Saved or set aside money into an account, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17dw.7,"Saved or set aside money into an account, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17dw.8,"Saved or set aside money into an account, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17dw.9,"Saved or set aside money into an account, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin17e,Received interest or additional money for savings in account in the past 12 months (% age 15+),sources,Global Findex database,28
+fin17e.1,"Received interest or additional money for savings in account in the past 12 months, women (% age 15+)",sources,Global Findex database,28
+fin17e.10,"Received interest or additional money for savings in account in the past 12 months, urban (% age 15+)",sources,Global Findex database,28
+fin17e.11,"Received interest or additional money for savings in account in the past 12 months, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17e.12,"Received interest or additional money for savings in account in the past 12 months, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17e.2,"Received interest or additional money for savings in account in the past 12 months, men (% age 15+)",sources,Global Findex database,28
+fin17e.3,"Received interest or additional money for savings in account in the past 12 months, young (% ages 15-24)",sources,Global Findex database,28
+fin17e.4,"Received interest or additional money for savings in account in the past 12 months, older (% age 25+)",sources,Global Findex database,28
+fin17e.5,"Received interest or additional money for savings in account in the past 12 months, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17e.6,"Received interest or additional money for savings in account in the past 12 months, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17e.7,"Received interest or additional money for savings in account in the past 12 months, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17e.8,"Received interest or additional money for savings in account in the past 12 months, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17e.9,"Received interest or additional money for savings in account in the past 12 months, rural (% age 15+)",sources,Global Findex database,28
+fin17f,Saved for old age (% age 15+),sources,Global Findex database,28
+fin17f.1,"Saved for old age, women (% age 15+)",sources,Global Findex database,28
+fin17f.10,"Saved for old age, urban (% age 15+)",sources,Global Findex database,28
+fin17f.11,"Saved for old age, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin17f.12,"Saved for old age, in laborforce (% age 15+)",sources,Global Findex database,28
+fin17f.2,"Saved for old age, men (% age 15+)",sources,Global Findex database,28
+fin17f.3,"Saved for old age, young (% ages 15-24)",sources,Global Findex database,28
+fin17f.4,"Saved for old age, older (% age 25+)",sources,Global Findex database,28
+fin17f.5,"Saved for old age, primary education or less (% age 15+)",sources,Global Findex database,28
+fin17f.6,"Saved for old age, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin17f.7,"Saved for old age, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin17f.8,"Saved for old age, richest 60% (% age 15+)",sources,Global Findex database,28
+fin17f.9,"Saved for old age, rural (% age 15+)",sources,Global Findex database,28
+fin19,Made regular payments to insurance agent or company (% age 15+),sources,Gender Statistics,14
+fin19.1,"Made regular payments to insurance agent or company , women (% age 15+)",sources,Gender Statistics,14
+fin19.10,"Made regular payments to insurance agent or company , urban (% age 15+)",sources,Global Findex database,28
+fin19.11,"Made regular payments to insurance agent or company , out of laborforce (% age 15+)",sources,Global Findex database,28
+fin19.12,"Made regular payments to insurance agent or company , in laborforce (% age 15+)",sources,Global Findex database,28
+fin19.2,"Made regular payments to insurance agent or company , men (% age 15+)",sources,Gender Statistics,14
+fin19.3,"Made regular payments to insurance agent or company , young (% ages 15-24)",sources,Global Findex database,28
+fin19.4,"Made regular payments to insurance agent or company , older (% age 25+)",sources,Global Findex database,28
+fin19.5,"Made regular payments to insurance agent or company , primary education or less (% age 15+)",sources,Global Findex database,28
+fin19.6,"Made regular payments to insurance agent or company , secondary education or more (% age 15+)",sources,Global Findex database,28
+fin19.7,"Made regular payments to insurance agent or company , poorest 40% (% age 15+)",sources,Global Findex database,28
+fin19.8,"Made regular payments to insurance agent or company , richest 60% (% age 15+)",sources,Global Findex database,28
+fin19.9,"Made regular payments to insurance agent or company , rural (% age 15+)",sources,Global Findex database,28
+fin2.t.d,Owns a debit card (% age 15+),sources,Gender Statistics,14
+fin2.t.d.1,"Owns a debit card, female (% age 15+)",sources,Gender Statistics,14
+fin2.t.d.10,"Owns a debit card, urban (% age 15+)",sources,Global Findex database,28
+fin2.t.d.11,"Owns a debit card, out of labor force (% age 15+)",sources,Global Findex database,28
+fin2.t.d.12,"Owns a debit card, in labor force (% age 15+)",sources,Global Findex database,28
+fin2.t.d.2,"Owns a debit card, male (% age 15+)",sources,Gender Statistics,14
+fin2.t.d.3,"Owns a debit card, young (% ages 15-24)",sources,Global Findex database,28
+fin2.t.d.4,"Owns a debit card, older (% age 25+)",sources,Global Findex database,28
+fin2.t.d.5,"Owns a debit card, primary education or less (% ages 15+)",sources,Global Findex database,28
+fin2.t.d.6,"Owns a debit card, secondary education or more (% ages 15+)",sources,Global Findex database,28
+fin2.t.d.7,"Owns a debit card, income, poorest 40% (% ages 15+)",sources,Global Findex database,28
+fin2.t.d.8,"Owns a debit card, income, richest 60% (% ages 15+)",sources,Global Findex database,28
+fin2.t.d.9,"Owns a debit card, rural (% age 15+)",sources,Global Findex database,28
+fin20,Applied for a loan using a mobile phone (% age 15+),sources,Global Findex database,28
+fin20.1,"Applied for a loan using a mobile phone , women (% age 15+)",sources,Global Findex database,28
+fin20.10,"Applied for a loan using a mobile phone , urban (% age 15+)",sources,Global Findex database,28
+fin20.11,"Applied for a loan using a mobile phone , out of laborforce (% age 15+)",sources,Global Findex database,28
+fin20.12,"Applied for a loan using a mobile phone , in laborforce (% age 15+)",sources,Global Findex database,28
+fin20.2,"Applied for a loan using a mobile phone , men (% age 15+)",sources,Global Findex database,28
+fin20.3,"Applied for a loan using a mobile phone , young (% ages 15-24)",sources,Global Findex database,28
+fin20.4,"Applied for a loan using a mobile phone , older (% age 25+)",sources,Global Findex database,28
+fin20.5,"Applied for a loan using a mobile phone , primary education or less (% age 15+)",sources,Global Findex database,28
+fin20.6,"Applied for a loan using a mobile phone , secondary education or more (% age 15+)",sources,Global Findex database,28
+fin20.7,"Applied for a loan using a mobile phone , poorest 40% (% age 15+)",sources,Global Findex database,28
+fin20.8,"Applied for a loan using a mobile phone , richest 60% (% age 15+)",sources,Global Findex database,28
+fin20.9,"Applied for a loan using a mobile phone , rural (% age 15+)",sources,Global Findex database,28
+fin21,Received loan using a mobile phone (% age 15+),sources,Global Findex database,28
+fin21.1,"Received loan using a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin21.10,"Received loan using a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin21.11,"Received loan using a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin21.12,"Received loan using a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin21.2,"Received loan using a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin21.3,"Received loan using a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin21.4,"Received loan using a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin21.5,"Received loan using a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin21.6,"Received loan using a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin21.7,"Received loan using a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin21.8,"Received loan using a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin21.9,"Received loan using a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin22a,Borrowed from a formal bank or similar financial institution (% age 15+),sources,Gender Statistics,14
+fin22a.1,"Borrowed from a formal bank or similar financial institution, women (% age 15+)",sources,Gender Statistics,14
+fin22a.10,"Borrowed from a formal bank or similar financial institution, urban (% age 15+)",sources,Global Findex database,28
+fin22a.11,"Borrowed from a formal bank or similar financial institution, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22a.12,"Borrowed from a formal bank or similar financial institution, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22a.2,"Borrowed from a formal bank or similar financial institution, men (% age 15+)",sources,Gender Statistics,14
+fin22a.22a1.22g.d,Borrowed any money from a formal bank or similar financial institution or using a mobile money account (% age 15+),sources,Gender Statistics,14
+fin22a.22a1.22g.d.1,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, women (% age 15+)",sources,Gender Statistics,14
+fin22a.22a1.22g.d.10,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, urban (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.11,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.12,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.2,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, men (% age 15+)",sources,Gender Statistics,14
+fin22a.22a1.22g.d.3,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+fin22a.22a1.22g.d.4,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, older (% age 25+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.5,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.6,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.7,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.8,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22a.22a1.22g.d.9,"Borrowed any money from a formal bank or similar financial institution or using a mobile money account, rural (% age 15+)",sources,Global Findex database,28
+fin22a.3,"Borrowed from a formal bank or similar financial institution, young (% ages 15-24)",sources,Global Findex database,28
+fin22a.4,"Borrowed from a formal bank or similar financial institution, older (% age 25+)",sources,Global Findex database,28
+fin22a.5,"Borrowed from a formal bank or similar financial institution, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22a.6,"Borrowed from a formal bank or similar financial institution, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22a.7,"Borrowed from a formal bank or similar financial institution, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22a.8,"Borrowed from a formal bank or similar financial institution, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22a.9,"Borrowed from a formal bank or similar financial institution, rural (% age 15+)",sources,Global Findex database,28
+fin22a_1,Borrowed from a mobile money provider (% age 15+),sources,Global Findex database,28
+fin22a_1.1,"Borrowed from a mobile money provider, women (% age 15+)",sources,Global Findex database,28
+fin22a_1.10,"Borrowed from a mobile money provider, urban (% age 15+)",sources,Global Findex database,28
+fin22a_1.11,"Borrowed from a mobile money provider, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22a_1.12,"Borrowed from a mobile money provider, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22a_1.2,"Borrowed from a mobile money provider, men (% age 15+)",sources,Global Findex database,28
+fin22a_1.3,"Borrowed from a mobile money provider, young (% ages 15-24)",sources,Global Findex database,28
+fin22a_1.4,"Borrowed from a mobile money provider, older (% age 25+)",sources,Global Findex database,28
+fin22a_1.5,"Borrowed from a mobile money provider, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22a_1.6,"Borrowed from a mobile money provider, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22a_1.7,"Borrowed from a mobile money provider, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22a_1.8,"Borrowed from a mobile money provider, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22a_1.9,"Borrowed from a mobile money provider, rural (% age 15+)",sources,Global Findex database,28
+fin22a_t_d,Borrowed from a financial institution or used a credit card (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_1,"Borrowed from a financial institution or used a credit card, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_2,"Borrowed from a financial institution or used a credit card, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_3,"Borrowed from a financial institution or used a credit card, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_4,"Borrowed from a financial institution or used a credit card, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_5,Borrowed from a financial institution or used a credit card (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_6,Borrowed from a financial institution or used a credit card (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin22a_t_d_7,Borrowed from a financial institution or used a credit card (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin22b,Borrowed from family or friends (% age 15+),sources,Gender Statistics,14
+fin22b.1,"Borrowed from family or friends, women (% age 15+)",sources,Gender Statistics,14
+fin22b.10,"Borrowed from family or friends, urban (% age 15+)",sources,Global Findex database,28
+fin22b.11,"Borrowed from family or friends, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22b.12,"Borrowed from family or friends, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22b.2,"Borrowed from family or friends, men (% age 15+)",sources,Gender Statistics,14
+fin22b.3,"Borrowed from family or friends, young (% ages 15-24)",sources,Global Findex database,28
+fin22b.4,"Borrowed from family or friends, older (% age 25+)",sources,Global Findex database,28
+fin22b.5,"Borrowed from family or friends, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22b.6,"Borrowed from family or friends, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22b.7,"Borrowed from family or friends, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22b.8,"Borrowed from family or friends, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22b.9,"Borrowed from family or friends, rural (% age 15+)",sources,Global Findex database,28
+fin22c,Borrowed from a savings club (% age 15+),sources,Gender Statistics,14
+fin22c.1,"Borrowed from a savings club, women (% age 15+)",sources,Gender Statistics,14
+fin22c.10,"Borrowed from a savings club, urban (% age 15+)",sources,Global Findex database,28
+fin22c.11,"Borrowed from a savings club, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22c.12,"Borrowed from a savings club, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22c.2,"Borrowed from a savings club, men (% age 15+)",sources,Gender Statistics,14
+fin22c.3,"Borrowed from a savings club, young (% ages 15-24)",sources,Global Findex database,28
+fin22c.4,"Borrowed from a savings club, older (% age 25+)",sources,Global Findex database,28
+fin22c.5,"Borrowed from a savings club, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22c.6,"Borrowed from a savings club, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22c.7,"Borrowed from a savings club, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22c.8,"Borrowed from a savings club, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22c.9,"Borrowed from a savings club, rural (% age 15+)",sources,Global Findex database,28
+fin22d,Borrowed for health or medical purposes (% age 15+),sources,Gender Statistics,14
+fin22d.1,"Borrowed for health or medical purposes, women (% age 15+)",sources,Gender Statistics,14
+fin22d.10,"Borrowed for health or medical purposes, urban (% age 15+)",sources,Global Findex database,28
+fin22d.11,"Borrowed for health or medical purposes, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22d.12,"Borrowed for health or medical purposes, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22d.2,"Borrowed for health or medical purposes, men (% age 15+)",sources,Gender Statistics,14
+fin22d.3,"Borrowed for health or medical purposes, young (% ages 15-24)",sources,Global Findex database,28
+fin22d.4,"Borrowed for health or medical purposes, older (% age 25+)",sources,Global Findex database,28
+fin22d.5,"Borrowed for health or medical purposes, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22d.6,"Borrowed for health or medical purposes, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22d.7,"Borrowed for health or medical purposes, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22d.8,"Borrowed for health or medical purposes, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22d.9,"Borrowed for health or medical purposes, rural (% age 15+)",sources,Global Findex database,28
+fin22e,Borrowed to start or operate a business (% age 15+),sources,Gender Statistics,14
+fin22e.1,"Borrowed to start or operate a business, women (% age 15+)",sources,Gender Statistics,14
+fin22e.10,"Borrowed to start or operate a business, urban (% age 15+)",sources,Global Findex database,28
+fin22e.11,"Borrowed to start or operate a business, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22e.12,"Borrowed to start or operate a business, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22e.2,"Borrowed to start or operate a business, men (% age 15+)",sources,Gender Statistics,14
+fin22e.3,"Borrowed to start or operate a business, young (% ages 15-24)",sources,Global Findex database,28
+fin22e.4,"Borrowed to start or operate a business, older (% age 25+)",sources,Global Findex database,28
+fin22e.5,"Borrowed to start or operate a business, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22e.6,"Borrowed to start or operate a business, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22e.7,"Borrowed to start or operate a business, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22e.8,"Borrowed to start or operate a business, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22e.9,"Borrowed to start or operate a business, rural (% age 15+)",sources,Global Findex database,28
+fin22f,Purchased food on credit (% age 15+),sources,Gender Statistics,14
+fin22f.1,"Purchased food on credit, women (% age 15+)",sources,Gender Statistics,14
+fin22f.10,"Purchased food on credit, urban (% age 15+)",sources,Global Findex database,28
+fin22f.11,"Purchased food on credit, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22f.12,"Purchased food on credit, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22f.2,"Purchased food on credit, men (% age 15+)",sources,Gender Statistics,14
+fin22f.3,"Purchased food on credit, young (% ages 15-24)",sources,Global Findex database,28
+fin22f.4,"Purchased food on credit, older (% age 25+)",sources,Global Findex database,28
+fin22f.5,"Purchased food on credit, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22f.6,"Purchased food on credit, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22f.7,"Purchased food on credit, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22f.8,"Purchased food on credit, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22f.9,"Purchased food on credit, rural (% age 15+)",sources,Global Findex database,28
+fin22g,Used a credit card (% age 15+),sources,Gender Statistics,14
+fin22g.1,"Used a credit card, women (% age 15+)",sources,Gender Statistics,14
+fin22g.10,"Used a credit card, urban (% age 15+)",sources,Global Findex database,28
+fin22g.11,"Used a credit card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22g.12,"Used a credit card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22g.2,"Used a credit card, men (% age 15+)",sources,Gender Statistics,14
+fin22g.3,"Used a credit card, young (% ages 15-24)",sources,Global Findex database,28
+fin22g.4,"Used a credit card, older (% age 25+)",sources,Global Findex database,28
+fin22g.5,"Used a credit card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22g.6,"Used a credit card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22g.7,"Used a credit card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22g.8,"Used a credit card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22g.9,"Used a credit card, rural (% age 15+)",sources,Global Findex database,28
+fin22h,Paid off all credit card balances in full by their due date (% age 15+),sources,Gender Statistics,14
+fin22h.1,"Paid off all credit card balances in full by their due date, women (% age 15+)",sources,Gender Statistics,14
+fin22h.10,"Paid off all credit card balances in full by their due date, urban (% age 15+)",sources,Global Findex database,28
+fin22h.11,"Paid off all credit card balances in full by their due date, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin22h.12,"Paid off all credit card balances in full by their due date, in laborforce (% age 15+)",sources,Global Findex database,28
+fin22h.2,"Paid off all credit card balances in full by their due date, men (% age 15+)",sources,Gender Statistics,14
+fin22h.3,"Paid off all credit card balances in full by their due date, young (% ages 15-24)",sources,Global Findex database,28
+fin22h.4,"Paid off all credit card balances in full by their due date, older (% age 25+)",sources,Global Findex database,28
+fin22h.5,"Paid off all credit card balances in full by their due date, primary education or less (% age 15+)",sources,Global Findex database,28
+fin22h.6,"Paid off all credit card balances in full by their due date, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin22h.7,"Paid off all credit card balances in full by their due date, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin22h.8,"Paid off all credit card balances in full by their due date, richest 60% (% age 15+)",sources,Global Findex database,28
+fin22h.9,"Paid off all credit card balances in full by their due date, rural (% age 15+)",sources,Global Findex database,28
+fin22h.s,"Paid off all credit card balances in full by their due date (% who used a credit card, age 15+)",sources,Global Findex database,28
+fin24aN,Coming up with emergency funds in 30 days: not possible (% age 15+),sources,Gender Statistics,14
+fin24aN.1,"Coming up with emergency funds in 30 days: not possible, women (% age 15+)",sources,Gender Statistics,14
+fin24aN.10,"Coming up with emergency funds in 30 days: not possible, urban (% age 15+)",sources,Global Findex database,28
+fin24aN.11,"Coming up with emergency funds in 30 days: not possible, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aN.12,"Coming up with emergency funds in 30 days: not possible, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aN.2,"Coming up with emergency funds in 30 days: not possible, men (% age 15+)",sources,Gender Statistics,14
+fin24aN.3,"Coming up with emergency funds in 30 days: not possible, young (% ages 15-24)",sources,Global Findex database,28
+fin24aN.4,"Coming up with emergency funds in 30 days: not possible, older (% age 25+)",sources,Global Findex database,28
+fin24aN.5,"Coming up with emergency funds in 30 days: not possible, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aN.6,"Coming up with emergency funds in 30 days: not possible, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aN.7,"Coming up with emergency funds in 30 days: not possible, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aN.8,"Coming up with emergency funds in 30 days: not possible, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aN.9,"Coming up with emergency funds in 30 days: not possible, rural (% age 15+)",sources,Global Findex database,28
+fin24aND,Coming up with emergency funds in 30 days: possible and not difficult at all (% age 15+),sources,Gender Statistics,14
+fin24aND.1,"Coming up with emergency funds in 30 days: possible and not difficult at all, women (% age 15+)",sources,Gender Statistics,14
+fin24aND.10,"Coming up with emergency funds in 30 days: possible and not difficult at all, urban (% age 15+)",sources,Global Findex database,28
+fin24aND.11,"Coming up with emergency funds in 30 days: possible and not difficult at all, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aND.12,"Coming up with emergency funds in 30 days: possible and not difficult at all, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aND.2,"Coming up with emergency funds in 30 days: possible and not difficult at all, men (% age 15+)",sources,Gender Statistics,14
+fin24aND.3,"Coming up with emergency funds in 30 days: possible and not difficult at all, young (% ages 15-24)",sources,Global Findex database,28
+fin24aND.4,"Coming up with emergency funds in 30 days: possible and not difficult at all, older (% age 25+)",sources,Global Findex database,28
+fin24aND.5,"Coming up with emergency funds in 30 days: possible and not difficult at all, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aND.6,"Coming up with emergency funds in 30 days: possible and not difficult at all, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aND.7,"Coming up with emergency funds in 30 days: possible and not difficult at all, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aND.8,"Coming up with emergency funds in 30 days: possible and not difficult at all, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aND.9,"Coming up with emergency funds in 30 days: possible and not difficult at all, rural (% age 15+)",sources,Global Findex database,28
+fin24aP,Coming up with emergency funds in 30 days: possible (% age 15+),sources,Gender Statistics,14
+fin24aP.1,"Coming up with emergency funds in 30 days: possible, women (% age 15+)",sources,Gender Statistics,14
+fin24aP.10,"Coming up with emergency funds in 30 days: possible, urban (% age 15+)",sources,Global Findex database,28
+fin24aP.11,"Coming up with emergency funds in 30 days: possible, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aP.12,"Coming up with emergency funds in 30 days: possible, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aP.2,"Coming up with emergency funds in 30 days: possible, men (% age 15+)",sources,Gender Statistics,14
+fin24aP.3,"Coming up with emergency funds in 30 days: possible, young (% ages 15-24)",sources,Global Findex database,28
+fin24aP.4,"Coming up with emergency funds in 30 days: possible, older (% age 25+)",sources,Global Findex database,28
+fin24aP.5,"Coming up with emergency funds in 30 days: possible, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aP.6,"Coming up with emergency funds in 30 days: possible, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aP.7,"Coming up with emergency funds in 30 days: possible, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aP.8,"Coming up with emergency funds in 30 days: possible, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aP.9,"Coming up with emergency funds in 30 days: possible, rural (% age 15+)",sources,Global Findex database,28
+fin24aSD,Coming up with emergency funds in 30 days: possible and somewhat difficult (% age 15+),sources,Gender Statistics,14
+fin24aSD.1,"Coming up with emergency funds in 30 days: possible and somewhat difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24aSD.10,"Coming up with emergency funds in 30 days: possible and somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24aSD.11,"Coming up with emergency funds in 30 days: possible and somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aSD.12,"Coming up with emergency funds in 30 days: possible and somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aSD.2,"Coming up with emergency funds in 30 days: possible and somewhat difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24aSD.3,"Coming up with emergency funds in 30 days: possible and somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24aSD.4,"Coming up with emergency funds in 30 days: possible and somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24aSD.5,"Coming up with emergency funds in 30 days: possible and somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aSD.6,"Coming up with emergency funds in 30 days: possible and somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aSD.7,"Coming up with emergency funds in 30 days: possible and somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aSD.8,"Coming up with emergency funds in 30 days: possible and somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aSD.9,"Coming up with emergency funds in 30 days: possible and somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND,Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult (% age 15+),sources,Gender Statistics,14
+fin24aSD_ND.1,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24aSD_ND.10,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.11,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.12,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.2,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24aSD_ND.3,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24aSD_ND.4,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24aSD_ND.5,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.6,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.7,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.8,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aSD_ND.9,"Coming up with emergency funds in 30 days: possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24aVD,Coming up with emergency funds in 30 days: possible and very difficult (% age 15+),sources,Gender Statistics,14
+fin24aVD.1,"Coming up with emergency funds in 30 days: possible and very difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24aVD.10,"Coming up with emergency funds in 30 days: possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24aVD.11,"Coming up with emergency funds in 30 days: possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24aVD.12,"Coming up with emergency funds in 30 days: possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24aVD.2,"Coming up with emergency funds in 30 days: possible and very difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24aVD.3,"Coming up with emergency funds in 30 days: possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24aVD.4,"Coming up with emergency funds in 30 days: possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24aVD.5,"Coming up with emergency funds in 30 days: possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24aVD.6,"Coming up with emergency funds in 30 days: possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24aVD.7,"Coming up with emergency funds in 30 days: possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24aVD.8,"Coming up with emergency funds in 30 days: possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24aVD.9,"Coming up with emergency funds in 30 days: possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24ba,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income (% age 15+)",sources,Gender Statistics,14
+fin24ba.1,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, women (% age 15+)",sources,Gender Statistics,14
+fin24ba.10,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, urban (% age 15+)",sources,Global Findex database,28
+fin24ba.11,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24ba.12,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24ba.2,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, men (% age 15+)",sources,Gender Statistics,14
+fin24ba.3,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, young (% ages 15-24)",sources,Global Findex database,28
+fin24ba.4,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, older (% age 25+)",sources,Global Findex database,28
+fin24ba.5,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24ba.6,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24ba.7,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24ba.8,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24ba.9,"Less than two weeks can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, rural (% age 15+)",sources,Global Findex database,28
+fin24bb,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income (% age 15+)",sources,Gender Statistics,14
+fin24bb.1,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, women (% age 15+)",sources,Gender Statistics,14
+fin24bb.10,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, urban (% age 15+)",sources,Global Findex database,28
+fin24bb.11,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bb.12,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bb.2,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, men (% age 15+)",sources,Gender Statistics,14
+fin24bb.3,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, young (% ages 15-24)",sources,Global Findex database,28
+fin24bb.4,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, older (% age 25+)",sources,Global Findex database,28
+fin24bb.5,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bb.6,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bb.7,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bb.8,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bb.9,"About one month can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, rural (% age 15+)",sources,Global Findex database,28
+fin24bc,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income (% age 15+)",sources,Gender Statistics,14
+fin24bc.1,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, women (% age 15+)",sources,Gender Statistics,14
+fin24bc.10,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, urban (% age 15+)",sources,Global Findex database,28
+fin24bc.11,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bc.12,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bc.2,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, men (% age 15+)",sources,Gender Statistics,14
+fin24bc.3,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, young (% ages 15-24)",sources,Global Findex database,28
+fin24bc.4,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, older (% age 25+)",sources,Global Findex database,28
+fin24bc.5,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bc.6,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bc.7,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bc.8,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bc.9,"About two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, rural (% age 15+)",sources,Global Findex database,28
+fin24bd,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income (% age 15+)",sources,Gender Statistics,14
+fin24bd.1,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, women (% age 15+)",sources,Gender Statistics,14
+fin24bd.10,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, urban (% age 15+)",sources,Global Findex database,28
+fin24bd.11,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bd.12,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bd.2,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, men (% age 15+)",sources,Gender Statistics,14
+fin24bd.3,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, young (% ages 15-24)",sources,Global Findex database,28
+fin24bd.4,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, older (% age 25+)",sources,Global Findex database,28
+fin24bd.5,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bd.6,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bd.7,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bd.8,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bd.9,"More than two months can be covered using savings, borrowing, selling something, seeking help from friends and family, or other ways, in case household loses its main source of income, rural (% age 15+)",sources,Global Findex database,28
+fin24bor,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender (% age 15+)",sources,Gender Statistics,14
+fin24bor.1,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, women (% age 15+)",sources,Gender Statistics,14
+fin24bor.10,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, urban (% age 15+)",sources,Global Findex database,28
+fin24bor.11,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor.12,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor.2,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, men (% age 15+)",sources,Gender Statistics,14
+fin24bor.3,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, young (% ages 15-24)",sources,Global Findex database,28
+fin24bor.4,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, older (% age 25+)",sources,Global Findex database,28
+fin24bor.5,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bor.6,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bor.7,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bor.8,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bor.9,"Main source of emergency funds in 30 days: loan from a bank, employer, or private lender, rural (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.1,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, women (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.10,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.11,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.12,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.2,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, men (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.3,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24bor_SD_ND.4,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24bor_SD_ND.5,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.6,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.7,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.8,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bor_SD_ND.9,"Main source of emergency funds in 30 days: borrowing, possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24bor_VD,"Main source of emergency funds in 30 days: borrowing, possible and very difficult (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.1,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, women (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.10,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.11,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.12,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.2,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, men (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.3,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24bor_VD.4,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24bor_VD.5,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.6,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.7,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.8,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24bor_VD.9,"Main source of emergency funds in 30 days: borrowing, possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24c,Experienced a natural disaster or severe weather event (% age 15+),sources,Gender Statistics,14
+fin24c.1,"Experienced a natural disaster or severe weather event, women (% age 15+)",sources,Gender Statistics,14
+fin24c.10,"Experienced a natural disaster or severe weather event, urban (% age 15+)",sources,Global Findex database,28
+fin24c.11,"Experienced a natural disaster or severe weather event, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24c.12,"Experienced a natural disaster or severe weather event, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24c.2,"Experienced a natural disaster or severe weather event, men (% age 15+)",sources,Gender Statistics,14
+fin24c.3,"Experienced a natural disaster or severe weather event, young (% ages 15-24)",sources,Global Findex database,28
+fin24c.4,"Experienced a natural disaster or severe weather event, older (% age 25+)",sources,Global Findex database,28
+fin24c.5,"Experienced a natural disaster or severe weather event, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24c.6,"Experienced a natural disaster or severe weather event, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24c.7,"Experienced a natural disaster or severe weather event, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24c.8,"Experienced a natural disaster or severe weather event, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24c.9,"Experienced a natural disaster or severe weather event, rural (% age 15+)",sources,Global Findex database,28
+fin24d1,"Natural disaster in the past three years: Income lost or unable to work, by self or household member (% age 15+)",sources,Gender Statistics,14
+fin24d1.1,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, women (% age 15+)",sources,Gender Statistics,14
+fin24d1.10,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, urban (% age 15+)",sources,Global Findex database,28
+fin24d1.11,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24d1.12,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24d1.2,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, men (% age 15+)",sources,Gender Statistics,14
+fin24d1.3,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, young (% ages 15-24)",sources,Global Findex database,28
+fin24d1.4,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, older (% age 25+)",sources,Global Findex database,28
+fin24d1.5,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24d1.6,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24d1.7,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24d1.8,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24d1.9,"Natural disaster in the past three years: Income lost or unable to work, by self or household member, rural (% age 15+)",sources,Global Findex database,28
+fin24d1.s,"Natural disaster in the past three years: Income lost or unable to work, by self or household member (% experienced a natural disaster or severe weather event, age 15+)",sources,Global Findex database,28
+fin24d2,Natural disaster in the past three years: Damage to home or livestock (% age 15+),sources,Gender Statistics,14
+fin24d2.1,"Natural disaster in the past three years: Damage to home or livestock, women (% age 15+)",sources,Gender Statistics,14
+fin24d2.10,"Natural disaster in the past three years: Damage to home or livestock, urban (% age 15+)",sources,Global Findex database,28
+fin24d2.11,"Natural disaster in the past three years: Damage to home or livestock, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24d2.12,"Natural disaster in the past three years: Damage to home or livestock, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24d2.2,"Natural disaster in the past three years: Damage to home or livestock, men (% age 15+)",sources,Gender Statistics,14
+fin24d2.3,"Natural disaster in the past three years: Damage to home or livestock, young (% ages 15-24)",sources,Global Findex database,28
+fin24d2.4,"Natural disaster in the past three years: Damage to home or livestock, older (% age 25+)",sources,Global Findex database,28
+fin24d2.5,"Natural disaster in the past three years: Damage to home or livestock, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24d2.6,"Natural disaster in the past three years: Damage to home or livestock, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24d2.7,"Natural disaster in the past three years: Damage to home or livestock, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24d2.8,"Natural disaster in the past three years: Damage to home or livestock, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24d2.9,"Natural disaster in the past three years: Damage to home or livestock, rural (% age 15+)",sources,Global Findex database,28
+fin24d2.s,"Natural disaster in the past three years: Damage to home or livestock (% experienced a natural disaster or severe weather event, age 15+)",sources,Global Findex database,28
+fin24d3,Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money (% age 15+),sources,Global Findex database,28
+fin24d3.1,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, women (% age 15+)",sources,Global Findex database,28
+fin24d3.10,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, urban (% age 15+)",sources,Global Findex database,28
+fin24d3.11,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24d3.12,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24d3.2,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, men (% age 15+)",sources,Global Findex database,28
+fin24d3.3,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, young (% ages 15-24)",sources,Global Findex database,28
+fin24d3.4,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, older (% age 25+)",sources,Global Findex database,28
+fin24d3.5,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24d3.6,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24d3.7,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24d3.8,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24d3.9,"Natural disaster in the past three years: Unable to access or use their account to withdraw cash or to send or receive money, rural (% age 15+)",sources,Global Findex database,28
+fin24fam,Main source of emergency funds in 30 days: family or friends (% age 15+),sources,Gender Statistics,14
+fin24fam.1,"Main source of emergency funds in 30 days: family or friends, women (% age 15+)",sources,Gender Statistics,14
+fin24fam.10,"Main source of emergency funds in 30 days: family or friends, urban (% age 15+)",sources,Global Findex database,28
+fin24fam.11,"Main source of emergency funds in 30 days: family or friends, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam.12,"Main source of emergency funds in 30 days: family or friends, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam.2,"Main source of emergency funds in 30 days: family or friends, men (% age 15+)",sources,Gender Statistics,14
+fin24fam.3,"Main source of emergency funds in 30 days: family or friends, young (% ages 15-24)",sources,Global Findex database,28
+fin24fam.4,"Main source of emergency funds in 30 days: family or friends, older (% age 25+)",sources,Global Findex database,28
+fin24fam.5,"Main source of emergency funds in 30 days: family or friends, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24fam.6,"Main source of emergency funds in 30 days: family or friends, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24fam.7,"Main source of emergency funds in 30 days: family or friends, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24fam.8,"Main source of emergency funds in 30 days: family or friends, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24fam.9,"Main source of emergency funds in 30 days: family or friends, rural (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult (% age 15+)",sources,Gender Statistics,14
+fin24fam_SD_ND.1,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24fam_SD_ND.10,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.11,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.12,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.2,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24fam_SD_ND.3,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24fam_SD_ND.4,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24fam_SD_ND.5,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.6,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.7,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.8,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24fam_SD_ND.9,"Main source of emergency funds in 30 days: family or friends, possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24fam_VD,"Main source of emergency funds in 30 days: family or friends, possible and very difficult (% age 15+)",sources,Gender Statistics,14
+fin24fam_VD.1,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24fam_VD.10,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.11,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.12,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.2,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24fam_VD.3,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24fam_VD.4,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24fam_VD.5,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.6,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.7,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.8,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24fam_VD.9,"Main source of emergency funds in 30 days: family or friends, possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24other,Main source of emergency funds in 30 days: other (% age 15+),sources,Global Findex database,28
+fin24other_SD_ND,"Main source of emergency funds in 30 days: other, possible and not difficult or somewhat difficult (% age 15+)",sources,Global Findex database,28
+fin24other_VD,"Main source of emergency funds in 30 days: other, possible and very difficult (% age 15+)",sources,Global Findex database,28
+fin24sav,Main source of emergency funds in 30 days: savings (% age 15+),sources,Gender Statistics,14
+fin24sav.1,"Main source of emergency funds in 30 days: savings, women (% age 15+)",sources,Gender Statistics,14
+fin24sav.10,"Main source of emergency funds in 30 days: savings, urban (% age 15+)",sources,Global Findex database,28
+fin24sav.11,"Main source of emergency funds in 30 days: savings, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav.12,"Main source of emergency funds in 30 days: savings, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav.2,"Main source of emergency funds in 30 days: savings, men (% age 15+)",sources,Gender Statistics,14
+fin24sav.3,"Main source of emergency funds in 30 days: savings, young (% ages 15-24)",sources,Global Findex database,28
+fin24sav.4,"Main source of emergency funds in 30 days: savings, older (% age 25+)",sources,Global Findex database,28
+fin24sav.5,"Main source of emergency funds in 30 days: savings, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sav.6,"Main source of emergency funds in 30 days: savings, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sav.7,"Main source of emergency funds in 30 days: savings, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sav.8,"Main source of emergency funds in 30 days: savings, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sav.9,"Main source of emergency funds in 30 days: savings, rural (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult (% age 15+)",sources,Gender Statistics,14
+fin24sav_SD_ND.1,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24sav_SD_ND.10,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.11,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.12,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.2,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24sav_SD_ND.3,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24sav_SD_ND.4,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24sav_SD_ND.5,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.6,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.7,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.8,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sav_SD_ND.9,"Main source of emergency funds in 30 days: savings, possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24sav_VD,"Main source of emergency funds in 30 days: savings, possible and very difficult (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.1,"Main source of emergency funds in 30 days: savings, possible and very difficult, women (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.10,"Main source of emergency funds in 30 days: savings, possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.11,"Main source of emergency funds in 30 days: savings, possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.12,"Main source of emergency funds in 30 days: savings, possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.2,"Main source of emergency funds in 30 days: savings, possible and very difficult, men (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.3,"Main source of emergency funds in 30 days: savings, possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24sav_VD.4,"Main source of emergency funds in 30 days: savings, possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24sav_VD.5,"Main source of emergency funds in 30 days: savings, possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.6,"Main source of emergency funds in 30 days: savings, possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.7,"Main source of emergency funds in 30 days: savings, possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.8,"Main source of emergency funds in 30 days: savings, possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sav_VD.9,"Main source of emergency funds in 30 days: savings, possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24sell,Main source of emergency funds in 30 days: sale of assets (% age 15+),sources,Gender Statistics,14
+fin24sell.1,"Main source of emergency funds in 30 days: sale of assets, women (% age 15+)",sources,Gender Statistics,14
+fin24sell.10,"Main source of emergency funds in 30 days: sale of assets, urban (% age 15+)",sources,Global Findex database,28
+fin24sell.11,"Main source of emergency funds in 30 days: sale of assets, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell.12,"Main source of emergency funds in 30 days: sale of assets, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell.2,"Main source of emergency funds in 30 days: sale of assets, men (% age 15+)",sources,Gender Statistics,14
+fin24sell.3,"Main source of emergency funds in 30 days: sale of assets, young (% ages 15-24)",sources,Global Findex database,28
+fin24sell.4,"Main source of emergency funds in 30 days: sale of assets, older (% age 25+)",sources,Global Findex database,28
+fin24sell.5,"Main source of emergency funds in 30 days: sale of assets, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sell.6,"Main source of emergency funds in 30 days: sale of assets, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sell.7,"Main source of emergency funds in 30 days: sale of assets, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sell.8,"Main source of emergency funds in 30 days: sale of assets, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sell.9,"Main source of emergency funds in 30 days: sale of assets, rural (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.1,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, women (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.10,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.11,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.12,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.2,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, men (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.3,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24sell_SD_ND.4,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24sell_SD_ND.5,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.6,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.7,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.8,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sell_SD_ND.9,"Main source of emergency funds in 30 days: sale of assets, possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24sell_VD,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.1,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, women (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.10,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.11,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.12,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.2,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, men (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.3,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24sell_VD.4,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24sell_VD.5,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.6,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.7,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.8,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24sell_VD.9,"Main source of emergency funds in 30 days: sale of assets, possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24work,Main source of emergency funds in 30 days: work (% age 15+),sources,Gender Statistics,14
+fin24work.1,"Main source of emergency funds in 30 days: work, women (% age 15+)",sources,Gender Statistics,14
+fin24work.10,"Main source of emergency funds in 30 days: work, urban (% age 15+)",sources,Global Findex database,28
+fin24work.11,"Main source of emergency funds in 30 days: work, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24work.12,"Main source of emergency funds in 30 days: work, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24work.2,"Main source of emergency funds in 30 days: work, men (% age 15+)",sources,Gender Statistics,14
+fin24work.3,"Main source of emergency funds in 30 days: work, young (% ages 15-24)",sources,Global Findex database,28
+fin24work.4,"Main source of emergency funds in 30 days: work, older (% age 25+)",sources,Global Findex database,28
+fin24work.5,"Main source of emergency funds in 30 days: work, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24work.6,"Main source of emergency funds in 30 days: work, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24work.7,"Main source of emergency funds in 30 days: work, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24work.8,"Main source of emergency funds in 30 days: work, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24work.9,"Main source of emergency funds in 30 days: work, rural (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult (% age 15+)",sources,Gender Statistics,14
+fin24work_SD_ND.1,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, women (% age 15+)",sources,Gender Statistics,14
+fin24work_SD_ND.10,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.11,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.12,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.2,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, men (% age 15+)",sources,Gender Statistics,14
+fin24work_SD_ND.3,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24work_SD_ND.4,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, older (% age 25+)",sources,Global Findex database,28
+fin24work_SD_ND.5,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.6,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.7,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.8,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24work_SD_ND.9,"Main source of emergency funds in 30 days: work, possible and not difficult or somewhat difficult, rural (% age 15+)",sources,Global Findex database,28
+fin24work_VD,"Main source of emergency funds in 30 days: work, possible and very difficult (% age 15+)",sources,Global Findex database,28
+fin24work_VD.1,"Main source of emergency funds in 30 days: work, possible and very difficult, women (% age 15+)",sources,Global Findex database,28
+fin24work_VD.10,"Main source of emergency funds in 30 days: work, possible and very difficult, urban (% age 15+)",sources,Global Findex database,28
+fin24work_VD.11,"Main source of emergency funds in 30 days: work, possible and very difficult, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin24work_VD.12,"Main source of emergency funds in 30 days: work, possible and very difficult, in laborforce (% age 15+)",sources,Global Findex database,28
+fin24work_VD.2,"Main source of emergency funds in 30 days: work, possible and very difficult, men (% age 15+)",sources,Global Findex database,28
+fin24work_VD.3,"Main source of emergency funds in 30 days: work, possible and very difficult, young (% ages 15-24)",sources,Global Findex database,28
+fin24work_VD.4,"Main source of emergency funds in 30 days: work, possible and very difficult, older (% age 25+)",sources,Global Findex database,28
+fin24work_VD.5,"Main source of emergency funds in 30 days: work, possible and very difficult, primary education or less (% age 15+)",sources,Global Findex database,28
+fin24work_VD.6,"Main source of emergency funds in 30 days: work, possible and very difficult, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin24work_VD.7,"Main source of emergency funds in 30 days: work, possible and very difficult, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin24work_VD.8,"Main source of emergency funds in 30 days: work, possible and very difficult, richest 60% (% age 15+)",sources,Global Findex database,28
+fin24work_VD.9,"Main source of emergency funds in 30 days: work, possible and very difficult, rural (% age 15+)",sources,Global Findex database,28
+fin25a_t_a_s,Main source of emergency funds: savings (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_1,"Main source of emergency funds: savings, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_2,"Main source of emergency funds: savings, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_3,"Main source of emergency funds: savings, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_4,"Main source of emergency funds: savings, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_5,"Main source of emergency funds: savings, (% ages 15-34)",sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_6,Main source of emergency funds: savings (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin25a_t_a_s_7,Main source of emergency funds: savings (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin25e1,Used mobile phone or card to pay for household food or cleaning supplies (% age 15+),sources,Gender Statistics,14
+fin25e1.1,"Used mobile phone or card to pay for household food or cleaning supplies, women (% age 15+)",sources,Gender Statistics,14
+fin25e1.10,"Used mobile phone or card to pay for household food or cleaning supplies, urban (% age 15+)",sources,Global Findex database,28
+fin25e1.11,"Used mobile phone or card to pay for household food or cleaning supplies, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e1.12,"Used mobile phone or card to pay for household food or cleaning supplies, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e1.2,"Used mobile phone or card to pay for household food or cleaning supplies, men (% age 15+)",sources,Gender Statistics,14
+fin25e1.3,"Used mobile phone or card to pay for household food or cleaning supplies, young (% ages 15-24)",sources,Global Findex database,28
+fin25e1.4,"Used mobile phone or card to pay for household food or cleaning supplies, older (% age 25+)",sources,Global Findex database,28
+fin25e1.5,"Used mobile phone or card to pay for household food or cleaning supplies, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e1.6,"Used mobile phone or card to pay for household food or cleaning supplies, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e1.7,"Used mobile phone or card to pay for household food or cleaning supplies, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e1.8,"Used mobile phone or card to pay for household food or cleaning supplies, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e1.9,"Used mobile phone or card to pay for household food or cleaning supplies, rural (% age 15+)",sources,Global Findex database,28
+fin25e2,Used mobile phone or card to pay for in-store purchase (% age 15+),sources,Gender Statistics,14
+fin25e2.1,"Used mobile phone or card to pay for in-store purchase, women (% age 15+)",sources,Gender Statistics,14
+fin25e2.10,"Used mobile phone or card to pay for in-store purchase, urban (% age 15+)",sources,Global Findex database,28
+fin25e2.11,"Used mobile phone or card to pay for in-store purchase, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e2.12,"Used mobile phone or card to pay for in-store purchase, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e2.2,"Used mobile phone or card to pay for in-store purchase, men (% age 15+)",sources,Gender Statistics,14
+fin25e2.3,"Used mobile phone or card to pay for in-store purchase, young (% ages 15-24)",sources,Global Findex database,28
+fin25e2.4,"Used mobile phone or card to pay for in-store purchase, older (% age 25+)",sources,Global Findex database,28
+fin25e2.5,"Used mobile phone or card to pay for in-store purchase, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e2.6,"Used mobile phone or card to pay for in-store purchase, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e2.7,"Used mobile phone or card to pay for in-store purchase, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e2.8,"Used mobile phone or card to pay for in-store purchase, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e2.9,"Used mobile phone or card to pay for in-store purchase, rural (% age 15+)",sources,Global Findex database,28
+fin25e2b,Did NOT use mobile phone or card to pay for in-store purchase (% age 15+),sources,Gender Statistics,14
+fin25e2b.1,"Did NOT use mobile phone or card to pay for in-store purchase , women (% age 15+)",sources,Gender Statistics,14
+fin25e2b.10,"Did NOT use mobile phone or card to pay for in-store purchase , urban (% age 15+)",sources,Global Findex database,28
+fin25e2b.11,"Did NOT use mobile phone or card to pay for in-store purchase , out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e2b.12,"Did NOT use mobile phone or card to pay for in-store purchase , in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e2b.2,"Did NOT use mobile phone or card to pay for in-store purchase , men (% age 15+)",sources,Gender Statistics,14
+fin25e2b.3,"Did NOT use mobile phone or card to pay for in-store purchase , young (% ages 15-24)",sources,Global Findex database,28
+fin25e2b.4,"Did NOT use mobile phone or card to pay for in-store purchase , older (% age 25+)",sources,Global Findex database,28
+fin25e2b.5,"Did NOT use mobile phone or card to pay for in-store purchase , primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e2b.6,"Did NOT use mobile phone or card to pay for in-store purchase , secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e2b.7,"Did NOT use mobile phone or card to pay for in-store purchase , poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e2b.8,"Did NOT use mobile phone or card to pay for in-store purchase , richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e2b.9,"Did NOT use mobile phone or card to pay for in-store purchase , rural (% age 15+)",sources,Global Findex database,28
+fin25e3lm,Used a mobile phone or card to pay for an instore purchase : less than once a month (% age 15+),sources,Global Findex database,28
+fin25e3lm.1,"Used a mobile phone or card to pay for an instore purchase : less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin25e3lm.10,"Used a mobile phone or card to pay for an instore purchase : less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin25e3lm.11,"Used a mobile phone or card to pay for an instore purchase : less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3lm.12,"Used a mobile phone or card to pay for an instore purchase : less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3lm.2,"Used a mobile phone or card to pay for an instore purchase : less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin25e3lm.3,"Used a mobile phone or card to pay for an instore purchase : less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin25e3lm.4,"Used a mobile phone or card to pay for an instore purchase : less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin25e3lm.5,"Used a mobile phone or card to pay for an instore purchase : less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e3lm.6,"Used a mobile phone or card to pay for an instore purchase : less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e3lm.7,"Used a mobile phone or card to pay for an instore purchase : less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e3lm.8,"Used a mobile phone or card to pay for an instore purchase : less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e3lm.9,"Used a mobile phone or card to pay for an instore purchase : less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin25e3m,Used a mobile phone or card to pay for an instore purchase : monthly (% age 15+),sources,Global Findex database,28
+fin25e3m.1,"Used a mobile phone or card to pay for an instore purchase : monthly, women (% age 15+)",sources,Global Findex database,28
+fin25e3m.10,"Used a mobile phone or card to pay for an instore purchase : monthly, urban (% age 15+)",sources,Global Findex database,28
+fin25e3m.11,"Used a mobile phone or card to pay for an instore purchase : monthly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3m.12,"Used a mobile phone or card to pay for an instore purchase : monthly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3m.2,"Used a mobile phone or card to pay for an instore purchase : monthly, men (% age 15+)",sources,Global Findex database,28
+fin25e3m.3,"Used a mobile phone or card to pay for an instore purchase : monthly, young (% ages 15-24)",sources,Global Findex database,28
+fin25e3m.4,"Used a mobile phone or card to pay for an instore purchase : monthly, older (% age 25+)",sources,Global Findex database,28
+fin25e3m.5,"Used a mobile phone or card to pay for an instore purchase : monthly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e3m.6,"Used a mobile phone or card to pay for an instore purchase : monthly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e3m.7,"Used a mobile phone or card to pay for an instore purchase : monthly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e3m.8,"Used a mobile phone or card to pay for an instore purchase : monthly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e3m.9,"Used a mobile phone or card to pay for an instore purchase : monthly, rural (% age 15+)",sources,Global Findex database,28
+fin25e3m.s,"Used a mobile phone or card to pay for an instore purchase : monthly (% adults making instore merchant payments, age 15+)",sources,Global Findex database,28
+fin25e3w,Used a mobile phone or card to pay for an instore purchase : weekly (% age 15+),sources,Global Findex database,28
+fin25e3w.1,"Used a mobile phone or card to pay for an instore purchase : weekly, women (% age 15+)",sources,Global Findex database,28
+fin25e3w.10,"Used a mobile phone or card to pay for an instore purchase : weekly, urban (% age 15+)",sources,Global Findex database,28
+fin25e3w.11,"Used a mobile phone or card to pay for an instore purchase : weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3w.12,"Used a mobile phone or card to pay for an instore purchase : weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e3w.2,"Used a mobile phone or card to pay for an instore purchase : weekly, men (% age 15+)",sources,Global Findex database,28
+fin25e3w.3,"Used a mobile phone or card to pay for an instore purchase : weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin25e3w.4,"Used a mobile phone or card to pay for an instore purchase : weekly, older (% age 25+)",sources,Global Findex database,28
+fin25e3w.5,"Used a mobile phone or card to pay for an instore purchase : weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e3w.6,"Used a mobile phone or card to pay for an instore purchase : weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e3w.7,"Used a mobile phone or card to pay for an instore purchase : weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e3w.8,"Used a mobile phone or card to pay for an instore purchase : weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e3w.9,"Used a mobile phone or card to pay for an instore purchase : weekly, rural (% age 15+)",sources,Global Findex database,28
+fin25e3w.s,"Used a mobile phone or card to pay for an instore purchase : weekly (% adults making instore merchant payments, age 15+)",sources,Global Findex database,28
+fin25e4a,Reason for cash payment for in-store purchases : merchant only accepts cash (% age 15+),sources,Global Findex database,28
+fin25e4a.1,"Reason for cash payment for in-store purchases : merchant only accepts cash , women (% age 15+)",sources,Global Findex database,28
+fin25e4a.10,"Reason for cash payment for in-store purchases : merchant only accepts cash , urban (% age 15+)",sources,Global Findex database,28
+fin25e4a.11,"Reason for cash payment for in-store purchases : merchant only accepts cash , out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e4a.12,"Reason for cash payment for in-store purchases : merchant only accepts cash , in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e4a.2,"Reason for cash payment for in-store purchases : merchant only accepts cash , men (% age 15+)",sources,Global Findex database,28
+fin25e4a.3,"Reason for cash payment for in-store purchases : merchant only accepts cash , young (% ages 15-24)",sources,Global Findex database,28
+fin25e4a.4,"Reason for cash payment for in-store purchases : merchant only accepts cash , older (% age 25+)",sources,Global Findex database,28
+fin25e4a.5,"Reason for cash payment for in-store purchases : merchant only accepts cash , primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e4a.6,"Reason for cash payment for in-store purchases : merchant only accepts cash , secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e4a.7,"Reason for cash payment for in-store purchases : merchant only accepts cash , poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e4a.8,"Reason for cash payment for in-store purchases : merchant only accepts cash , richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e4a.9,"Reason for cash payment for in-store purchases : merchant only accepts cash , rural (% age 15+)",sources,Global Findex database,28
+fin25e4b,Reason for cash payment for in-store purchases : More expensive to pay using a card or phone (% age 15+),sources,Global Findex database,28
+fin25e4c,Reason for cash payment for in-store purchases: don't trust payments using a card or a phone (% age 15+),sources,Global Findex database,28
+fin25e4d,Reason for cash payment for in-store purchases: used to paying it with cash (% age 15+),sources,Gender Statistics,14
+fin25e4d.1,"Reason for cash payment for in-store purchases: used to paying it with cash, women (% age 15+)",sources,Gender Statistics,14
+fin25e4d.10,"Reason for cash payment for in-store purchases: used to paying it with cash, urban (% age 15+)",sources,Global Findex database,28
+fin25e4d.11,"Reason for cash payment for in-store purchases: used to paying it with cash, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin25e4d.12,"Reason for cash payment for in-store purchases: used to paying it with cash, in laborforce (% age 15+)",sources,Global Findex database,28
+fin25e4d.2,"Reason for cash payment for in-store purchases: used to paying it with cash, men (% age 15+)",sources,Gender Statistics,14
+fin25e4d.3,"Reason for cash payment for in-store purchases: used to paying it with cash, young (% ages 15-24)",sources,Global Findex database,28
+fin25e4d.4,"Reason for cash payment for in-store purchases: used to paying it with cash, older (% age 25+)",sources,Global Findex database,28
+fin25e4d.5,"Reason for cash payment for in-store purchases: used to paying it with cash, primary education or less (% age 15+)",sources,Global Findex database,28
+fin25e4d.6,"Reason for cash payment for in-store purchases: used to paying it with cash, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin25e4d.7,"Reason for cash payment for in-store purchases: used to paying it with cash, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin25e4d.8,"Reason for cash payment for in-store purchases: used to paying it with cash, richest 60% (% age 15+)",sources,Global Findex database,28
+fin25e4d.9,"Reason for cash payment for in-store purchases: used to paying it with cash, rural (% age 15+)",sources,Global Findex database,28
+fin25e4e,Reason for cash payment for in-store purchases: other (% age 15+),sources,Global Findex database,28
+fin26a,Used a mobile phone or the internet to pay bills (% age 15+),sources,Gender Statistics,14
+fin26a.1,"Used a mobile phone or the internet to pay bills, women (% age 15+)",sources,Gender Statistics,14
+fin26a.10,"Used a mobile phone or the internet to pay bills, urban (% age 15+)",sources,Global Findex database,28
+fin26a.11,"Used a mobile phone or the internet to pay bills, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin26a.12,"Used a mobile phone or the internet to pay bills, in laborforce (% age 15+)",sources,Global Findex database,28
+fin26a.2,"Used a mobile phone or the internet to pay bills, men (% age 15+)",sources,Gender Statistics,14
+fin26a.3,"Used a mobile phone or the internet to pay bills, young (% ages 15-24)",sources,Global Findex database,28
+fin26a.4,"Used a mobile phone or the internet to pay bills, older (% age 25+)",sources,Global Findex database,28
+fin26a.5,"Used a mobile phone or the internet to pay bills, primary education or less (% age 15+)",sources,Global Findex database,28
+fin26a.6,"Used a mobile phone or the internet to pay bills, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin26a.7,"Used a mobile phone or the internet to pay bills, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin26a.8,"Used a mobile phone or the internet to pay bills, richest 60% (% age 15+)",sources,Global Findex database,28
+fin26a.9,"Used a mobile phone or the internet to pay bills, rural (% age 15+)",sources,Global Findex database,28
+fin26b,Used a mobile phone or the internet to buy something online (% age 15+),sources,Gender Statistics,14
+fin26b.1,"Used a mobile phone or the internet to buy something online, women (% age 15+)",sources,Gender Statistics,14
+fin26b.10,"Used a mobile phone or the internet to buy something online, urban (% age 15+)",sources,Global Findex database,28
+fin26b.11,"Used a mobile phone or the internet to buy something online, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin26b.12,"Used a mobile phone or the internet to buy something online, in laborforce (% age 15+)",sources,Global Findex database,28
+fin26b.2,"Used a mobile phone or the internet to buy something online, men (% age 15+)",sources,Gender Statistics,14
+fin26b.3,"Used a mobile phone or the internet to buy something online, young (% ages 15-24)",sources,Global Findex database,28
+fin26b.4,"Used a mobile phone or the internet to buy something online, older (% age 25+)",sources,Global Findex database,28
+fin26b.5,"Used a mobile phone or the internet to buy something online, primary education or less (% age 15+)",sources,Global Findex database,28
+fin26b.6,"Used a mobile phone or the internet to buy something online, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin26b.7,"Used a mobile phone or the internet to buy something online, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin26b.8,"Used a mobile phone or the internet to buy something online, richest 60% (% age 15+)",sources,Global Findex database,28
+fin26b.9,"Used a mobile phone or the internet to buy something online, rural (% age 15+)",sources,Global Findex database,28
+fin27a,Made a digital online merchant payment for an online purchase (% age 15+),sources,Gender Statistics,14
+fin27a.1,"Made a digital online merchant payment for an online purchase, women (% age 15+)",sources,Gender Statistics,14
+fin27a.10,"Made a digital online merchant payment for an online purchase, urban (% age 15+)",sources,Global Findex database,28
+fin27a.11,"Made a digital online merchant payment for an online purchase, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin27a.12,"Made a digital online merchant payment for an online purchase, in laborforce (% age 15+)",sources,Global Findex database,28
+fin27a.2,"Made a digital online merchant payment for an online purchase, men (% age 15+)",sources,Gender Statistics,14
+fin27a.3,"Made a digital online merchant payment for an online purchase, young (% ages 15-24)",sources,Global Findex database,28
+fin27a.4,"Made a digital online merchant payment for an online purchase, older (% age 25+)",sources,Global Findex database,28
+fin27a.5,"Made a digital online merchant payment for an online purchase, primary education or less (% age 15+)",sources,Global Findex database,28
+fin27a.6,"Made a digital online merchant payment for an online purchase, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin27a.7,"Made a digital online merchant payment for an online purchase, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin27a.8,"Made a digital online merchant payment for an online purchase, richest 60% (% age 15+)",sources,Global Findex database,28
+fin27a.9,"Made a digital online merchant payment for an online purchase, rural (% age 15+)",sources,Global Findex database,28
+fin27a.s,"Made a digital online merchantpayment for an online purchase (% of internet purchasers, age 15+)",sources,Global Findex database,28
+fin27b,Made a cash payment upon delivery for an online purchase (% age 15+),sources,Global Findex database,28
+fin27b.1,"Made a cash payment upon delivery for an online purchase, women (% age 15+)",sources,Global Findex database,28
+fin27b.10,"Made a cash payment upon delivery for an online purchase, urban (% age 15+)",sources,Global Findex database,28
+fin27b.11,"Made a cash payment upon delivery for an online purchase, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin27b.12,"Made a cash payment upon delivery for an online purchase, in laborforce (% age 15+)",sources,Global Findex database,28
+fin27b.2,"Made a cash payment upon delivery for an online purchase, men (% age 15+)",sources,Global Findex database,28
+fin27b.3,"Made a cash payment upon delivery for an online purchase, young (% ages 15-24)",sources,Global Findex database,28
+fin27b.4,"Made a cash payment upon delivery for an online purchase, older (% age 25+)",sources,Global Findex database,28
+fin27b.5,"Made a cash payment upon delivery for an online purchase, primary education or less (% age 15+)",sources,Global Findex database,28
+fin27b.6,"Made a cash payment upon delivery for an online purchase, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin27b.7,"Made a cash payment upon delivery for an online purchase, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin27b.8,"Made a cash payment upon delivery for an online purchase, richest 60% (% age 15+)",sources,Global Findex database,28
+fin27b.9,"Made a cash payment upon delivery for an online purchase, rural (% age 15+)",sources,Global Findex database,28
+fin27b.s,"Made a cash payment upon delivery for an online purchase (% of internet purchasers, age 15+)",sources,Global Findex database,28
+fin28,Sent domestic remittances: using an account (% age 15+),sources,Gender Statistics,14
+fin28.1,"Sent domestic remittances: using an account, women (% age 15+)",sources,Gender Statistics,14
+fin28.10,"Sent domestic remittances: using an account, urban (% age 15+)",sources,Global Findex database,28
+fin28.11,"Sent domestic remittances: using an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin28.12,"Sent domestic remittances: using an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin28.2,"Sent domestic remittances: using an account, men (% age 15+)",sources,Gender Statistics,14
+fin28.29,Sent or received domestic remittances: using an account (% age 15+),sources,Gender Statistics,14
+fin28.29.1,"Sent or received domestic remittances: using an account, women (% age 15+)",sources,Gender Statistics,14
+fin28.29.10,"Sent or received domestic remittances: using an account, urban (% age 15+)",sources,Global Findex database,28
+fin28.29.11,"Sent or received domestic remittances: using an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin28.29.12,"Sent or received domestic remittances: using an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin28.29.2,"Sent or received domestic remittances: using an account, men (% age 15+)",sources,Gender Statistics,14
+fin28.29.3,"Sent or received domestic remittances: using an account, young (% ages 15-24)",sources,Global Findex database,28
+fin28.29.4,"Sent or received domestic remittances: using an account, older (% age 25+)",sources,Global Findex database,28
+fin28.29.5,"Sent or received domestic remittances: using an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin28.29.6,"Sent or received domestic remittances: using an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin28.29.7,"Sent or received domestic remittances: using an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin28.29.8,"Sent or received domestic remittances: using an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin28.29.9,"Sent or received domestic remittances: using an account, rural (% age 15+)",sources,Global Findex database,28
+fin28.29.s,"Sent or received domestic remittances: using an account (% of senders and recipients, age 15+)",sources,Global Findex database,28
+fin28.3,"Sent domestic remittances: using an account, young (% ages 15-24)",sources,Global Findex database,28
+fin28.4,"Sent domestic remittances: using an account, older (% age 25+)",sources,Global Findex database,28
+fin28.5,"Sent domestic remittances: using an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin28.6,"Sent domestic remittances: using an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin28.7,"Sent domestic remittances: using an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin28.8,"Sent domestic remittances: using an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin28.9,"Sent domestic remittances: using an account, rural (% age 15+)",sources,Global Findex database,28
+fin28.s,"Sent domestic remittances: using an account (% of senders, age 15+)",sources,Global Findex database,28
+fin29,Received domestic remittances: into an account (% age 15+),sources,Gender Statistics,14
+fin29.1,"Received domestic remittances: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin29.10,"Received domestic remittances: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin29.11,"Received domestic remittances: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin29.12,"Received domestic remittances: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin29.2,"Received domestic remittances: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin29.3,"Received domestic remittances: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin29.4,"Received domestic remittances: into an account, older (% age 25+)",sources,Global Findex database,28
+fin29.5,"Received domestic remittances: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin29.6,"Received domestic remittances: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin29.7,"Received domestic remittances: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin29.8,"Received domestic remittances: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin29.9,"Received domestic remittances: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin29.s,"Received domestic remittances: into an account (% of recipients, age 15+)",sources,Global Findex database,28
+fin3,Used a card or mobile phone to make payments (% age 15+),sources,Gender Statistics,14
+fin3.1,"Used a card or mobile phone to make payments, women (% age 15+)",sources,Gender Statistics,14
+fin3.10,"Used a card or mobile phone to make payments, urban (% age 15+)",sources,Global Findex database,28
+fin3.11,"Used a card or mobile phone to make payments, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin3.12,"Used a card or mobile phone to make payments, in laborforce (% age 15+)",sources,Global Findex database,28
+fin3.2,"Used a card or mobile phone to make payments, men (% age 15+)",sources,Gender Statistics,14
+fin3.3,"Used a card or mobile phone to make payments, young (% ages 15-24)",sources,Global Findex database,28
+fin3.4,"Used a card or mobile phone to make payments, older (% age 25+)",sources,Global Findex database,28
+fin3.5,"Used a card or mobile phone to make payments, primary education or less (% age 15+)",sources,Global Findex database,28
+fin3.6,"Used a card or mobile phone to make payments, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin3.7,"Used a card or mobile phone to make payments, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin3.8,"Used a card or mobile phone to make payments, richest 60% (% age 15+)",sources,Global Findex database,28
+fin3.9,"Used a card or mobile phone to make payments, rural (% age 15+)",sources,Global Findex database,28
+fin30,Made a utility payment (% age 15+),sources,Gender Statistics,14
+fin30.1,"Made a utility payment, women (% age 15+)",sources,Gender Statistics,14
+fin30.10,"Made a utility payment, urban (% age 15+)",sources,Global Findex database,28
+fin30.11,"Made a utility payment, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin30.12,"Made a utility payment, in laborforce (% age 15+)",sources,Global Findex database,28
+fin30.2,"Made a utility payment, men (% age 15+)",sources,Gender Statistics,14
+fin30.3,"Made a utility payment, young (% ages 15-24)",sources,Global Findex database,28
+fin30.4,"Made a utility payment, older (% age 25+)",sources,Global Findex database,28
+fin30.5,"Made a utility payment, primary education or less (% age 15+)",sources,Global Findex database,28
+fin30.6,"Made a utility payment, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin30.7,"Made a utility payment, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin30.8,"Made a utility payment, richest 60% (% age 15+)",sources,Global Findex database,28
+fin30.9,"Made a utility payment, rural (% age 15+)",sources,Global Findex database,28
+fin31a,Made a utility payment: using a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin31a.1,"Made a utility payment: using a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin31a.10,"Made a utility payment: using a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin31a.11,"Made a utility payment: using a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin31a.12,"Made a utility payment: using a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin31a.2,"Made a utility payment: using a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin31a.3,"Made a utility payment: using a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin31a.31b,Made a utility payment: using an account (% age 15+),sources,Gender Statistics,14
+fin31a.31b.1,"Made a utility payment: using an account, women (% age 15+)",sources,Gender Statistics,14
+fin31a.31b.10,"Made a utility payment: using an account, urban (% age 15+)",sources,Global Findex database,28
+fin31a.31b.11,"Made a utility payment: using an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin31a.31b.12,"Made a utility payment: using an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin31a.31b.2,"Made a utility payment: using an account, men (% age 15+)",sources,Gender Statistics,14
+fin31a.31b.3,"Made a utility payment: using an account, young (% ages 15-24)",sources,Global Findex database,28
+fin31a.31b.4,"Made a utility payment: using an account, older (% age 25+)",sources,Global Findex database,28
+fin31a.31b.5,"Made a utility payment: using an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin31a.31b.6,"Made a utility payment: using an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin31a.31b.7,"Made a utility payment: using an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin31a.31b.8,"Made a utility payment: using an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin31a.31b.9,"Made a utility payment: using an account, rural (% age 15+)",sources,Global Findex database,28
+fin31a.31b.s,"Made a utility payment: using an account (% who paid utility bills, age 15+)",sources,Global Findex database,28
+fin31a.4,"Made a utility payment: using a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin31a.5,"Made a utility payment: using a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin31a.6,"Made a utility payment: using a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin31a.7,"Made a utility payment: using a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin31a.8,"Made a utility payment: using a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin31a.9,"Made a utility payment: using a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin31a.s,"Made a utility payment: using a bank or similar financial institution account (% who paid utility bills, age 15+)",sources,Global Findex database,28
+fin31b,Made a utility payment: using a mobile phone (% age 15+),sources,Gender Statistics,14
+fin31b.1,"Made a utility payment: using a mobile phone, women (% age 15+)",sources,Gender Statistics,14
+fin31b.10,"Made a utility payment: using a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin31b.11,"Made a utility payment: using a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin31b.12,"Made a utility payment: using a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin31b.2,"Made a utility payment: using a mobile phone, men (% age 15+)",sources,Gender Statistics,14
+fin31b.3,"Made a utility payment: using a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin31b.4,"Made a utility payment: using a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin31b.5,"Made a utility payment: using a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin31b.6,"Made a utility payment: using a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin31b.7,"Made a utility payment: using a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin31b.8,"Made a utility payment: using a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin31b.9,"Made a utility payment: using a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin31b.s,"Made a utility payment: using a mobile phone (% who paid utility bills, age 15+)",sources,Global Findex database,28
+fin31c,Made a utility payment: by handing cash to bank staff or an agent (% age 15+),sources,Global Findex database,28
+fin31d,Made a utility payment: using cash only (% age 15+),sources,Gender Statistics,14
+fin31d.1,"Made a utility payment: using cash only, women (% age 15+)",sources,Gender Statistics,14
+fin31d.10,"Made a utility payment: using cash only, urban (% age 15+)",sources,Global Findex database,28
+fin31d.11,"Made a utility payment: using cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin31d.12,"Made a utility payment: using cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin31d.2,"Made a utility payment: using cash only, men (% age 15+)",sources,Gender Statistics,14
+fin31d.3,"Made a utility payment: using cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin31d.4,"Made a utility payment: using cash only, older (% age 25+)",sources,Global Findex database,28
+fin31d.5,"Made a utility payment: using cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin31d.6,"Made a utility payment: using cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin31d.7,"Made a utility payment: using cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin31d.8,"Made a utility payment: using cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin31d.9,"Made a utility payment: using cash only, rural (% age 15+)",sources,Global Findex database,28
+fin31d.s,"Made a utility payment: using cash only (% who paid utility bills, age 15+)",sources,Global Findex database,28
+fin32,Received wages (% age 15+),sources,Gender Statistics,14
+fin32.1,"Received wages, women (% age 15+)",sources,Gender Statistics,14
+fin32.10,"Received wages, urban (% age 15+)",sources,Global Findex database,28
+fin32.11,"Received wages, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.12,"Received wages, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.2,"Received wages, men (% age 15+)",sources,Gender Statistics,14
+fin32.3,"Received wages, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33,Received public sector wages (% age 15+),sources,Gender Statistics,14
+fin32.33.1,"Received public sector wages, women (% age 15+)",sources,Gender Statistics,14
+fin32.33.10,"Received public sector wages, urban (% age 15+)",sources,Global Findex database,28
+fin32.33.11,"Received public sector wages, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.12,"Received public sector wages, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.2,"Received public sector wages, men (% age 15+)",sources,Gender Statistics,14
+fin32.33.3,"Received public sector wages, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.34a,Received public sector wages: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin32.33.34a.1,"Received public sector wages: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin32.33.34a.10,"Received public sector wages: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.11,"Received public sector wages: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.12,"Received public sector wages: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.2,"Received public sector wages: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin32.33.34a.3,"Received public sector wages: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.34a.4,"Received public sector wages: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin32.33.34a.5,"Received public sector wages: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.6,"Received public sector wages: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.7,"Received public sector wages: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.8,"Received public sector wages: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.9,"Received public sector wages: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin32.33.34a.s,"Received public sector wages: into a bank or similar financial institution account (% of public sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.33.34b,Received public sector wages: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin32.33.34b.1,"Received public sector wages: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.10,"Received public sector wages: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.11,"Received public sector wages: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.12,"Received public sector wages: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.2,"Received public sector wages: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.3,"Received public sector wages: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.34b.4,"Received public sector wages: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin32.33.34b.5,"Received public sector wages: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.6,"Received public sector wages: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.7,"Received public sector wages: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.8,"Received public sector wages: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.34b.9,"Received public sector wages: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin32.33.34c,Received public sector wages: in cash only (% age 15+),sources,Global Findex database,28
+fin32.33.34c.1,"Received public sector wages: in cash only, women (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.11,"Received public sector wages: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.12,"Received public sector wages: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.2,"Received public sector wages: in cash only, men (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.3,"Received public sector wages: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.34c.4,"Received public sector wages: in cash only, older (% age 25+)",sources,Global Findex database,28
+fin32.33.34c.5,"Received public sector wages: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.6,"Received public sector wages: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.7,"Received public sector wages: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.8,"Received public sector wages: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.34c.s,"Received public sector wages: in cash only (% of public sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.33.34d,Received public sector wages: to a card (% age 15+),sources,Global Findex database,28
+fin32.33.34d.1,"Received public sector wages: to a card, women (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.11,"Received public sector wages: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.12,"Received public sector wages: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.2,"Received public sector wages: to a card, men (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.3,"Received public sector wages: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.34d.4,"Received public sector wages: to a card, older (% age 25+)",sources,Global Findex database,28
+fin32.33.34d.5,"Received public sector wages: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.6,"Received public sector wages: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.7,"Received public sector wages: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.8,"Received public sector wages: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.34d.s,"Received public sector wages: to a card (% of public sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.33.4,"Received public sector wages, older (% age 25+)",sources,Global Findex database,28
+fin32.33.5,"Received public sector wages, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.6,"Received public sector wages, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.7,"Received public sector wages, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.8,"Received public sector wages, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.9,"Received public sector wages, rural (% age 15+)",sources,Global Findex database,28
+fin32.33.acc,Received public sector wages: into an account (% age 15+),sources,Gender Statistics,14
+fin32.33.acc.1,"Received public sector wages: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin32.33.acc.10,"Received public sector wages: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.11,"Received public sector wages: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.12,"Received public sector wages: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.2,"Received public sector wages: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin32.33.acc.3,"Received public sector wages: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin32.33.acc.4,"Received public sector wages: into an account, older (% age 25+)",sources,Global Findex database,28
+fin32.33.acc.5,"Received public sector wages: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.6,"Received public sector wages: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.7,"Received public sector wages: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.8,"Received public sector wages: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.9,"Received public sector wages: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin32.33.acc.s,"Received public sector wages: into an account (% of public sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.4,"Received wages, older (% age 25+)",sources,Global Findex database,28
+fin32.5,"Received wages, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.6,"Received wages, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.7,"Received wages, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.8,"Received wages, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.9,"Received wages, rural (% age 15+)",sources,Global Findex database,28
+fin32.acc,Received wages: into an account (% age 15+),sources,Gender Statistics,14
+fin32.acc.1,"Received wages: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin32.acc.10,"Received wages: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin32.acc.11,"Received wages: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.acc.12,"Received wages: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.acc.2,"Received wages: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin32.acc.3,"Received wages: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin32.acc.4,"Received wages: into an account, older (% age 25+)",sources,Global Findex database,28
+fin32.acc.5,"Received wages: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.acc.6,"Received wages: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.acc.7,"Received wages: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.acc.8,"Received wages: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.acc.9,"Received wages: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin32.acc.s,"Received wages: into an account (% of wage recipients, age 15+)",sources,Global Findex database,28
+fin32.n33,Received private sector wages (% age 15+),sources,Gender Statistics,14
+fin32.n33.1,"Received private sector wages, women (% age 15+)",sources,Gender Statistics,14
+fin32.n33.10,"Received private sector wages, urban (% age 15+)",sources,Global Findex database,28
+fin32.n33.11,"Received private sector wages, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.12,"Received private sector wages, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.2,"Received private sector wages, men (% age 15+)",sources,Gender Statistics,14
+fin32.n33.3,"Received private sector wages, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.34a,Received private sector wages: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin32.n33.34a.1,"Received private sector wages: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin32.n33.34a.10,"Received private sector wages: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.11,"Received private sector wages: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.12,"Received private sector wages: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.2,"Received private sector wages: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin32.n33.34a.3,"Received private sector wages: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.34a.4,"Received private sector wages: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.34a.5,"Received private sector wages: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.6,"Received private sector wages: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.7,"Received private sector wages: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.8,"Received private sector wages: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.9,"Received private sector wages: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin32.n33.34a.s,"Received private sector wages: into a bank or similar financial institution account (% of private sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.n33.34b,Received private sector wages: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin32.n33.34b.1,"Received private sector wages: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.10,"Received private sector wages: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.11,"Received private sector wages: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.12,"Received private sector wages: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.2,"Received private sector wages: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.3,"Received private sector wages: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.34b.4,"Received private sector wages: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.34b.5,"Received private sector wages: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.6,"Received private sector wages: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.7,"Received private sector wages: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.8,"Received private sector wages: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.9,"Received private sector wages: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin32.n33.34b.s,"Received private sector wages: through a mobile phone (% of private sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.n33.34c,Received private sector wages: in cash only (% age 15+),sources,Gender Statistics,14
+fin32.n33.34c.1,"Received private sector wages: in cash only, women (% age 15+)",sources,Gender Statistics,14
+fin32.n33.34c.10,"Received private sector wages: in cash only, urban (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.11,"Received private sector wages: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.12,"Received private sector wages: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.2,"Received private sector wages: in cash only, men (% age 15+)",sources,Gender Statistics,14
+fin32.n33.34c.3,"Received private sector wages: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.34c.4,"Received private sector wages: in cash only, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.34c.5,"Received private sector wages: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.6,"Received private sector wages: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.7,"Received private sector wages: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.8,"Received private sector wages: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.9,"Received private sector wages: in cash only, rural (% age 15+)",sources,Global Findex database,28
+fin32.n33.34c.s,"Received private sector wages: in cash only (% of private sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.n33.34d,Received private sector wages: to a card (% age 15+),sources,Global Findex database,28
+fin32.n33.34d.1,"Received private sector wages: to a card, women (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.11,"Received private sector wages: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.12,"Received private sector wages: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.2,"Received private sector wages: to a card, men (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.3,"Received private sector wages: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.34d.4,"Received private sector wages: to a card, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.34d.5,"Received private sector wages: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.6,"Received private sector wages: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.7,"Received private sector wages: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.8,"Received private sector wages: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.34d.s,"Received private sector wages: to a card (% of private sector wage recipients, age 15+)",sources,Global Findex database,28
+fin32.n33.4,"Received private sector wages, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.5,"Received private sector wages, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.6,"Received private sector wages, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.7,"Received private sector wages, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.8,"Received private sector wages, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.9,"Received private sector wages, rural (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc,Received private sector wages: into an account (% age 15+),sources,Gender Statistics,14
+fin32.n33.acc.1,"Received private sector wages: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin32.n33.acc.10,"Received private sector wages: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.11,"Received private sector wages: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.12,"Received private sector wages: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.2,"Received private sector wages: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin32.n33.acc.3,"Received private sector wages: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin32.n33.acc.4,"Received private sector wages: into an account, older (% age 25+)",sources,Global Findex database,28
+fin32.n33.acc.5,"Received private sector wages: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.6,"Received private sector wages: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.7,"Received private sector wages: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.8,"Received private sector wages: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.9,"Received private sector wages: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin32.n33.acc.s,"Received private sector wages: into an account (% of private sector wage recipients, age 15+)",sources,Global Findex database,28
+fin34a,Received wages: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin34a.1,"Received wages: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin34a.10,"Received wages: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin34a.11,"Received wages: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin34a.12,"Received wages: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin34a.2,"Received wages: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin34a.3,"Received wages: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin34a.4,"Received wages: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin34a.5,"Received wages: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin34a.6,"Received wages: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin34a.7,"Received wages: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin34a.8,"Received wages: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin34a.9,"Received wages: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin34a.s,"Received wages: into a bank or similar financial institution account (% of wage recipients, age 15+)",sources,Global Findex database,28
+fin34b,Received wages: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin34b.1,"Received wages: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin34b.10,"Received wages: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin34b.11,"Received wages: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin34b.12,"Received wages: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin34b.2,"Received wages: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin34b.3,"Received wages: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin34b.4,"Received wages: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin34b.5,"Received wages: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin34b.6,"Received wages: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin34b.7,"Received wages: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin34b.8,"Received wages: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin34b.9,"Received wages: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin34b.s,"Received wages: through a mobile phone (% of wage recipients, age 15+)",sources,Global Findex database,28
+fin34c,Received wages: in cash only (% age 15+),sources,Gender Statistics,14
+fin34c.1,"Received wages: in cash only, women (% age 15+)",sources,Gender Statistics,14
+fin34c.10,"Received wages: in cash only, urban (% age 15+)",sources,Global Findex database,28
+fin34c.11,"Received wages: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin34c.12,"Received wages: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin34c.2,"Received wages: in cash only, men (% age 15+)",sources,Gender Statistics,14
+fin34c.3,"Received wages: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin34c.4,"Received wages: in cash only, older (% age 25+)",sources,Global Findex database,28
+fin34c.5,"Received wages: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin34c.6,"Received wages: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin34c.7,"Received wages: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin34c.8,"Received wages: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin34c.9,"Received wages: in cash only, rural (% age 15+)",sources,Global Findex database,28
+fin34c.s,"Received wages: in cash only (% of wage recipients, age 15+)",sources,Global Findex database,28
+fin34d,Received wages: to a card (% age 15+),sources,Global Findex database,28
+fin34d.1,"Received wages: to a card, women (% age 15+)",sources,Global Findex database,28
+fin34d.11,"Received wages: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin34d.12,"Received wages: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin34d.2,"Received wages: to a card, men (% age 15+)",sources,Global Findex database,28
+fin34d.3,"Received wages: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fin34d.4,"Received wages: to a card, older (% age 25+)",sources,Global Findex database,28
+fin34d.5,"Received wages: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin34d.6,"Received wages: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin34d.7,"Received wages: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin34d.8,"Received wages: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin34d.s,"Received wages: to a card (% of wage recipients, age 15+)",sources,Global Findex database,28
+fin35,Received wages into an account: paid higher than expected fees (% age 15+),sources,Global Findex database,28
+fin36Aa,Wage payments: Take out money by self (% age 15+),sources,Global Findex database,28
+fin36Ab,Wage payments: Family member withdrew money (% age 15+),sources,Global Findex database,28
+fin36a,Wage payments: Take all money out of account (% age 15+),sources,Global Findex database,28
+fin36a.1,"Wage payments: Take all money out of account, women (% age 15+)",sources,Global Findex database,28
+fin36a.10,"Wage payments: Take all money out of account, urban (% age 15+)",sources,Global Findex database,28
+fin36a.11,"Wage payments: Take all money out of account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin36a.12,"Wage payments: Take all money out of account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin36a.2,"Wage payments: Take all money out of account, men (% age 15+)",sources,Global Findex database,28
+fin36a.3,"Wage payments: Take all money out of account, young (% ages 15-24)",sources,Global Findex database,28
+fin36a.4,"Wage payments: Take all money out of account, older (% age 25+)",sources,Global Findex database,28
+fin36a.5,"Wage payments: Take all money out of account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin36a.6,"Wage payments: Take all money out of account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin36a.7,"Wage payments: Take all money out of account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin36a.8,"Wage payments: Take all money out of account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin36a.9,"Wage payments: Take all money out of account, rural (% age 15+)",sources,Global Findex database,28
+fin36b,Wage payments: leave some money in the account (% age 15+),sources,Gender Statistics,14
+fin36b.1,"Wage payments: leave some money in the account, women (% age 15+)",sources,Gender Statistics,14
+fin36b.10,"Wage payments: leave some money in the account, urban (% age 15+)",sources,Global Findex database,28
+fin36b.11,"Wage payments: leave some money in the account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin36b.12,"Wage payments: leave some money in the account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin36b.2,"Wage payments: leave some money in the account, men (% age 15+)",sources,Gender Statistics,14
+fin36b.3,"Wage payments: leave some money in the account, young (% ages 15-24)",sources,Global Findex database,28
+fin36b.4,"Wage payments: leave some money in the account, older (% age 25+)",sources,Global Findex database,28
+fin36b.5,"Wage payments: leave some money in the account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin36b.6,"Wage payments: leave some money in the account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin36b.7,"Wage payments: leave some money in the account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin36b.8,"Wage payments: leave some money in the account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin36b.9,"Wage payments: leave some money in the account, rural (% age 15+)",sources,Global Findex database,28
+fin37,Received government transfer (% age 15+),sources,Gender Statistics,14
+fin37.1,"Received government transfer, women (% age 15+)",sources,Gender Statistics,14
+fin37.10,"Received government transfer, urban (% age 15+)",sources,Global Findex database,28
+fin37.11,"Received government transfer, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.12,"Received government transfer, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.2,"Received government transfer, men (% age 15+)",sources,Gender Statistics,14
+fin37.3,"Received government transfer, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38,Received government transfer or pension (% age 15+),sources,Gender Statistics,14
+fin37.38.1,"Received government transfer or pension, women (% age 15+)",sources,Gender Statistics,14
+fin37.38.10,"Received government transfer or pension, urban (% age 15+)",sources,Global Findex database,28
+fin37.38.11,"Received government transfer or pension, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.12,"Received government transfer or pension, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.2,"Received government transfer or pension, men (% age 15+)",sources,Gender Statistics,14
+fin37.38.3,"Received government transfer or pension, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39.acc,Received government transfer or pension: into an account (% age 15+),sources,Gender Statistics,14
+fin37.38.39.acc.1,"Received government transfer or pension: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin37.38.39.acc.10,"Received government transfer or pension: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.11,"Received government transfer or pension: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.12,"Received government transfer or pension: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.2,"Received government transfer or pension: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin37.38.39.acc.3,"Received government transfer or pension: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39.acc.4,"Received government transfer or pension: into an account, older (% age 25+)",sources,Global Findex database,28
+fin37.38.39.acc.5,"Received government transfer or pension: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.6,"Received government transfer or pension: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.7,"Received government transfer or pension: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.8,"Received government transfer or pension: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.9,"Received government transfer or pension: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin37.38.39.acc.s,"Received government transfer or pension: into an account (% of government transfer or pension recipients, age 15+)",sources,Global Findex database,28
+fin37.38.39a,Received government transfer or pension: into bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin37.38.39a.1,"Received government transfer or pension: into bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin37.38.39a.10,"Received government transfer or pension: into bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.11,"Received government transfer or pension: into bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.12,"Received government transfer or pension: into bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.2,"Received government transfer or pension: into bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin37.38.39a.3,"Received government transfer or pension: into bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39a.4,"Received government transfer or pension: into bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin37.38.39a.5,"Received government transfer or pension: into bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.6,"Received government transfer or pension: into bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.7,"Received government transfer or pension: into bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.8,"Received government transfer or pension: into bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.9,"Received government transfer or pension: into bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin37.38.39a.s,"Received government transfer or pension: into bank or similar financial institution account (% of government transfer or pension recipients, age 15+)",sources,Global Findex database,28
+fin37.38.39b,Received government transfer or pension: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin37.38.39b.1,"Received government transfer or pension: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.10,"Received government transfer or pension: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.11,"Received government transfer or pension: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.12,"Received government transfer or pension: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.2,"Received government transfer or pension: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.3,"Received government transfer or pension: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39b.4,"Received government transfer or pension: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin37.38.39b.5,"Received government transfer or pension: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.6,"Received government transfer or pension: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.7,"Received government transfer or pension: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.8,"Received government transfer or pension: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.9,"Received government transfer or pension: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin37.38.39b.s,"Received government transfer or pension: through a mobile phone (% of government transfer or pension recipients, age 15+)",sources,Global Findex database,28
+fin37.38.39c,Received government transfer or pension: cash only (% age 15+),sources,Global Findex database,28
+fin37.38.39c.1,"Received government transfer or pension: cash only, women (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.10,"Received government transfer or pension: cash only, urban (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.11,"Received government transfer or pension: cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.12,"Received government transfer or pension: cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.2,"Received government transfer or pension: cash only, men (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.3,"Received government transfer or pension: cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39c.4,"Received government transfer or pension: cash only, older (% age 25+)",sources,Global Findex database,28
+fin37.38.39c.5,"Received government transfer or pension: cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.6,"Received government transfer or pension: cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.7,"Received government transfer or pension: cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.8,"Received government transfer or pension: cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.9,"Received government transfer or pension: cash only, rural (% age 15+)",sources,Global Findex database,28
+fin37.38.39c.s,"Received government transfer or pension: in cash only (% of government transfer or pension recipients, age 15+)",sources,Global Findex database,28
+fin37.38.39d,Received government transfer or pension: to a card (% age 15+),sources,Global Findex database,28
+fin37.38.39d.1,"Received government transfer or pension: to a card, women (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.11,"Received government transfer or pension: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.12,"Received government transfer or pension: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.2,"Received government transfer or pension: to a card, men (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.3,"Received government transfer or pension: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fin37.38.39d.4,"Received government transfer or pension: to a card, older (% age 25+)",sources,Global Findex database,28
+fin37.38.39d.5,"Received government transfer or pension: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.6,"Received government transfer or pension: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.7,"Received government transfer or pension: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.8,"Received government transfer or pension: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.39d.s,"Received government transfer or pension: to a card (% of government transfer or pension recipients, age 15+)",sources,Global Findex database,28
+fin37.38.4,"Received government transfer or pension, older (% age 25+)",sources,Global Findex database,28
+fin37.38.5,"Received government transfer or pension, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.38.6,"Received government transfer or pension, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.38.7,"Received government transfer or pension, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.38.8,"Received government transfer or pension, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.38.9,"Received government transfer or pension, rural (% age 15+)",sources,Global Findex database,28
+fin37.39.acc,Received government transfer: into an account (% age 15+),sources,Gender Statistics,14
+fin37.39.acc.1,"Received government transfer: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin37.39.acc.10,"Received government transfer: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.11,"Received government transfer: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.12,"Received government transfer: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.2,"Received government transfer: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin37.39.acc.3,"Received government transfer: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin37.39.acc.4,"Received government transfer: into an account, older (% age 25+)",sources,Global Findex database,28
+fin37.39.acc.5,"Received government transfer: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.6,"Received government transfer: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.7,"Received government transfer: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.8,"Received government transfer: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.9,"Received government transfer: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin37.39.acc.s,"Received government transfer: into an account (% of government transfer recipients, age 15+)",sources,Global Findex database,28
+fin37.39a,Received government transfer: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin37.39a.1,"Received government transfer: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin37.39a.10,"Received government transfer: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin37.39a.11,"Received government transfer: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39a.12,"Received government transfer: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39a.2,"Received government transfer: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin37.39a.3,"Received government transfer: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin37.39a.4,"Received government transfer: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin37.39a.5,"Received government transfer: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.39a.6,"Received government transfer: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.39a.7,"Received government transfer: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.39a.8,"Received government transfer: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.39a.9,"Received government transfer: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin37.39a.s,"Received government transfer: into a bank or similar financial institution account (% of government transfer recipients, age 15+)",sources,Global Findex database,28
+fin37.39b,Received government transfer: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin37.39b.1,"Received government transfer: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin37.39b.10,"Received government transfer: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin37.39b.11,"Received government transfer: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39b.12,"Received government transfer: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39b.2,"Received government transfer: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin37.39b.3,"Received government transfer: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin37.39b.4,"Received government transfer: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin37.39b.5,"Received government transfer: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.39b.6,"Received government transfer: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.39b.7,"Received government transfer: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.39b.8,"Received government transfer: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.39b.9,"Received government transfer: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin37.39b.s,"Received government transfer: through a mobile phone (% of government transfer recipients, age 15+)",sources,Global Findex database,28
+fin37.39c,Received government transfer: cash only (% age 15+),sources,Global Findex database,28
+fin37.39c.1,"Received government transfer: cash only, women (% age 15+)",sources,Global Findex database,28
+fin37.39c.10,"Received government transfer: cash only, urban (% age 15+)",sources,Global Findex database,28
+fin37.39c.11,"Received government transfer: cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39c.12,"Received government transfer: cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39c.2,"Received government transfer: cash only, men (% age 15+)",sources,Global Findex database,28
+fin37.39c.3,"Received government transfer: cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin37.39c.4,"Received government transfer: cash only, older (% age 25+)",sources,Global Findex database,28
+fin37.39c.5,"Received government transfer: cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.39c.6,"Received government transfer: cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.39c.7,"Received government transfer: cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.39c.8,"Received government transfer: cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.39c.9,"Received government transfer: cash only, rural (% age 15+)",sources,Global Findex database,28
+fin37.39c.s,"Received government transfer: cash only (% of government transfer recipients, age 15+)",sources,Global Findex database,28
+fin37.39d,Received government transfer: to a card (% age 15+),sources,Global Findex database,28
+fin37.39d.1,"Received government transfer: to a card, women (% age 15+)",sources,Global Findex database,28
+fin37.39d.11,"Received government transfer: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39d.12,"Received government transfer: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fin37.39d.2,"Received government transfer: to a card, men (% age 15+)",sources,Global Findex database,28
+fin37.39d.3,"Received government transfer: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fin37.39d.4,"Received government transfer: to a card, older (% age 25+)",sources,Global Findex database,28
+fin37.39d.5,"Received government transfer: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.39d.6,"Received government transfer: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.39d.7,"Received government transfer: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.39d.8,"Received government transfer: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.39d.s,"Received government transfer: to a card (% of government transfer recipients, age 15+)",sources,Global Findex database,28
+fin37.4,"Received government transfer, older (% age 25+)",sources,Global Findex database,28
+fin37.5,"Received government transfer, primary education or less (% age 15+)",sources,Global Findex database,28
+fin37.6,"Received government transfer, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin37.7,"Received government transfer, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin37.8,"Received government transfer, richest 60% (% age 15+)",sources,Global Findex database,28
+fin37.9,"Received government transfer, rural (% age 15+)",sources,Global Findex database,28
+fin38,Received a public sector pension (% age 15+),sources,Gender Statistics,14
+fin38.1,"Received a public sector pension, women (% age 15+)",sources,Gender Statistics,14
+fin38.10,"Received a public sector pension, urban (% age 15+)",sources,Global Findex database,28
+fin38.11,"Received a public sector pension, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin38.12,"Received a public sector pension, in laborforce (% age 15+)",sources,Global Findex database,28
+fin38.2,"Received a public sector pension, men (% age 15+)",sources,Gender Statistics,14
+fin38.3,"Received a public sector pension, young (% ages 15-24)",sources,Global Findex database,28
+fin38.39.acc,Received a public sector pension: into an account (% age 15+),sources,Gender Statistics,14
+fin38.39.acc.1,"Received a public sector pension: into an account, women (% age 15+)",sources,Gender Statistics,14
+fin38.39.acc.10,"Received a public sector pension: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.11,"Received a public sector pension: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.12,"Received a public sector pension: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.2,"Received a public sector pension: into an account, men (% age 15+)",sources,Gender Statistics,14
+fin38.39.acc.3,"Received a public sector pension: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin38.39.acc.4,"Received a public sector pension: into an account, older (% age 25+)",sources,Global Findex database,28
+fin38.39.acc.5,"Received a public sector pension: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.6,"Received a public sector pension: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.7,"Received a public sector pension: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.8,"Received a public sector pension: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.9,"Received a public sector pension: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin38.39.acc.s,"Received a public sector pension: into an account (% of public sector pension recipients, age 15+)",sources,Global Findex database,28
+fin38.39a,Received a public sector pension: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fin38.39a.1,"Received a public sector pension: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fin38.39a.10,"Received a public sector pension: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fin38.39a.11,"Received a public sector pension: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39a.12,"Received a public sector pension: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39a.2,"Received a public sector pension: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fin38.39a.3,"Received a public sector pension: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fin38.39a.4,"Received a public sector pension: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fin38.39a.5,"Received a public sector pension: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin38.39a.6,"Received a public sector pension: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin38.39a.7,"Received a public sector pension: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin38.39a.8,"Received a public sector pension: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin38.39a.9,"Received a public sector pension: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fin38.39a.s,"Received a public sector pension: into a bank or similar financial institution account (% of public sector pension recipients, age 15+)",sources,Global Findex database,28
+fin38.39b,Received a public sector pension: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin38.39c,Received a public sector pension: in cash only (% age 15+),sources,Global Findex database,28
+fin38.39c.1,"Received a public sector pension: in cash only, women (% age 15+)",sources,Global Findex database,28
+fin38.39c.10,"Received a public sector pension: in cash only, urban (% age 15+)",sources,Global Findex database,28
+fin38.39c.11,"Received a public sector pension: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39c.12,"Received a public sector pension: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin38.39c.2,"Received a public sector pension: in cash only, men (% age 15+)",sources,Global Findex database,28
+fin38.39c.3,"Received a public sector pension: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin38.39c.4,"Received a public sector pension: in cash only, older (% age 25+)",sources,Global Findex database,28
+fin38.39c.5,"Received a public sector pension: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin38.39c.6,"Received a public sector pension: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin38.39c.7,"Received a public sector pension: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin38.39c.8,"Received a public sector pension: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin38.39c.9,"Received a public sector pension: in cash only, rural (% age 15+)",sources,Global Findex database,28
+fin38.39c.s,"Received a public sector pension: in cash only (% of public sector pension recipients, age 15+)",sources,Global Findex database,28
+fin38.39d,Received a public sector pension: to a card (% age 15+),sources,Global Findex database,28
+fin38.4,"Received a public sector pension, older (% age 25+)",sources,Global Findex database,28
+fin38.5,"Received a public sector pension, primary education or less (% age 15+)",sources,Global Findex database,28
+fin38.6,"Received a public sector pension, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin38.7,"Received a public sector pension, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin38.8,"Received a public sector pension, richest 60% (% age 15+)",sources,Global Findex database,28
+fin38.9,"Received a public sector pension, rural (% age 15+)",sources,Global Findex database,28
+fin4.d,First bank or similar financial institution account ever was opened to receive a wage payment or money from the government (% age 15+),sources,Gender Statistics,14
+fin4.d.1,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, women (% age 15+)",sources,Gender Statistics,14
+fin4.d.10,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, urban (% age 15+)",sources,Global Findex database,28
+fin4.d.11,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin4.d.12,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, in laborforce (% age 15+)",sources,Global Findex database,28
+fin4.d.2,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, men (% age 15+)",sources,Gender Statistics,14
+fin4.d.3,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, young (% ages 15-24)",sources,Global Findex database,28
+fin4.d.4,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, older (% age 25+)",sources,Global Findex database,28
+fin4.d.5,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, primary education or less (% age 15+)",sources,Global Findex database,28
+fin4.d.6,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin4.d.7,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin4.d.8,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, richest 60% (% age 15+)",sources,Global Findex database,28
+fin4.d.9,"First bank or similar financial institution account ever was opened to receive a wage payment or money from the government, rural (% age 15+)",sources,Global Findex database,28
+fin40a,Government transfer or pension: take out all cash at once (% age 15+),sources,Global Findex database,28
+fin40a.1,"Government transfer or pension: take out all cash at once, women (% age 15+)",sources,Global Findex database,28
+fin40a.10,"Government transfer or pension: take out all cash at once, urban (% age 15+)",sources,Global Findex database,28
+fin40a.11,"Government transfer or pension: take out all cash at once, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin40a.12,"Government transfer or pension: take out all cash at once, in laborforce (% age 15+)",sources,Global Findex database,28
+fin40a.2,"Government transfer or pension: take out all cash at once, men (% age 15+)",sources,Global Findex database,28
+fin40a.3,"Government transfer or pension: take out all cash at once, young (% ages 15-24)",sources,Global Findex database,28
+fin40a.4,"Government transfer or pension: take out all cash at once, older (% age 25+)",sources,Global Findex database,28
+fin40a.5,"Government transfer or pension: take out all cash at once, primary education or less (% age 15+)",sources,Global Findex database,28
+fin40a.6,"Government transfer or pension: take out all cash at once, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin40a.7,"Government transfer or pension: take out all cash at once, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin40a.8,"Government transfer or pension: take out all cash at once, richest 60% (% age 15+)",sources,Global Findex database,28
+fin40a.9,"Government transfer or pension: take out all cash at once, rural (% age 15+)",sources,Global Findex database,28
+fin40b,Government transfer or pension: leave some money in your account (% age 15+),sources,Global Findex database,28
+fin40b.1,"Government transfer or pension: leave some money in your account, women (% age 15+)",sources,Global Findex database,28
+fin40b.10,"Government transfer or pension: leave some money in your account, urban (% age 15+)",sources,Global Findex database,28
+fin40b.11,"Government transfer or pension: leave some money in your account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin40b.12,"Government transfer or pension: leave some money in your account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin40b.2,"Government transfer or pension: leave some money in your account, men (% age 15+)",sources,Global Findex database,28
+fin40b.3,"Government transfer or pension: leave some money in your account, young (% ages 15-24)",sources,Global Findex database,28
+fin40b.4,"Government transfer or pension: leave some money in your account, older (% age 25+)",sources,Global Findex database,28
+fin40b.5,"Government transfer or pension: leave some money in your account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin40b.6,"Government transfer or pension: leave some money in your account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin40b.7,"Government transfer or pension: leave some money in your account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin40b.8,"Government transfer or pension: leave some money in your account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin40b.9,"Government transfer or pension: leave some money in your account, rural (% age 15+)",sources,Global Findex database,28
+fin41,Greater than expected withdrawal fee: government transfer or pension (% age 15+),sources,Global Findex database,28
+fin42,"Received payments for the sale of agricultural products, livestock, or crops (% age 15+)",sources,Gender Statistics,14
+fin42.1,"Received payments for the sale of agricultural products, livestock, or crops, women (% age 15+)",sources,Gender Statistics,14
+fin42.10,"Received payments for the sale of agricultural products, livestock, or crops, urban (% age 15+)",sources,Global Findex database,28
+fin42.11,"Received payments for the sale of agricultural products, livestock, or crops, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin42.12,"Received payments for the sale of agricultural products, livestock, or crops, in laborforce (% age 15+)",sources,Global Findex database,28
+fin42.2,"Received payments for the sale of agricultural products, livestock, or crops, men (% age 15+)",sources,Gender Statistics,14
+fin42.3,"Received payments for the sale of agricultural products, livestock, or crops, young (% ages 15-24)",sources,Global Findex database,28
+fin42.4,"Received payments for the sale of agricultural products, livestock, or crops, older (% age 25+)",sources,Global Findex database,28
+fin42.5,"Received payments for the sale of agricultural products, livestock, or crops, primary education or less (% age 15+)",sources,Global Findex database,28
+fin42.6,"Received payments for the sale of agricultural products, livestock, or crops, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin42.7,"Received payments for the sale of agricultural products, livestock, or crops, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin42.8,"Received payments for the sale of agricultural products, livestock, or crops, richest 60% (% age 15+)",sources,Global Findex database,28
+fin42.9,"Received payments for the sale of agricultural products, livestock, or crops, rural (% age 15+)",sources,Global Findex database,28
+fin42.acc,Received payments for agricultural products: into an account (% age 15+),sources,Global Findex database,28
+fin42.acc.1,"Received payments for agricultural products: into an account, women (% age 15+)",sources,Global Findex database,28
+fin42.acc.10,"Received payments for agricultural products: into an account, urban (% age 15+)",sources,Global Findex database,28
+fin42.acc.11,"Received payments for agricultural products: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin42.acc.12,"Received payments for agricultural products: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin42.acc.2,"Received payments for agricultural products: into an account, men (% age 15+)",sources,Global Findex database,28
+fin42.acc.3,"Received payments for agricultural products: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fin42.acc.4,"Received payments for agricultural products: into an account, older (% age 25+)",sources,Global Findex database,28
+fin42.acc.5,"Received payments for agricultural products: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin42.acc.6,"Received payments for agricultural products: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin42.acc.7,"Received payments for agricultural products: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin42.acc.8,"Received payments for agricultural products: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin42.acc.9,"Received payments for agricultural products: into an account, rural (% age 15+)",sources,Global Findex database,28
+fin42.acc.s,"Received payments for agricultural products: into an account (% of agricultural payment recipients, age 15+)",sources,Global Findex database,28
+fin43a,Received payments for agricultural products: into a bank or similar financial institution account (% age 15+),sources,Global Findex database,28
+fin43b,Received payments for agricultural products: through a mobile phone (% age 15+),sources,Global Findex database,28
+fin43b.1,"Received payments for agricultural products: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fin43b.10,"Received payments for agricultural products: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fin43b.11,"Received payments for agricultural products: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin43b.12,"Received payments for agricultural products: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fin43b.2,"Received payments for agricultural products: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fin43b.3,"Received payments for agricultural products: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fin43b.4,"Received payments for agricultural products: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fin43b.5,"Received payments for agricultural products: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fin43b.6,"Received payments for agricultural products: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin43b.7,"Received payments for agricultural products: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin43b.8,"Received payments for agricultural products: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fin43b.9,"Received payments for agricultural products: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fin43b.s,"Received payments for agricultural products: through a mobile phone (% payment recipients, age 15+)",sources,Global Findex database,28
+fin43c,Received payments for agricultural products: in cash only (% age 15+),sources,Gender Statistics,14
+fin43c.1,"Received payments for agricultural products: in cash only, women (% age 15+)",sources,Gender Statistics,14
+fin43c.10,"Received payments for agricultural products: in cash only, urban (% age 15+)",sources,Global Findex database,28
+fin43c.11,"Received payments for agricultural products: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin43c.12,"Received payments for agricultural products: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fin43c.2,"Received payments for agricultural products: in cash only, men (% age 15+)",sources,Gender Statistics,14
+fin43c.3,"Received payments for agricultural products: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fin43c.4,"Received payments for agricultural products: in cash only, older (% age 25+)",sources,Global Findex database,28
+fin43c.5,"Received payments for agricultural products: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fin43c.6,"Received payments for agricultural products: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin43c.7,"Received payments for agricultural products: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin43c.8,"Received payments for agricultural products: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fin43c.9,"Received payments for agricultural products: in cash only, rural (% age 15+)",sources,Global Findex database,28
+fin43c.s,"Received payments for agricultural products: in cash only (% of agricultural payment recipients, age 15+)",sources,Global Findex database,28
+fin43d,Received payments for agricultural products: to a card (% age 15+),sources,Global Findex database,28
+fin44,Use a phone or the internet to access information about weather or agriculture (% age 15+),sources,Global Findex database,28
+fin44.1,"Use a phone or the internet to access information about weather or agriculture, women (% age 15+)",sources,Global Findex database,28
+fin44.10,"Use a phone or the internet to access information about weather or agriculture, urban (% age 15+)",sources,Global Findex database,28
+fin44.11,"Use a phone or the internet to access information about weather or agriculture, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin44.12,"Use a phone or the internet to access information about weather or agriculture, in laborforce (% age 15+)",sources,Global Findex database,28
+fin44.2,"Use a phone or the internet to access information about weather or agriculture, men (% age 15+)",sources,Global Findex database,28
+fin44.3,"Use a phone or the internet to access information about weather or agriculture, young (% ages 15-24)",sources,Global Findex database,28
+fin44.4,"Use a phone or the internet to access information about weather or agriculture, older (% age 25+)",sources,Global Findex database,28
+fin44.5,"Use a phone or the internet to access information about weather or agriculture, primary education or less (% age 15+)",sources,Global Findex database,28
+fin44.6,"Use a phone or the internet to access information about weather or agriculture, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin44.7,"Use a phone or the internet to access information about weather or agriculture, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin44.8,"Use a phone or the internet to access information about weather or agriculture, richest 60% (% age 15+)",sources,Global Findex database,28
+fin44.9,"Use a phone or the internet to access information about weather or agriculture, rural (% age 15+)",sources,Global Findex database,28
+fin45a,Most worrying financial issue: money for old age (% age 15+),sources,Gender Statistics,14
+fin45a.1,"Most worrying financial issue: money for old age, women (% age 15+)",sources,Gender Statistics,14
+fin45a.10,"Most worrying financial issue: money for old age, urban (% age 15+)",sources,Global Findex database,28
+fin45a.11,"Most worrying financial issue: money for old age, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin45a.12,"Most worrying financial issue: money for old age, in laborforce (% age 15+)",sources,Global Findex database,28
+fin45a.2,"Most worrying financial issue: money for old age, men (% age 15+)",sources,Gender Statistics,14
+fin45a.3,"Most worrying financial issue: money for old age, young (% ages 15-24)",sources,Global Findex database,28
+fin45a.4,"Most worrying financial issue: money for old age, older (% age 25+)",sources,Global Findex database,28
+fin45a.5,"Most worrying financial issue: money for old age, primary education or less (% age 15+)",sources,Global Findex database,28
+fin45a.6,"Most worrying financial issue: money for old age, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin45a.7,"Most worrying financial issue: money for old age, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin45a.8,"Most worrying financial issue: money for old age, richest 60% (% age 15+)",sources,Global Findex database,28
+fin45a.9,"Most worrying financial issue: money for old age, rural (% age 15+)",sources,Global Findex database,28
+fin45b,Most worrying financial issue: money for business (% age 15+),sources,Global Findex database,28
+fin45b.1,"Most worrying financial issue: money for business, women (% age 15+)",sources,Global Findex database,28
+fin45b.10,"Most worrying financial issue: money for business, urban (% age 15+)",sources,Global Findex database,28
+fin45b.11,"Most worrying financial issue: money for business, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin45b.12,"Most worrying financial issue: money for business, in laborforce (% age 15+)",sources,Global Findex database,28
+fin45b.2,"Most worrying financial issue: money for business, men (% age 15+)",sources,Global Findex database,28
+fin45b.3,"Most worrying financial issue: money for business, young (% ages 15-24)",sources,Global Findex database,28
+fin45b.4,"Most worrying financial issue: money for business, older (% age 25+)",sources,Global Findex database,28
+fin45b.5,"Most worrying financial issue: money for business, primary education or less (% age 15+)",sources,Global Findex database,28
+fin45b.6,"Most worrying financial issue: money for business, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin45b.7,"Most worrying financial issue: money for business, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin45b.8,"Most worrying financial issue: money for business, richest 60% (% age 15+)",sources,Global Findex database,28
+fin45b.9,"Most worrying financial issue: money for business, rural (% age 15+)",sources,Global Findex database,28
+fin45c,Most worrying financial issue: paying for medical costs in case of a serious illness or accident (% age 15+),sources,Gender Statistics,14
+fin45c.1,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, women (% age 15+)",sources,Gender Statistics,14
+fin45c.10,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, urban (% age 15+)",sources,Global Findex database,28
+fin45c.11,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin45c.12,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, in laborforce (% age 15+)",sources,Global Findex database,28
+fin45c.2,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, men (% age 15+)",sources,Gender Statistics,14
+fin45c.3,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, young (% ages 15-24)",sources,Global Findex database,28
+fin45c.4,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, older (% age 25+)",sources,Global Findex database,28
+fin45c.5,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, primary education or less (% age 15+)",sources,Global Findex database,28
+fin45c.6,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin45c.7,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin45c.8,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, richest 60% (% age 15+)",sources,Global Findex database,28
+fin45c.9,"Most worrying financial issue: paying for medical costs in case of a serious illness or accident, rural (% age 15+)",sources,Global Findex database,28
+fin45d,Most worrying financial issue: money to pay for monthly expenses or bills (% age 15+),sources,Gender Statistics,14
+fin45d.1,"Most worrying financial issue: money to pay for monthly expenses or bills, women (% age 15+)",sources,Gender Statistics,14
+fin45d.10,"Most worrying financial issue: money to pay for monthly expenses or bills, urban (% age 15+)",sources,Global Findex database,28
+fin45d.11,"Most worrying financial issue: money to pay for monthly expenses or bills, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin45d.12,"Most worrying financial issue: money to pay for monthly expenses or bills, in laborforce (% age 15+)",sources,Global Findex database,28
+fin45d.2,"Most worrying financial issue: money to pay for monthly expenses or bills, men (% age 15+)",sources,Gender Statistics,14
+fin45d.3,"Most worrying financial issue: money to pay for monthly expenses or bills, young (% ages 15-24)",sources,Global Findex database,28
+fin45d.4,"Most worrying financial issue: money to pay for monthly expenses or bills, older (% age 25+)",sources,Global Findex database,28
+fin45d.5,"Most worrying financial issue: money to pay for monthly expenses or bills, primary education or less (% age 15+)",sources,Global Findex database,28
+fin45d.6,"Most worrying financial issue: money to pay for monthly expenses or bills, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin45d.7,"Most worrying financial issue: money to pay for monthly expenses or bills, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin45d.8,"Most worrying financial issue: money to pay for monthly expenses or bills, richest 60% (% age 15+)",sources,Global Findex database,28
+fin45d.9,"Most worrying financial issue: money to pay for monthly expenses or bills, rural (% age 15+)",sources,Global Findex database,28
+fin45e,Most worrying financial issue: paying school or education fees (% age 15+),sources,Gender Statistics,14
+fin45e.1,"Most worrying financial issue: paying school or education fees, women (% age 15+)",sources,Gender Statistics,14
+fin45e.10,"Most worrying financial issue: paying school or education fees, urban (% age 15+)",sources,Global Findex database,28
+fin45e.11,"Most worrying financial issue: paying school or education fees, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin45e.12,"Most worrying financial issue: paying school or education fees, in laborforce (% age 15+)",sources,Global Findex database,28
+fin45e.2,"Most worrying financial issue: paying school or education fees, men (% age 15+)",sources,Gender Statistics,14
+fin45e.3,"Most worrying financial issue: paying school or education fees, young (% ages 15-24)",sources,Global Findex database,28
+fin45e.4,"Most worrying financial issue: paying school or education fees, older (% age 25+)",sources,Global Findex database,28
+fin45e.5,"Most worrying financial issue: paying school or education fees, primary education or less (% age 15+)",sources,Global Findex database,28
+fin45e.6,"Most worrying financial issue: paying school or education fees, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin45e.7,"Most worrying financial issue: paying school or education fees, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin45e.8,"Most worrying financial issue: paying school or education fees, richest 60% (% age 15+)",sources,Global Findex database,28
+fin45e.9,"Most worrying financial issue: paying school or education fees, rural (% age 15+)",sources,Global Findex database,28
+fin48_a,Has a national identity card (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin48_a_1,"Has a national identity card, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin48_a_2,"Has a national identity card, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin48_a_3,"Has a national identity card, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin48_a_4,"Has a national identity card, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin48_a_5,Has a national identity card (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+fin48_a_6,Has a national identity card (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin48_a_7,Has a national identity card (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin4_t_d,Used a debit or credit card to make a purchase in the past year (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin5lm,"Deposited money into a bank or similar financial institution, less than once a month (% age 15+)",sources,Global Findex database,28
+fin5lm.1,"Deposited money into a bank or similar financial institution, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin5lm.10,"Deposited money into a bank or similar financial institution, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin5lm.11,"Deposited money into a bank or similar financial institution, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin5lm.12,"Deposited money into a bank or similar financial institution, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin5lm.2,"Deposited money into a bank or similar financial institution, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin5lm.3,"Deposited money into a bank or similar financial institution, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin5lm.4,"Deposited money into a bank or similar financial institution, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin5lm.5,"Deposited money into a bank or similar financial institution, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin5lm.6,"Deposited money into a bank or similar financial institution, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin5lm.7,"Deposited money into a bank or similar financial institution, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin5lm.8,"Deposited money into a bank or similar financial institution, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin5lm.9,"Deposited money into a bank or similar financial institution, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin5m,"Deposited money into a bank or similar financial institution, monthly (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin5m.1,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin5m.10,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin5m.11,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin5m.12,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin5m.2,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin5m.3,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin5m.4,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin5m.5,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin5m.6,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin5m.7,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin5m.8,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin5m.9,"Deposited money into a bank or similar financial institution, monthly (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin5m.s,"Deposited money into a bank or similar financial institution, monthly (% with a bank or similar financial institution account, age 15+)",sources,Global Findex database,28
+fin5n,"Deposited money into a bank or similar financial institution, Never (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin5n.1,"Deposited money into a bank or similar financial institution, Never (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin5n.10,"Deposited money into a bank or similar financial institution, Never (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin5n.11,"Deposited money into a bank or similar financial institution, Never (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin5n.12,"Deposited money into a bank or similar financial institution, Never (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin5n.2,"Deposited money into a bank or similar financial institution, Never (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin5n.3,"Deposited money into a bank or similar financial institution, Never (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin5n.4,"Deposited money into a bank or similar financial institution, Never (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin5n.5,"Deposited money into a bank or similar financial institution, Never (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin5n.6,"Deposited money into a bank or similar financial institution, Never (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin5n.7,"Deposited money into a bank or similar financial institution, Never (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin5n.8,"Deposited money into a bank or similar financial institution, Never (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin5n.9,"Deposited money into a bank or similar financial institution, Never (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin5w,"Deposited money into a bank or similar financial institution, weekly (% age 15+)",sources,Global Findex database,28
+fin5w.1,"Deposited money into a bank or similar financial institution, weekly, women (% age 15+)",sources,Global Findex database,28
+fin5w.10,"Deposited money into a bank or similar financial institution, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin5w.11,"Deposited money into a bank or similar financial institution, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin5w.12,"Deposited money into a bank or similar financial institution, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin5w.2,"Deposited money into a bank or similar financial institution, weekly, men (% age 15+)",sources,Global Findex database,28
+fin5w.3,"Deposited money into a bank or similar financial institution, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin5w.4,"Deposited money into a bank or similar financial institution, weekly, older (% age 25+)",sources,Global Findex database,28
+fin5w.5,"Deposited money into a bank or similar financial institution, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin5w.6,"Deposited money into a bank or similar financial institution, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin5w.7,"Deposited money into a bank or similar financial institution, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin5w.8,"Deposited money into a bank or similar financial institution, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin5w.9,"Deposited money into a bank or similar financial institution, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin5w.s,"Deposited money into a bank or similar financial institution, weekly (% with a bank or similar financial institution account, age 15+)",sources,Global Findex database,28
+fin6_a,Used a mobile phone or the internet to check account balance in the past year (% age 15+),sources,G20 Financial Inclusion Indicators,33
+fin6_a_1,"Used a mobile phone or the internet to check account balance in the past year, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin6_a_2,"Used a mobile phone or the internet to check account balance in the past year, male (% age 15+)""",sources,G20 Financial Inclusion Indicators,33
+fin6_a_3,"Used a mobile phone or the internet to check account balance in the past year, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin6_a_4,"Used a mobile phone or the internet to check account balance in the past year, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+fin6_a_5,Used a mobile phone or the internet to check account balance in the past year (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+fin6_a_6,Used a mobile phone or the internet to check account balance in the past year (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+fin6_a_7,Used a mobile phone or the internet to check account balance in the past year (% age 60+),sources,G20 Financial Inclusion Indicators,33
+fin6lm,"Sent or withdrew money from a bank or similar financial institution, less than once a month (% age 15+)",sources,Global Findex database,28
+fin6lm.1,"Sent or withdrew money from a bank or similar financial institution, less than once a month, women (% age 15+)",sources,Global Findex database,28
+fin6lm.10,"Sent or withdrew money from a bank or similar financial institution, less than once a month, urban (% age 15+)",sources,Global Findex database,28
+fin6lm.11,"Sent or withdrew money from a bank or similar financial institution, less than once a month, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin6lm.12,"Sent or withdrew money from a bank or similar financial institution, less than once a month, in laborforce (% age 15+)",sources,Global Findex database,28
+fin6lm.2,"Sent or withdrew money from a bank or similar financial institution, less than once a month, men (% age 15+)",sources,Global Findex database,28
+fin6lm.3,"Sent or withdrew money from a bank or similar financial institution, less than once a month, young (% ages 15-24)",sources,Global Findex database,28
+fin6lm.4,"Sent or withdrew money from a bank or similar financial institution, less than once a month, older (% age 25+)",sources,Global Findex database,28
+fin6lm.5,"Sent or withdrew money from a bank or similar financial institution, less than once a month, primary education or less (% age 15+)",sources,Global Findex database,28
+fin6lm.6,"Sent or withdrew money from a bank or similar financial institution, less than once a month, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin6lm.7,"Sent or withdrew money from a bank or similar financial institution, less than once a month, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin6lm.8,"Sent or withdrew money from a bank or similar financial institution, less than once a month, richest 60% (% age 15+)",sources,Global Findex database,28
+fin6lm.9,"Sent or withdrew money from a bank or similar financial institution, less than once a month, rural (% age 15+)",sources,Global Findex database,28
+fin6m,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin6m.1,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin6m.10,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin6m.11,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin6m.12,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin6m.2,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin6m.3,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin6m.4,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin6m.5,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin6m.6,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin6m.7,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin6m.8,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin6m.9,"Sent or withdrew money from a bank or similar financial institution, monthly (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin6m.s,"Sent or withdrew money from a bank or similar financial institution, monthly (% with a bank or similar financial institution account, age 15+)",sources,Global Findex database,28
+fin6n,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+) (% age 15+)",sources,Global Findex database,28
+fin6n.1,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), women (% age 15+)",sources,Global Findex database,28
+fin6n.10,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), urban (% age 15+)",sources,Global Findex database,28
+fin6n.11,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), out of laborforce (% age 15+)",sources,Global Findex database,28
+fin6n.12,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), in laborforce (% age 15+)",sources,Global Findex database,28
+fin6n.2,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), men (% age 15+)",sources,Global Findex database,28
+fin6n.3,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), young (% ages 15-24)",sources,Global Findex database,28
+fin6n.4,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), older (% age 25+)",sources,Global Findex database,28
+fin6n.5,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), primary education or less (% age 15+)",sources,Global Findex database,28
+fin6n.6,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), secondary education or more (% age 15+)",sources,Global Findex database,28
+fin6n.7,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), poorest 40% (% age 15+)",sources,Global Findex database,28
+fin6n.8,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), richest 60% (% age 15+)",sources,Global Findex database,28
+fin6n.9,"Sent or withdrew money from a bank or similar financial institution, Never (%, age 15+), rural (% age 15+)",sources,Global Findex database,28
+fin6w,"Sent or withdrew money from a bank or similar financial institution, weekly (% age 15+)",sources,Global Findex database,28
+fin6w.1,"Sent or withdrew money from a bank or similar financial institution, weekly, women (% age 15+)",sources,Global Findex database,28
+fin6w.10,"Sent or withdrew money from a bank or similar financial institution, weekly, urban (% age 15+)",sources,Global Findex database,28
+fin6w.11,"Sent or withdrew money from a bank or similar financial institution, weekly, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin6w.12,"Sent or withdrew money from a bank or similar financial institution, weekly, in laborforce (% age 15+)",sources,Global Findex database,28
+fin6w.2,"Sent or withdrew money from a bank or similar financial institution, weekly, men (% age 15+)",sources,Global Findex database,28
+fin6w.3,"Sent or withdrew money from a bank or similar financial institution, weekly, young (% ages 15-24)",sources,Global Findex database,28
+fin6w.4,"Sent or withdrew money from a bank or similar financial institution, weekly, older (% age 25+)",sources,Global Findex database,28
+fin6w.5,"Sent or withdrew money from a bank or similar financial institution, weekly, primary education or less (% age 15+)",sources,Global Findex database,28
+fin6w.6,"Sent or withdrew money from a bank or similar financial institution, weekly, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin6w.7,"Sent or withdrew money from a bank or similar financial institution, weekly, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin6w.8,"Sent or withdrew money from a bank or similar financial institution, weekly, richest 60% (% age 15+)",sources,Global Findex database,28
+fin6w.9,"Sent or withdrew money from a bank or similar financial institution, weekly, rural (% age 15+)",sources,Global Findex database,28
+fin6w.s,"Sent or withdrew money from bank or similar financial institution, weekly (% with a bank or similar financial institution account, age 15+)",sources,Global Findex database,28
+fin7,Money put into or taken out of account (% age 15+),sources,Global Findex database,28
+fin7.1,"Money put into or taken out of account, women (% age 15+)",sources,Global Findex database,28
+fin7.10,"Money put into or taken out of account, urban (% age 15+)",sources,Global Findex database,28
+fin7.11,"Money put into or taken out of account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin7.12,"Money put into or taken out of account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin7.2,"Money put into or taken out of account, men (% age 15+)",sources,Global Findex database,28
+fin7.3,"Money put into or taken out of account, young (% ages 15-24)",sources,Global Findex database,28
+fin7.4,"Money put into or taken out of account, older (% age 25+)",sources,Global Findex database,28
+fin7.5,"Money put into or taken out of account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin7.6,"Money put into or taken out of account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin7.7,"Money put into or taken out of account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin7.8,"Money put into or taken out of account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin7.9,"Money put into or taken out of account, rural (% age 15+)",sources,Global Findex database,28
+fin8,Store money in account (% age 15+),sources,Gender Statistics,14
+fin8.1,"Store money in account, women (% age 15+)",sources,Gender Statistics,14
+fin8.10,"Store money in account, urban (% age 15+)",sources,Global Findex database,28
+fin8.11,"Store money in account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin8.12,"Store money in account, in laborforce (% age 15+)",sources,Global Findex database,28
+fin8.2,"Store money in account, men (% age 15+)",sources,Gender Statistics,14
+fin8.3,"Store money in account, young (% ages 15-24)",sources,Global Findex database,28
+fin8.4,"Store money in account, older (% age 25+)",sources,Global Findex database,28
+fin8.5,"Store money in account, primary education or less (% age 15+)",sources,Global Findex database,28
+fin8.6,"Store money in account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin8.7,"Store money in account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin8.8,"Store money in account, richest 60% (% age 15+)",sources,Global Findex database,28
+fin8.9,"Store money in account, rural (% age 15+)",sources,Global Findex database,28
+fin9a,Deposited money into a financial institution account 2 or more times a month (% age 15+),sources,Gender Statistics,14
+fin9a.1,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, women (% age 15+)",sources,Gender Statistics,14
+fin9a.10,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, urban (% age 15+)",sources,Global Findex database,28
+fin9a.11,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin9a.12,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, in laborforce (% age 15+)",sources,Global Findex database,28
+fin9a.2,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, men (% age 15+)",sources,Gender Statistics,14
+fin9a.3,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, young (% ages 15-24)",sources,Global Findex database,28
+fin9a.4,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, older (% age 25+)",sources,Global Findex database,28
+fin9a.5,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, primary education or less (% age 15+)",sources,Global Findex database,28
+fin9a.6,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin9a.7,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin9a.8,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, richest 60% (% age 15+)",sources,Global Findex database,28
+fin9a.9,"Received information about account balance from bank through email, SMS, or text message on mobile in the past 12 months, rural (% age 15+)",sources,Global Findex database,28
+fin9a.s,"Deposited money into a financial institution account 2 or more times a month (% who had deposited money, age 15+)",sources,Global Findex database,28
+fin9b,Used a mobile phone or the internet to check account balance (% age 15+),sources,Gender Statistics,14
+fin9b.1,"Used a mobile phone or the internet to check account balance, women (% age 15+)",sources,Gender Statistics,14
+fin9b.10,"Used a mobile phone or the internet to check account balance, urban (% age 15+)",sources,Global Findex database,28
+fin9b.11,"Used a mobile phone or the internet to check account balance, out of laborforce (% age 15+)",sources,Global Findex database,28
+fin9b.12,"Used a mobile phone or the internet to check account balance, in laborforce (% age 15+)",sources,Global Findex database,28
+fin9b.2,"Used a mobile phone or the internet to check account balance, men (% age 15+)",sources,Gender Statistics,14
+fin9b.3,"Used a mobile phone or the internet to check account balance, young (% ages 15-24)",sources,Global Findex database,28
+fin9b.4,"Used a mobile phone or the internet to check account balance, older (% age 25+)",sources,Global Findex database,28
+fin9b.5,"Used a mobile phone or the internet to check account balance, primary education or less (% age 15+)",sources,Global Findex database,28
+fin9b.6,"Used a mobile phone or the internet to check account balance, secondary education or more (% age 15+)",sources,Global Findex database,28
+fin9b.7,"Used a mobile phone or the internet to check account balance, poorest 40% (% age 15+)",sources,Global Findex database,28
+fin9b.8,"Used a mobile phone or the internet to check account balance, richest 60% (% age 15+)",sources,Global Findex database,28
+fin9b.9,"Used a mobile phone or the internet to check account balance, rural (% age 15+)",sources,Global Findex database,28
+fin9b.s,"Used a mobile phone or the internet to check account balance(% with a bank or similar financial institution account, age 15+)",sources,Global Findex database,28
+fing2p,Received government payments (% age 15+),sources,Gender Statistics,14
+fing2p.1,"Received government payments, women (% age 15+)",sources,Gender Statistics,14
+fing2p.10,"Received government payments, urban (% age 15+)",sources,Global Findex database,28
+fing2p.11,"Received government payments, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.12,"Received government payments, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.2,"Received government payments, men (% age 15+)",sources,Gender Statistics,14
+fing2p.3,"Received government payments, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.4,"Received government payments, older (% age 25+)",sources,Global Findex database,28
+fing2p.5,"Received government payments, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.6,"Received government payments, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.7,"Received government payments, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.8,"Received government payments, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.9,"Received government payments, rural (% age 15+)",sources,Global Findex database,28
+fing2p.acc,Received government payments: into an account (% age 15+),sources,Gender Statistics,14
+fing2p.acc.1,"Received government payments: into an account, women (% age 15+)",sources,Gender Statistics,14
+fing2p.acc.10,"Received government payments: into an account, urban (% age 15+)",sources,Global Findex database,28
+fing2p.acc.11,"Received government payments: into an account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.acc.12,"Received government payments: into an account, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.acc.2,"Received government payments: into an account, men (% age 15+)",sources,Gender Statistics,14
+fing2p.acc.3,"Received government payments: into an account, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.acc.4,"Received government payments: into an account, older (% age 25+)",sources,Global Findex database,28
+fing2p.acc.5,"Received government payments: into an account, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.acc.6,"Received government payments: into an account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.acc.7,"Received government payments: into an account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.acc.8,"Received government payments: into an account, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.acc.9,"Received government payments: into an account, rural (% age 15+)",sources,Global Findex database,28
+fing2p.acc.s,"Received government payments: into an account (% of government payment recipients, age 15+)",sources,Global Findex database,28
+fing2p.card,Received government payments: to a card (% age 15+),sources,Global Findex database,28
+fing2p.card.1,"Received government payments: to a card, women (% age 15+)",sources,Global Findex database,28
+fing2p.card.11,"Received government payments: to a card, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.card.12,"Received government payments: to a card, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.card.2,"Received government payments: to a card, men (% age 15+)",sources,Global Findex database,28
+fing2p.card.3,"Received government payments: to a card, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.card.4,"Received government payments: to a card, older (% age 25+)",sources,Global Findex database,28
+fing2p.card.5,"Received government payments: to a card, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.card.6,"Received government payments: to a card, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.card.7,"Received government payments: to a card, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.card.8,"Received government payments: to a card, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.card.s,"Received government payments: to a card (% of government payment recipients, age 15+)",sources,Global Findex database,28
+fing2p.cash,Received government payments: in cash only (% age 15+),sources,Global Findex database,28
+fing2p.cash.1,"Received government payments: in cash only, women (% age 15+)",sources,Global Findex database,28
+fing2p.cash.10,"Received government payments: in cash only, urban (% age 15+)",sources,Global Findex database,28
+fing2p.cash.11,"Received government payments: in cash only, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.cash.12,"Received government payments: in cash only, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.cash.2,"Received government payments: in cash only, men (% age 15+)",sources,Global Findex database,28
+fing2p.cash.3,"Received government payments: in cash only, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.cash.4,"Received government payments: in cash only, older (% age 25+)",sources,Global Findex database,28
+fing2p.cash.5,"Received government payments: in cash only, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.cash.6,"Received government payments: in cash only, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.cash.7,"Received government payments: in cash only, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.cash.8,"Received government payments: in cash only, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.cash.9,"Received government payments: in cash only, rural (% age 15+)",sources,Global Findex database,28
+fing2p.cash.s,"Received government payments: in cash only (% of government payment recipients, age 15+)",sources,Global Findex database,28
+fing2p.fin,Received government payments: into a bank or similar financial institution account (% age 15+),sources,Gender Statistics,14
+fing2p.fin.1,"Received government payments: into a bank or similar financial institution account, women (% age 15+)",sources,Gender Statistics,14
+fing2p.fin.10,"Received government payments: into a bank or similar financial institution account, urban (% age 15+)",sources,Global Findex database,28
+fing2p.fin.11,"Received government payments: into a bank or similar financial institution account, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.fin.12,"Received government payments: into a bank or similar financial institution account, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.fin.2,"Received government payments: into a bank or similar financial institution account, men (% age 15+)",sources,Gender Statistics,14
+fing2p.fin.3,"Received government payments: into a bank or similar financial institution account, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.fin.4,"Received government payments: into a bank or similar financial institution account, older (% age 25+)",sources,Global Findex database,28
+fing2p.fin.5,"Received government payments: into a bank or similar financial institution account, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.fin.6,"Received government payments: into a bank or similar financial institution account, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.fin.7,"Received government payments: into a bank or similar financial institution account, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.fin.8,"Received government payments: into a bank or similar financial institution account, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.fin.9,"Received government payments: into a bank or similar financial institution account, rural (% age 15+)",sources,Global Findex database,28
+fing2p.fin.s,"Received government payments: into a bank or similar financial institution account (% of government payment recipients, age 15+)",sources,Global Findex database,28
+fing2p.mob,Received government payments: through a mobile phone (% age 15+),sources,Global Findex database,28
+fing2p.mob.1,"Received government payments: through a mobile phone, women (% age 15+)",sources,Global Findex database,28
+fing2p.mob.10,"Received government payments: through a mobile phone, urban (% age 15+)",sources,Global Findex database,28
+fing2p.mob.11,"Received government payments: through a mobile phone, out of laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.mob.12,"Received government payments: through a mobile phone, in laborforce (% age 15+)",sources,Global Findex database,28
+fing2p.mob.2,"Received government payments: through a mobile phone, men (% age 15+)",sources,Global Findex database,28
+fing2p.mob.3,"Received government payments: through a mobile phone, young (% ages 15-24)",sources,Global Findex database,28
+fing2p.mob.4,"Received government payments: through a mobile phone, older (% age 25+)",sources,Global Findex database,28
+fing2p.mob.5,"Received government payments: through a mobile phone, primary education or less (% age 15+)",sources,Global Findex database,28
+fing2p.mob.6,"Received government payments: through a mobile phone, secondary education or more (% age 15+)",sources,Global Findex database,28
+fing2p.mob.7,"Received government payments: through a mobile phone, poorest 40% (% age 15+)",sources,Global Findex database,28
+fing2p.mob.8,"Received government payments: through a mobile phone, richest 60% (% age 15+)",sources,Global Findex database,28
+fing2p.mob.9,"Received government payments: through a mobile phone, rural (% age 15+)",sources,Global Findex database,28
+fing2p.mob.s,"Received government payments: through a mobile phone (% of government payment recipients, age 15+)",sources,Global Findex database,28
+g20.any,Made or received a digital payment (% age 15+),sources,Gender Statistics,14
+g20.any.1,"Made or received a digital payment, women (% age 15+)",sources,Gender Statistics,14
+g20.any.10,"Made or received a digital payment, urban (% age 15+)",sources,Global Findex database,28
+g20.any.11,"Made or received a digital payment, out of laborforce (% age 15+)",sources,Global Findex database,28
+g20.any.12,"Made or received a digital payment, in laborforce (% age 15+)",sources,Global Findex database,28
+g20.any.2,"Made or received a digital payment, men (% age 15+)",sources,Gender Statistics,14
+g20.any.3,"Made or received a digital payment, young (% ages 15-24)",sources,Global Findex database,28
+g20.any.4,"Made or received a digital payment, older (% age 25+)",sources,Global Findex database,28
+g20.any.5,"Made or received a digital payment, primary education or less (% age 15+)",sources,Global Findex database,28
+g20.any.6,"Made or received a digital payment, secondary education or more (% age 15+)",sources,Global Findex database,28
+g20.any.7,"Made or received a digital payment, poorest 40% (% age 15+)",sources,Global Findex database,28
+g20.any.8,"Made or received a digital payment, richest 60% (% age 15+)",sources,Global Findex database,28
+g20.any.9,"Made or received a digital payment, rural (% age 15+)",sources,Global Findex database,28
+g20.made,Made a digital payment (% age 15+),sources,Gender Statistics,14
+g20.made.1,"Made a digital payment, women (% age 15+)",sources,Gender Statistics,14
+g20.made.10,"Made a digital payment, urban (% age 15+)",sources,Global Findex database,28
+g20.made.11,"Made a digital payment, out of laborforce (% age 15+)",sources,Global Findex database,28
+g20.made.12,"Made a digital payment, in laborforce (% age 15+)",sources,Global Findex database,28
+g20.made.2,"Made a digital payment, men (% age 15+)",sources,Gender Statistics,14
+g20.made.3,"Made a digital payment, young (% ages 15-24)",sources,Global Findex database,28
+g20.made.4,"Made a digital payment, older (% age 25+)",sources,Global Findex database,28
+g20.made.5,"Made a digital payment, primary education or less (% age 15+)",sources,Global Findex database,28
+g20.made.6,"Made a digital payment, secondary education or more (% age 15+)",sources,Global Findex database,28
+g20.made.7,"Made a digital payment, poorest 40% (% age 15+)",sources,Global Findex database,28
+g20.made.8,"Made a digital payment, richest 60% (% age 15+)",sources,Global Findex database,28
+g20.made.9,"Made a digital payment, rural (% age 15+)",sources,Global Findex database,28
+g20.received,Received digital payments (% age 15+),sources,Gender Statistics,14
+g20.received.1,"Received digital payments, women (% age 15+)",sources,Gender Statistics,14
+g20.received.10,"Received digital payments, urban (% age 15+)",sources,Global Findex database,28
+g20.received.11,"Received digital payments, out of laborforce (% age 15+)",sources,Global Findex database,28
+g20.received.12,"Received digital payments, in laborforce (% age 15+)",sources,Global Findex database,28
+g20.received.2,"Received digital payments, men (% age 15+)",sources,Gender Statistics,14
+g20.received.3,"Received digital payments, young (% ages 15-24)",sources,Global Findex database,28
+g20.received.4,"Received digital payments, older (% age 25+)",sources,Global Findex database,28
+g20.received.5,"Received digital payments, primary education or less (% age 15+)",sources,Global Findex database,28
+g20.received.6,"Received digital payments, secondary education or more (% age 15+)",sources,Global Findex database,28
+g20.received.7,"Received digital payments, poorest 40% (% age 15+)",sources,Global Findex database,28
+g20.received.8,"Received digital payments, richest 60% (% age 15+)",sources,Global Findex database,28
+g20.received.9,"Received digital payments, rural (% age 15+)",sources,Global Findex database,28
+g20_t,Made or received digital payments in the past year (% age 15+),sources,G20 Financial Inclusion Indicators,33
+g20_t_1,"Made or received digital payments in the past year, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+g20_t_2,"Made or received digital payments in the past year, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+g20_t_3,"Made or received digital payments in the past year, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+g20_t_4,"Made or received digital payments in the past year, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+g20_t_5,Made or received digital payments in the past year (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+g20_t_6,Made or received digital payments in the past year (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+g20_t_7,Made or received digital payments in the past year (% age 60+),sources,G20 Financial Inclusion Indicators,33
+gf10_n,Received wages or government transfers into an account (% age 15+),sources,G20 Financial Inclusion Indicators,33
+gf10_n_1,"Received wages or government transfers into an account, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf10_n_2,"Received wages or government transfers into an account, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf10_n_3,"Received wages or government transfers into an account, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf10_n_4,"Received wages or government transfers into an account, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf10_n_5,"Received wages or government transfers into an account, (% ages 15-34)",sources,G20 Financial Inclusion Indicators,33
+gf10_n_6,Received wages or government transfers into an account (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+gf10_n_7,Received wages or government transfers into an account (% age 60+),sources,G20 Financial Inclusion Indicators,33
+gf4_n,Made payment using a mobile phone or the internet (% age 15+),sources,G20 Financial Inclusion Indicators,33
+gf4_n_1,"Made payment using a mobile phone or the internet, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf4_n_2,"Made payment using a mobile phone or the internet, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf4_n_3,"Made payment using a mobile phone or the internet, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf4_n_4,"Made payment using a mobile phone or the internet, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf4_n_5,Made payment using a mobile phone or the internet (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+gf4_n_6,Made payment using a mobile phone or the internet (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+gf4_n_7,Made payment using a mobile phone or the internet (% age 60+),sources,G20 Financial Inclusion Indicators,33
+gf7_n,Active account (% age 15+),sources,G20 Financial Inclusion Indicators,33
+gf7_n_1,"Active account, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf7_n_2,"Active account, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf7_n_3,"Active account, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf7_n_4,"Active account, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gf7_n_5,Active account (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+gf7_n_6,Active account (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+gf7_n_7,Active account (% age 60+),sources,G20 Financial Inclusion Indicators,33
+gwp1_n,Access to a mobile phone (% age 15+),sources,G20 Financial Inclusion Indicators,33
+gwp1_n_1,"Access to a mobile phone, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp1_n_2,"Access to a mobile phone, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp1_n_3,"Access to a mobile phone, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp1_n_4,"Access to a mobile phone, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp1_n_5,Access to a mobile phone (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+gwp1_n_6,Access to a mobile phone (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+gwp1_n_7,Access to a mobile phone (% age 60+),sources,G20 Financial Inclusion Indicators,33
+gwp2_n,Access to internet (% age 15+),sources,G20 Financial Inclusion Indicators,33
+gwp2_n_1,"Access to internet, female (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp2_n_2,"Access to internet, male (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp2_n_3,"Access to internet, income, poorest 40% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp2_n_4,"Access to internet, income, richest 60% (% age 15+)",sources,G20 Financial Inclusion Indicators,33
+gwp2_n_5,Access to internet (% ages 15-34),sources,G20 Financial Inclusion Indicators,33
+gwp2_n_6,Access to internet (% ages 35-59),sources,G20 Financial Inclusion Indicators,33
+gwp2_n_7,Access to internet (% age 60+),sources,G20 Financial Inclusion Indicators,33
+i_ATMs_pop,"ATMs per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+i_branches_A1_pop,"Branches per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+i_deposit_acc_A1_pop,"Deposit accounts per 1,000 adults",sources,G20 Financial Inclusion Indicators,33
+i_deposit_acc_A1_sme_perNFC,SME deposit accounts (as a % of non-financial corporation borrowers),sources,G20 Financial Inclusion Indicators,33
+i_loan_acc_A1_sme_perNFC,SME loan accounts (as a % of non-financial corporation borrowers),sources,G20 Financial Inclusion Indicators,33
+i_mob_agent_pop_registered,"Mobile agent outlets per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+i_mob_transactions_number_pop,"Mobile money transactions per 100,000 adults",sources,G20 Financial Inclusion Indicators,33
+inactive.t.d,Has an inactive account (% age 15+),sources,Global Findex database,28
+inactive.t.d.1,"Has an inactive account, women (% age 15+)",sources,Global Findex database,28
+inactive.t.d.10,"Has an inactive account, urban (% age 15+)",sources,Global Findex database,28
+inactive.t.d.11,"Has an inactive account, out of laborforce (% age 15+)",sources,Global Findex database,28
+inactive.t.d.12,"Has an inactive account, in laborforce (% age 15+)",sources,Global Findex database,28
+inactive.t.d.2,"Has an inactive account, men (% age 15+)",sources,Global Findex database,28
+inactive.t.d.3,"Has an inactive account, young (% ages 15-24)",sources,Global Findex database,28
+inactive.t.d.4,"Has an inactive account, older (% age 25+)",sources,Global Findex database,28
+inactive.t.d.5,"Has an inactive account, primary education or less (% age 15+)",sources,Global Findex database,28
+inactive.t.d.6,"Has an inactive account, secondary education or more (% age 15+)",sources,Global Findex database,28
+inactive.t.d.7,"Has an inactive account, poorest 40% (% age 15+)",sources,Global Findex database,28
+inactive.t.d.8,"Has an inactive account, richest 60% (% age 15+)",sources,Global Findex database,28
+inactive.t.d.9,"Has an inactive account, rural (% age 15+)",sources,Global Findex database,28
+inactive.t.d.s,"Has an inactive account (% with an account, age 15+)",sources,Global Findex database,28
+internet.1,"Used the internet in the past three months, women (% age 15+)",sources,Gender Statistics,14
+internet.10,"Used the internet in the past three months, urban (% age 15+)",sources,Global Findex database,28
+internet.11,"Used the internet in the past three months, out of laborforce (% age 15+)",sources,Global Findex database,28
+internet.12,"Used the internet in the past three months, in laborforce (% age 15+)",sources,Global Findex database,28
+internet.2,"Used the internet in the past three months, men (% age 15+)",sources,Gender Statistics,14
+internet.3,"Used the internet in the past three months, young (% ages 15-24)",sources,Global Findex database,28
+internet.4,"Used the internet in the past three months, older (% age 25+)",sources,Global Findex database,28
+internet.5,"Used the internet in the past three months, primary education or less (% age 15+)",sources,Global Findex database,28
+internet.6,"Used the internet in the past three months, secondary education or more (% age 15+)",sources,Global Findex database,28
+internet.7,"Used the internet in the past three months, poorest 40% (% age 15+)",sources,Global Findex database,28
+internet.8,"Used the internet in the past three months, richest 60% (% age 15+)",sources,Global Findex database,28
+internet.9,"Used the internet in the past three months, rural (% age 15+)",sources,Global Findex database,28
+lm_ub.bi_q1,Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits),sources,WDI Database Archives,57
+lm_ub.cov_pop,Coverage of unemployment benefits and ALMP (% of population),sources,WDI Database Archives,57
+lm_ub.gen_pop,Generosity of unemployment benefits and ALMP (% of total welfare of beneficiary households),sources,WDI Database Archives,57
+merchant.pay,Made a digital merchant payment (% age 15+),sources,Gender Statistics,14
+merchant.pay.1,"Made a digital merchant payment, female (% age 15+)",sources,Gender Statistics,14
+merchant.pay.10,"Made a digital merchant payment, urban (% age 15+)",sources,Global Findex database,28
+merchant.pay.11,"Made a digital merchant payment, out of labor force (% age 15+)",sources,Global Findex database,28
+merchant.pay.12,"Made a digital merchant payment, in labor force (% age 15+)",sources,Global Findex database,28
+merchant.pay.2,"Made a digital merchant payment, male (% age 15+)",sources,Gender Statistics,14
+merchant.pay.3,"Made a digital merchant payment, young (% ages 15-24)",sources,Global Findex database,28
+merchant.pay.4,"Made a digital merchant payment, older (% age 25+)",sources,Global Findex database,28
+merchant.pay.5,"Made a digital merchant payment, primary education or less (% ages 15+)",sources,Global Findex database,28
+merchant.pay.6,"Made a digital merchant payment, secondary education or more (% ages 15+)",sources,Global Findex database,28
+merchant.pay.7,"Made a digital merchant payment, income, poorest 40% (% ages 15+)",sources,Global Findex database,28
+merchant.pay.8,"Made a digital merchant payment, income, richest 60% (% ages 15+)",sources,Global Findex database,28
+merchant.pay.9,"Made a digital merchant payment, rural (% age 15+)",sources,Global Findex database,28
+mobileaccount.t.d,Mobile money account (% age 15+),sources,Gender Statistics,14
+mobileaccount.t.d.1,"Mobile money account, female (% age 15+)",sources,Gender Statistics,14
+mobileaccount.t.d.10,"Mobile money account, urban (% age 15+)",sources,Global Findex database,28
+mobileaccount.t.d.11,"Mobile money account, out of labor force (% age 15+)",sources,Global Findex database,28
+mobileaccount.t.d.12,"Mobile money account, in labor force (% age 15+)",sources,Global Findex database,28
+mobileaccount.t.d.2,"Mobile money account, male (% age 15+)",sources,Gender Statistics,14
+mobileaccount.t.d.3,"Mobile money account, young (% ages 15-24)",sources,Global Findex database,28
+mobileaccount.t.d.4,"Mobile money account, older (% age 25+)",sources,Global Findex database,28
+mobileaccount.t.d.5,"Mobile money account, primary education or less (% ages 15+)",sources,Global Findex database,28
+mobileaccount.t.d.6,"Mobile money account, secondary education or more (% ages 15+)",sources,Global Findex database,28
+mobileaccount.t.d.7,"Mobile money account, income, poorest 40% (% ages 15+)",sources,Global Findex database,28
+mobileaccount.t.d.8,"Mobile money account, income, richest 60% (% ages 15+)",sources,Global Findex database,28
+mobileaccount.t.d.9,"Mobile money account, rural (% age 15+)",sources,Global Findex database,28
+per_allsp.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_pop_rur,Adequacy of benefits (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_pop_tot,Adequacy of social protection and labor programs (% of total welfare of beneficiary households),topics,Social Protection & Labor,10
+per_allsp.adq_pop_urb,Adequacy of benefits (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_q4_rur,Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_q4_tot,Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_q4_urb,Adequacy of benefits in 4th quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_pop_preT_tot,Average per capita transfer -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_pop_rur,Average per capita transfer -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_pop_tot,Average per capita transfer -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_pop_totf,Average per capita transfer -All Social Protection and Labor Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_pop_totfr,Average per capita transfer -All Social Protection and Labor Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_pop_totm,Average per capita transfer -All Social Protection and Labor Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_pop_totmr,Average per capita transfer -All Social Protection and Labor Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_pop_urb,Average per capita transfer -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_q1_preT_totfr,Avg. per capita transfer held by 1st quintile(poorest)-All Social Prot. & Labor(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q1_preT_totmr,Avg. per capita transfer held by 1st quintile(poorest)-All Social Prot. & Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-All Social Prot. and Labor -fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q1_totmr,Average per capita transfer held by 1st quintile(poorest)-All Social Prot. and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-All Social Prot. and Labor(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-All Social Prot. and Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q2_rur,Average per capita transfer held by 2nd quintile -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_q2_tot,Average per capita transfer held by 2nd quintile -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_q2_totfr,Average per capita transfer held by 2nd quintile-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q2_totmr,Average per capita transfer held by 2nd quintile-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q2_urb,Average per capita transfer held by 2nd quintile -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-All Social Prot. and Labor(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-All Social Prot. and Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q3_rur,Average per capita transfer held by 3rd quintile -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_q3_tot,Average per capita transfer held by 3rd quintile -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_q3_totfr,Average per capita transfer held by 3rd quintile-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q3_totmr,Average per capita transfer held by 3rd quintile-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q3_urb,Average per capita transfer held by 3rd quintile -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_q4_preT_tot,Average per capita transfer held by 4th quintile -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-All Social Prot. and Labor(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-All Social Prot. and Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q4_rur,Average per capita transfer held by 4th quintile -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_q4_tot,Average per capita transfer held by 4th quintile -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_q4_totfr,Average per capita transfer held by 4th quintile-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q4_totmr,Average per capita transfer held by 4th quintile-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q4_urb,Average per capita transfer held by 4th quintile -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.avt_q5_preT_totfr,Avg. per capita transfer held by 5th quintile(richest)-All Social Prot. & Labor(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q5_preT_totmr,Avg. per capita transfer held by 5th quintile(richest)-All Social Prot. & Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-All Social Prot. and Labor -fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q5_totmr,Average per capita transfer held by 5th quintile(richest)-All Social Prot. and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.ben_pop_totf,Benefits incidence in all income groups(%)-All Social Protection and Labor -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.ben_pop_totm,Benefits incidence in all income groups(%)-All Social Protection and Labor Programs-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.ben_q1_tot,Benefit incidence of social protection and labor programs to poorest quintile (% of total SPL benefits),topics,Social Protection & Labor,10
+per_allsp.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_q2_rur,Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.ben_q2_tot,Benefits incidence in 2nd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.ben_q2_urb,Benefits incidence in 2nd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_q3_rur,Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.ben_q3_tot,Benefits incidence in 3rd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.ben_q3_urb,Benefits incidence in 3rd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_q4_rur,Benefits incidence in 4th quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.ben_q4_tot,Benefits incidence in 4th quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.ben_q4_urb,Benefits incidence in 4th quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_pop_totf,Beneficiary incidence in all income groups(%)-All Social Protection and Labor -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_pop_totfr,Beneficiary incidence in all income groups(%)-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_pop_totm,Beneficiary incidence in all income groups(%)-All Social Protection and Labor -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_pop_totmr,Beneficiary incidence in all income groups(%)-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Prot. and Labor(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Prot. and Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q1_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile(%)-All Social Protection and Labor (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile(%)-All Social Protection and Labor (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_q2_totfr,Beneficiary incidence in 2nd quintile(%)-All Social Protection and Labor Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile(%)-All Social Protection and Labor (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile(%)-All Social Protection and Labor (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_q3_totfr,Beneficiary incidence in 3rd quintile(%)-All Social Protection and Labor Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile(%)-All Social Protection and Labor (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile(%)-All Social Protection and Labor (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q4_rur,Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.bry_q4_tot,Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_q4_totfr,Beneficiary incidence in 4th quintile(%)-All Social Protection and Labor Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q4_urb,Beneficiary incidence in 4th quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Prot. and Labor(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Prot. and Labor(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Protection and Labor -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q5_totmr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Protection and Labor -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cba_ep_tot,Benefit-cost ratio - All Social Protection and Labor -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_allsp.cba_q1_rur,Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_allsp.cba_q1_tot,Benefit-cost ratio - All Social Protection and Labor -1st quintile (poorest),topics,Social Protection & Labor,10
+per_allsp.cba_q1_urb,Benefit-cost ratio - All Social Protection and Labor - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_allsp.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_pop_rur,Coverage (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_pop_tot,Coverage of social protection and labor programs (% of population),topics,Social Protection & Labor,10
+per_allsp.cov_pop_totf,Coverage (%) -All Social Protection and Labor Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.cov_pop_totm,Coverage (%) -All Social Protection and Labor Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_allsp.cov_pop_urb,Coverage (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_q1_rur,Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_q1_tot,Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_q1_urb,Coverage in 1st quintile (poorest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cov_q2_preT_tot,Coverage in 2nd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_q2_rur,Coverage in 2nd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_q2_tot,Coverage in 2nd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_q2_urb,Coverage in 2nd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cov_q3_preT_tot,Coverage in 3rd quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_q3_rur,Coverage in 3rd quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_q3_tot,Coverage in 3rd quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_q3_urb,Coverage in 3rd quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cov_q4_preT_tot,Coverage in 4th quintile (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_q4_rur,Coverage in 4th quintile (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_q4_tot,Coverage in 4th quintile (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_q4_urb,Coverage in 4th quintile (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) -All Social Protection and Labor (preT),topics,Social Protection & Labor,10
+per_allsp.cov_q5_rur,Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp.cov_q5_tot,Coverage in 5th quintile (richest) (%) -All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp.cov_q5_urb,Coverage in 5th quintile (richest) (%) -All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp_gini_rur,Gini inequality index reduction (%) - All Social Protection and Labor -rural,topics,Social Protection & Labor,10
+per_allsp_gini_tot,Gini inequality index reduction (%) - All Social Protection and Labor,topics,Social Protection & Labor,10
+per_allsp_gini_urb,Gini inequality index reduction (%) - All Social Protection and Labor -urban,topics,Social Protection & Labor,10
+per_allsp_p0_ep_tot,Poverty Headcount reduction (%) - All Social Protection and Labor -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_allsp_p0_rur,Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_allsp_p0_tot,Poverty Headcount reduction (%) - All Social Protection and Labor -1st quintile (poorest),topics,Social Protection & Labor,10
+per_allsp_p0_urb,Poverty Headcount reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_allsp_p1_ep_tot,Poverty Gap reduction (%) - All Social Protection and Labor -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_allsp_p1_rur,Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_allsp_p1_tot,Poverty Gap reduction (%) - All Social Protection and Labor -1st quintile (poorest),topics,Social Protection & Labor,10
+per_allsp_p1_urb,Poverty Gap reduction (%) - All Social Protection and Labor - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_pop_rur,Adequacy of benefits (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_pop_tot,Adequacy of benefits (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_pop_urb,Adequacy of benefits (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_pop_rur,Average per capita transfer - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_pop_tot,Average per capita transfer - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_pop_totf,Average per capita transfer - Active Labor Market Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_pop_totfr,Average per capita transfer-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_pop_totm,Average per capita transfer - Active Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_pop_totmr,Average per capita transfer-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_pop_urb,Average per capita transfer - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile(poorest)-Active Labor Market(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-Active Labor Market(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest)-Active Labor Market -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest)-Active Labor Market -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Active Labor Market (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-Active Labor Market (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q2_rur,Average per capita transfer held by 2nd quintile - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_q2_tot,Average per capita transfer held by 2nd quintile - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_q2_totfr,Average per capita transfer held by 2nd quintile-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q2_totmr,Average per capita transfer held by 2nd quintile-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q2_urb,Average per capita transfer held by 2nd quintile - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Active Labor Market (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-Active Labor Market (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q3_rur,Average per capita transfer held by 3rd quintile - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_q3_tot,Average per capita transfer held by 3rd quintile - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_q3_totfr,Average per capita transfer held by 3rd quintile-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q3_totmr,Average per capita transfer held by 3rd quintile-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q3_urb,Average per capita transfer held by 3rd quintile - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Active Labor Market (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-Active Labor Market (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q4_rur,Average per capita transfer held by 4th quintile - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_q4_tot,Average per capita transfer held by 4th quintile - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_q4_totfr,Average per capita transfer held by 4th quintile-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q4_totmr,Average per capita transfer held by 4th quintile-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q4_urb,Average per capita transfer held by 4th quintile - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile(richest)-Active Labor Market(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-Active Labor Market(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest)-Active Labor Market -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest)-Active Labor Market -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_pop_totf,Benefits incidence in all income groups (%)-Active Labor Market Programs-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.ben_pop_totm,Benefits incidence in all income groups (%)-Active Labor Market Programs-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_q4_rur,Benefits incidence in 4th quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.ben_q4_tot,Benefits incidence in 4th quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_q4_urb,Benefits incidence in 4th quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_pop_totf,Beneficiary incidence in all income groups (%)-Active Labor Market -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_pop_totfr,Beneficiary incidence in all income groups (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_pop_totm,Beneficiary incidence in all income groups (%)-Active Labor Market -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_pop_totmr,Beneficiary incidence in all income groups (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-Active Labor Market (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-Active Labor Market (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%)-Active Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%)-Active Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%)-Active Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%)-Active Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%)-Active Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%)-Active Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_q4_totfr,Beneficiary incidence in 4th quintile (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q4_totmr,Beneficiary incidence in 4th quintile (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%)-Active Labor Market (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%)-Active Labor Market (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%)-Active Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%)-Active Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cba_ep_tot,Benefit-cost ratio - Active Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_ac.cba_q1_rur,Benefit-cost ratio - Active Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_ac.cba_q1_tot,Benefit-cost ratio - Active Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_ac.cba_q1_urb,Benefit-cost ratio - Active Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_pop_rur,Coverage (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_pop_tot,Coverage (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_pop_totf,Coverage (%) - Active Labor Market Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.cov_pop_totm,Coverage (%) - Active Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_ac.cov_pop_urb,Coverage (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_q2_rur,Coverage in 2nd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_q2_tot,Coverage in 2nd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_q2_urb,Coverage in 2nd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_q3_rur,Coverage in 3rd quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_q3_tot,Coverage in 3rd quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_q3_urb,Coverage in 3rd quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_q4_preT_tot,Coverage in 4th quintile (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_q4_rur,Coverage in 4th quintile (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_q4_tot,Coverage in 4th quintile (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_q4_urb,Coverage in 4th quintile (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Active Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_ac.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac_gini_rur,Gini inequality index reduction (%) - Active Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_ac_gini_tot,Gini inequality index reduction (%) - Active Labor Market,topics,Social Protection & Labor,10
+per_lm_ac_gini_urb,Gini inequality index reduction (%) - Active Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_ac_p0_ep_tot,Poverty Headcount reduction (%) - Active Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_ac_p0_rur,Poverty Headcount reduction (%) - Active Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_ac_p0_tot,Poverty Headcount reduction (%) - Active Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_ac_p0_urb,Poverty Headcount reduction (%) - Active Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_ac_p1_ep_tot,Poverty Gap reduction (%) - Active Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_ac_p1_rur,Poverty Gap reduction (%) - Active Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_ac_p1_tot,Poverty Gap reduction (%) - Active Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_ac_p1_urb,Poverty Gap reduction (%) - Active Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_pop_rur,Adequacy of benefits (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_pop_tot,Adequacy of unemployment benefits and ALMP (% of total welfare of beneficiary households),topics,Social Protection & Labor,10
+per_lm_alllm.adq_pop_urb,Adequacy of benefits (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_pop_rur,Average per capita transfer - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_pop_tot,Average per capita transfer - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_pop_totf,Average per capita transfer - All Labor Market Programs -female-beneficiary-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_pop_totfr,Average per capita transfer - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_pop_totm,Average per capita transfer - All Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_pop_totmr,Average per capita transfer - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_pop_urb,Average per capita transfer - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile(poorest)-All Labor Market(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-All Labor Market(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-All Labor Market-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest)-All Labor Market Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q2_rur,Average per capita transfer held by 2nd quintile - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q2_tot,Average per capita transfer held by 2nd quintile - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q2_totfr,Average per capita transfer held by 2nd quintile - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q2_totmr,Average per capita transfer held by 2nd quintile - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q2_urb,Average per capita transfer held by 2nd quintile - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q3_rur,Average per capita transfer held by 3rd quintile - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q3_tot,Average per capita transfer held by 3rd quintile - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q3_totfr,Average per capita transfer held by 3rd quintile - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q3_totmr,Average per capita transfer held by 3rd quintile - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q3_urb,Average per capita transfer held by 3rd quintile - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q4_rur,Average per capita transfer held by 4th quintile - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q4_tot,Average per capita transfer held by 4th quintile - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q4_totfr,Average per capita transfer held by 4th quintile - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q4_totmr,Average per capita transfer held by 4th quintile - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q4_urb,Average per capita transfer held by 4th quintile - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile(richest)-All Labor Market(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-All Labor Market(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-All Labor Market-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest)-All Labor Market Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.ben_pop_totf,Benefits incidence in all income groups (%) - All Labor Market - female-beneficiary-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.ben_pop_totm,Benefits incidence in all income groups (%) - All Labor Market Programs - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q1_tot,Benefit incidence of unemployment benefits and ALMP to poorest quintile (% of total U/ALMP benefits),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q2_rur,Benefits incidence in 2nd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q2_tot,Benefits incidence in 2nd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q2_urb,Benefits incidence in 2nd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q3_rur,Benefits incidence in 3rd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q3_tot,Benefits incidence in 3rd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q3_urb,Benefits incidence in 3rd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q4_rur,Benefits incidence in 4th quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q4_tot,Benefits incidence in 4th quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q4_urb,Benefits incidence in 4th quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_pop_totf,Beneficiary incidence in all income groups (%) - All LM Pograms -female-beneficiary-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_pop_totfr,Beneficiary incidence in all income groups (%) - All Labor Market Pograms -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_pop_totm,Beneficiary incidence in all income groups (%) - All Labor Market Pograms -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_pop_totmr,Beneficiary incidence in all income groups (%) - All Labor Market Pograms -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Labor Market Programs(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-All Labor Market Programs (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - All Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - All Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Labor Market Programs(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%)-All Labor Market Programs (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cba_ep_tot,Benefit-cost ratio - All Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_alllm.cba_q1_rur,Benefit-cost ratio - All Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cba_q1_tot,Benefit-cost ratio - All Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_alllm.cba_q1_urb,Benefit-cost ratio - All Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm.cov_pop_rur,Coverage (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_pop_tot,Coverage of unemployment benefits and ALMP (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_pop_totf,Coverage (%) - All Labor Market Programs -female-beneficiary-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.cov_pop_totm,Coverage (%) - All Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_alllm.cov_pop_urb,Coverage (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q1_tot,Coverage of unemployment benefits and ALMP in poorest quintile (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q2_preT_tot,Coverage in 2nd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q2_rur,Coverage in 2nd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q2_tot,Coverage of unemployment benefits and ALMP in 2nd quintile (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q2_urb,Coverage in 2nd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q3_preT_tot,Coverage in 3rd quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q3_rur,Coverage in 3rd quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q3_tot,Coverage of unemployment benefits and ALMP in 3rd quintile (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q3_urb,Coverage in 3rd quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q4_preT_tot,Coverage in 4th quintile (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q4_rur,Coverage in 4th quintile (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q4_tot,Coverage of unemployment benefits and ALMP in 4th quintile (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q4_urb,Coverage in 4th quintile (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - All Labor Market (preT),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q5_rur,Coverage in 5th quintile (richest) (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm.cov_q5_tot,Coverage of unemployment benefits and ALMP in richest quintile (% of population),topics,Social Protection & Labor,10
+per_lm_alllm.cov_q5_urb,Coverage in 5th quintile (richest) (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm_gini_rur,Gini inequality index reduction (%) - All Labor Market -rural,topics,Social Protection & Labor,10
+per_lm_alllm_gini_tot,Gini inequality index reduction (%) - All Labor Market,topics,Social Protection & Labor,10
+per_lm_alllm_gini_urb,Gini inequality index reduction (%) - All Labor Market -urban,topics,Social Protection & Labor,10
+per_lm_alllm_p0_ep_tot,Poverty Headcount reduction (%) - All Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_alllm_p0_rur,Poverty Headcount reduction (%) - All Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_alllm_p0_tot,Poverty Headcount reduction (%) - All Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_alllm_p0_urb,Poverty Headcount reduction (%) - All Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_alllm_p1_ep_tot,Poverty Gap reduction (%) - All Labor Market -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_lm_alllm_p1_rur,Poverty Gap reduction (%) - All Labor Market -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_lm_alllm_p1_tot,Poverty Gap reduction (%) - All Labor Market -1st quintile (poorest),topics,Social Protection & Labor,10
+per_lm_alllm_p1_urb,Poverty Gap reduction (%) - All Labor Market - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_lm_pa.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_pop_rur,Adequacy of benefits (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_pop_tot,Adequacy of benefits (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_pop_urb,Adequacy of benefits (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_rur,Average per capita transfer - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_tot,Average per capita transfer - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_totf,Average per capita transfer - Passive Labor Market Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_totfr,Average per capita transfer - Passive Labor Market Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_totm,Average per capita transfer - Passive Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_totmr,Average per capita transfer - Passive Labor Market Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_pop_urb,Average per capita transfer - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-Passive Labor Market (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-Passive Labor Market (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_totfr,Avg per capita transfer held by 1st quintile(poorest)-Passive Labor Market Programs-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_totmr,Avg per capita transfer held by 1st quintile(poorest)-Passive Labor Market Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Passive Labor Market Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-Passive Labor Market Programs (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_rur,Average per capita transfer held by 2nd quintile - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_tot,Average per capita transfer held by 2nd quintile - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q2_urb,Average per capita transfer held by 2nd quintile - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Passive Labor Market Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-Passive Labor Market Programs (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_rur,Average per capita transfer held by 3rd quintile - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_tot,Average per capita transfer held by 3rd quintile - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q3_urb,Average per capita transfer held by 3rd quintile - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Passive Labor Market Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-Passive Labor Market Programs (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_rur,Average per capita transfer held by 4th quintile - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_tot,Average per capita transfer held by 4th quintile - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_totfr,Average per capita transfer held by 4th quintile - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_totmr,Average per capita transfer held by 4th quintile - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q4_urb,Average per capita transfer held by 4th quintile - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-Passive Labor Market (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-Passive Labor Market (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_totfr,Avg per capita transfer held by 5th quintile(richest)-Passive Labor Market Programs-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_totmr,Avg per capita transfer held by 5th quintile(richest)-Passive Labor Market Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_pop_totf,Benefits incidence in all income groups (%) - Passive Labor Market Programs - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_pop_totm,Benefits incidence in all income groups (%) - Passive Labor Market Programs - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q4_rur,Benefits incidence in 4th quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q4_tot,Benefits incidence in 4th quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q4_urb,Benefits incidence in 4th quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_pop_totf,Beneficiary incidence in all income groups(%)-Passive Labor Market Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_pop_totfr,Beneficiary incidence in all income groups(%)-Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_pop_totm,Beneficiary incidence in all income groups(%)-Passive Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_pop_totmr,Beneficiary incidence in all income groups (%)-Passive Labor Market Programs Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Passive Labor Market Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Passive Labor Market Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Passive Labor Market Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Passive Labor Market Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Passive Labor Market Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Passive Labor Market Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%)-Passive Labor Market Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cba_ep_tot,Benefit-cost ratio - Passive Labor Market -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cba_q1_rur,Benefit-cost ratio - Passive Labor Market -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cba_q1_tot,Benefit-cost ratio - Passive Labor Market -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cba_q1_urb,Benefit-cost ratio - Passive Labor Market - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_pop_rur,Coverage (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_pop_tot,Coverage (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_pop_totf,Coverage (%) - Passive Labor Market Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_pop_totm,Coverage (%) - Passive Labor Market Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_pop_urb,Coverage (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q2_rur,Coverage in 2nd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q2_tot,Coverage in 2nd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q2_urb,Coverage in 2nd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q3_rur,Coverage in 3rd quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q3_tot,Coverage in 3rd quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q3_urb,Coverage in 3rd quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q4_preT_tot,Coverage in 4th quintile (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q4_rur,Coverage in 4th quintile (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q4_tot,Coverage in 4th quintile (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q4_urb,Coverage in 4th quintile (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Passive Labor Market (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_gini_rur,Gini inequality index reduction (%) - Passive Labor Market -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_gini_tot,Gini inequality index reduction (%) - Passive Labor Market,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_gini_urb,Gini inequality index reduction (%) - Passive Labor Market -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p0_ep_tot,Poverty Headcount reduction (%) - Passive Labor Market -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p0_rur,Poverty Headcount reduction (%) - Passive Labor Market -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p0_tot,Poverty Headcount reduction (%) - Passive Labor Market -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p0_urb,Poverty Headcount reduction (%) - Passive Labor Market - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p1_ep_tot,Poverty Gap reduction (%) - Passive Labor Market -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p1_rur,Poverty Gap reduction (%) - Passive Labor Market -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p1_tot,Poverty Gap reduction (%) - Passive Labor Market -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lm_pa_p1_urb,Poverty Gap reduction (%) - Passive Labor Market - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_lmonl.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) only receiving Labor Market (%, preT)",topics,Social Protection & Labor,10
+per_lmonl.overlap_ep_tot,Population in extreme poor (<$2.15 a day) only receiving Labor Market (%),topics,Social Protection & Labor,10
+per_lmonl.overlap_pop_rur,Population only receiving Labor Market (%) -rural,topics,Social Protection & Labor,10
+per_lmonl.overlap_pop_tot,Population only receiving Labor Market (%),topics,Social Protection & Labor,10
+per_lmonl.overlap_pop_urb,Population only receiving Labor Market (%) -urban,topics,Social Protection & Labor,10
+per_lmonl.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) only receiving Labor Market (%, preT)",topics,Social Protection & Labor,10
+per_lmonl.overlap_q1_rur,Population in the 1st quintile (poorest) only receiving Labor Market (%) -rural,topics,Social Protection & Labor,10
+per_lmonl.overlap_q1_tot,Population in the 1st quintile (poorest) only receiving Labor Market (%),topics,Social Protection & Labor,10
+per_lmonl.overlap_q1_urb,Population in the 1st quintile (poorest) only receiving Labor Market (%) -urban,topics,Social Protection & Labor,10
+per_nprog.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) not receiving Social Protection (%, preT)",topics,Social Protection & Labor,10
+per_nprog.overlap_ep_tot,Population in extreme poor (<$2.15 a day) not receiving Social Protection (%),topics,Social Protection & Labor,10
+per_nprog.overlap_pop_rur,Population not receiving Social Protection (%) -rural,topics,Social Protection & Labor,10
+per_nprog.overlap_pop_tot,Population not receiving Social Protection (%),topics,Social Protection & Labor,10
+per_nprog.overlap_pop_urb,Population not receiving Social Protection (%) -urban,topics,Social Protection & Labor,10
+per_nprog.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) not receiving Social Protection (%, preT)",topics,Social Protection & Labor,10
+per_nprog.overlap_q1_rur,Population in the 1st quintile (poorest) not receiving Social Protection (%) -rural,topics,Social Protection & Labor,10
+per_nprog.overlap_q1_tot,Population in the 1st quintile (poorest) not receiving Social Protection (%),topics,Social Protection & Labor,10
+per_nprog.overlap_q1_urb,Population in the 1st quintile (poorest) not receiving Social Protection (%) -urban,topics,Social Protection & Labor,10
+per_pr_allpr.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_pop_rur,Adequacy of benefits (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_pop_tot,Adequacy of benefits (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_pop_urb,Adequacy of benefits (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_rur,Average per capita transfer - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_tot,Average per capita transfer - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_totf,Average per capita transfer - All Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_totfr,Average per capita transfer - All Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_totm,Average per capita transfer - All Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_totmr,Average per capita transfer - All Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_pop_urb,Average per capita transfer - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile(poorest)-All Private Tranf.(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-All Private Transfers(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_rur,Average per capita transfer held by 2nd quintile - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_tot,Average per capita transfer held by 2nd quintile - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_totfr,Average per capita transfer held by 2nd quintile - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_totmr,Average per capita transfer held by 2nd quintile - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q2_urb,Average per capita transfer held by 2nd quintile - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_rur,Average per capita transfer held by 3rd quintile - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_tot,Average per capita transfer held by 3rd quintile - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_totfr,Average per capita transfer held by 3rd quintile - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_totmr,Average per capita transfer held by 3rd quintile - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q3_urb,Average per capita transfer held by 3rd quintile - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_rur,Average per capita transfer held by 4th quintile - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_tot,Average per capita transfer held by 4th quintile - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_totfr,Average per capita transfer held by 4th quintile - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_totmr,Average per capita transfer held by 4th quintile - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q4_urb,Average per capita transfer held by 4th quintile - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile(richest)-All Private Tranf.(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-All Private Transfers(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest) - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest) - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_pop_totf,Benefits incidence in all income groups (%) - All Private Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_pop_totm,Benefits incidence in all income groups (%) - All Private Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q2_rur,Benefits incidence in 2nd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q2_tot,Benefits incidence in 2nd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q2_urb,Benefits incidence in 2nd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q3_rur,Benefits incidence in 3rd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q3_tot,Benefits incidence in 3rd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q3_urb,Benefits incidence in 3rd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q4_rur,Benefits incidence in 4th quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q4_tot,Benefits incidence in 4th quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q4_urb,Benefits incidence in 4th quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_pop_totf,Beneficiary incidence in all income groups (%) - All Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_pop_totfr,Beneficiary incidence in all income groups (%) - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_pop_totm,Beneficiary incidence in all income groups (%) - All Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_pop_totmr,Beneficiary incidence in all income groups (%) - All Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - All Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - All Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - All Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - All Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - All Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - All Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cba_ep_tot,Benefit-cost ratio - All Private Transfers -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cba_q1_rur,Benefit-cost ratio - All Private Transfers -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cba_q1_tot,Benefit-cost ratio - All Private Transfers -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cba_q1_urb,Benefit-cost ratio - All Private Transfers - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_pop_rur,Coverage (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_pop_tot,Coverage (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_pop_totf,Coverage (%) - All Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_pop_totm,Coverage (%) - All Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_pop_urb,Coverage (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q2_preT_tot,Coverage in 2nd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q2_rur,Coverage in 2nd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q2_tot,Coverage in 2nd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q2_urb,Coverage in 2nd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q3_preT_tot,Coverage in 3rd quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q3_rur,Coverage in 3rd quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q3_tot,Coverage in 3rd quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q3_urb,Coverage in 3rd quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q4_preT_tot,Coverage in 4th quintile (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q4_rur,Coverage in 4th quintile (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q4_tot,Coverage in 4th quintile (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q4_urb,Coverage in 4th quintile (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - All Private Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q5_rur,Coverage in 5th quintile (richest) (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q5_tot,Coverage in 5th quintile (richest) (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr.cov_q5_urb,Coverage in 5th quintile (richest) (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_gini_rur,Gini inequality index reduction (%) - All Private Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_gini_tot,Gini inequality index reduction (%) - All Private Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_gini_urb,Gini inequality index reduction (%) - All Private Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p0_ep_tot,Poverty Headcount reduction (%) - All Private Transfers -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p0_rur,Poverty Headcount reduction (%) - All Private Transfers -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p0_tot,Poverty Headcount reduction (%) - All Private Transfers -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p0_urb,Poverty Headcount reduction (%) - All Private Transfers - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p1_ep_tot,Poverty Gap reduction (%) - All Private Transfers -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p1_rur,Poverty Gap reduction (%) - All Private Transfers -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p1_tot,Poverty Gap reduction (%) - All Private Transfers -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_allpr_p1_urb,Poverty Gap reduction (%) - All Private Transfers - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_pop_rur,Adequacy of benefits (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_pop_tot,Adequacy of benefits (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_pop_urb,Adequacy of benefits (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_pop_rur,Average per capita transfer - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_pop_tot,Average per capita transfer - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_pop_totf,Average per capita transfer - Domestic Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_pop_totfr,Average per capita transfer - Domestic Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_pop_totm,Average per capita transfer - Domestic Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_pop_totmr,Average per capita transfer - Domestic Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_pop_urb,Average per capita transfer - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_q1_preT_totfr,Avg. per capita transfer held by 1st quintile(poorest)-Domestic Private Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q1_preT_totmr,Avg. per capita transfer held by 1st quintile(poorest)-Domestic Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-Domestic Private Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest)-Domestic Private Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q2_rur,Average per capita transfer held by 2nd quintile - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_q2_tot,Average per capita transfer held by 2nd quintile - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q2_urb,Average per capita transfer held by 2nd quintile - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q3_rur,Average per capita transfer held by 3rd quintile - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_q3_tot,Average per capita transfer held by 3rd quintile - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q3_urb,Average per capita transfer held by 3rd quintile - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q4_rur,Average per capita transfer held by 4th quintile - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_q4_tot,Average per capita transfer held by 4th quintile - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_q4_totfr,Average per capita transfer held by 4th quintile - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q4_totmr,Average per capita transfer held by 4th quintile - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q4_urb,Average per capita transfer held by 4th quintile - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.avt_q5_preT_totfr,Avg. per capita transfer held by 5th quintile(richest)-Domestic Private Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q5_preT_totmr,Avg. per capita transfer held by 5th quintile(richest)-Domestic Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-Domestic Private Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest)-Domestic Private Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_pop_totf,Benefits incidence in all income groups (%) - Domestic Private Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.ben_pop_totm,Benefits incidence in all income groups (%) - Domestic Private Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_q4_rur,Benefits incidence in 4th quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.ben_q4_tot,Benefits incidence in 4th quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_q4_urb,Benefits incidence in 4th quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_pop_totf,Beneficiary incidence in all income groups (%) - Domestic Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_pop_totm,Beneficiary incidence in all income groups (%) - Domestic Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Domestic Private Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-Domestic Private Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Domestic Private Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%)-Domestic Private Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cba_ep_tot,Benefit-cost ratio - Domestic Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_dp.cba_q1_rur,Benefit-cost ratio - Domestic Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_dp.cba_q1_tot,Benefit-cost ratio - Domestic Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_dp.cba_q1_urb,Benefit-cost ratio - Domestic Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_pop_rur,Coverage (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_pop_tot,Coverage (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_pop_totf,Coverage (%) - Domestic Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.cov_pop_totm,Coverage (%) - Domestic Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_dp.cov_pop_urb,Coverage (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_q2_rur,Coverage in 2nd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_q2_tot,Coverage in 2nd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_q2_urb,Coverage in 2nd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_q3_rur,Coverage in 3rd quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_q3_tot,Coverage in 3rd quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_q3_urb,Coverage in 3rd quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_q4_preT_tot,Coverage in 4th quintile (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_q4_rur,Coverage in 4th quintile (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_q4_tot,Coverage in 4th quintile (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_q4_urb,Coverage in 4th quintile (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Domestic Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_dp.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp_gini_rur,Gini inequality index reduction (%) - Domestic Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_dp_gini_tot,Gini inequality index reduction (%) - Domestic Private Transfers,topics,Social Protection & Labor,10
+per_pr_dp_gini_urb,Gini inequality index reduction (%) - Domestic Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_dp_p0_ep_tot,Poverty Headcount reduction (%) - Domestic Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_dp_p0_rur,Poverty Headcount reduction (%) - Domestic Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_dp_p0_tot,Poverty Headcount reduction (%) - Domestic Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_dp_p0_urb,Poverty Headcount reduction (%) - Domestic Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_pr_dp_p1_ep_tot,Poverty Gap reduction (%) - Domestic Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_dp_p1_rur,Poverty Gap reduction (%) - Domestic Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_dp_p1_tot,Poverty Gap reduction (%) - Domestic Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_dp_p1_urb,Poverty Gap reduction (%) - Domestic Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_pop_rur,Adequacy of benefits (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_pop_tot,Adequacy of benefits (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_pop_urb,Adequacy of benefits (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_pop_rur,Average per capita transfer - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_pop_tot,Average per capita transfer - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_pop_totf,Average per capita transfer - International Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_pop_totfr,Average per capita transfer - International Private Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_pop_totm,Average per capita transfer - International Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_pop_totmr,Average per capita transfer - International Private Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_pop_urb,Average per capita transfer - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-International Private Transf.(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q1_preT_totmr,Avg per capita transfer held by 1st quintile(poorest)-International Private Transf.(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_q1_totfr,Avg per capita transfer held by 1st quintile(poorest)-International Private Transf.-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q1_totmr,Avg per capita transfer held by 1st quintile(poorest)-International Private Transf.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-International Private Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-International Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q2_rur,Average per capita transfer held by 2nd quintile - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_q2_tot,Average per capita transfer held by 2nd quintile - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_q2_totfr,Average per capita transfer held by 2nd quintile - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q2_totmr,Average per capita transfer held by 2nd quintile - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q2_urb,Average per capita transfer held by 2nd quintile - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-International Private Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-International Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q3_rur,Average per capita transfer held by 3rd quintile - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_q3_tot,Average per capita transfer held by 3rd quintile - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_q3_totfr,Average per capita transfer held by 3rd quintile - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q3_totmr,Average per capita transfer held by 3rd quintile - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q3_urb,Average per capita transfer held by 3rd quintile - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-International Private Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-International Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q4_rur,Average per capita transfer held by 4th quintile - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_q4_tot,Average per capita transfer held by 4th quintile - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_q4_totfr,Average per capita transfer held by 4th quintile - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q4_totmr,Average per capita transfer held by 4th quintile - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q4_urb,Average per capita transfer held by 4th quintile - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-International Private Transf.(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q5_preT_totmr,Avg per capita transfer held by 5th quintile(richest)-International Private Transf.(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.avt_q5_totfr,Avg per capita transfer held by 5th quintile(richest)-International Private Transf.-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q5_totmr,Avg per capita transfer held by 5th quintile(richest)-International Private Transf.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_pop_totf,Benefits incidence in all income groups (%) - International Private Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.ben_pop_totm,Benefits incidence in all income groups (%) - International Private Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_q2_rur,Benefits incidence in 2nd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.ben_q2_tot,Benefits incidence in 2nd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_q2_urb,Benefits incidence in 2nd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_q3_rur,Benefits incidence in 3rd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.ben_q3_tot,Benefits incidence in 3rd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_q3_urb,Benefits incidence in 3rd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_q4_rur,Benefits incidence in 4th quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.ben_q4_tot,Benefits incidence in 4th quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_q4_urb,Benefits incidence in 4th quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_pop_totf,Beneficiary incidence in all income groups (%) - International Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_pop_totfr,Beneficiary incidence in all income groups (%) - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_pop_totm,Beneficiary incidence in all income groups (%) - International Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_pop_totmr,Beneficiary incidence in all income groups (%) - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-International Private Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-International Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-International Private Transfers-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - International Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - International Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - International Private Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - International Private Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-International Private Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-International Private Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%)-International Private Transfers-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%)-International Private Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cba_ep_tot,Benefit-cost ratio - International Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_ip.cba_q1_rur,Benefit-cost ratio - International Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_ip.cba_q1_tot,Benefit-cost ratio - International Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_ip.cba_q1_urb,Benefit-cost ratio - International Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_pop_rur,Coverage (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_pop_tot,Coverage (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_pop_totf,Coverage (%) - International Private Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.cov_pop_totm,Coverage (%) - International Private Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_pr_ip.cov_pop_urb,Coverage (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_q2_preT_tot,Coverage in 2nd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_q2_rur,Coverage in 2nd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_q2_tot,Coverage in 2nd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_q2_urb,Coverage in 2nd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_q3_preT_tot,Coverage in 3rd quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_q3_rur,Coverage in 3rd quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_q3_tot,Coverage in 3rd quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_q3_urb,Coverage in 3rd quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_q4_preT_tot,Coverage in 4th quintile (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_q4_rur,Coverage in 4th quintile (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_q4_tot,Coverage in 4th quintile (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_q4_urb,Coverage in 4th quintile (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - International Private Transfers (preT),topics,Social Protection & Labor,10
+per_pr_ip.cov_q5_rur,Coverage in 5th quintile (richest) (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip.cov_q5_tot,Coverage in 5th quintile (richest) (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip.cov_q5_urb,Coverage in 5th quintile (richest) (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip_gini_rur,Gini inequality index reduction (%) - International Private Transfers -rural,topics,Social Protection & Labor,10
+per_pr_ip_gini_tot,Gini inequality index reduction (%) - International Private Transfers,topics,Social Protection & Labor,10
+per_pr_ip_gini_urb,Gini inequality index reduction (%) - International Private Transfers -urban,topics,Social Protection & Labor,10
+per_pr_ip_p0_ep_tot,Poverty Headcount reduction (%) - International Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_ip_p0_rur,Poverty Headcount reduction (%) - International Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_ip_p0_tot,Poverty Headcount reduction (%) - International Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_ip_p0_urb,Poverty Headcount reduction (%) - International Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_pr_ip_p1_ep_tot,Poverty Gap reduction (%) - International Private Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_pr_ip_p1_rur,Poverty Gap reduction (%) - International Private Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_pr_ip_p1_tot,Poverty Gap reduction (%) - International Private Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_pr_ip_p1_urb,Poverty Gap reduction (%) - International Private Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_pop_rur,Adequacy of benefits (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_pop_tot,Adequacy of social safety net programs (% of total welfare of beneficiary households),topics,Social Protection & Labor,10
+per_sa_allsa.adq_pop_urb,Adequacy of benefits (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_pop_rur,Average per capita transfer - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_pop_tot,Average per capita transfer - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_pop_totf,Average per capita transfer - All Social Assistance Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_pop_totfr,Average per capita transfer - All Social Assistance Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_pop_totm,Average per capita transfer - All Social Assistance Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_pop_totmr,Average per capita transfer - All Social Assistance Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_pop_urb,Average per capita transfer - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile(poorest)-All Social Assist. (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-All Social Assist. (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-All Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q1_totmr,Average per capita transfer held by 1st quintile(poorest)-All Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-All Social Assistance (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-All Social Assistance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q2_rur,Average per capita transfer held by 2nd quintile - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q2_tot,Average per capita transfer held by 2nd quintile - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q2_totfr,Average per capita transfer held by 2nd quintile - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q2_totmr,Average per capita transfer held by 2nd quintile - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q2_urb,Average per capita transfer held by 2nd quintile - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-All Social Assistance (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-All Social Assistance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q3_rur,Average per capita transfer held by 3rd quintile - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q3_tot,Average per capita transfer held by 3rd quintile - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q3_totfr,Average per capita transfer held by 3rd quintile - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q3_totmr,Average per capita transfer held by 3rd quintile - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q3_urb,Average per capita transfer held by 3rd quintile - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-All Social Assistance (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-All Social Assistance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q4_rur,Average per capita transfer held by 4th quintile - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q4_tot,Average per capita transfer held by 4th quintile - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q4_totfr,Average per capita transfer held by 4th quintile - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q4_totmr,Average per capita transfer held by 4th quintile - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q4_urb,Average per capita transfer held by 4th quintile - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile(richest)-All Social Assist. (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-All Social Assist. (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-All Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q5_totmr,Average per capita transfer held by 5th quintile(richest)-All Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.ben_pop_totf,Benefits incidence in all income groups (%) - All Social Assistance Programs - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.ben_pop_totm,Benefits incidence in all income groups (%) - All Social Assistance Programs - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q1_tot,Benefit incidence of social safety net programs to poorest quintile (% of total safety net benefits),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q2_rur,Benefits incidence in 2nd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q2_tot,Benefits incidence in 2nd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q2_urb,Benefits incidence in 2nd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q3_rur,Benefits incidence in 3rd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q3_tot,Benefits incidence in 3rd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q3_urb,Benefits incidence in 3rd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q4_rur,Benefits incidence in 4th quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q4_tot,Benefits incidence in 4th quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q4_urb,Benefits incidence in 4th quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_pop_totf,Beneficiary incidence in all income groups(%)-All Social Assistance Programs-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_pop_totfr,Beneficiary incidence in all income groups(%)-All Social Assistance Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_pop_totm,Beneficiary incidence in all income groups(%)-All Social Assistance Programs-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_pop_totmr,Beneficiary incidence in all income groups(%)-All Social Assistance Programs Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Assistance (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Assistance (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Assistance Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - All Social Assistance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - All Social Assistance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - All Social Assistance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - All Social Assistance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - All Social Assistance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - All Social Assistance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - All Social Assistance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Assistance (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Assistance (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Assistance Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cba_ep_tot,Benefit-cost ratio - All Social Assistance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_allsa.cba_q1_rur,Benefit-cost ratio - All Social Assistance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cba_q1_tot,Benefit-cost ratio - All Social Assistance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_allsa.cba_q1_urb,Benefit-cost ratio - All Social Assistance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa.cov_pop_rur,Coverage (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_pop_tot,Coverage of social safety net programs (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_pop_totf,Coverage (%) - All Social Assistance Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.cov_pop_totm,Coverage (%) - All Social Assistance Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_allsa.cov_pop_urb,Coverage (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q1_tot,Coverage of social safety net programs in poorest quintile (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q2_preT_tot,Coverage in 2nd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q2_rur,Coverage in 2nd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q2_tot,Coverage of social safety net programs in 2nd quintile (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q2_urb,Coverage in 2nd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q3_preT_tot,Coverage in 3rd quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q3_rur,Coverage in 3rd quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q3_tot,Coverage of social safety net programs in 3rd quintile (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q3_urb,Coverage in 3rd quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q4_preT_tot,Coverage in 4th quintile (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q4_rur,Coverage in 4th quintile (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q4_tot,Coverage of social safety net programs in 4th quintile (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q4_urb,Coverage in 4th quintile (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - All Social Assistance (preT),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q5_rur,Coverage in 5th quintile (richest) (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa.cov_q5_tot,Coverage of social safety net programs in richest quintile (% of population),topics,Social Protection & Labor,10
+per_sa_allsa.cov_q5_urb,Coverage in 5th quintile (richest) (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa_gini_rur,Gini inequality index reduction (%) - All Social Assistance -rural,topics,Social Protection & Labor,10
+per_sa_allsa_gini_tot,Gini inequality index reduction (%) - All Social Assistance,topics,Social Protection & Labor,10
+per_sa_allsa_gini_urb,Gini inequality index reduction (%) - All Social Assistance -urban,topics,Social Protection & Labor,10
+per_sa_allsa_p0_ep_tot,Poverty Headcount reduction (%) - All Social Assistance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_allsa_p0_rur,Poverty Headcount reduction (%) - All Social Assistance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_allsa_p0_tot,Poverty Headcount reduction (%) - All Social Assistance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_allsa_p0_urb,Poverty Headcount reduction (%) - All Social Assistance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_allsa_p1_ep_tot,Poverty Gap reduction (%) - All Social Assistance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_allsa_p1_rur,Poverty Gap reduction (%) - All Social Assistance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_allsa_p1_tot,Poverty Gap reduction (%) - All Social Assistance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_allsa_p1_urb,Poverty Gap reduction (%) - All Social Assistance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_cc.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_pop_rur,Adequacy of benefits (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_pop_tot,Adequacy of benefits (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_pop_urb,Adequacy of benefits (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_rur,Average per capita transfer - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_tot,Average per capita transfer - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_totf,Average per capita transfer - Conditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_totfr,Average per capita transfer - Conditional Cash Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_totm,Average per capita transfer - Conditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_totmr,Average per capita transfer - Conditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_pop_urb,Average per capita transfer - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_preT_totfr,Avg. per capita Transf. held by 1st quintile(poorest)-Conditional Cash Transf.s(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_preT_totmr,Avg. per capita Transf. held by 1st quintile(poorest)-Conditional Cash Transf.s(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-Conditional Cash Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest)-Conditional Cash Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_rur,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_tot,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q2_urb,Average per capita transfer held by 2nd quintile - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_rur,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_tot,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q3_urb,Average per capita transfer held by 3rd quintile - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_rur,Average per capita transfer held by 4th quintile - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_tot,Average per capita transfer held by 4th quintile - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_totfr,Average per capita transfer held by 4th quintile - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_totmr,Average per capita transfer held by 4th quintile - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q4_urb,Average per capita transfer held by 4th quintile - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_preT_totfr,Avg. per capita Transf. held by 5th quintile(richest)-Conditional Cash Transf.s(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_preT_totmr,Avg. per capita Transf. held by 5th quintile(richest)-Conditional Cash Transf.s(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-Conditional Cash Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest)-Conditional Cash Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_pop_totf,Benefits incidence in all income groups (%) - Conditional Cash Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_pop_totm,Benefits incidence in all income groups (%) - Conditional Cash Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q4_rur,Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q4_tot,Benefits incidence in 4th quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q4_urb,Benefits incidence in 4th quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_pop_totf,Beneficiary incidence in all income groups (%) - Conditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_pop_totm,Beneficiary incidence in all income groups (%) - Conditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Conditional Cash Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-Conditional Cash Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Conditional Cash Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%)-Conditional Cash Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cba_ep_tot,Benefit-cost ratio - Conditional Cash Transfer -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cba_q1_rur,Benefit-cost ratio - Conditional Cash Transfer -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cba_q1_tot,Benefit-cost ratio - Conditional Cash Transfer -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cba_q1_urb,Benefit-cost ratio - Conditional Cash Transfer - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_pop_rur,Coverage (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_pop_tot,Coverage (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_pop_totf,Coverage (%) - Conditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_pop_totm,Coverage (%) - Conditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_pop_urb,Coverage (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q2_rur,Coverage in 2nd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q2_tot,Coverage in 2nd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q2_urb,Coverage in 2nd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q3_rur,Coverage in 3rd quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q3_tot,Coverage in 3rd quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q3_urb,Coverage in 3rd quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q4_preT_tot,Coverage in 4th quintile (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q4_rur,Coverage in 4th quintile (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q4_tot,Coverage in 4th quintile (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q4_urb,Coverage in 4th quintile (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Conditional Cash Transfers -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_gini_rur,Gini inequality index reduction (%) - Conditional Cash Transfer -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_gini_tot,Gini inequality index reduction (%) - Conditional Cash Transfer,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_gini_urb,Gini inequality index reduction (%) - Conditional Cash Transfer -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p0_ep_tot,Poverty Headcount reduction (%) - Conditional Cash Transfer -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p0_rur,Poverty Headcount reduction (%) - Conditional Cash Transfer -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p0_tot,Poverty Headcount reduction (%) - Conditional Cash Transfer -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p0_urb,Poverty Headcount reduction (%) - Conditional Cash Transfer - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p1_ep_tot,Poverty Gap reduction (%) - Conditional Cash Transfer -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p1_rur,Poverty Gap reduction (%) - Conditional Cash Transfer -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p1_tot,Poverty Gap reduction (%) - Conditional Cash Transfer -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_cc_p1_urb,Poverty Gap reduction (%) - Conditional Cash Transfer - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_pop_rur,Adequacy of benefits (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_pop_tot,Adequacy of benefits (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_pop_urb,Adequacy of benefits (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_pop_rur,Average per capita transfer - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_pop_tot,Average per capita transfer - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_pop_totf,Average per capita transfer - Unconditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_pop_totfr,Average per capita transfer - Unconditional Cash Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_pop_totm,Average per capita transfer - Unconditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_pop_totmr,Average per capita transfer - Unconditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_pop_urb,Average per capita transfer - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-Unconditional Cash Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q1_preT_totmr,Avg per capita transfer held by 1st quintile(poorest)-Unconditional Cash Transf(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-Unconditional Cash Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q1_totmr,Average per capita transfer held by 1st quintile(poorest)-Unconditional Cash Transf.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Unconditional Cash Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q2_rur,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_q2_tot,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q2_urb,Average per capita transfer held by 2nd quintile - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Unconditional Cash Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q3_rur,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_q3_tot,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q3_urb,Average per capita transfer held by 3rd quintile - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Unconditional Cash Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q4_rur,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_q4_tot,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_q4_totfr,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q4_totmr,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q4_urb,Average per capita transfer held by 4th quintile - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-Unconditional Cash Transf.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q5_preT_totmr,Avg per capita transfer held by 5th quintile(richest)-Unconditional Cash Transf(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-Unconditional Cash Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q5_totmr,Average per capita transfer held by 5th quintile(richest)-Unconditional Cash Transf.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_pop_totf,Benefits incidence in all income groups (%) - Unconditional Cash Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.ben_pop_totm,Benefits incidence in all income groups (%) - Unconditional Cash Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_q4_rur,Benefits incidence in 4th quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.ben_q4_tot,Benefits incidence in 4th quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_q4_urb,Benefits incidence in 4th quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_pop_totf,Beneficiary incidence in all income groups (%) - Unconditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_pop_totm,Beneficiary incidence in all income groups (%) - Unconditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Unconditional Cash Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Unconditional Cash Transfers(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Unconditional Cash Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Unconditional Cash Transfers(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cba_ep_tot,Benefit-cost ratio - Unconditional Cash Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ct.cba_q1_rur,Benefit-cost ratio - Unconditional Cash Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ct.cba_q1_tot,Benefit-cost ratio - Unconditional Cash Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ct.cba_q1_urb,Benefit-cost ratio - Unconditional Cash Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_pop_rur,Coverage (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_pop_tot,Coverage (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_pop_totf,Coverage (%) - Unconditional Cash Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.cov_pop_totm,Coverage (%) - Unconditional Cash Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ct.cov_pop_urb,Coverage (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_q2_rur,Coverage in 2nd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_q2_tot,Coverage in 2nd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_q2_urb,Coverage in 2nd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_q3_rur,Coverage in 3rd quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_q3_tot,Coverage in 3rd quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_q3_urb,Coverage in 3rd quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_q4_preT_tot,Coverage in 4th quintile (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_q4_rur,Coverage in 4th quintile (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_q4_tot,Coverage in 4th quintile (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_q4_urb,Coverage in 4th quintile (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Unconditional Cash Transfers (preT),topics,Social Protection & Labor,10
+per_sa_ct.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct_gini_rur,Gini inequality index reduction (%) - Unconditional Cash Transfers -rural,topics,Social Protection & Labor,10
+per_sa_ct_gini_tot,Gini inequality index reduction (%) - Unconditional Cash Transfers,topics,Social Protection & Labor,10
+per_sa_ct_gini_urb,Gini inequality index reduction (%) - Unconditional Cash Transfers -urban,topics,Social Protection & Labor,10
+per_sa_ct_p0_ep_tot,Poverty Headcount reduction (%) - Unconditional Cash Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ct_p0_rur,Poverty Headcount reduction (%) - Unconditional Cash Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ct_p0_tot,Poverty Headcount reduction (%) - Unconditional Cash Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ct_p0_urb,Poverty Headcount reduction (%) - Unconditional Cash Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_ct_p1_ep_tot,Poverty Gap reduction (%) - Unconditional Cash Transfers -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ct_p1_rur,Poverty Gap reduction (%) - Unconditional Cash Transfers -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ct_p1_tot,Poverty Gap reduction (%) - Unconditional Cash Transfers -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ct_p1_urb,Poverty Gap reduction (%) - Unconditional Cash Transfers - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_fw.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_pop_rur,Adequacy of benefits (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_pop_tot,Adequacy of benefits (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_pop_urb,Adequacy of benefits (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_rur,Average per capita transfer - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_tot,Average per capita transfer - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_totf,Average per capita transfer - Fee waivers and targeted subsidies -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_totfr,Average per capita transfer - Fee waivers and targeted subsidies -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_totm,Average per capita transfer - Fee waivers and targeted subsidies -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_totmr,Average per capita transfer - Fee waivers and targeted subsidies -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_pop_urb,Average per capita transfer - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_preT_totfr,Avg. per capita transfer held by 1st quintile(poorest)-Fee waivers & targeted subs.(preT)-fem-recip.,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_preT_totmr,Avg. per capita transfer held by 1st quintile(poorest)-Fee waivers & targeted subs.(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_totfr,Avg. per capita transfer held by 1st quintile(poorest)-Fee waivers and targeted subs.-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_totmr,Avg. per capita transfer held by 1st quintile(poorest)-Fee waivers and targeted subs.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-Fee waivers and targeted subs.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-Fee waivers and targeted subs.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_rur,Average per capita transfer held by 2nd quintile - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_tot,Average per capita transfer held by 2nd quintile - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_totfr,Average per capita transfer held by 2nd quintile-Fee waivers and targeted subsidies-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_totmr,Average per capita transfer held by 2nd quintile-Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q2_urb,Average per capita transfer held by 2nd quintile - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-Fee waivers and targeted subs.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-Fee waivers and targeted subs.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_rur,Average per capita transfer held by 3rd quintile - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_tot,Average per capita transfer held by 3rd quintile - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_totfr,Average per capita transfer held by 3rd quintile-Fee waivers and targeted subsidies-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_totmr,Average per capita transfer held by 3rd quintile-Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q3_urb,Average per capita transfer held by 3rd quintile - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-Fee waivers and targeted subs.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-Fee waivers and targeted subs.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_rur,Average per capita transfer held by 4th quintile - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_tot,Average per capita transfer held by 4th quintile - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_totfr,Average per capita transfer held by 4th quintile-Fee waivers and targeted subsidies-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_totmr,Average per capita transfer held by 4th quintile-Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q4_urb,Average per capita transfer held by 4th quintile - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_preT_totfr,Avg. per capita transfer held by 5th quintile(richest)-Fee waivers & targeted subs.(preT)-fem-recip.,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_preT_totmr,Avg. per capita transfer held by 5th quintile(richest)-Fee waivers & targeted subs.(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_totfr,Avg. per capita transfer held by 5th quintile(richest)-Fee waivers and targeted subs.-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_totmr,Avg. per capita transfer held by 5th quintile(richest)-Fee waivers and targeted subs.-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_pop_totf,Benefits incidence in all income groups (%)-Fee waivers and targeted subsidies-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_pop_totm,Benefits incidence in all income groups (%) - Fee waivers and targeted subsidies - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q4_rur,Benefits incidence in 4th quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q4_tot,Benefits incidence in 4th quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q4_urb,Benefits incidence in 4th quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_pop_totf,Beneficiary incidence in all income groups(%)-Fee waivers and targeted subsidies-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_pop_totfr,Beneficiary incidence in all income groups(%)-Fee waivers and targeted subsidies-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_pop_totm,Beneficiary incidence in all income groups(%)-Fee waivers and targeted subsidies-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_pop_totmr,Beneficiary incidence in all income groups(%)-Fee waivers and targeted subsidies-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Fee waivers and targeted subs.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Fee waivers & targeted subs.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Fee waivers and targeted subsidies-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Fee waivers and targeted subsidies-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%)-Fee waivers and targeted subsidies (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%)-Fee waivers and targeted subsidies (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Fee waivers and targeted subsidies -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%)-Fee waivers and targeted subsidies (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%)-Fee waivers and targeted subsidies (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Fee waivers and targeted subsidies -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%)-Fee waivers and targeted subsidies (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%)-Fee waivers and targeted subsidies (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Fee waivers and targeted subsidies -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Fee waivers and targeted subsidies -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Fee waivers and targeted subs.(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Fee waivers & targeted subs.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Fee waivers and targeted subsidies-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Fee waivers and targeted subsidies-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cba_ep_tot,Benefit-cost ratio - Subsidies -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cba_q1_rur,Benefit-cost ratio - Subsidies -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cba_q1_tot,Benefit-cost ratio - Subsidies -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cba_q1_urb,Benefit-cost ratio - Subsidies - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_pop_rur,Coverage (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_pop_tot,Coverage (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_pop_totf,Coverage (%) - Fee waivers and targeted subsidies -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_pop_totm,Coverage (%) - Fee waivers and targeted subsidies -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_pop_urb,Coverage (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q2_rur,Coverage in 2nd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q2_tot,Coverage in 2nd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q2_urb,Coverage in 2nd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q3_rur,Coverage in 3rd quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q3_tot,Coverage in 3rd quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q3_urb,Coverage in 3rd quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q4_preT_tot,Coverage in 4th quintile (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q4_rur,Coverage in 4th quintile (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q4_tot,Coverage in 4th quintile (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q4_urb,Coverage in 4th quintile (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Subsidies (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_gini_rur,Gini inequality index reduction (%) - Subsidies -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_gini_tot,Gini inequality index reduction (%) - Subsidies,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_gini_urb,Gini inequality index reduction (%) - Subsidies -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p0_ep_tot,Poverty Headcount reduction (%) - Subsidies -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p0_rur,Poverty Headcount reduction (%) - Subsidies -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p0_tot,Poverty Headcount reduction (%) - Subsidies -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p0_urb,Poverty Headcount reduction (%) - Subsidies - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p1_ep_tot,Poverty Gap reduction (%) - Subsidies -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p1_rur,Poverty Gap reduction (%) - Subsidies -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p1_tot,Poverty Gap reduction (%) - Subsidies -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_fw_p1_urb,Poverty Gap reduction (%) - Subsidies - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_pop_rur,Adequacy of benefits (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_pop_tot,Adequacy of benefits (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_pop_urb,Adequacy of benefits (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_pop_rur,Average per capita transfer - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_pop_tot,Average per capita transfer - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_pop_totf,Average per capita transfer - In-Kind and Food Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_pop_totfr,Average per capita transfer - In-Kind and Food Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_pop_totm,Average per capita transfer - In-Kind and Food Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_pop_totmr,Average per capita transfer - In-Kind and Food Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_pop_urb,Average per capita transfer - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-In-Kind and Food Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q1_preT_totmr,Avg. per capita transfer held by 1st quintile(poorest)-In-Kind and Food Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-In-Kind and Food Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest)-In-Kind and Food Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q2_rur,Average per capita transfer held by 2nd quintile - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_q2_tot,Average per capita transfer held by 2nd quintile - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_q2_totfr,Average per capita transfer held by 2nd quintile - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q2_totmr,Average per capita transfer held by 2nd quintile - In-Kind and Food Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q2_urb,Average per capita transfer held by 2nd quintile - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q3_rur,Average per capita transfer held by 3rd quintile - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_q3_tot,Average per capita transfer held by 3rd quintile - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_q3_totfr,Average per capita transfer held by 3rd quintile - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q3_totmr,Average per capita transfer held by 3rd quintile - In-Kind and Food Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q3_urb,Average per capita transfer held by 3rd quintile - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q4_rur,Average per capita transfer held by 4th quintile - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_q4_tot,Average per capita transfer held by 4th quintile - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_q4_totfr,Average per capita transfer held by 4th quintile - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q4_totmr,Average per capita transfer held by 4th quintile - In-Kind and Food Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q4_urb,Average per capita transfer held by 4th quintile - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-In-Kind and Food Transfers(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q5_preT_totmr,Avg. per capita transfer held by 5th quintile(richest)-In-Kind and Food Transf.(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-In-Kind and Food Transfers-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest)-In-Kind and Food Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_pop_totf,Benefits incidence in all income groups (%) - In-Kind and Food Transfers - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.ben_pop_totm,Benefits incidence in all income groups (%) - In-Kind and Food Transfers - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_q2_rur,Benefits incidence in 2nd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.ben_q2_tot,Benefits incidence in 2nd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_q2_urb,Benefits incidence in 2nd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_q3_rur,Benefits incidence in 3rd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.ben_q3_tot,Benefits incidence in 3rd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_q3_urb,Benefits incidence in 3rd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_q4_rur,Benefits incidence in 4th quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.ben_q4_tot,Benefits incidence in 4th quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_q4_urb,Benefits incidence in 4th quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_pop_totf,Beneficiary incidence in all income groups (%) - In-Kind and Food Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_pop_totfr,Beneficiary incidence in all income groups (%) - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_pop_totm,Beneficiary incidence in all income groups (%) - In-Kind and Food Transfers-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_pop_totmr,Beneficiary incidence in all income groups (%) - In-Kind and Food Transfers-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-In-Kind and Food Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%)-In-Kind and Food Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind and Food Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - In-Kind and Food Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - In-Kind and Food Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - In-Kind and Food Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - In-Kind and Food Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - In-Kind and Food Transfers (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - In-Kind and Food Transfers (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - In-Kind and Food Transfers -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - In-Kind and Food Transfers -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-In-Kind and Food Transfers(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%)-In-Kind and Food Transfers (preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind and Food Transfers -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind and Food Transfers -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cba_ep_tot,Benefit-cost ratio - In-Kind -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ik.cba_q1_rur,Benefit-cost ratio - In-Kind -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ik.cba_q1_tot,Benefit-cost ratio - In-Kind -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ik.cba_q1_urb,Benefit-cost ratio - In-Kind - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_pop_rur,Coverage (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_pop_tot,Coverage (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_pop_totf,Coverage (%) - In-Kind and Food Transfers -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.cov_pop_totm,Coverage (%) - In-Kind and Food Transfers -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_ik.cov_pop_urb,Coverage (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_q2_preT_tot,Coverage in 2nd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_q2_rur,Coverage in 2nd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_q2_tot,Coverage in 2nd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_q2_urb,Coverage in 2nd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_q3_preT_tot,Coverage in 3rd quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_q3_rur,Coverage in 3rd quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_q3_tot,Coverage in 3rd quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_q3_urb,Coverage in 3rd quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_q4_preT_tot,Coverage in 4th quintile (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_q4_rur,Coverage in 4th quintile (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_q4_tot,Coverage in 4th quintile (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_q4_urb,Coverage in 4th quintile (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - In-Kind (preT),topics,Social Protection & Labor,10
+per_sa_ik.cov_q5_rur,Coverage in 5th quintile (richest) (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik.cov_q5_tot,Coverage in 5th quintile (richest) (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik.cov_q5_urb,Coverage in 5th quintile (richest) (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik_gini_rur,Gini inequality index reduction (%) - In-Kind -rural,topics,Social Protection & Labor,10
+per_sa_ik_gini_tot,Gini inequality index reduction (%) - In-Kind,topics,Social Protection & Labor,10
+per_sa_ik_gini_urb,Gini inequality index reduction (%) - In-Kind -urban,topics,Social Protection & Labor,10
+per_sa_ik_p0_ep_tot,Poverty Headcount reduction (%) - In-Kind -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ik_p0_rur,Poverty Headcount reduction (%) - In-Kind -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ik_p0_tot,Poverty Headcount reduction (%) - In-Kind -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ik_p0_urb,Poverty Headcount reduction (%) - In-Kind - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_ik_p1_ep_tot,Poverty Gap reduction (%) - In-Kind -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_ik_p1_rur,Poverty Gap reduction (%) - In-Kind -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_ik_p1_tot,Poverty Gap reduction (%) - In-Kind -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_ik_p1_urb,Poverty Gap reduction (%) - In-Kind - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_os.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_pop_rur,Adequacy of benefits (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_pop_tot,Adequacy of benefits (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_pop_urb,Adequacy of benefits (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_rur,Average per capita transfer - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_tot,Average per capita transfer - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_totf,Average per capita transfer - Other Social Assistance -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_totfr,Average per capita transfer - Other Social Assistance -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_totm,Average per capita transfer - Other Social Assistance -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_totmr,Average per capita transfer - Other Social Assistance -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_pop_urb,Average per capita transfer - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-Other Social Assistance(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_preT_totmr,Avg per capita transfer held by 1st quintile(poorest)-Other Social Assistance(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest)-Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_rur,Average per capita transfer held by 2nd quintile - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_tot,Average per capita transfer held by 2nd quintile - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q2_urb,Average per capita transfer held by 2nd quintile - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_rur,Average per capita transfer held by 3rd quintile - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_tot,Average per capita transfer held by 3rd quintile - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q3_urb,Average per capita transfer held by 3rd quintile - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_rur,Average per capita transfer held by 4th quintile - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_tot,Average per capita transfer held by 4th quintile - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_totfr,Average per capita transfer held by 4th quintile - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_totmr,Average per capita transfer held by 4th quintile - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q4_urb,Average per capita transfer held by 4th quintile - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-Other Social Assistance(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_preT_totmr,Avg per capita transfer held by 5th quintile(richest)-Other Social Assistance(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest)-Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_pop_totf,Benefits incidence in all income groups (%) - Other Social Assistance - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_pop_totm,Benefits incidence in all income groups (%) - Other Social Assistance - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q4_rur,Benefits incidence in 4th quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q4_tot,Benefits incidence in 4th quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q4_urb,Benefits incidence in 4th quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_pop_totf,Beneficiary incidence in all income groups (%) - Other Social Assistance -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_pop_totm,Beneficiary incidence in all income groups (%) - Other Social Assistance -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Other Social Assistance -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Other Social Assistance -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Other Social Assistance -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%)-Other Social Assistance (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cba_ep_tot,Benefit-cost ratio - Other Social Assistance -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cba_q1_rur,Benefit-cost ratio - Other Social Assistance -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cba_q1_tot,Benefit-cost ratio - Other Social Assistance -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cba_q1_urb,Benefit-cost ratio - Other Social Assistance - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_pop_rur,Coverage (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_pop_tot,Coverage (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_pop_totf,Coverage (%) - Other Social Assistance -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_pop_totm,Coverage (%) - Other Social Assistance -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_pop_urb,Coverage (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q2_rur,Coverage in 2nd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q2_tot,Coverage in 2nd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q2_urb,Coverage in 2nd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q3_rur,Coverage in 3rd quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q3_tot,Coverage in 3rd quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q3_urb,Coverage in 3rd quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q4_preT_tot,Coverage in 4th quintile (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q4_rur,Coverage in 4th quintile (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q4_tot,Coverage in 4th quintile (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q4_urb,Coverage in 4th quintile (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Other Social Assistance (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_gini_rur,Gini inequality index reduction (%) - Other Social Assistance -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_gini_tot,Gini inequality index reduction (%) - Other Social Assistance,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_gini_urb,Gini inequality index reduction (%) - Other Social Assistance -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p0_ep_tot,Poverty Headcount reduction (%) - Other Social Assistance -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p0_rur,Poverty Headcount reduction (%) - Other Social Assistance -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p0_tot,Poverty Headcount reduction (%) - Other Social Assistance -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p0_urb,Poverty Headcount reduction (%) - Other Social Assistance - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p1_ep_tot,Poverty Gap reduction (%) - Other Social Assistance -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p1_rur,Poverty Gap reduction (%) - Other Social Assistance -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p1_tot,Poverty Gap reduction (%) - Other Social Assistance -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_os_p1_urb,Poverty Gap reduction (%) - Other Social Assistance - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_pop_rur,Adequacy of benefits (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_pop_tot,Adequacy of benefits (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_pop_urb,Adequacy of benefits (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_pop_rur,Average per capita transfer - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_pop_tot,Average per capita transfer - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_pop_totf,Average per capita transfer - Public Works -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_pop_totfr,Average per capita transfer - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_pop_totm,Average per capita transfer - Public Works -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_pop_totmr,Average per capita transfer - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_pop_urb,Average per capita transfer - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile (poorest) - Public Works (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile (poorest) - Public Works (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest) - Public Works -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest) - Public Works -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q2_rur,Average per capita transfer held by 2nd quintile - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_q2_tot,Average per capita transfer held by 2nd quintile - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q2_urb,Average per capita transfer held by 2nd quintile - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q3_rur,Average per capita transfer held by 3rd quintile - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_q3_tot,Average per capita transfer held by 3rd quintile - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q3_urb,Average per capita transfer held by 3rd quintile - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q4_rur,Average per capita transfer held by 4th quintile - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_q4_tot,Average per capita transfer held by 4th quintile - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_q4_totfr,Average per capita transfer held by 4th quintile - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q4_totmr,Average per capita transfer held by 4th quintile - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q4_urb,Average per capita transfer held by 4th quintile - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile (richest) - Public Works (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile (richest) - Public Works (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest) - Public Works -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest) - Public Works -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_pop_totf,Benefits incidence in all income groups (%) - Public Works - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.ben_pop_totm,Benefits incidence in all income groups (%) - Public Works - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_q4_rur,Benefits incidence in 4th quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.ben_q4_tot,Benefits incidence in 4th quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_q4_urb,Benefits incidence in 4th quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_pop_totf,Beneficiary incidence in all income groups (%) - Public Works -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_pop_totm,Beneficiary incidence in all income groups (%) - Public Works -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Public Works (preT) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Public Works (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Public Works (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Public Works (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Public Works -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Public Works -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cba_ep_tot,Benefit-cost ratio - Public Works -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_pw.cba_q1_rur,Benefit-cost ratio - Public Works -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_pw.cba_q1_tot,Benefit-cost ratio - Public Works -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_pw.cba_q1_urb,Benefit-cost ratio - Public Works - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_pop_rur,Coverage (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_pop_tot,Coverage (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_pop_totf,Coverage (%) - Public Works -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.cov_pop_totm,Coverage (%) - Public Works -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_pw.cov_pop_urb,Coverage (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_q2_rur,Coverage in 2nd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_q2_tot,Coverage in 2nd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_q2_urb,Coverage in 2nd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_q3_rur,Coverage in 3rd quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_q3_tot,Coverage in 3rd quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_q3_urb,Coverage in 3rd quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_q4_preT_tot,Coverage in 4th quintile (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_q4_rur,Coverage in 4th quintile (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_q4_tot,Coverage in 4th quintile (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_q4_urb,Coverage in 4th quintile (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Public Works (preT),topics,Social Protection & Labor,10
+per_sa_pw.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw_gini_rur,Gini inequality index reduction (%) - Public Works -rural,topics,Social Protection & Labor,10
+per_sa_pw_gini_tot,Gini inequality index reduction (%) - Public Works,topics,Social Protection & Labor,10
+per_sa_pw_gini_urb,Gini inequality index reduction (%) - Public Works -urban,topics,Social Protection & Labor,10
+per_sa_pw_p0_ep_tot,Poverty Headcount reduction (%) - Public Works -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_pw_p0_rur,Poverty Headcount reduction (%) - Public Works -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_pw_p0_tot,Poverty Headcount reduction (%) - Public Works -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_pw_p0_urb,Poverty Headcount reduction (%) - Public Works - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_pw_p1_ep_tot,Poverty Gap reduction (%) - Public Works -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_pw_p1_rur,Poverty Gap reduction (%) - Public Works -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_pw_p1_tot,Poverty Gap reduction (%) - Public Works -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_pw_p1_urb,Poverty Gap reduction (%) - Public Works - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_pop_rur,Adequacy of benefits (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_pop_tot,Adequacy of benefits (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_pop_urb,Adequacy of benefits (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_pop_rur,Average per capita transfer - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_pop_tot,Average per capita transfer - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_pop_totf,Average per capita transfer - School Feeding Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_pop_totfr,Average per capita transfer - School Feeding Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_pop_totm,Average per capita transfer - School Feeding Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_pop_totmr,Average per capita transfer - School Feeding Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_pop_urb,Average per capita transfer - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-School Feeding Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q1_preT_totmr,Avg per capita transfer held by 1st quintile(poorest)-School Feeding Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest)-School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest) - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q2_rur,Average per capita transfer held by 2nd quintile - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_q2_tot,Average per capita transfer held by 2nd quintile - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_q2_totfr,Average per capita transfer held by 2nd quintile - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q2_totmr,Average per capita transfer held by 2nd quintile - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q2_urb,Average per capita transfer held by 2nd quintile - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q3_rur,Average per capita transfer held by 3rd quintile - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_q3_tot,Average per capita transfer held by 3rd quintile - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_q3_totfr,Average per capita transfer held by 3rd quintile - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q3_totmr,Average per capita transfer held by 3rd quintile - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q3_urb,Average per capita transfer held by 3rd quintile - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q4_rur,Average per capita transfer held by 4th quintile - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_q4_tot,Average per capita transfer held by 4th quintile - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_q4_totfr,Average per capita transfer held by 4th quintile - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q4_totmr,Average per capita transfer held by 4th quintile - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q4_urb,Average per capita transfer held by 4th quintile - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-School Feeding Programs(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q5_preT_totmr,Avg per capita transfer held by 5th quintile(richest)-School Feeding Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest)-School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest) - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_pop_totf,Benefits incidence in all income groups (%) - School Feeding Programs - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.ben_pop_totm,Benefits incidence in all income groups (%) - School Feeding Programs - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_q2_rur,Benefits incidence in 2nd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.ben_q2_tot,Benefits incidence in 2nd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_q2_urb,Benefits incidence in 2nd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_q3_rur,Benefits incidence in 3rd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.ben_q3_tot,Benefits incidence in 3rd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_q3_urb,Benefits incidence in 3rd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_q4_rur,Benefits incidence in 4th quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.ben_q4_tot,Benefits incidence in 4th quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_q4_urb,Benefits incidence in 4th quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_pop_totf,Beneficiary incidence in all income groups (%) - School Feeding Programs Programs-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_pop_totfr,Beneficiary incidence in all income groups (%) - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_pop_totm,Beneficiary incidence in all income groups (%) - School Feeding Programs Programs-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_pop_totmr,Beneficiary incidence in all income groups (%) - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%)-School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - School Feeding Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - School Feeding Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - School Feeding Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - School Feeding Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - School Feeding Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - School Feeding Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%)-School Feeding Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%) - School Feeding Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - School Feeding Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - School Feeding Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cba_ep_tot,Benefit-cost ratio - School-feeding -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sf.cba_q1_rur,Benefit-cost ratio - School-feeding -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sf.cba_q1_tot,Benefit-cost ratio - School-feeding -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sf.cba_q1_urb,Benefit-cost ratio - School-feeding - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_pop_rur,Coverage (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_pop_tot,Coverage (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_pop_totf,Coverage (%) - School Feeding Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.cov_pop_totm,Coverage (%) - School Feeding Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sf.cov_pop_urb,Coverage (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_q2_preT_tot,Coverage in 2nd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_q2_rur,Coverage in 2nd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_q2_tot,Coverage in 2nd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_q2_urb,Coverage in 2nd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_q3_preT_tot,Coverage in 3rd quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_q3_rur,Coverage in 3rd quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_q3_tot,Coverage in 3rd quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_q3_urb,Coverage in 3rd quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_q4_preT_tot,Coverage in 4th quintile (%) - School Feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_q4_rur,Coverage in 4th quintile (%) - School Feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_q4_tot,Coverage in 4th quintile (%) - School Feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_q4_urb,Coverage in 4th quintile (%) - School Feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - School feeding (preT),topics,Social Protection & Labor,10
+per_sa_sf.cov_q5_rur,Coverage in 5th quintile (richest) (%) - School feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf.cov_q5_tot,Coverage in 5th quintile (richest) (%) - School feeding,topics,Social Protection & Labor,10
+per_sa_sf.cov_q5_urb,Coverage in 5th quintile (richest) (%) - School feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf_gini_rur,Gini inequality index reduction (%) - School-feeding -rural,topics,Social Protection & Labor,10
+per_sa_sf_gini_tot,Gini inequality index reduction (%) - School-feeding,topics,Social Protection & Labor,10
+per_sa_sf_gini_urb,Gini inequality index reduction (%) - School-feeding -urban,topics,Social Protection & Labor,10
+per_sa_sf_p0_ep_tot,Poverty Headcount reduction (%) - School-feeding -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sf_p0_rur,Poverty Headcount reduction (%) - School-feeding -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sf_p0_tot,Poverty Headcount reduction (%) - School-feeding -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sf_p0_urb,Poverty Headcount reduction (%) - School-feeding - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sf_p1_ep_tot,Poverty Gap reduction (%) - School-feeding -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sf_p1_rur,Poverty Gap reduction (%) - School-feeding -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sf_p1_tot,Poverty Gap reduction (%) - School-feeding -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sf_p1_urb,Poverty Gap reduction (%) - School-feeding - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_pop_rur,Adequacy of benefits (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_pop_tot,Adequacy of benefits (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_pop_urb,Adequacy of benefits (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_pop_rur,Average per capita transfer - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_pop_tot,Average per capita transfer - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_pop_totf,Average per capita transfer - Social Pensions (non-contributory) -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_pop_totfr,Average per capita transfer - Social Pensions (non-contributory) -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_pop_totm,Average per capita transfer - Social Pensions (non-contributory) -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_pop_totmr,Average per capita transfer - Social Pensions (non-contributory) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_pop_urb,Average per capita transfer - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_q1_preT_totfr,Avg per capita transfer held by 1st quintile(poorest)-Social Pensions(non-contrib.)(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q1_preT_totmr,Avg per capita transfer held by 1st quintile(poorest)-Social Pensions(non-contrib.)(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_q1_totfr,Avg per capita transfer held by 1st quintile(poorest)-Social Pensions(non-contributory)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q1_totmr,Avg per capita transfer held by 1st quintile(poorest)-Social Pensions(non-contributory)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_q2_preT_totfr,Avg per capita transfer held by 2nd quintile-Social Pensions(non-contributory)(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q2_preT_totmr,Avg per capita transfer held by 2nd quintile-Social Pensions(non-contributory)(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q2_rur,Average per capita transfer held by 2nd quintile - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_q2_tot,Average per capita transfer held by 2nd quintile - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_q2_totfr,Average per capita transfer held by 2nd quintile-Social Pensions (non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q2_totmr,Average per capita transfer held by 2nd quintile-Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q2_urb,Average per capita transfer held by 2nd quintile - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_q3_preT_totfr,Avg per capita transfer held by 3rd quintile-Social Pensions(non-contributory)(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q3_preT_totmr,Avg per capita transfer held by 3rd quintile-Social Pensions(non-contributory)(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q3_rur,Average per capita transfer held by 3rd quintile - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_q3_tot,Average per capita transfer held by 3rd quintile - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_q3_totfr,Average per capita transfer held by 3rd quintile-Social Pensions (non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q3_totmr,Average per capita transfer held by 3rd quintile-Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q3_urb,Average per capita transfer held by 3rd quintile - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_q4_preT_totfr,Avg per capita transfer held by 4th quintile-Social Pensions(non-contributory)(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q4_preT_totmr,Avg per capita transfer held by 4th quintile-Social Pensions(non-contributory)(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q4_rur,Average per capita transfer held by 4th quintile - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_q4_tot,Average per capita transfer held by 4th quintile - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_q4_totfr,Average per capita transfer held by 4th quintile-Social Pensions (non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q4_totmr,Average per capita transfer held by 4th quintile-Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q4_urb,Average per capita transfer held by 4th quintile - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.avt_q5_preT_totfr,Avg per capita transfer held by 5th quintile(richest)-Social Pensions(non-contrib.)(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q5_preT_totmr,Avg per capita transfer held by 5th quintile(richest)-Social Pensions(non-contrib.)(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.avt_q5_totfr,Avg per capita transfer held by 5th quintile(richest)-Social Pensions(non-contributory)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q5_totmr,Avg per capita transfer held by 5th quintile(richest)-Social Pensions(non-contributory)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_pop_totf,Benefits incidence in all income groups (%)-Social Pensions (non-contributory)-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.ben_pop_totm,Benefits incidence in all income groups (%) - Social Pensions (non-contributory) - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_q4_rur,Benefits incidence in 4th quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.ben_q4_tot,Benefits incidence in 4th quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_q4_urb,Benefits incidence in 4th quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_pop_totf,Beneficiary incidence in all income groups (%)-Social Pensions (non-contributory)-female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Social Pensions (non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_pop_totm,Beneficiary incidence in all income groups (%)-Social Pensions (non-contributory) -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Social Pensions(non-contributory)(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Social Pensions(non-contributory)(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Social Pensions(non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q1_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Social Pensions(non-contributory)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%)-Social Pensions (non-contributory) (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%)-Social Pensions (non-contributory) (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Social Pensions (non-contributory) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%)-Social Pensions (non-contributory) (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%)-Social Pensions (non-contributory) (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Social Pensions (non-contributory) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%)-Social Pensions (non-contributory) (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%)-Social Pensions (non-contributory) (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Social Pensions (non-contributory) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Social Pensions (non-contributory) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Social Pensions(non-contributory)(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Social Pensions(non-contributory)(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Social Pensions(non-contributory)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q5_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Social Pensions(non-contributory)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cba_ep_tot,Benefit-cost ratio - Social Pension -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sp.cba_q1_rur,Benefit-cost ratio - Social Pension -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sp.cba_q1_tot,Benefit-cost ratio - Social Pension -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sp.cba_q1_urb,Benefit-cost ratio - Social Pension - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_pop_rur,Coverage (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_pop_tot,Coverage (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_pop_totf,Coverage (%) - Social Pensions (non-contributory) -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.cov_pop_totm,Coverage (%) - Social Pensions (non-contributory) -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_sa_sp.cov_pop_urb,Coverage (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_q2_rur,Coverage in 2nd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_q2_tot,Coverage in 2nd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_q2_urb,Coverage in 2nd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_q3_rur,Coverage in 3rd quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_q3_tot,Coverage in 3rd quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_q3_urb,Coverage in 3rd quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_q4_preT_tot,Coverage in 4th quintile (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_q4_rur,Coverage in 4th quintile (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_q4_tot,Coverage in 4th quintile (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_q4_urb,Coverage in 4th quintile (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Social Pensions (preT),topics,Social Protection & Labor,10
+per_sa_sp.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Social Pensions -rural,topics,Social Protection & Labor,10
+per_sa_sp.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Social Pensions,topics,Social Protection & Labor,10
+per_sa_sp.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Social Pensions -urban,topics,Social Protection & Labor,10
+per_sa_sp_gini_rur,Gini inequality index reduction (%) - Social Pension-rural,topics,Social Protection & Labor,10
+per_sa_sp_gini_tot,Gini inequality index reduction (%) - Social Pension,topics,Social Protection & Labor,10
+per_sa_sp_gini_urb,Gini inequality index reduction (%) - Social Pension -urban,topics,Social Protection & Labor,10
+per_sa_sp_p0_ep_tot,Poverty Headcount reduction (%) - Social Pension -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sp_p0_rur,Poverty Headcount reduction (%) - Social Pension -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sp_p0_tot,Poverty Headcount reduction (%) - Social Pension -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sp_p0_urb,Poverty Headcount reduction (%) - Social Pension - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_sa_sp_p1_ep_tot,Poverty Gap reduction (%) - Social Pension -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_sa_sp_p1_rur,Poverty Gap reduction (%) - Social Pension -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_sa_sp_p1_tot,Poverty Gap reduction (%) - Social Pension -1st quintile (poorest),topics,Social Protection & Labor,10
+per_sa_sp_p1_urb,Poverty Gap reduction (%) - Social Pension - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_saonl.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) only receiving All Social Assistance (%, preT)",topics,Social Protection & Labor,10
+per_saonl.overlap_ep_tot,Population in extreme poor (<$2.15 a day) only receiving All Social Assistance (%),topics,Social Protection & Labor,10
+per_saonl.overlap_pop_rur,Population only receiving All Social Assistance (%) -rural,topics,Social Protection & Labor,10
+per_saonl.overlap_pop_tot,Population only receiving All Social Assistance (%),topics,Social Protection & Labor,10
+per_saonl.overlap_pop_urb,Population only receiving All Social Assistance (%) -urban,topics,Social Protection & Labor,10
+per_saonl.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) only receiving All Social Assistance (%, preT)",topics,Social Protection & Labor,10
+per_saonl.overlap_q1_rur,Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -rural,topics,Social Protection & Labor,10
+per_saonl.overlap_q1_tot,Population in the 1st quintile (poorest) only receiving All Social Assistance (%),topics,Social Protection & Labor,10
+per_saonl.overlap_q1_urb,Population in the 1st quintile (poorest) only receiving All Social Assistance (%) -urban,topics,Social Protection & Labor,10
+per_saoth.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) receiving Social Assistance and Other (%, preT)",topics,Social Protection & Labor,10
+per_saoth.overlap_ep_tot,Population in extreme poor (<$2.15 a day) receiving Social Assistance and Other (%),topics,Social Protection & Labor,10
+per_saoth.overlap_pop_rur,Population receiving Social Assistance and Other (%) -rural,topics,Social Protection & Labor,10
+per_saoth.overlap_pop_tot,Population receiving Social Assistance and Other (%),topics,Social Protection & Labor,10
+per_saoth.overlap_pop_urb,Population receiving Social Assistance and Other (%) -urban,topics,Social Protection & Labor,10
+per_saoth.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) receiving Social Assistance and Other (%, preT)",topics,Social Protection & Labor,10
+per_saoth.overlap_q1_rur,Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -rural,topics,Social Protection & Labor,10
+per_saoth.overlap_q1_tot,Population in the 1st quintile (poorest) receiving Social Assistance and Other (%),topics,Social Protection & Labor,10
+per_saoth.overlap_q1_urb,Population in the 1st quintile (poorest) receiving Social Assistance and Other (%) -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_pop_rur,Adequacy of benefits (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_pop_tot,Adequacy of social insurance programs (% of total welfare of beneficiary households),topics,Social Protection & Labor,10
+per_si_allsi.adq_pop_urb,Adequacy of benefits (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_pop_rur,Average per capita transfer - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_pop_tot,Average per capita transfer - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_pop_totf,Average per capita transfer - All Social Insurance Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_pop_totfr,Average per capita transfer - All Social Insurance Programs -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_pop_totm,Average per capita transfer - All Social Insurance Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_pop_totmr,Average per capita transfer - All Social Insurance Programs -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_pop_urb,Average per capita transfer - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_q1_preT_totfr,Average per capita transfer held by 1st quintile(poorest)-All Social Insur. (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-All Social Insurance(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_q1_totfr,Average per capita transfer held by 1st quintile(poorest)-All Social Insurance-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q1_totmr,Average per capita transfer held by 1st quintile(poorest)-All Social Insurance-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile-All Social Insurance(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile-All Social Insurance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q2_rur,Average per capita transfer held by 2nd quintile - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_q2_tot,Average per capita transfer held by 2nd quintile - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_q2_totfr,Average per capita transfer held by 2nd quintile - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q2_totmr,Average per capita transfer held by 2nd quintile - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q2_urb,Average per capita transfer held by 2nd quintile - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile-All Social Insurance(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile-All Social Insurance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q3_rur,Average per capita transfer held by 3rd quintile - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_q3_tot,Average per capita transfer held by 3rd quintile - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_q3_totfr,Average per capita transfer held by 3rd quintile - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q3_totmr,Average per capita transfer held by 3rd quintile - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q3_urb,Average per capita transfer held by 3rd quintile - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile-All Social Insurance(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile-All Social Insurance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q4_rur,Average per capita transfer held by 4th quintile - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_q4_tot,Average per capita transfer held by 4th quintile - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_q4_totfr,Average per capita transfer held by 4th quintile - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q4_totmr,Average per capita transfer held by 4th quintile - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q4_urb,Average per capita transfer held by 4th quintile - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.avt_q5_preT_totfr,Average per capita transfer held by 5th quintile(richest)-All Social Insur. (preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-All Social Insurance(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.avt_q5_totfr,Average per capita transfer held by 5th quintile(richest)-All Social Insurance-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q5_totmr,Average per capita transfer held by 5th quintile(richest)-All Social Insurance-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.ben_pop_totf,Benefits incidence in all income groups (%) - All Social Insurance Programs - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.ben_pop_totm,Benefits incidence in all income groups (%) - All Social Insurance Programs - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.ben_q1_tot,Benefit incidence of social insurance programs to poorest quintile (% of total social insurance benefits),topics,Social Protection & Labor,10
+per_si_allsi.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_q2_rur,Benefits incidence in 2nd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.ben_q2_tot,Benefits incidence in 2nd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.ben_q2_urb,Benefits incidence in 2nd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_q3_rur,Benefits incidence in 3rd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.ben_q3_tot,Benefits incidence in 3rd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.ben_q3_urb,Benefits incidence in 3rd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_q4_rur,Benefits incidence in 4th quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.ben_q4_tot,Benefits incidence in 4th quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.ben_q4_urb,Benefits incidence in 4th quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_pop_totf,Beneficiary incidence in all income groups(%)-All Social Insurance -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_pop_totfr,Beneficiary incidence in all income groups(%)-All Social Insurance -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_pop_totm,Beneficiary incidence in all income groups(%)-All Social Insurance -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_pop_totmr,Beneficiary incidence in all income groups(%)-All Social Insurance Programs Programs-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Insurance(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Insurance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-All Social Insurance Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - All Social Insurance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - All Social Insurance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - All Social Insurance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - All Social Insurance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - All Social Insurance Programs (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - All Social Insurance Programs (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - All Social Insurance Programs -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Insurance(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Insurance Programs(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-All Social Insurance Programs-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance Programs -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cba_ep_tot,Benefit-cost ratio - All Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_allsi.cba_q1_rur,Benefit-cost ratio - All Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_allsi.cba_q1_tot,Benefit-cost ratio - All Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_allsi.cba_q1_urb,Benefit-cost ratio - All Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi.cov_pop_rur,Coverage (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_pop_tot,Coverage of social insurance programs (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_pop_totf,Coverage (%) - All Social Insurance Programs -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.cov_pop_totm,Coverage (%) - All Social Insurance Programs -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_allsi.cov_pop_urb,Coverage (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_q1_tot,Coverage of social insurance programs in poorest quintile (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_q2_preT_tot,Coverage in 2nd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_q2_rur,Coverage in 2nd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_q2_tot,Coverage of social insurance programs in 2nd quintile (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_q2_urb,Coverage in 2nd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_q3_preT_tot,Coverage in 3rd quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_q3_rur,Coverage in 3rd quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_q3_tot,Coverage of social insurance programs in 3rd quintile (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_q3_urb,Coverage in 3rd quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_q4_preT_tot,Coverage in 4th quintile (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_q4_rur,Coverage in 4th quintile (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_q4_tot,Coverage of social insurance programs in 4th quintile (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_q4_urb,Coverage in 4th quintile (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - All Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_allsi.cov_q5_rur,Coverage in 5th quintile (richest) (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi.cov_q5_tot,Coverage of social insurance programs in richest quintile (% of population),topics,Social Protection & Labor,10
+per_si_allsi.cov_q5_urb,Coverage in 5th quintile (richest) (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi_gini_rur,Gini inequality index reduction (%) - All Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_allsi_gini_tot,Gini inequality index reduction (%) - All Social Insurance,topics,Social Protection & Labor,10
+per_si_allsi_gini_urb,Gini inequality index reduction (%) - All Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_allsi_p0_ep_tot,Poverty Headcount reduction (%) - All Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_allsi_p0_rur,Poverty Headcount reduction (%) - All Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_allsi_p0_tot,Poverty Headcount reduction (%) - All Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_allsi_p0_urb,Poverty Headcount reduction (%) - All Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_si_allsi_p1_ep_tot,Poverty Gap reduction (%) - All Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_allsi_p1_rur,Poverty Gap reduction (%) - All Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_allsi_p1_tot,Poverty Gap reduction (%) - All Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_allsi_p1_urb,Poverty Gap reduction (%) - All Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_si_cp.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_pop_rur,Adequacy of benefits (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_pop_tot,Adequacy of benefits (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_pop_urb,Adequacy of benefits (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_rur,Average per capita transfer - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_tot,Average per capita transfer - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_totf,Average per capita transfer - Contributory Pensions -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_totfr,Average per capita transfer - Contributory Pensions -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_totm,Average per capita transfer - Contributory Pensions -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_totmr,Average per capita transfer - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_pop_urb,Average per capita transfer - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_preT_totfr,Avg. per capita transfer held by 1st quintile(poorest)-Contributory Pensions(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_preT_totmr,Average per capita transfer held by 1st quintile(poorest)-Contributory Pensions(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_totfr,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_totmr,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_preT_totfr,Average per capita transfer held by 2nd quintile - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_preT_totmr,Average per capita transfer held by 2nd quintile - Contributory Pensions (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_rur,Average per capita transfer held by 2nd quintile - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_tot,Average per capita transfer held by 2nd quintile - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_totfr,Average per capita transfer held by 2nd quintile - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_totmr,Average per capita transfer held by 2nd quintile - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q2_urb,Average per capita transfer held by 2nd quintile - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_preT_totfr,Average per capita transfer held by 3rd quintile - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_preT_totmr,Average per capita transfer held by 3rd quintile - Contributory Pensions (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_rur,Average per capita transfer held by 3rd quintile - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_tot,Average per capita transfer held by 3rd quintile - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_totfr,Average per capita transfer held by 3rd quintile - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_totmr,Average per capita transfer held by 3rd quintile - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q3_urb,Average per capita transfer held by 3rd quintile - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_preT_totfr,Average per capita transfer held by 4th quintile - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_preT_totmr,Average per capita transfer held by 4th quintile - Contributory Pensions (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_rur,Average per capita transfer held by 4th quintile - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_tot,Average per capita transfer held by 4th quintile - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_totfr,Average per capita transfer held by 4th quintile - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_totmr,Average per capita transfer held by 4th quintile - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q4_urb,Average per capita transfer held by 4th quintile - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_preT_totfr,Avg. per capita transfer held by 5th quintile(richest)-Contributory Pensions(preT)-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_preT_totmr,Average per capita transfer held by 5th quintile(richest)-Contributory Pensions(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_totfr,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_totmr,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_pop_totf,Benefits incidence in all income groups (%) - Contributory Pensions - female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_pop_totm,Benefits incidence in all income groups (%) - Contributory Pensions - male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q4_rur,Benefits incidence in 4th quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q4_tot,Benefits incidence in 4th quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q4_urb,Benefits incidence in 4th quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_pop_totf,Beneficiary incidence in all income groups (%) - Contributory Pensions -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_pop_totfr,Beneficiary incidence in all income groups (%) - Contributory Pensions -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_pop_totm,Beneficiary incidence in all income groups (%) - Contributory Pensions -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_pop_totmr,Beneficiary incidence in all income groups (%) - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_totfr,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_totmr,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile (%) - Contributory Pensions (preT) -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_totfr,Beneficiary incidence in 4th quintile (%) - Contributory Pensions -female-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_totmr,Beneficiary incidence in 4th quintile (%) - Contributory Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions (preT) -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions (preT) -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_totfr,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_totmr,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cba_ep_tot,Benefit-cost ratio - Contributory Pensions -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cba_q1_rur,Benefit-cost ratio - Contributory Pensions -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cba_q1_tot,Benefit-cost ratio - Contributory Pensions -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cba_q1_urb,Benefit-cost ratio - Contributory Pensions - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_pop_rur,Coverage (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_pop_tot,Coverage (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_pop_totf,Coverage (%) - Contributory Pensions -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_pop_totm,Coverage (%) - Contributory Pensions -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_pop_urb,Coverage (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q2_rur,Coverage in 2nd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q2_tot,Coverage in 2nd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q2_urb,Coverage in 2nd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q3_rur,Coverage in 3rd quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q3_tot,Coverage in 3rd quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q3_urb,Coverage in 3rd quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q4_preT_tot,Coverage in 4th quintile (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q4_rur,Coverage in 4th quintile (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q4_tot,Coverage in 4th quintile (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q4_urb,Coverage in 4th quintile (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Contributory Pensions (preT),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_gini_rur,Gini inequality index reduction (%) - Contributory Pensions -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_gini_tot,Gini inequality index reduction (%) - Contributory Pensions,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_gini_urb,Gini inequality index reduction (%) - Contributory Pensions -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p0_ep_tot,Poverty Headcount reduction (%) - Contributory Pensions -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p0_rur,Poverty Headcount reduction (%) - Contributory Pensions -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p0_tot,Poverty Headcount reduction (%) - Contributory Pensions -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p0_urb,Poverty Headcount reduction (%) - Contributory Pensions - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p1_ep_tot,Poverty Gap reduction (%) - Contributory Pensions -extreme poor (<$2.15 a day),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p1_rur,Poverty Gap reduction (%) - Contributory Pensions -1st quintile (poorest) -rural,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p1_tot,Poverty Gap reduction (%) - Contributory Pensions -1st quintile (poorest),sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_cp_p1_urb,Poverty Gap reduction (%) - Contributory Pensions - 1st quintile (poorest) -urban,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.adq_ep_preT_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_ep_tot,Adequacy of benefits in extreme poor (<$2.15 a day) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_pop_rur,Adequacy of benefits (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_pop_tot,Adequacy of benefits (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_pop_urb,Adequacy of benefits (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.adq_q1_preT_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_q1_rur,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_q1_tot,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_q1_urb,Adequacy of benefits in 1st quintile (poorest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.adq_q2_preT_tot,Adequacy of benefits in 2nd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_q2_rur,Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_q2_tot,Adequacy of benefits in 2nd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_q2_urb,Adequacy of benefits in 2nd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.adq_q3_preT_tot,Adequacy of benefits in 3rd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_q3_rur,Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_q3_tot,Adequacy of benefits in 3rd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_q3_urb,Adequacy of benefits in 3rd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.adq_q4_preT_tot,Adequacy of benefits in 4th quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_q4_rur,Adequacy of benefits in 4th quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_q4_tot,Adequacy of benefits in 4th quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_q4_urb,Adequacy of benefits in 4th quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.adq_q5_preT_tot,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.adq_q5_rur,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.adq_q5_tot,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.adq_q5_urb,Adequacy of benefits in 5th quintile (richest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_ep_preT_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_ep_tot,Average per capita transfer held by extreme poor (<$2.15 a day) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_pop_rur,Average per capita transfer - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_pop_tot,Average per capita transfer - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_pop_totf,Average per capita transfer - Contributory Benefits other than Pensions -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_pop_totfr,Average per capita transfer - Contributory Benefits other than Pensions -female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_pop_totm,Average per capita transfer - Contributory Benefits other than Pensions -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_pop_totmr,Average per capita transfer - Contributory Benefits other than Pensions -male-recipient of programs,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_pop_urb,Average per capita transfer - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_q1_preT_tot,Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_q1_preT_totfr,Avg per capita transfer in 1st quintile(poorest)-Contrib. Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q1_preT_totmr,Avg per capita transfer in 1st quintile(poorest)-Contrib. Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q1_rur,Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_q1_tot,Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_q1_totfr,Avg per capita transfer held by 1st quintile(poorest)-Contrib. Ben. other than Pensions-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q1_totmr,Avg per capita transfer held by 1st quintile(poorest)-Contrib. Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q1_urb,Average per capita transfer held by 1st quintile (poorest) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_q2_preT_tot,Average per capita transfer held by 2nd quintile - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_q2_preT_totfr,Avg per capita transfer held by 2nd quintile-Contributory Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q2_preT_totmr,Avg per capita transfer held by 2nd quintile-Contributory Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q2_rur,Average per capita transfer held by 2nd quintile - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_q2_tot,Average per capita transfer held by 2nd quintile - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_q2_totfr,Average per capita transfer held by 2nd quintile-Contributory Ben. other than Pensions-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q2_totmr,Average per capita transfer held by 2nd quintile-Contributory Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q2_urb,Average per capita transfer held by 2nd quintile - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_q3_preT_tot,Average per capita transfer held by 3rd quintile - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_q3_preT_totfr,Avg per capita transfer held by 3rd quintile-Contributory Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q3_preT_totmr,Avg per capita transfer held by 3rd quintile-Contributory Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q3_rur,Average per capita transfer held by 3rd quintile - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_q3_tot,Average per capita transfer held by 3rd quintile - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_q3_totfr,Average per capita transfer held by 3rd quintile-Contributory Ben. other than Pensions-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q3_totmr,Average per capita transfer held by 3rd quintile-Contributory Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q3_urb,Average per capita transfer held by 3rd quintile - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_q4_preT_tot,Average per capita transfer held by 4th quintile - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_q4_preT_totfr,Avg per capita transfer held by 4th quintile-Contributory Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q4_preT_totmr,Avg per capita transfer held by 4th quintile-Contributory Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q4_rur,Average per capita transfer held by 4th quintile - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_q4_tot,Average per capita transfer held by 4th quintile - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_q4_totfr,Average per capita transfer held by 4th quintile-Contributory Ben. other than Pensions-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q4_totmr,Average per capita transfer held by 4th quintile-Contributory Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q4_urb,Average per capita transfer held by 4th quintile - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.avt_q5_preT_tot,Average per capita transfer held by 5th quintile (richest) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.avt_q5_preT_totfr,Avg per capita transfer in 5th quintile(richest)-Contrib. Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q5_preT_totmr,Avg per capita transfer in 5th quintile(richest)-Contrib. Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q5_rur,Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.avt_q5_tot,Average per capita transfer held by 5th quintile (richest) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.avt_q5_totfr,Avg per capita transfer held by 5th quintile(richest)-Contrib. Ben. other than Pensions-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q5_totmr,Avg per capita transfer held by 5th quintile(richest)-Contrib. Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.avt_q5_urb,Average per capita transfer held by 5th quintile (richest) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.ben_ep_preT_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_ep_tot,Benefits incidence in extreme poor (<$2.15 a day) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_pop_totf,Benefits incidence in all income groups(%)-Contributory Benefits other than Pensions-fem-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.ben_pop_totm,Ben. incidence in all income groups(%)-Contributory Ben. other than Pensions-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.ben_q1_preT_tot,Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_q1_rur,Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.ben_q1_tot,Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_q1_urb,Benefits incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.ben_q2_preT_tot,Benefits incidence in 2nd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_q2_rur,Benefits incidence in 2nd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.ben_q2_tot,Benefits incidence in 2nd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_q2_urb,Benefits incidence in 2nd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.ben_q3_preT_tot,Benefits incidence in 3rd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_q3_rur,Benefits incidence in 3rd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.ben_q3_tot,Benefits incidence in 3rd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_q3_urb,Benefits incidence in 3rd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.ben_q4_preT_tot,Benefits incidence in 4th quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_q4_rur,Benefits incidence in 4th quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.ben_q4_tot,Benefits incidence in 4th quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_q4_urb,Benefits incidence in 4th quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.ben_q5_preT_tot,Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.ben_q5_rur,Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.ben_q5_tot,Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.ben_q5_urb,Benefits incidence in 5th quintile (richest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.bry_ep_preT_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_ep_tot,Beneficiary incidence in extreme poor (<$2.15 a day) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_pop_totf,Beneficiary incidence in all income groups(%)-Contributory Ben. other than Pensions-fem-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_pop_totfr,Beneficiary incidence in all income groups(%)-Contributory Ben. other than Pensions-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_pop_totm,Beneficiary incidence in all income groups(%)-Contributory Ben. other than Pensions-male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_pop_totmr,Beneficiary incidence in all income groups(%)-Contributory Ben. other than Pensions-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q1_preT_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_q1_preT_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Contrib. Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q1_preT_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Contrib. Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q1_rur,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.bry_q1_tot,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_q1_totfr,Beneficiary incidence in 1st quintile(poorest)(%)-Contributory Ben. other than Pensions-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q1_totmr,Beneficiary incidence in 1st quintile(poorest)(%)-Contributory Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q1_urb,Beneficiary incidence in 1st quintile (poorest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.bry_q2_preT_tot,Beneficiary incidence in 2nd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_q2_preT_totfr,Beneficiary incidence in 2nd quintile(%)-Contributory Ben. other than Pensions(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q2_preT_totmr,Beneficiary incidence in 2nd quintile(%)-Contributory Ben. other than Pensions(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q2_rur,Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.bry_q2_tot,Beneficiary incidence in 2nd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_q2_totfr,Beneficiary incidence in 2nd quintile (%)-Contributory Benefits other than Pensions-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q2_totmr,Beneficiary incidence in 2nd quintile (%)-Contributory Benefits other than Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q2_urb,Beneficiary incidence in 2nd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.bry_q3_preT_tot,Beneficiary incidence in 3rd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_q3_preT_totfr,Beneficiary incidence in 3rd quintile(%)-Contributory Ben. other than Pensions(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q3_preT_totmr,Beneficiary incidence in 3rd quintile(%)-Contributory Ben. other than Pensions(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q3_rur,Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.bry_q3_tot,Beneficiary incidence in 3rd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_q3_totfr,Beneficiary incidence in 3rd quintile (%)-Contributory Benefits other than Pensions-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q3_totmr,Beneficiary incidence in 3rd quintile (%)-Contributory Benefits other than Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q3_urb,Beneficiary incidence in 3rd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.bry_q4_preT_tot,Beneficiary incidence in 4th quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_q4_preT_totfr,Beneficiary incidence in 4th quintile(%)-Contributory Ben. other than Pensions(preT)-fem-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q4_preT_totmr,Beneficiary incidence in 4th quintile(%)-Contributory Ben. other than Pensions(preT)-male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q4_rur,Beneficiary incidence in 4th quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.bry_q4_tot,Beneficiary incidence in 4th quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_q4_totfr,Beneficiary incidence in 4th quintile (%)-Contributory Benefits other than Pensions-female-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q4_totmr,Beneficiary incidence in 4th quintile (%)-Contributory Benefits other than Pensions -male-recipient,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q4_urb,Beneficiary incidence in 4th quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.bry_q5_preT_tot,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.bry_q5_preT_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Contrib. Ben. other than Pensions(preT)-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q5_preT_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Contrib. Ben. other than Pensions(preT)-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q5_rur,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.bry_q5_tot,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.bry_q5_totfr,Beneficiary incidence in 5th quintile(richest)(%)-Contributory Ben. other than Pensions-fem-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q5_totmr,Beneficiary incidence in 5th quintile(richest)(%)-Contributory Ben. other than Pensions-male-recip,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.bry_q5_urb,Beneficiary incidence in 5th quintile (richest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cba_ep_tot,Benefit-cost ratio - Other Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_ss.cba_q1_rur,Benefit-cost ratio - Other Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_ss.cba_q1_tot,Benefit-cost ratio - Other Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_ss.cba_q1_urb,Benefit-cost ratio - Other Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_ep_preT_tot,Coverage in extreme poor (<$2.15 a day) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_ep_tot,Coverage in extreme poor (<$2.15 a day) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_pop_rur,Coverage (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_pop_tot,Coverage (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_pop_totf,Coverage (%) - Contributory Benefits other than Pensions -female-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.cov_pop_totm,Coverage (%) - Contributory Benefits other than Pensions -male-beneficiary,sources,The Atlas of Social Protection: Indicators of Resilience and Equity,29
+per_si_ss.cov_pop_urb,Coverage (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_q1_preT_tot,Coverage in 1st quintile (poorest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_q1_rur,Coverage in 1st quintile (poorest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_q1_tot,Coverage in 1st quintile (poorest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_q1_urb,Coverage in 1st quintile (poorest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_q2_preT_tot,Coverage in 2nd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_q2_rur,Coverage in 2nd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_q2_tot,Coverage in 2nd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_q2_urb,Coverage in 2nd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_q3_preT_tot,Coverage in 3rd quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_q3_rur,Coverage in 3rd quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_q3_tot,Coverage in 3rd quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_q3_urb,Coverage in 3rd quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_q4_preT_tot,Coverage in 4th quintile (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_q4_rur,Coverage in 4th quintile (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_q4_tot,Coverage in 4th quintile (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_q4_urb,Coverage in 4th quintile (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss.cov_q5_preT_tot,Coverage in 5th quintile (richest) (%) - Other Social Insurance (preT),topics,Social Protection & Labor,10
+per_si_ss.cov_q5_rur,Coverage in 5th quintile (richest) (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss.cov_q5_tot,Coverage in 5th quintile (richest) (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss.cov_q5_urb,Coverage in 5th quintile (richest) (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss_gini_rur,Gini inequality index reduction (%) - Other Social Insurance -rural,topics,Social Protection & Labor,10
+per_si_ss_gini_tot,Gini inequality index reduction (%) - Other Social Insurance,topics,Social Protection & Labor,10
+per_si_ss_gini_urb,Gini inequality index reduction (%) - Other Social Insurance -urban,topics,Social Protection & Labor,10
+per_si_ss_p0_ep_tot,Poverty Headcount reduction (%) - Other Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_ss_p0_rur,Poverty Headcount reduction (%) - Other Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_ss_p0_tot,Poverty Headcount reduction (%) - Other Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_ss_p0_urb,Poverty Headcount reduction (%) - Other Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_si_ss_p1_ep_tot,Poverty Gap reduction (%) - Other Social Insurance -extreme poor (<$2.15 a day),topics,Social Protection & Labor,10
+per_si_ss_p1_rur,Poverty Gap reduction (%) - Other Social Insurance -1st quintile (poorest) -rural,topics,Social Protection & Labor,10
+per_si_ss_p1_tot,Poverty Gap reduction (%) - Other Social Insurance -1st quintile (poorest),topics,Social Protection & Labor,10
+per_si_ss_p1_urb,Poverty Gap reduction (%) - Other Social Insurance - 1st quintile (poorest) -urban,topics,Social Protection & Labor,10
+per_silm.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) receiving All Social Insurance and Labor Market (%, preT)",topics,Social Protection & Labor,10
+per_silm.overlap_ep_tot,Population in extreme poor (<$2.15 a day) receiving All Social Insurance and Labor Market (%),topics,Social Protection & Labor,10
+per_silm.overlap_pop_rur,Population receiving All Social Insurance and Labor Market (%) -rural,topics,Social Protection & Labor,10
+per_silm.overlap_pop_tot,Population receiving All Social Insurance and Labor Market (%),topics,Social Protection & Labor,10
+per_silm.overlap_pop_urb,Population receiving All Social Insurance and Labor Market (%) -urban,topics,Social Protection & Labor,10
+per_silm.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%, preT)",topics,Social Protection & Labor,10
+per_silm.overlap_q1_rur,Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -rural,topics,Social Protection & Labor,10
+per_silm.overlap_q1_tot,Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%),topics,Social Protection & Labor,10
+per_silm.overlap_q1_urb,Population in the 1st quintile (poorest) receiving All Social Insurance and Labor Market (%) -urban,topics,Social Protection & Labor,10
+per_sionl.overlap_ep_preT_tot,"Population in extreme poor (<$2.15 a day) only receiving All Social Insurance (%, preT)",topics,Social Protection & Labor,10
+per_sionl.overlap_ep_tot,Population in extreme poor (<$2.15 a day) only receiving All Social Insurance (%),topics,Social Protection & Labor,10
+per_sionl.overlap_pop_rur,Population only receiving All Social Insurance (%) -rural,topics,Social Protection & Labor,10
+per_sionl.overlap_pop_tot,Population only receiving All Social Insurance (%),topics,Social Protection & Labor,10
+per_sionl.overlap_pop_urb,Population only receiving All Social Insurance (%) -urban,topics,Social Protection & Labor,10
+per_sionl.overlap_q1_preT_tot,"Population in the 1st quintile (poorest) only receiving All Social Insurance (%, preT)",topics,Social Protection & Labor,10
+per_sionl.overlap_q1_rur,Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -rural,topics,Social Protection & Labor,10
+per_sionl.overlap_q1_tot,Population in the 1st quintile (poorest) only receiving All Social Insurance (%),topics,Social Protection & Labor,10
+per_sionl.overlap_q1_urb,Population in the 1st quintile (poorest) only receiving All Social Insurance (%) -urban,topics,Social Protection & Labor,10
+s_loans_A1,"Outstanding loans per 1,000 adults",sources,G20 Financial Inclusion Indicators,33
+s_policyholders_B2_life,"Insurance policy holders per 1,000 adults (life)",sources,G20 Financial Inclusion Indicators,33
+s_policyholders_B2_nonlife,"Insurance policy holders per 1,000 adults (non-life)",sources,G20 Financial Inclusion Indicators,33
+save.any.t.d,Saved any money (% age 15+),sources,Gender Statistics,14
+save.any.t.d.1,"Saved any money, women (% age 15+)",sources,Gender Statistics,14
+save.any.t.d.10,"Saved any money, urban (% age 15+)",sources,Global Findex database,28
+save.any.t.d.11,"Saved any money, out of laborforce (% age 15+)",sources,Global Findex database,28
+save.any.t.d.12,"Saved any money, in laborforce (% age 15+)",sources,Global Findex database,28
+save.any.t.d.2,"Saved any money, men (% age 15+)",sources,Gender Statistics,14
+save.any.t.d.3,"Saved any money, young (% ages 15-24)",sources,Global Findex database,28
+save.any.t.d.4,"Saved any money, older (% age 25+)",sources,Global Findex database,28
+save.any.t.d.5,"Saved any money, primary education or less (% age 15+)",sources,Global Findex database,28
+save.any.t.d.6,"Saved any money, secondary education or more (% age 15+)",sources,Global Findex database,28
+save.any.t.d.7,"Saved any money, poorest 40% (% age 15+)",sources,Global Findex database,28
+save.any.t.d.8,"Saved any money, richest 60% (% age 15+)",sources,Global Findex database,28
+save.any.t.d.9,"Saved any money, rural (% age 15+)",sources,Global Findex database,28
diff --git a/pyproject.toml b/pyproject.toml
index c152d42..40b073b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,11 +9,15 @@ dependencies = [
"catboost>=1.2.8",
"datasets>=4.4.2",
"faiss-cpu>=1.13.2",
+ "google-api-python-client>=2.188.0",
+ "google-auth-oauthlib>=1.2.4",
+ "google-generativeai>=0.8.6",
"gymnasium[toy-text]>=1.2.3",
"imblearn>=0.0",
"ipykernel>=6.29.5",
"langchain>=1.2.0",
"langchain-community>=0.4.1",
+ "langchain-core>=1.2.6",
"langchain-huggingface>=1.2.0",
"langchain-ollama>=1.0.1",
"langchain-text-splitters>=1.1.0",
@@ -27,6 +31,7 @@ dependencies = [
"plotly>=6.3.0",
"polars>=1.37.0",
"pypdf>=6.5.0",
+ "requests>=2.32.5",
"scikit-learn>=1.6.1",
"scipy>=1.15.2",
"seaborn>=0.13.2",
@@ -35,7 +40,9 @@ dependencies = [
"statsmodels>=0.14.6",
"tensorflow>=2.20.0",
"tf-keras>=2.20.1",
+ "todoist-python>=8.1.4",
"umap-learn>=0.5.11",
+ "wbdata>=1.1.0",
"xgboost>=3.1.2",
"yfinance>=0.2.66",
]
diff --git a/uv.lock b/uv.lock
index 803ff62..4329914 100644
--- a/uv.lock
+++ b/uv.lock
@@ -2,9 +2,12 @@ version = 1
revision = 3
requires-python = ">=3.11"
resolution-markers = [
- "python_full_version >= '3.13' and sys_platform == 'darwin'",
- "python_full_version >= '3.13' and platform_machine == 'aarch64' and sys_platform == 'linux'",
- "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux')",
+ "python_full_version >= '3.14' and sys_platform == 'darwin'",
+ "python_full_version == '3.13.*' and sys_platform == 'darwin'",
+ "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "(python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')",
+ "(python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')",
"python_full_version == '3.12.*' and sys_platform == 'darwin'",
"python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'",
"(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux')",
@@ -186,6 +189,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/7f/9c/36c5c37947ebfb8c7f22e0eb6e4d188ee2d53aa3880f3f2744fb894f0cb1/anyio-4.12.0-py3-none-any.whl", hash = "sha256:dad2376a628f98eeca4881fc56cd06affd18f659b17a747d3ff0307ced94b1bb", size = 113362, upload-time = "2025-11-28T23:36:57.897Z" },
]
+[[package]]
+name = "appdirs"
+version = "1.4.4"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470, upload-time = "2020-05-11T07:59:51.037Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566, upload-time = "2020-05-11T07:59:49.499Z" },
+]
+
[[package]]
name = "appnope"
version = "0.1.4"
@@ -226,6 +238,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" },
]
+[[package]]
+name = "backoff"
+version = "2.2.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/47/d7/5bbeb12c44d7c4f2fb5b56abce497eb5ed9f34d85701de869acedd602619/backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba", size = 17001, upload-time = "2022-10-05T19:19:32.061Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/df/73/b6e24bd22e6720ca8ee9a85a0c4a2971af8497d8f3193fa05390cbd46e09/backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8", size = 15148, upload-time = "2022-10-05T19:19:30.546Z" },
+]
+
[[package]]
name = "beautifulsoup4"
version = "4.14.2"
@@ -239,6 +260,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/94/fe/3aed5d0be4d404d12d36ab97e2f1791424d9ca39c2f754a6285d59a3b01d/beautifulsoup4-4.14.2-py3-none-any.whl", hash = "sha256:5ef6fa3a8cbece8488d66985560f97ed091e22bbc4e9c2338508a9d5de6d4515", size = 106392, upload-time = "2025-09-29T10:05:43.771Z" },
]
+[[package]]
+name = "cachetools"
+version = "5.5.2"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/6c/81/3747dad6b14fa2cf53fcf10548cf5aea6913e96fab41a3c198676f8948a5/cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4", size = 28380, upload-time = "2025-02-20T21:01:19.524Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/72/76/20fa66124dbe6be5cafeb312ece67de6b61dd91a0247d1ea13db4ebb33c2/cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a", size = 10080, upload-time = "2025-02-20T21:01:16.647Z" },
+]
+
[[package]]
name = "catboost"
version = "1.2.8"
@@ -527,6 +557,21 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/7b/b5/fefa518c809de7bced5cddb7c21c010da66fa2ae494bda96844a280cc6ce/datasets-4.4.2-py3-none-any.whl", hash = "sha256:6f5ef3417504d9cd663c71c1b90b9a494ff4c2076a2cd6a6e40ceee6ad95befc", size = 512268, upload-time = "2025-12-19T15:03:07.087Z" },
]
+[[package]]
+name = "dateparser"
+version = "1.2.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "python-dateutil" },
+ { name = "pytz" },
+ { name = "regex" },
+ { name = "tzlocal" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/a9/30/064144f0df1749e7bb5faaa7f52b007d7c2d08ec08fed8411aba87207f68/dateparser-1.2.2.tar.gz", hash = "sha256:986316f17cb8cdc23ea8ce563027c5ef12fc725b6fb1d137c14ca08777c5ecf7", size = 329840, upload-time = "2025-06-26T09:29:23.211Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/87/22/f020c047ae1346613db9322638186468238bcfa8849b4668a22b97faad65/dateparser-1.2.2-py3-none-any.whl", hash = "sha256:5a5d7211a09013499867547023a2a0c91d5a27d15dd4dbcea676ea9fe66f2482", size = 315453, upload-time = "2025-06-26T09:29:21.412Z" },
+]
+
[[package]]
name = "debugpy"
version = "1.8.14"
@@ -817,6 +862,157 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173, upload-time = "2024-07-09T13:15:15.615Z" },
]
+[[package]]
+name = "google-ai-generativelanguage"
+version = "0.6.15"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-core", version = "2.25.2", source = { registry = "https://pypi.org/simple" }, extra = ["grpc"], marker = "python_full_version >= '3.14'" },
+ { name = "google-api-core", version = "2.29.0", source = { registry = "https://pypi.org/simple" }, extra = ["grpc"], marker = "python_full_version < '3.14'" },
+ { name = "google-auth" },
+ { name = "proto-plus" },
+ { name = "protobuf" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/11/d1/48fe5d7a43d278e9f6b5ada810b0a3530bbeac7ed7fcbcd366f932f05316/google_ai_generativelanguage-0.6.15.tar.gz", hash = "sha256:8f6d9dc4c12b065fe2d0289026171acea5183ebf2d0b11cefe12f3821e159ec3", size = 1375443, upload-time = "2025-01-13T21:50:47.459Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/7c/a3/67b8a6ff5001a1d8864922f2d6488dc2a14367ceb651bc3f09a947f2f306/google_ai_generativelanguage-0.6.15-py3-none-any.whl", hash = "sha256:5a03ef86377aa184ffef3662ca28f19eeee158733e45d7947982eb953c6ebb6c", size = 1327356, upload-time = "2025-01-13T21:50:44.174Z" },
+]
+
+[[package]]
+name = "google-api-core"
+version = "2.25.2"
+source = { registry = "https://pypi.org/simple" }
+resolution-markers = [
+ "python_full_version >= '3.14' and sys_platform == 'darwin'",
+ "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "(python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')",
+]
+dependencies = [
+ { name = "google-auth", marker = "python_full_version >= '3.14'" },
+ { name = "googleapis-common-protos", marker = "python_full_version >= '3.14'" },
+ { name = "proto-plus", marker = "python_full_version >= '3.14'" },
+ { name = "protobuf", marker = "python_full_version >= '3.14'" },
+ { name = "requests", marker = "python_full_version >= '3.14'" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/09/cd/63f1557235c2440fe0577acdbc32577c5c002684c58c7f4d770a92366a24/google_api_core-2.25.2.tar.gz", hash = "sha256:1c63aa6af0d0d5e37966f157a77f9396d820fba59f9e43e9415bc3dc5baff300", size = 166266, upload-time = "2025-10-03T00:07:34.778Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/c8/d8/894716a5423933f5c8d2d5f04b16f052a515f78e815dab0c2c6f1fd105dc/google_api_core-2.25.2-py3-none-any.whl", hash = "sha256:e9a8f62d363dc8424a8497f4c2a47d6bcda6c16514c935629c257ab5d10210e7", size = 162489, upload-time = "2025-10-03T00:07:32.924Z" },
+]
+
+[package.optional-dependencies]
+grpc = [
+ { name = "grpcio", marker = "python_full_version >= '3.14'" },
+ { name = "grpcio-status", marker = "python_full_version >= '3.14'" },
+]
+
+[[package]]
+name = "google-api-core"
+version = "2.29.0"
+source = { registry = "https://pypi.org/simple" }
+resolution-markers = [
+ "python_full_version == '3.13.*' and sys_platform == 'darwin'",
+ "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "(python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')",
+ "python_full_version == '3.12.*' and sys_platform == 'darwin'",
+ "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux')",
+ "python_full_version < '3.12' and sys_platform == 'darwin'",
+ "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux'",
+ "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux')",
+]
+dependencies = [
+ { name = "google-auth", marker = "python_full_version < '3.14'" },
+ { name = "googleapis-common-protos", marker = "python_full_version < '3.14'" },
+ { name = "proto-plus", marker = "python_full_version < '3.14'" },
+ { name = "protobuf", marker = "python_full_version < '3.14'" },
+ { name = "requests", marker = "python_full_version < '3.14'" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/0d/10/05572d33273292bac49c2d1785925f7bc3ff2fe50e3044cf1062c1dde32e/google_api_core-2.29.0.tar.gz", hash = "sha256:84181be0f8e6b04006df75ddfe728f24489f0af57c96a529ff7cf45bc28797f7", size = 177828, upload-time = "2026-01-08T22:21:39.269Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/77/b6/85c4d21067220b9a78cfb81f516f9725ea6befc1544ec9bd2c1acd97c324/google_api_core-2.29.0-py3-none-any.whl", hash = "sha256:d30bc60980daa36e314b5d5a3e5958b0200cb44ca8fa1be2b614e932b75a3ea9", size = 173906, upload-time = "2026-01-08T22:21:36.093Z" },
+]
+
+[package.optional-dependencies]
+grpc = [
+ { name = "grpcio", marker = "python_full_version < '3.14'" },
+ { name = "grpcio-status", marker = "python_full_version < '3.14'" },
+]
+
+[[package]]
+name = "google-api-python-client"
+version = "2.188.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-api-core", version = "2.25.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14'" },
+ { name = "google-api-core", version = "2.29.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" },
+ { name = "google-auth" },
+ { name = "google-auth-httplib2" },
+ { name = "httplib2" },
+ { name = "uritemplate" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/a8/d7/14613c7efbab5b428b400961f5dbac46ad9e019c44e1f3fd14d67c33111c/google_api_python_client-2.188.0.tar.gz", hash = "sha256:5c469db6614f071009e3e5bb8b6aeeccae3beb3647fa9c6cd97f0d551edde0b6", size = 14302906, upload-time = "2026-01-13T22:15:13.747Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/33/67/a99a7d79d7a37a67cb8008f1d7dcedc46d29c6df5063aeb446112afd4aa4/google_api_python_client-2.188.0-py3-none-any.whl", hash = "sha256:3cad1b68f9d48b82b93d77927e8370a6f43f33d97848242601f14a93a1c70ef5", size = 14870005, upload-time = "2026-01-13T22:15:11.345Z" },
+]
+
+[[package]]
+name = "google-auth"
+version = "2.47.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyasn1-modules" },
+ { name = "rsa" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/60/3c/ec64b9a275ca22fa1cd3b6e77fefcf837b0732c890aa32d2bd21313d9b33/google_auth-2.47.0.tar.gz", hash = "sha256:833229070a9dfee1a353ae9877dcd2dec069a8281a4e72e72f77d4a70ff945da", size = 323719, upload-time = "2026-01-06T21:55:31.045Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/db/18/79e9008530b79527e0d5f79e7eef08d3b179b7f851cfd3a2f27822fbdfa9/google_auth-2.47.0-py3-none-any.whl", hash = "sha256:c516d68336bfde7cf0da26aab674a36fedcf04b37ac4edd59c597178760c3498", size = 234867, upload-time = "2026-01-06T21:55:28.6Z" },
+]
+
+[[package]]
+name = "google-auth-httplib2"
+version = "0.3.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-auth" },
+ { name = "httplib2" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/d5/ad/c1f2b1175096a8d04cf202ad5ea6065f108d26be6fc7215876bde4a7981d/google_auth_httplib2-0.3.0.tar.gz", hash = "sha256:177898a0175252480d5ed916aeea183c2df87c1f9c26705d74ae6b951c268b0b", size = 11134, upload-time = "2025-12-15T22:13:51.825Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/99/d5/3c97526c8796d3caf5f4b3bed2b05e8a7102326f00a334e7a438237f3b22/google_auth_httplib2-0.3.0-py3-none-any.whl", hash = "sha256:426167e5df066e3f5a0fc7ea18768c08e7296046594ce4c8c409c2457dd1f776", size = 9529, upload-time = "2025-12-15T22:13:51.048Z" },
+]
+
+[[package]]
+name = "google-auth-oauthlib"
+version = "1.2.4"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-auth" },
+ { name = "requests-oauthlib" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/90/dd/211f27c1e927e2292c2a71d5df1a2aaf261ce50ba7d50848c6ee24e20970/google_auth_oauthlib-1.2.4.tar.gz", hash = "sha256:3ca93859c6cc9003c8e12b2a0868915209d7953f05a70f4880ab57d57e56ee3e", size = 21185, upload-time = "2026-01-15T22:03:10.027Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/84/21/fb96db432d187b07756e62971c4d89bdef70259e4cfa76ee32bcc0ac97d1/google_auth_oauthlib-1.2.4-py3-none-any.whl", hash = "sha256:0e922eea5f2baacaf8867febb782e46e7b153236c21592ed76ab3ddb77ffd772", size = 19193, upload-time = "2026-01-15T22:03:09.046Z" },
+]
+
+[[package]]
+name = "google-generativeai"
+version = "0.8.6"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "google-ai-generativelanguage" },
+ { name = "google-api-core", version = "2.25.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14'" },
+ { name = "google-api-core", version = "2.29.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" },
+ { name = "google-api-python-client" },
+ { name = "google-auth" },
+ { name = "protobuf" },
+ { name = "pydantic" },
+ { name = "tqdm" },
+ { name = "typing-extensions" },
+]
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/97/0f/ef33b5bb71437966590c6297104c81051feae95d54b11ece08533ef937d3/google_generativeai-0.8.6-py3-none-any.whl", hash = "sha256:37a0eaaa95e5bbf888828e20a4a1b2c196cc9527d194706e58a68ff388aeb0fa", size = 155098, upload-time = "2025-12-16T17:53:58.61Z" },
+]
+
[[package]]
name = "google-pasta"
version = "0.2.0"
@@ -829,6 +1025,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" },
]
+[[package]]
+name = "googleapis-common-protos"
+version = "1.72.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "protobuf" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/e5/7b/adfd75544c415c487b33061fe7ae526165241c1ea133f9a9125a56b39fd8/googleapis_common_protos-1.72.0.tar.gz", hash = "sha256:e55a601c1b32b52d7a3e65f43563e2aa61bcd737998ee672ac9b951cd49319f5", size = 147433, upload-time = "2025-11-06T18:29:24.087Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/c4/ab/09169d5a4612a5f92490806649ac8d41e3ec9129c636754575b3553f4ea4/googleapis_common_protos-1.72.0-py3-none-any.whl", hash = "sha256:4299c5a82d5ae1a9702ada957347726b167f9f8d1fc352477702a1e851ff4038", size = 297515, upload-time = "2025-11-06T18:29:13.14Z" },
+]
+
[[package]]
name = "graphviz"
version = "0.21"
@@ -923,6 +1131,20 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/34/80/de3eb55eb581815342d097214bed4c59e806b05f1b3110df03b2280d6dfd/grpcio-1.74.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd3c71aeee838299c5887230b8a1822795325ddfea635edd82954c1eaa831e24", size = 4489214, upload-time = "2025-07-24T18:53:59.771Z" },
]
+[[package]]
+name = "grpcio-status"
+version = "1.71.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "googleapis-common-protos" },
+ { name = "grpcio" },
+ { name = "protobuf" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/fd/d1/b6e9877fedae3add1afdeae1f89d1927d296da9cf977eca0eb08fb8a460e/grpcio_status-1.71.2.tar.gz", hash = "sha256:c7a97e176df71cdc2c179cd1847d7fc86cca5832ad12e9798d7fed6b7a1aab50", size = 13677, upload-time = "2025-06-28T04:24:05.426Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/67/58/317b0134129b556a93a3b0afe00ee675b5657f0155509e22fcb853bafe2d/grpcio_status-1.71.2-py3-none-any.whl", hash = "sha256:803c98cb6a8b7dc6dbb785b1111aed739f241ab5e9da0bba96888aa74704cfd3", size = 14424, upload-time = "2025-06-28T04:23:42.136Z" },
+]
+
[[package]]
name = "gymnasium"
version = "1.2.3"
@@ -1020,6 +1242,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" },
]
+[[package]]
+name = "httplib2"
+version = "0.31.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyparsing" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/c1/1f/e86365613582c027dda5ddb64e1010e57a3d53e99ab8a72093fa13d565ec/httplib2-0.31.2.tar.gz", hash = "sha256:385e0869d7397484f4eab426197a4c020b606edd43372492337c0b4010ae5d24", size = 250800, upload-time = "2026-01-23T11:04:44.165Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/2f/90/fd509079dfcab01102c0fdd87f3a9506894bc70afcf9e9785ef6b2b3aff6/httplib2-0.31.2-py3-none-any.whl", hash = "sha256:dbf0c2fa3862acf3c55c078ea9c0bc4481d7dc5117cae71be9514912cf9f8349", size = 91099, upload-time = "2026-01-23T11:04:42.78Z" },
+]
+
[[package]]
name = "httpx"
version = "0.28.1"
@@ -2186,6 +2420,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/a2/eb/86626c1bbc2edb86323022371c39aa48df6fd8b0a1647bc274577f72e90b/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b17e2001cc0d751a5bc2c6ec6d26ad95913324a4adb86788c944f8ce9ba441f", size = 89954, upload-time = "2025-03-07T01:42:44.131Z" },
]
+[[package]]
+name = "oauthlib"
+version = "3.3.1"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/19930f824ffeb0ad4372da4812c50edbd1434f678c90c2733e1188edfc63/oauthlib-3.3.1.tar.gz", hash = "sha256:0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9", size = 185918, upload-time = "2025-06-19T22:48:08.269Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" },
+]
+
[[package]]
name = "ollama"
version = "0.6.1"
@@ -2752,17 +2995,29 @@ wheels = [
]
[[package]]
-name = "protobuf"
-version = "6.32.0"
+name = "proto-plus"
+version = "1.27.0"
source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/c0/df/fb4a8eeea482eca989b51cffd274aac2ee24e825f0bf3cbce5281fa1567b/protobuf-6.32.0.tar.gz", hash = "sha256:a81439049127067fc49ec1d36e25c6ee1d1a2b7be930675f919258d03c04e7d2", size = 440614, upload-time = "2025-08-14T21:21:25.015Z" }
+dependencies = [
+ { name = "protobuf" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/01/89/9cbe2f4bba860e149108b683bc2efec21f14d5f7ed6e25562ad86acbc373/proto_plus-1.27.0.tar.gz", hash = "sha256:873af56dd0d7e91836aee871e5799e1c6f1bda86ac9a983e0bb9f0c266a568c4", size = 56158, upload-time = "2025-12-16T13:46:25.729Z" }
wheels = [
- { url = "https://files.pythonhosted.org/packages/33/18/df8c87da2e47f4f1dcc5153a81cd6bca4e429803f4069a299e236e4dd510/protobuf-6.32.0-cp310-abi3-win32.whl", hash = "sha256:84f9e3c1ff6fb0308dbacb0950d8aa90694b0d0ee68e75719cb044b7078fe741", size = 424409, upload-time = "2025-08-14T21:21:12.366Z" },
- { url = "https://files.pythonhosted.org/packages/e1/59/0a820b7310f8139bd8d5a9388e6a38e1786d179d6f33998448609296c229/protobuf-6.32.0-cp310-abi3-win_amd64.whl", hash = "sha256:a8bdbb2f009cfc22a36d031f22a625a38b615b5e19e558a7b756b3279723e68e", size = 435735, upload-time = "2025-08-14T21:21:15.046Z" },
- { url = "https://files.pythonhosted.org/packages/cc/5b/0d421533c59c789e9c9894683efac582c06246bf24bb26b753b149bd88e4/protobuf-6.32.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d52691e5bee6c860fff9a1c86ad26a13afbeb4b168cd4445c922b7e2cf85aaf0", size = 426449, upload-time = "2025-08-14T21:21:16.687Z" },
- { url = "https://files.pythonhosted.org/packages/ec/7b/607764ebe6c7a23dcee06e054fd1de3d5841b7648a90fd6def9a3bb58c5e/protobuf-6.32.0-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:501fe6372fd1c8ea2a30b4d9be8f87955a64d6be9c88a973996cef5ef6f0abf1", size = 322869, upload-time = "2025-08-14T21:21:18.282Z" },
- { url = "https://files.pythonhosted.org/packages/40/01/2e730bd1c25392fc32e3268e02446f0d77cb51a2c3a8486b1798e34d5805/protobuf-6.32.0-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:75a2aab2bd1aeb1f5dc7c5f33bcb11d82ea8c055c9becbb41c26a8c43fd7092c", size = 322009, upload-time = "2025-08-14T21:21:19.893Z" },
- { url = "https://files.pythonhosted.org/packages/9c/f2/80ffc4677aac1bc3519b26bc7f7f5de7fce0ee2f7e36e59e27d8beb32dd1/protobuf-6.32.0-py3-none-any.whl", hash = "sha256:ba377e5b67b908c8f3072a57b63e2c6a4cbd18aea4ed98d2584350dbf46f2783", size = 169287, upload-time = "2025-08-14T21:21:23.515Z" },
+ { url = "https://files.pythonhosted.org/packages/cd/24/3b7a0818484df9c28172857af32c2397b6d8fcd99d9468bd4684f98ebf0a/proto_plus-1.27.0-py3-none-any.whl", hash = "sha256:1baa7f81cf0f8acb8bc1f6d085008ba4171eaf669629d1b6d1673b21ed1c0a82", size = 50205, upload-time = "2025-12-16T13:46:24.76Z" },
+]
+
+[[package]]
+name = "protobuf"
+version = "5.29.5"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/43/29/d09e70352e4e88c9c7a198d5645d7277811448d76c23b00345670f7c8a38/protobuf-5.29.5.tar.gz", hash = "sha256:bc1463bafd4b0929216c35f437a8e28731a2b7fe3d98bb77a600efced5a15c84", size = 425226, upload-time = "2025-05-28T23:51:59.82Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/5f/11/6e40e9fc5bba02988a214c07cf324595789ca7820160bfd1f8be96e48539/protobuf-5.29.5-cp310-abi3-win32.whl", hash = "sha256:3f1c6468a2cfd102ff4703976138844f78ebd1fb45f49011afc5139e9e283079", size = 422963, upload-time = "2025-05-28T23:51:41.204Z" },
+ { url = "https://files.pythonhosted.org/packages/81/7f/73cefb093e1a2a7c3ffd839e6f9fcafb7a427d300c7f8aef9c64405d8ac6/protobuf-5.29.5-cp310-abi3-win_amd64.whl", hash = "sha256:3f76e3a3675b4a4d867b52e4a5f5b78a2ef9565549d4037e06cf7b0942b1d3fc", size = 434818, upload-time = "2025-05-28T23:51:44.297Z" },
+ { url = "https://files.pythonhosted.org/packages/dd/73/10e1661c21f139f2c6ad9b23040ff36fee624310dc28fba20d33fdae124c/protobuf-5.29.5-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e38c5add5a311f2a6eb0340716ef9b039c1dfa428b28f25a7838ac329204a671", size = 418091, upload-time = "2025-05-28T23:51:45.907Z" },
+ { url = "https://files.pythonhosted.org/packages/6c/04/98f6f8cf5b07ab1294c13f34b4e69b3722bb609c5b701d6c169828f9f8aa/protobuf-5.29.5-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:fa18533a299d7ab6c55a238bf8629311439995f2e7eca5caaff08663606e9015", size = 319824, upload-time = "2025-05-28T23:51:47.545Z" },
+ { url = "https://files.pythonhosted.org/packages/85/e4/07c80521879c2d15f321465ac24c70efe2381378c00bf5e56a0f4fbac8cd/protobuf-5.29.5-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:63848923da3325e1bf7e9003d680ce6e14b07e55d0473253a690c3a8b8fd6e61", size = 319942, upload-time = "2025-05-28T23:51:49.11Z" },
+ { url = "https://files.pythonhosted.org/packages/7e/cc/7e77861000a0691aeea8f4566e5d3aa716f2b1dece4a24439437e41d3d25/protobuf-5.29.5-py3-none-any.whl", hash = "sha256:6cf42630262c59b2d8de33954443d94b746c952b01434fc58a417fdbd2e84bd5", size = 172823, upload-time = "2025-05-28T23:51:58.157Z" },
]
[[package]]
@@ -2848,6 +3103,27 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/7b/03/f335d6c52b4a4761bcc83499789a1e2e16d9d201a58c327a9b5cc9a41bd9/pyarrow-22.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:0c34fe18094686194f204a3b1787a27456897d8a2d62caf84b61e8dfbc0252ae", size = 29185594, upload-time = "2025-10-24T10:09:53.111Z" },
]
+[[package]]
+name = "pyasn1"
+version = "0.6.2"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/fe/b6/6e630dff89739fcd427e3f72b3d905ce0acb85a45d4ec3e2678718a3487f/pyasn1-0.6.2.tar.gz", hash = "sha256:9b59a2b25ba7e4f8197db7686c09fb33e658b98339fadb826e9512629017833b", size = 146586, upload-time = "2026-01-16T18:04:18.534Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/44/b5/a96872e5184f354da9c84ae119971a0a4c221fe9b27a4d94bd43f2596727/pyasn1-0.6.2-py3-none-any.whl", hash = "sha256:1eb26d860996a18e9b6ed05e7aae0e9fc21619fcee6af91cca9bad4fbea224bf", size = 83371, upload-time = "2026-01-16T18:04:17.174Z" },
+]
+
+[[package]]
+name = "pyasn1-modules"
+version = "0.4.2"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyasn1" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892, upload-time = "2025-03-28T02:41:22.17Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" },
+]
+
[[package]]
name = "pycparser"
version = "2.22"
@@ -3334,6 +3610,19 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
]
+[[package]]
+name = "requests-oauthlib"
+version = "2.0.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "oauthlib" },
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" },
+]
+
[[package]]
name = "requests-toolbelt"
version = "1.0.0"
@@ -3467,6 +3756,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/ce/08/4349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:dc23e6820e3b40847e2f4a7726462ba0cf53089512abe9ee16318c366494c17a", size = 556523, upload-time = "2025-08-27T12:16:12.188Z" },
]
+[[package]]
+name = "rsa"
+version = "4.9.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "pyasn1" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/da/8a/22b7beea3ee0d44b1916c0c1cb0ee3af23b700b6da9f04991899d0c555d4/rsa-4.9.1.tar.gz", hash = "sha256:e7bdbfdb5497da4c07dfd35530e1a902659db6ff241e39d9953cad06ebd0ae75", size = 29034, upload-time = "2025-04-16T09:51:18.218Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/64/8d/0133e4eb4beed9e425d9a98ed6e081a55d195481b7632472be1af08d2f6b/rsa-4.9.1-py3-none-any.whl", hash = "sha256:68635866661c6836b8d39430f97a996acbd61bfa49406748ea243539fe239762", size = 34696, upload-time = "2025-04-16T09:51:17.142Z" },
+]
+
[[package]]
name = "safetensors"
version = "0.7.0"
@@ -3648,6 +3949,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/84/bd/0b9b3e19b9b8cda51463f8a749dc354eb9c87f42eddcbfdf742dceb3746b/shap-0.49.1-cp313-cp313-win_amd64.whl", hash = "sha256:6af779344c23b12a47063aab7fc135fefbdb5849233c1813f11dd8cf2fc73bea", size = 547806, upload-time = "2025-10-14T10:04:40.712Z" },
]
+[[package]]
+name = "shelved-cache"
+version = "0.3.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "cachetools" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/38/c0/4ec3d79c9167ab7cd28b4a2808fa05d58e47745a001108a77429fdaf3015/shelved_cache-0.3.1.tar.gz", hash = "sha256:0dc1b74fb158117643fc621bf8c12c1ac96e2637530dcfb11f7a242e023a5831", size = 7200, upload-time = "2023-02-24T17:02:22.806Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/09/b6/621bc73492accf30a584291c45a4ceb7524b371d5e2df64213e8430d56b6/shelved_cache-0.3.1-py3-none-any.whl", hash = "sha256:3597da599eae1b9df3237c401654e90377fab29f9873e671096550779733ec61", size = 7793, upload-time = "2023-02-24T17:02:21.671Z" },
+]
+
[[package]]
name = "six"
version = "1.17.0"
@@ -3779,11 +4092,15 @@ dependencies = [
{ name = "catboost" },
{ name = "datasets" },
{ name = "faiss-cpu" },
+ { name = "google-api-python-client" },
+ { name = "google-auth-oauthlib" },
+ { name = "google-generativeai" },
{ name = "gymnasium", extra = ["toy-text"] },
{ name = "imblearn" },
{ name = "ipykernel" },
{ name = "langchain" },
{ name = "langchain-community" },
+ { name = "langchain-core" },
{ name = "langchain-huggingface" },
{ name = "langchain-ollama" },
{ name = "langchain-text-splitters" },
@@ -3797,6 +4114,7 @@ dependencies = [
{ name = "plotly" },
{ name = "polars" },
{ name = "pypdf" },
+ { name = "requests" },
{ name = "scikit-learn" },
{ name = "scipy" },
{ name = "seaborn" },
@@ -3805,7 +4123,9 @@ dependencies = [
{ name = "statsmodels" },
{ name = "tensorflow" },
{ name = "tf-keras" },
+ { name = "todoist-python" },
{ name = "umap-learn" },
+ { name = "wbdata" },
{ name = "xgboost" },
{ name = "yfinance" },
]
@@ -3822,11 +4142,15 @@ requires-dist = [
{ name = "catboost", specifier = ">=1.2.8" },
{ name = "datasets", specifier = ">=4.4.2" },
{ name = "faiss-cpu", specifier = ">=1.13.2" },
+ { name = "google-api-python-client", specifier = ">=2.188.0" },
+ { name = "google-auth-oauthlib", specifier = ">=1.2.4" },
+ { name = "google-generativeai", specifier = ">=0.8.6" },
{ name = "gymnasium", extras = ["toy-text"], specifier = ">=1.2.3" },
{ name = "imblearn", specifier = ">=0.0" },
{ name = "ipykernel", specifier = ">=6.29.5" },
{ name = "langchain", specifier = ">=1.2.0" },
{ name = "langchain-community", specifier = ">=0.4.1" },
+ { name = "langchain-core", specifier = ">=1.2.6" },
{ name = "langchain-huggingface", specifier = ">=1.2.0" },
{ name = "langchain-ollama", specifier = ">=1.0.1" },
{ name = "langchain-text-splitters", specifier = ">=1.1.0" },
@@ -3840,6 +4164,7 @@ requires-dist = [
{ name = "plotly", specifier = ">=6.3.0" },
{ name = "polars", specifier = ">=1.37.0" },
{ name = "pypdf", specifier = ">=6.5.0" },
+ { name = "requests", specifier = ">=2.32.5" },
{ name = "scikit-learn", specifier = ">=1.6.1" },
{ name = "scipy", specifier = ">=1.15.2" },
{ name = "seaborn", specifier = ">=0.13.2" },
@@ -3848,7 +4173,9 @@ requires-dist = [
{ name = "statsmodels", specifier = ">=0.14.6" },
{ name = "tensorflow", specifier = ">=2.20.0" },
{ name = "tf-keras", specifier = ">=2.20.1" },
+ { name = "todoist-python", specifier = ">=8.1.4" },
{ name = "umap-learn", specifier = ">=0.5.11" },
+ { name = "wbdata", specifier = ">=1.1.0" },
{ name = "xgboost", specifier = ">=3.1.2" },
{ name = "yfinance", specifier = ">=0.2.66" },
]
@@ -3871,6 +4198,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" },
]
+[[package]]
+name = "tabulate"
+version = "0.9.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090, upload-time = "2022-10-06T17:21:48.54Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252, upload-time = "2022-10-06T17:21:44.262Z" },
+]
+
[[package]]
name = "tenacity"
version = "9.1.2"
@@ -3982,6 +4318,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" },
]
+[[package]]
+name = "todoist-python"
+version = "8.1.4"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "requests" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/ed/f1/d2e361e5dac20fe33ecde22d1d738ff4632564487e753a9a429cb70d6aa6/todoist-python-8.1.4.tar.gz", hash = "sha256:46483a7922e241ef0365a56ed8312794a2def112e44702a6a70f936988fe969d", size = 28883, upload-time = "2023-03-31T14:57:50.352Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/db/5c/79991ae3a2615d2c9d0be725104bac001eb9023b885855a2a930d34bb976/todoist_python-8.1.4-py2.py3-none-any.whl", hash = "sha256:ad2e06934de62466c3540c8b94b5b86d82dbd9df65de02d7f4b4987b91b21f3f", size = 26476, upload-time = "2023-03-31T14:57:48.456Z" },
+]
+
[[package]]
name = "tokenizers"
version = "0.22.2"
@@ -4189,6 +4537,18 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" },
]
+[[package]]
+name = "tzlocal"
+version = "5.3.1"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "tzdata", marker = "sys_platform == 'win32'" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/8b/2e/c14812d3d4d9cd1773c6be938f89e5735a1f11a9f184ac3639b93cef35d5/tzlocal-5.3.1.tar.gz", hash = "sha256:cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd", size = 30761, upload-time = "2025-03-05T21:17:41.549Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/c2/14/e2a54fabd4f08cd7af1c07030603c3356b74da07f7cc056e600436edfa17/tzlocal-5.3.1-py3-none-any.whl", hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d", size = 18026, upload-time = "2025-03-05T21:17:39.857Z" },
+]
+
[[package]]
name = "umap-learn"
version = "0.5.11"
@@ -4206,6 +4566,15 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/43/d2/fcf7192dd1cd8c090b6cfd53fa223c4fb2887a17c47e06bc356d44f40dfb/umap_learn-0.5.11-py3-none-any.whl", hash = "sha256:cb17adbde9d544ba79481b3ab4d81ac222e940f3d9219307bea6044f869af3cc", size = 90890, upload-time = "2026-01-12T20:44:46.511Z" },
]
+[[package]]
+name = "uritemplate"
+version = "4.2.0"
+source = { registry = "https://pypi.org/simple" }
+sdist = { url = "https://files.pythonhosted.org/packages/98/60/f174043244c5306c9988380d2cb10009f91563fc4b31293d27e17201af56/uritemplate-4.2.0.tar.gz", hash = "sha256:480c2ed180878955863323eea31b0ede668795de182617fef9c6ca09e6ec9d0e", size = 33267, upload-time = "2025-06-02T15:12:06.318Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/a9/99/3ae339466c9183ea5b8ae87b34c0b897eda475d2aec2307cae60e5cd4f29/uritemplate-4.2.0-py3-none-any.whl", hash = "sha256:962201ba1c4edcab02e60f9a0d3821e82dfc5d2d6662a21abd533879bdb8a686", size = 11488, upload-time = "2025-06-02T15:12:03.405Z" },
+]
+
[[package]]
name = "urllib3"
version = "2.5.0"
@@ -4269,6 +4638,25 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/ee/da/072c624ece2bcb85bed7590a175bf1029b97659cdb7d0c92e1fc66c507dc/uv-0.6.16-py3-none-win_arm64.whl", hash = "sha256:011f1779536f24d2c46bdc6fe917add943e00a5a45d9ac46be8a281f4ed1c6b7", size = 16784908, upload-time = "2025-04-22T04:17:36.154Z" },
]
+[[package]]
+name = "wbdata"
+version = "1.1.0"
+source = { registry = "https://pypi.org/simple" }
+dependencies = [
+ { name = "appdirs" },
+ { name = "backoff" },
+ { name = "cachetools" },
+ { name = "dateparser" },
+ { name = "decorator" },
+ { name = "requests" },
+ { name = "shelved-cache" },
+ { name = "tabulate" },
+]
+sdist = { url = "https://files.pythonhosted.org/packages/9d/c5/30989742d8a4ce4582a113cef02802403ed01fd4190a1e3ceea4fde32ad4/wbdata-1.1.0.tar.gz", hash = "sha256:bd9bf63c2454fb12c279b730d7ca5b8be970dc662375e8c23d9a5f8e2f395abe", size = 104154, upload-time = "2025-10-05T20:46:17.883Z" }
+wheels = [
+ { url = "https://files.pythonhosted.org/packages/76/96/8538b80d6425e53ed68553688ca1a615e0b1f789015f55c370b337aaada5/wbdata-1.1.0-py3-none-any.whl", hash = "sha256:84e770be4560d1a5e6a22e7c4b5c8f5ab653e4d330d5729c2460004876d125c7", size = 18469, upload-time = "2025-10-05T20:46:16.576Z" },
+]
+
[[package]]
name = "wcwidth"
version = "0.2.13"