commit 1f6bc07c51315d8f87fec5ba5f31aaf7a1625483 Author: Pietro Berkes Date: Tue Aug 27 15:27:53 2024 +0300 ASPP 2024 material diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..632526b Binary files /dev/null and b/.DS_Store differ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..4b780a7 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,6 @@ +The material in this repository is released under the +CC Attribution-Share Alike 4.0 International +license. + +Full license text available at +https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..9cd4fc8 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# data_class +Data structures, numpy arrays, tidy data, and more diff --git a/data_complete.pdf b/data_complete.pdf new file mode 100644 index 0000000..b88790f Binary files /dev/null and b/data_complete.pdf differ diff --git a/exercises/.DS_Store b/exercises/.DS_Store new file mode 100644 index 0000000..c462407 Binary files /dev/null and b/exercises/.DS_Store differ diff --git a/exercises/.ipynb_checkpoints/match_tarots-checkpoint.ipynb b/exercises/.ipynb_checkpoints/match_tarots-checkpoint.ipynb new file mode 100644 index 0000000..0abf2d4 --- /dev/null +++ b/exercises/.ipynb_checkpoints/match_tarots-checkpoint.ipynb @@ -0,0 +1,168 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "373ed1db", + "metadata": {}, + "source": [ + "Exercise: given 2 decks of tarod cards, `deck1` and `deck2`, find all the matching pairs. The output should be a set of tuples `(idx1, idx2)` for every matching pair in `deck1`, `deck2`.\n", + "\n", + "For examples:\n", + "```\n", + "deck1 = ['C', 'B', 'A']\n", + "deck2 = ['A', 'C', 'B']\n", + "```\n", + "\n", + "should return (in no particular order):\n", + "\n", + "```\n", + "{(0, 1), (1, 2), (2, 0)}\n", + "```\n", + "\n", + "Compute the Big-O complexity of your algorithm.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "cf05b9c4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Deck 1: ['The Fool', 'Death', 'The Lovers', 'Judgement', 'Temperance', 'The Sun', 'The Hermit', 'The Chariot', 'The Tower', 'Wheel of Fortune', 'The Devil', 'The Emperor', 'The Empress', 'The World', 'The Hierophant', 'The High Priestess', 'The Star', 'The Hanged Man', 'Strength', 'Justice', 'The Moon', 'The Magician']\n", + "Deck 2: ['The Hermit', 'The Sun', 'The Tower', 'The Empress', 'The Star', 'The Emperor', 'The Magician', 'The Chariot', 'The Devil', 'The Moon', 'Judgement', 'Death', 'The Fool', 'Strength', 'Temperance', 'The Hierophant', 'The Lovers', 'Justice', 'Wheel of Fortune', 'The High Priestess', 'The Hanged Man', 'The World']\n" + ] + } + ], + "source": [ + "import random\n", + "\n", + "# List of tarot card names (Major Arcana)\n", + "tarot_cards = [\n", + " \"The Fool\", \"The Magician\", \"The High Priestess\", \"The Empress\", \"The Emperor\",\n", + " \"The Hierophant\", \"The Lovers\", \"The Chariot\", \"Strength\", \"The Hermit\",\n", + " \"Wheel of Fortune\", \"Justice\", \"The Hanged Man\", \"Death\", \"Temperance\",\n", + " \"The Devil\", \"The Tower\", \"The Star\", \"The Moon\", \"The Sun\", \"Judgement\",\n", + " \"The World\"\n", + "]\n", + "\n", + "# Copy the list to create two separate decks\n", + "deck1 = tarot_cards.copy()\n", + "deck2 = tarot_cards.copy()\n", + "\n", + "# Shuffle both decks\n", + "random.shuffle(deck1)\n", + "random.shuffle(deck2)\n", + "\n", + "# Print the shuffled decks\n", + "print(\"Deck 1:\", deck1)\n", + "print(\"Deck 2:\", deck2)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "7685740c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[0, 12],\n", + " [1, 11],\n", + " [2, 16],\n", + " [3, 10],\n", + " [4, 14],\n", + " [5, 1],\n", + " [6, 0],\n", + " [7, 7],\n", + " [8, 2],\n", + " [9, 18],\n", + " [10, 8],\n", + " [11, 5],\n", + " [12, 3],\n", + " [13, 21],\n", + " [14, 15],\n", + " [15, 19],\n", + " [16, 4],\n", + " [17, 20],\n", + " [18, 13],\n", + " [19, 17],\n", + " [20, 9],\n", + " [21, 6]]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "card_to_matches = {}\n", + "for card in deck1: # O(N)\n", + " card_to_matches[card] = [None, None] # O(1)\n", + "\n", + "for idx1, card in enumerate(deck1): # O(N)\n", + " card_to_matches[card][0] = idx1 # O(1)\n", + " \n", + "for idx2, card in enumerate(deck2): # O(N)\n", + " card_to_matches[card][1] = idx2 # O(1)\n", + " \n", + "list(card_to_matches.values()) # O(N)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "2b33252c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'The World'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "card" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "509dda71", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/.ipynb_checkpoints/slow_when_slicing_wrongly-checkpoint.ipynb b/exercises/.ipynb_checkpoints/slow_when_slicing_wrongly-checkpoint.ipynb new file mode 100644 index 0000000..50fde42 --- /dev/null +++ b/exercises/.ipynb_checkpoints/slow_when_slicing_wrongly-checkpoint.ipynb @@ -0,0 +1,152 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "af52b0cd", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "198afa0e", + "metadata": {}, + "outputs": [], + "source": [ + "def get_slice_and_perform_something(x, axis):\n", + " idx = 75\n", + " if axis == 0:\n", + " slice_ = x[idx, :]\n", + " else:\n", + " slice_ = x[:, idx]\n", + " # Here I divide by two but any other operation will do, \n", + " # we just want to simulate the fact that we actually need to read the memory\n", + " return slice_ // 2" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "15900a3c", + "metadata": {}, + "outputs": [], + "source": [ + "page_size = 4096\n", + "n = 100\n", + "x = np.empty((page_size * n, page_size * n), dtype='int8')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "c182d3d3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(409600, 409600)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "86a3e63f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "28.2 µs ± 1.22 µs per loop (mean ± std. dev. of 7 runs, 10,000 loops each)\n" + ] + } + ], + "source": [ + "%timeit get_slice_and_perform_something(x, axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "8b2a96c2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The slowest run took 5.29 times longer than the fastest. This could mean that an intermediate result is being cached.\n", + "886 ms ± 337 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "%timeit get_slice_and_perform_something(x, axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "a8f67b13", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "32218.18181818182" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "886000 / 27.5" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "17a65d38", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/.ipynb_checkpoints/view_or_copy-checkpoint.ipynb b/exercises/.ipynb_checkpoints/view_or_copy-checkpoint.ipynb new file mode 100644 index 0000000..9c8cbd0 --- /dev/null +++ b/exercises/.ipynb_checkpoints/view_or_copy-checkpoint.ipynb @@ -0,0 +1,462 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 107, + "id": "4ccf18f3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "\n", + "def is_view(a):\n", + " return a.base is not None\n", + "\n", + "\n", + "def print_info(a):\n", + " txt = f\"\"\"\n", + "Is it a view? {is_view(a)}\n", + "\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + " print(a)\n", + " print(txt)\n", + "\n", + "\n", + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "b68308e8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 4)\n", + "strides\t(64, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x[::2, :]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "id": "85feedb0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4 5 6 7]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(4,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[1, :]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "id": "dbbb9a7f", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4 5 6 7]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(4,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[1]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "id": "fc63ad8c", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 4 11]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(2,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[[1, 2], [0, 3]]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "id": "aa8effeb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "# Get the first and third row\n", + "y = x[[0, 2], :]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "4474f8cf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 2 3 4 5]\n", + " [ 6 7 8 9]\n", + " [10 11 12 13]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x + 2\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "id": "4957469c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[5 9 2]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(3,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[[1, 2, 0], [1, 1, 2]]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "id": "d1649515", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1]\n", + " [ 2 3]\n", + " [ 4 5]\n", + " [ 6 7]\n", + " [ 8 9]\n", + " [10 11]]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(6, 2)\n", + "strides\t(16, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x.reshape((6, 2))\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "id": "c5caeb74", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 4]\n", + " [ 8 1]\n", + " [ 5 9]\n", + " [ 2 6]\n", + " [10 3]\n", + " [ 7 11]]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(6, 2)\n", + "strides\t(16, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x.T.reshape((6, 2))\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "id": "15b0d7ad", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 1 2 3 4 5 6 7 8 9 10 11]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(12,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x.ravel()\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "id": "38cc1ef3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 4 8 1 5 9 2 6 10 3 7 11]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(12,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x.T.ravel()\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "id": "b7d0cc63", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 2 4 6 8 10]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(6,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[(x % 2) == 0]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "id": "866e842a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = np.sort(x, axis=1)\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a074c89b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "320cfb50", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/anagrams/.ipynb_checkpoints/anagrams-checkpoint.ipynb b/exercises/anagrams/.ipynb_checkpoints/anagrams-checkpoint.ipynb new file mode 100644 index 0000000..2e6968d --- /dev/null +++ b/exercises/anagrams/.ipynb_checkpoints/anagrams-checkpoint.ipynb @@ -0,0 +1,210 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "245d99ab", + "metadata": {}, + "source": [ + "# Exercise: Find the anagrams for all words in a list" + ] + }, + { + "cell_type": "markdown", + "id": "d1e46c4a", + "metadata": {}, + "source": [ + "* You are given an English dictionary containing M words (“the dictionary”), and a separate list of N words (“the input”, saved in the file `words_to_search.txt`)\n", + "* For each word in the input, find all the anagrams in the dictionary (e.g., for input 'acme' the anagrams are `['acme', 'came', 'mace']`)\n", + "\n", + "How to proceed?\n", + "1. Write an algorithm to find all anagrams for one input word first\n", + "2. What is the Big-O class of this algorithm when executed the full N-words input?\n", + "3. Is there a way to pre-process the dictionary to improve the Big-O performance?" + ] + }, + { + "cell_type": "markdown", + "id": "b9b9cecd", + "metadata": {}, + "source": [ + "# 1. Load the system dictionary and the input words" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "24070a26", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the system dictionary\n", + "with open('/usr/share/dict/words', 'r') as f:\n", + " dict_words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4002fcdd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['A',\n", + " 'a',\n", + " 'aa',\n", + " 'aal',\n", + " 'aalii',\n", + " '...',\n", + " 'zythem',\n", + " 'Zythia',\n", + " 'zythum',\n", + " 'Zyzomys',\n", + " 'Zyzzogeton']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the dictionary\n", + "dict_words[:5] + ['...'] + dict_words[-5:]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "823537ef", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the input words\n", + "with open('words_to_search.txt', 'r') as f:\n", + " words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "4ccec6a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['acer',\n", + " 'acers',\n", + " 'aces',\n", + " 'aches',\n", + " 'acme',\n", + " '...',\n", + " 'yap',\n", + " 'yaw',\n", + " 'yea',\n", + " 'zendo',\n", + " 'zoned']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the input list\n", + "words[:5] + ['...'] + words[-5:]" + ] + }, + { + "cell_type": "markdown", + "id": "14d91685", + "metadata": {}, + "source": [ + "# 2. Look for the anagrams of one input word, e.g. \"organ\"\n", + "\n", + "* There are several anagrams, including \"groan\" and \"argon\".\n", + "\n", + "* What is the Big-O performance oh your algorithm? In terms of M, the number of words in the dictionary, and K, the number of letters in a word" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "badf44c1", + "metadata": {}, + "outputs": [], + "source": [ + "word = 'organ'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef938d95", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "7cd1196c", + "metadata": {}, + "source": [ + "The performance of this implementation is ... ." + ] + }, + { + "cell_type": "markdown", + "id": "115c3219", + "metadata": {}, + "source": [ + "# 3. Look for the anagrams of the words in the input list\n", + "\n", + "* How does the Big-O performance of your one-word implementation scale to an input list of M words?\n", + "* Is there a way to pre-process the dictionary words in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "03ce3e28", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a2fc5ec4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/anagrams/.ipynb_checkpoints/anagrams_solution-checkpoint.ipynb b/exercises/anagrams/.ipynb_checkpoints/anagrams_solution-checkpoint.ipynb new file mode 100644 index 0000000..57a9da9 --- /dev/null +++ b/exercises/anagrams/.ipynb_checkpoints/anagrams_solution-checkpoint.ipynb @@ -0,0 +1,1451 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "245d99ab", + "metadata": {}, + "source": [ + "# Exercise: Find the anagrams for all words in a list" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "id": "d1e46c4a", + "metadata": {}, + "source": [ + "* You are given an English dictionary containing M words (“the dictionary”), and a separate list of N words (“the input”, saved in the file `words_to_search.txt`)\n", + "* For each word in the input, find all the anagrams in the dictionary (e.g., for input 'acme' the anagrams are `['acme', 'came', 'mace']`)\n", + "\n", + "How to proceed?\n", + "1. Write an algorithm to find all anagrams for one input word first\n", + "2. What is the Big-O class of this algorithm when executed the full N-words input?\n", + "3. Is there a way to pre-process the dictionary to improve the Big-O performance?" + ] + }, + { + "cell_type": "markdown", + "id": "b9b9cecd", + "metadata": {}, + "source": [ + "# 1. Load the system dictionary and the input words" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "24070a26", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the system dictionary\n", + "with open('/usr/share/dict/words', 'r') as f:\n", + " dict_words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4002fcdd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['A',\n", + " 'a',\n", + " 'aa',\n", + " 'aal',\n", + " 'aalii',\n", + " '...',\n", + " 'zythem',\n", + " 'Zythia',\n", + " 'zythum',\n", + " 'Zyzomys',\n", + " 'Zyzzogeton']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the dictionary\n", + "dict_words[:5] + ['...'] + dict_words[-5:]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "823537ef", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the input words\n", + "with open('words_to_search.txt', 'r') as f:\n", + " words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "4ccec6a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['acer',\n", + " 'acers',\n", + " 'aces',\n", + " 'aches',\n", + " 'acme',\n", + " '...',\n", + " 'yap',\n", + " 'yaw',\n", + " 'yea',\n", + " 'zendo',\n", + " 'zoned']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the input list\n", + "words[:5] + ['...'] + words[-5:]" + ] + }, + { + "cell_type": "markdown", + "id": "14d91685", + "metadata": {}, + "source": [ + "# 2. Look for the anagrams of one input word, e.g. \"organ\"\n", + "\n", + "* There are several anagrams, including \"groan\" and \"argon\".\n", + "\n", + "* What is the Big-O performance oh your algorithm? In terms of M, the number of words in the dictionary, and K, the number of letters in a word" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "badf44c1", + "metadata": {}, + "outputs": [], + "source": [ + "word = 'organ'" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "551e6b54", + "metadata": {}, + "outputs": [], + "source": [ + "anagrams = []\n", + "for dict_word in dict_words: # O(M)\n", + " if sorted(word) == sorted(dict_word): # 2 * O(K log K) ~ O(K log K)\n", + " anagrams.append(dict_word) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "84294a2f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['angor',\n", + " 'argon',\n", + " 'goran',\n", + " 'grano',\n", + " 'groan',\n", + " 'nagor',\n", + " 'orang',\n", + " 'organ',\n", + " 'rogan']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "anagrams" + ] + }, + { + "cell_type": "markdown", + "id": "7cd1196c", + "metadata": {}, + "source": [ + "The performance of this implementation is O(M * K log K).\n", + "\n", + "Note that instead of sorting , we could use a dictionary mapping letters to letter counts. This would make the performance even better, O(M * K)! However, in practice it would make little difference and would make the code more complicated, so we'll leave it like this." + ] + }, + { + "cell_type": "markdown", + "id": "115c3219", + "metadata": {}, + "source": [ + "# 3. Look for the anagrams of the words in the input list\n", + "\n", + "* How does the Big-O performance of your one-word implementation scale to an input list of M words?\n", + "* Is there a way to pre-process the dictionary words in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e00054ff", + "metadata": {}, + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[18], line 12\u001b[0m\n\u001b[1;32m 10\u001b[0m words_anagrams \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m word \u001b[38;5;129;01min\u001b[39;00m words: \u001b[38;5;66;03m# O(M)\u001b[39;00m\n\u001b[0;32m---> 12\u001b[0m anagrams \u001b[38;5;241m=\u001b[39m find_anagrams(word, dict_words)\n\u001b[1;32m 13\u001b[0m words_anagrams\u001b[38;5;241m.\u001b[39mappend((word, anagrams))\n", + "Cell \u001b[0;32mIn[18], line 6\u001b[0m, in \u001b[0;36mfind_anagrams\u001b[0;34m(word, dict_words)\u001b[0m\n\u001b[1;32m 4\u001b[0m anagrams \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m dict_word \u001b[38;5;129;01min\u001b[39;00m dict_words: \u001b[38;5;66;03m# O(N)\u001b[39;00m\n\u001b[0;32m----> 6\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28msorted\u001b[39m(word) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28msorted\u001b[39m(dict_word): \u001b[38;5;66;03m# O(K log K)\u001b[39;00m\n\u001b[1;32m 7\u001b[0m anagrams\u001b[38;5;241m.\u001b[39mappend(dict_word) \u001b[38;5;66;03m# O(1)\u001b[39;00m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m anagrams\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "# Naive implementation, it takes a long time\n", + "\n", + "def find_anagrams(word, dict_words):\n", + " anagrams = []\n", + " for dict_word in dict_words: # O(N)\n", + " if sorted(word) == sorted(dict_word): # O(K log K)\n", + " anagrams.append(dict_word) # O(1)\n", + " return anagrams\n", + "\n", + "words_anagrams = []\n", + "for word in words: # O(M)\n", + " anagrams = find_anagrams(word, dict_words)\n", + " words_anagrams.append((word, anagrams)) # O(1)" + ] + }, + { + "cell_type": "markdown", + "id": "297fdc78", + "metadata": {}, + "source": [ + "The complexity of this algorithm is O(M * N * KlogK), where M is the length of the list of words to search, N is the length of words in the dictionary, and K is the length of words." + ] + }, + { + "cell_type": "markdown", + "id": "48947a28", + "metadata": {}, + "source": [ + "# What if we pre-process the dictionary in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "3ad5dccd", + "metadata": {}, + "outputs": [], + "source": [ + "anagrams_map = {}\n", + "for dict_word in dict_words: # O(N)\n", + " letters = tuple(sorted(dict_word)) # O(K log K)\n", + " if letters not in anagrams_map: # O(1)\n", + " anagrams_map[letters] = [] # O(1)\n", + " anagrams_map[letters].append(dict_word) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "786fec1b", + "metadata": {}, + "outputs": [], + "source": [ + "words_anagrams = []\n", + "final_words = []\n", + "for word in words: # O(M)\n", + " letters = tuple(sorted(word)) # O(K log K)\n", + " if letters not in anagrams_map: # O(1)\n", + " print('This word is not in the system dictionary -- skipping', word)\n", + " continue\n", + " else:\n", + " final_words.append(word)\n", + " words_anagrams.append((word, anagrams_map[letters])) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "dda842a1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('acer', ['acre', 'care', 'crea', 'race']),\n", + " ('acers', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('aces', ['case', 'esca']),\n", + " ('aches', ['chase']),\n", + " ('acme', ['acme', 'came', 'mace']),\n", + " ('acned', ['dance', 'decan']),\n", + " ('acre', ['acre', 'care', 'crea', 'race']),\n", + " ('acres', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('act', ['act', 'cat']),\n", + " ('acts', ['cast', 'scat']),\n", + " ('acyl', ['acyl', 'clay', 'lacy']),\n", + " ('add', ['add', 'dad']),\n", + " ('adverb', ['adverb']),\n", + " ('aesc', ['case', 'esca']),\n", + " ('aether', ['heater', 'hereat', 'reheat']),\n", + " ('aethers', ['thereas']),\n", + " ('afield', ['afield', 'defial']),\n", + " ('aft', ['aft', 'fat']),\n", + " ('agree', ['agree', 'eager', 'eagre']),\n", + " ('agrees', ['grease']),\n", + " ('ags', ['gas', 'sag']),\n", + " ('ah', ['ah', 'ha']),\n", + " ('ahs', ['ash', 'sah', 'sha']),\n", + " ('aide', ['aide', 'idea']),\n", + " ('aides', ['aside']),\n", + " ('airings', ['raising']),\n", + " ('airmen', ['marine', 'remain']),\n", + " ('alloy', ['alloy', 'loyal']),\n", + " ('almes', ['amsel', 'mesal', 'samel']),\n", + " ('alp', ['alp', 'lap', 'pal']),\n", + " ('alps', ['salp', 'slap']),\n", + " ('altern', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('altrices', ['altrices', 'selictar']),\n", + " ('alts', ['last', 'salt', 'slat']),\n", + " ('am', ['am', 'ma']),\n", + " ('amen', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('amp', ['amp', 'map', 'pam']),\n", + " ('amps', ['samp', 'spam']),\n", + " ('anglist', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('anils', ['sinal', 'slain', 'snail']),\n", + " ('ant', ['ant', 'nat', 'tan']),\n", + " ('antis', ['saint', 'satin', 'stain']),\n", + " ('antler', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('antlers', ['saltern', 'starnel', 'sternal']),\n", + " ('any', ['any', 'nay', 'yan']),\n", + " ('ape', ['ape', 'pea']),\n", + " ('aper', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('apt', ['apt', 'pat', 'tap']),\n", + " ('arb', ['bar', 'bra', 'rab']),\n", + " ('arc', ['arc', 'car']),\n", + " ('arcs', ['scar']),\n", + " ('are', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('ared', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('ares', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('argle', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('aril', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('arising', ['raising']),\n", + " ('arm', ['arm', 'mar', 'ram']),\n", + " ('armpit', ['armpit', 'impart']),\n", + " ('arms', ['arms']),\n", + " ('arse', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('art', ['art', 'rat', 'tar', 'tra']),\n", + " ('article', ['article', 'recital']),\n", + " ('articles', ['altrices', 'selictar']),\n", + " ('arts', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('arty', ['arty', 'atry', 'tray']),\n", + " ('ash', ['ash', 'sah', 'sha']),\n", + " ('aside', ['aside']),\n", + " ('aspired', ['despair', 'pardesi']),\n", + " ('asps', ['pass']),\n", + " ('ate', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('ates', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('atoners', ['noreast', 'rosetan', 'seatron', 'senator', 'treason']),\n", + " ('attic', ['attic', 'tacit']),\n", + " ('aves', ['save', 'vase']),\n", + " ('aye', ['aye', 'yea']),\n", + " ('backward', ['backward', 'drawback']),\n", + " ('bad', ['bad', 'dab']),\n", + " ('bag', ['bag', 'gab']),\n", + " ('bake', ['bake', 'beak']),\n", + " ('baker', ['baker', 'brake', 'break']),\n", + " ('balm', ['balm', 'lamb']),\n", + " ('bar', ['bar', 'bra', 'rab']),\n", + " ('bare', ['bare', 'bear', 'brae']),\n", + " ('bast', ['bast', 'bats', 'stab']),\n", + " ('bat', ['bat', 'tab']),\n", + " ('batlet', ['battel', 'battle', 'tablet']),\n", + " ('bats', ['bast', 'bats', 'stab']),\n", + " ('battel', ['battel', 'battle', 'tablet']),\n", + " ('battle', ['battel', 'battle', 'tablet']),\n", + " ('beak', ['bake', 'beak']),\n", + " ('bear', ['bare', 'bear', 'brae']),\n", + " ('begin', ['begin', 'being', 'binge']),\n", + " ('being', ['begin', 'being', 'binge']),\n", + " ('below', ['below', 'bowel', 'elbow']),\n", + " ('best', ['best']),\n", + " ('bets', ['best']),\n", + " ('binge', ['begin', 'being', 'binge']),\n", + " ('blam', ['balm', 'lamb']),\n", + " ('blot', ['blot', 'bolt']),\n", + " ('blow', ['blow', 'bowl']),\n", + " ('bludier', ['builder', 'rebuild']),\n", + " ('bluest', ['bustle', 'sublet', 'subtle']),\n", + " ('bluets', ['bustle', 'sublet', 'subtle']),\n", + " ('bolt', ['blot', 'bolt']),\n", + " ('bombed', ['bombed']),\n", + " ('borde', ['boder', 'orbed']),\n", + " ('bored', ['boder', 'orbed']),\n", + " ('bores', ['boser', 'brose', 'sober']),\n", + " ('boss', ['boss']),\n", + " ('bourne', ['unrobe']),\n", + " ('bowel', ['below', 'bowel', 'elbow']),\n", + " ('bowl', ['blow', 'bowl']),\n", + " ('bra', ['bar', 'bra', 'rab']),\n", + " ('brae', ['bare', 'bear', 'brae']),\n", + " ('brag', ['brag', 'garb', 'grab']),\n", + " ('brake', ['baker', 'brake', 'break']),\n", + " ('braved', ['adverb']),\n", + " ('break', ['baker', 'brake', 'break']),\n", + " ('brief', ['bifer', 'brief', 'fiber']),\n", + " ('brose', ['boser', 'brose', 'sober']),\n", + " ('brush', ['brush', 'shrub']),\n", + " ('buhrs', ['brush', 'shrub']),\n", + " ('builder', ['builder', 'rebuild']),\n", + " ('burden', ['bunder', 'burden', 'burned', 'unbred']),\n", + " ('burned', ['bunder', 'burden', 'burned', 'unbred']),\n", + " ('bury', ['bury', 'ruby']),\n", + " ('bush', ['bush']),\n", + " ('bust', ['bust', 'stub']),\n", + " ('bustle', ['bustle', 'sublet', 'subtle']),\n", + " ('but', ['but', 'tub']),\n", + " ('butles', ['bustle', 'sublet', 'subtle']),\n", + " ('buts', ['bust', 'stub']),\n", + " ('cab', ['bac', 'cab']),\n", + " ('cabs', ['scab']),\n", + " ('cadres', ['sacred']),\n", + " ('cafe', ['face']),\n", + " ('caller', ['caller', 'cellar', 'recall']),\n", + " ('calm', ['calm', 'clam']),\n", + " ('calo', ['alco', 'coal', 'cola', 'loca']),\n", + " ('came', ['acme', 'came', 'mace']),\n", + " ('caned', ['dance', 'decan']),\n", + " ('canoe', ['acone', 'canoe', 'ocean']),\n", + " ('cans', ['scan']),\n", + " ('cape', ['cape', 'cepa', 'pace']),\n", + " ('car', ['arc', 'car']),\n", + " ('care', ['acre', 'care', 'crea', 'race']),\n", + " ('cares', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('caret',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('carol', ['calor', 'carol', 'claro', 'coral']),\n", + " ('carp', ['carp', 'crap']),\n", + " ('cars', ['scar']),\n", + " ('carse', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('carte',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('case', ['case', 'esca']),\n", + " ('cask', ['cask', 'sack']),\n", + " ('cast', ['cast', 'scat']),\n", + " ('cat', ['act', 'cat']),\n", + " ('cater',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('cats', ['cast', 'scat']),\n", + " ('cause', ['cause', 'sauce']),\n", + " ('causes', ['causse']),\n", + " ('ceas', ['case', 'esca']),\n", + " ('cedars', ['sacred']),\n", + " ('cedi', ['dice', 'iced']),\n", + " ('cellar', ['caller', 'cellar', 'recall']),\n", + " ('cents', ['scent']),\n", + " ('cereus', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('ceruse', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('cesure', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('charm', ['charm', 'march']),\n", + " ('charmer', ['charmer', 'marcher', 'remarch']),\n", + " ('charming', ['charming']),\n", + " ('chase', ['chase']),\n", + " ('cheating', ['cheating', 'teaching']),\n", + " ('chetnik', ['kitchen', 'thicken']),\n", + " ('chin', ['chin', 'inch']),\n", + " ('chit', ['chit', 'itch']),\n", + " ('chum', ['chum', 'much']),\n", + " ('cion', ['cion', 'coin', 'icon']),\n", + " ('citrus', ['citrus', 'rictus', 'rustic']),\n", + " ('clam', ['calm', 'clam']),\n", + " ('claro', ['calor', 'carol', 'claro', 'coral']),\n", + " ('clay', ['acyl', 'clay', 'lacy']),\n", + " ('cloud', ['cloud', 'could']),\n", + " ('coal', ['alco', 'coal', 'cola', 'loca']),\n", + " ('cocaine', ['cocaine', 'oceanic']),\n", + " ('cod', ['cod', 'doc']),\n", + " ('coin', ['cion', 'coin', 'icon']),\n", + " ('cola', ['alco', 'coal', 'cola', 'loca']),\n", + " ('comics', ['cosmic']),\n", + " ('cone', ['cone', 'once']),\n", + " ('coni', ['cion', 'coin', 'icon']),\n", + " ('cool', ['cool', 'loco']),\n", + " ('coral', ['calor', 'carol', 'claro', 'coral']),\n", + " ('cork', ['cork', 'rock']),\n", + " ('corset', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('corvet', ['covert', 'vector']),\n", + " ('cosmic', ['cosmic']),\n", + " ('coster', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('could', ['cloud', 'could']),\n", + " ('covert', ['covert', 'vector']),\n", + " ('crap', ['carp', 'crap']),\n", + " ('crate',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('crews', ['screw']),\n", + " ('dab', ['bad', 'dab']),\n", + " ('dad', ['add', 'dad']),\n", + " ('dah', ['dah', 'dha', 'had']),\n", + " ('dairy', ['dairy', 'diary', 'yaird']),\n", + " ('dale', ['dale', 'deal', 'lade', 'lead']),\n", + " ('dalets', ['desalt', 'salted']),\n", + " ('dali', ['dali', 'dial', 'laid']),\n", + " ('dam', ['dam', 'mad']),\n", + " ('dance', ['dance', 'decan']),\n", + " ('dare', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('dashed', ['dashed', 'shaded']),\n", + " ('dawn', ['dawn', 'wand']),\n", + " ('deaf', ['deaf', 'fade']),\n", + " ('deal', ['dale', 'deal', 'lade', 'lead']),\n", + " ('dealer', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('dear', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('dearer', ['reader', 'redare', 'reread']),\n", + " ('death', ['death']),\n", + " ('deaws', ['sawed']),\n", + " ('declines', ['licensed', 'silenced']),\n", + " ('decree', ['decree', 'recede']),\n", + " ('deens', ['dense', 'needs']),\n", + " ('defer', ['defer', 'freed']),\n", + " ('deil', ['idle', 'lied']),\n", + " ('delayer', ['delayer', 'layered', 'redelay']),\n", + " ('deli', ['idle', 'lied']),\n", + " ('deltas', ['desalt', 'salted']),\n", + " ('denes', ['dense', 'needs']),\n", + " ('dense', ['dense', 'needs']),\n", + " ('denser', ['resend', 'sender']),\n", + " ('desalt', ['desalt', 'salted']),\n", + " ('deserver', ['deserver', 'reserved', 'reversed']),\n", + " ('despair', ['despair', 'pardesi']),\n", + " ('devote', ['devote']),\n", + " ('dew', ['dew', 'wed']),\n", + " ('dial', ['dali', 'dial', 'laid']),\n", + " ('diaper', ['diaper', 'paired']),\n", + " ('diapers', ['despair', 'pardesi']),\n", + " ('diary', ['dairy', 'diary', 'yaird']),\n", + " ('dice', ['dice', 'iced']),\n", + " ('diel', ['idle', 'lied']),\n", + " ('diet', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('dikes', ['skied']),\n", + " ('dimple', ['dimple']),\n", + " ('direr', ['drier', 'rider']),\n", + " ('disease', ['disease', 'seaside']),\n", + " ('disk', ['disk', 'skid']),\n", + " ('dite', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('doc', ['cod', 'doc']),\n", + " ('doen', ['done', 'node']),\n", + " ('dog', ['dog', 'god']),\n", + " ('dogs', ['dogs']),\n", + " ('don', ['don', 'nod']),\n", + " ('done', ['done', 'node']),\n", + " ('doom', ['doom', 'mood']),\n", + " ('dozen', ['dozen', 'zoned']),\n", + " ('draw', ['draw', 'ward']),\n", + " ('drawback', ['backward', 'drawback']),\n", + " ('dreare', ['reader', 'redare', 'reread']),\n", + " ('drier', ['drier', 'rider']),\n", + " ('dune', ['dune', 'nude', 'unde']),\n", + " ('dunite', ['dunite', 'united', 'untied']),\n", + " ('dusty', ['dusty', 'study']),\n", + " ('eager', ['agree', 'eager', 'eagre']),\n", + " ('eagers', ['grease']),\n", + " ('eagre', ['agree', 'eager', 'eagre']),\n", + " ('eagres', ['grease']),\n", + " ('ear', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('eard', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('early', ['early', 'layer', 'relay']),\n", + " ('earn', ['earn', 'near', 'rane']),\n", + " ('earner', ['earner']),\n", + " ('ears', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('earthy', ['earthy', 'hearty', 'yearth']),\n", + " ('east', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('eastling', ['genitals', 'stealing']),\n", + " ('eat', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('eath', ['haet', 'hate', 'heat']),\n", + " ('eats', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('edit', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('eel', ['eel', 'lee']),\n", + " ('egos', ['goes', 'sego']),\n", + " ('eh', ['eh', 'he']),\n", + " ('eild', ['idle', 'lied']),\n", + " ('elbow', ['below', 'bowel', 'elbow']),\n", + " ('elints', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('emit', ['emit', 'item', 'mite', 'time']),\n", + " ('emits', ['metis', 'smite', 'stime', 'times']),\n", + " ('emoter', ['meteor', 'remote']),\n", + " ('enders', ['resend', 'sender']),\n", + " ('enfiring', ['infringe', 'refining']),\n", + " ('enlist', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('enlisted', ['enlisted', 'lintseed']),\n", + " ('era', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('eras', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('eros', ['eros', 'rose', 'sero', 'sore']),\n", + " ('escar', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('escort', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('ester',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('eta', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('etas', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('ether', ['ether', 'rethe', 'theer', 'there', 'three']),\n", + " ('evil', ['evil', 'live', 'veil', 'vile', 'vlei']),\n", + " ('evils', ['slive']),\n", + " ('ewts', ['stew', 'west']),\n", + " ('except', ['except', 'expect']),\n", + " ('exist', ['exist', 'sixte']),\n", + " ('exits', ['exist', 'sixte']),\n", + " ('expect', ['except', 'expect']),\n", + " ('face', ['face']),\n", + " ('fade', ['deaf', 'fade']),\n", + " ('failed', ['afield', 'defial']),\n", + " ('faker', ['faker', 'freak']),\n", + " ('fare', ['fare', 'fear', 'frae']),\n", + " ('farmed', ['framed']),\n", + " ('farming', ['farming', 'framing']),\n", + " ('fast', ['fast', 'saft']),\n", + " ('fat', ['aft', 'fat']),\n", + " ('fate', ['atef', 'fate', 'feat']),\n", + " ('fats', ['fast', 'saft']),\n", + " ('fear', ['fare', 'fear', 'frae']),\n", + " ('feat', ['atef', 'fate', 'feat']),\n", + " ('feel', ['feel', 'flee']),\n", + " ('feer', ['feer', 'free', 'reef']),\n", + " ('felid', ['felid', 'field']),\n", + " ('felt', ['felt', 'flet', 'left']),\n", + " ('fere', ['feer', 'free', 'reef']),\n", + " ('feta', ['atef', 'fate', 'feat']),\n", + " ('fiber', ['bifer', 'brief', 'fiber']),\n", + " ('fibre', ['bifer', 'brief', 'fiber']),\n", + " ('field', ['felid', 'field']),\n", + " ('filed', ['felid', 'field']),\n", + " ('filer', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('filets', ['itself', 'stifle']),\n", + " ('filler', ['filler', 'refill']),\n", + " ('finder', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('finer', ['finer', 'infer']),\n", + " ('finger', ['finger', 'fringe']),\n", + " ('fired', ['fired', 'fried']),\n", + " ('fires', ['serif']),\n", + " ('fist', ['fist', 'sift']),\n", + " ('fitness', ['fitness']),\n", + " ('fits', ['fist', 'sift']),\n", + " ('flee', ['feel', 'flee']),\n", + " ('flesh', ['flesh', 'shelf']),\n", + " ('flied', ['felid', 'field']),\n", + " ('flier', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('fliest', ['itself', 'stifle']),\n", + " ('flites', ['itself', 'stifle']),\n", + " ('flog', ['flog', 'golf']),\n", + " ('flow', ['flow', 'fowl', 'wolf']),\n", + " ('flue', ['flue', 'fuel']),\n", + " ('form', ['form', 'from']),\n", + " ('former', ['former', 'reform']),\n", + " ('forth', ['forth', 'froth']),\n", + " ('fowl', ['flow', 'fowl', 'wolf']),\n", + " ('frae', ['fare', 'fear', 'frae']),\n", + " ('framed', ['framed']),\n", + " ('framing', ['farming', 'framing']),\n", + " ('freak', ['faker', 'freak']),\n", + " ('free', ['feer', 'free', 'reef']),\n", + " ('freed', ['defer', 'freed']),\n", + " ('fried', ['fired', 'fried']),\n", + " ('friend', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('fries', ['serif']),\n", + " ('fringe', ['finger', 'fringe']),\n", + " ('frise', ['serif']),\n", + " ('from', ['form', 'from']),\n", + " ('froth', ['forth', 'froth']),\n", + " ('fuel', ['flue', 'fuel']),\n", + " ('furs', ['surf']),\n", + " ('gab', ['bag', 'gab']),\n", + " ('gals', ['slag']),\n", + " ('gaps', ['gasp']),\n", + " ('garb', ['brag', 'garb', 'grab']),\n", + " ('gas', ['gas', 'sag']),\n", + " ('gasp', ['gasp']),\n", + " ('gater', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('geare', ['agree', 'eager', 'eagre']),\n", + " ('geares', ['grease']),\n", + " ('gel', ['gel', 'leg']),\n", + " ('gelatins', ['genitals', 'stealing']),\n", + " ('genitals', ['genitals', 'stealing']),\n", + " ('geos', ['goes', 'sego']),\n", + " ('girn', ['girn', 'grin', 'ring']),\n", + " ('glare', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('god', ['dog', 'god']),\n", + " ('gods', ['dogs']),\n", + " ('goes', ['goes', 'sego']),\n", + " ('golf', ['flog', 'golf']),\n", + " ('grab', ['brag', 'garb', 'grab']),\n", + " ('grate', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('grease', ['grease']),\n", + " ('great', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('grin', ['girn', 'grin', 'ring']),\n", + " ('grues', ['surge']),\n", + " ('gulp', ['gulp', 'plug']),\n", + " ('gum', ['gum', 'mug']),\n", + " ('gunshot', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('gust', ['gust', 'stug']),\n", + " ('guts', ['gust', 'stug']),\n", + " ('ha', ['ah', 'ha']),\n", + " ('had', ['dah', 'dha', 'had']),\n", + " ('haet', ['haet', 'hate', 'heat']),\n", + " ('halls', ['shall']),\n", + " ('halses', ['hassel', 'hassle']),\n", + " ('hams', ['mash', 'samh', 'sham']),\n", + " ('hangover', ['overhang']),\n", + " ('harps', ['sharp', 'shrap']),\n", + " ('has', ['ash', 'sah', 'sha']),\n", + " ('hassel', ['hassel', 'hassle']),\n", + " ('hassle', ['hassel', 'hassle']),\n", + " ('hate', ['haet', 'hate', 'heat']),\n", + " ('hated', ['death']),\n", + " ('hay', ['hay', 'yah']),\n", + " ('he', ['eh', 'he']),\n", + " ('hearty', ['earthy', 'hearty', 'yearth']),\n", + " ('heat', ['haet', 'hate', 'heat']),\n", + " ('heater', ['heater', 'hereat', 'reheat']),\n", + " ('heaters', ['thereas']),\n", + " ('heir', ['heir', 'hire']),\n", + " ('heirs', ['hirse', 'shier', 'shire']),\n", + " ('hereat', ['heater', 'hereat', 'reheat']),\n", + " ('hewn', ['hewn', 'when']),\n", + " ('hikes', ['sheik']),\n", + " ('hire', ['heir', 'hire']),\n", + " ('hires', ['hirse', 'shier', 'shire']),\n", + " ('ho', ['ho', 'oh']),\n", + " ('hocks', ['shock']),\n", + " ('hoes', ['hose', 'shoe']),\n", + " ('hognuts', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('hooks', ['shook']),\n", + " ('hose', ['hose', 'shoe']),\n", + " ('host', ['host', 'shot', 'tosh']),\n", + " ('hots', ['host', 'shot', 'tosh']),\n", + " ('houts', ['shout', 'south']),\n", + " ('how', ['how', 'who']),\n", + " ('howres', ['shower']),\n", + " ('hubs', ['bush']),\n", + " ('hug', ['hug', 'ugh']),\n", + " ('hums', ['mush']),\n", + " ('hustle', ['hustle', 'sleuth']),\n", + " ('hustling', ['sunlight']),\n", + " ('huts', ['shut', 'thus', 'tush']),\n", + " ('iced', ['dice', 'iced']),\n", + " ('icon', ['cion', 'coin', 'icon']),\n", + " ('idea', ['aide', 'idea']),\n", + " ('ideas', ['aside']),\n", + " ('idle', ['idle', 'lied']),\n", + " ('impart', ['armpit', 'impart']),\n", + " ('impled', ['dimple']),\n", + " ('imprints', ['misprint']),\n", + " ('incest', ['encist', 'incest', 'insect', 'scient']),\n", + " ('inch', ['chin', 'inch']),\n", + " ('infer', ['finer', 'infer']),\n", + " ('infests', ['fitness']),\n", + " ('infringe', ['infringe', 'refining']),\n", + " ('ink', ['ink', 'kin']),\n", + " ('inks', ['inks', 'sink', 'skin']),\n", + " ('inlets', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('ins', ['sin']),\n", + " ('insect', ['encist', 'incest', 'insect', 'scient']),\n", + " ('instar', ['instar', 'santir', 'strain']),\n", + " ('insult', ['insult', 'sunlit', 'unlist', 'unslit']),\n", + " ('itch', ['chit', 'itch']),\n", + " ('item', ['emit', 'item', 'mite', 'time']),\n", + " ('items', ['metis', 'smite', 'stime', 'times']),\n", + " ('its', ['ist', 'its', 'sit']),\n", + " ('itself', ['itself', 'stifle']),\n", + " ('jest', ['jest']),\n", + " ('jets', ['jest']),\n", + " ('joiner', ['joiner', 'rejoin']),\n", + " ('just', ['just']),\n", + " ('juts', ['just']),\n", + " ('kale', ['kale', 'lake', 'leak']),\n", + " ('kebar', ['baker', 'brake', 'break']),\n", + " ('keel', ['keel', 'kele', 'leek']),\n", + " ('keels', ['skeel', 'sleek']),\n", + " ('keen', ['keen', 'knee']),\n", + " ('kids', ['disk', 'skid']),\n", + " ('kills', ['skill']),\n", + " ('kiln', ['kiln', 'link']),\n", + " ('kin', ['ink', 'kin']),\n", + " ('kins', ['inks', 'sink', 'skin']),\n", + " ('kiss', ['kiss']),\n", + " ('kisser', ['kisser', 'rekiss']),\n", + " ('kitchen', ['kitchen', 'thicken']),\n", + " ('knee', ['keen', 'knee']),\n", + " ('koas', ['asok', 'soak', 'soka']),\n", + " ('krises', ['kisser', 'rekiss']),\n", + " ('lacy', ['acyl', 'clay', 'lacy']),\n", + " ('lade', ['dale', 'deal', 'lade', 'lead']),\n", + " ('laered', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('lager', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('lags', ['slag']),\n", + " ('laid', ['dali', 'dial', 'laid']),\n", + " ('lair', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lake', ['kale', 'lake', 'leak']),\n", + " ('lamb', ['balm', 'lamb']),\n", + " ('lameness', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('lames', ['amsel', 'mesal', 'samel']),\n", + " ('lamp', ['lamp', 'palm']),\n", + " ('lap', ['alp', 'lap', 'pal']),\n", + " ('lapins', ['spinal']),\n", + " ('laps', ['salp', 'slap']),\n", + " ('lapse', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('large', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('lari', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lases', ['salse']),\n", + " ('lashes', ['hassel', 'hassle']),\n", + " ('last', ['last', 'salt', 'slat']),\n", + " ('lasted', ['desalt', 'salted']),\n", + " ('lasting', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('late', ['atle', 'laet', 'late', 'leat', 'tael', 'tale', 'teal']),\n", + " ('lats', ['last', 'salt', 'slat']),\n", + " ('layer', ['early', 'layer', 'relay']),\n", + " ('layered', ['delayer', 'layered', 'redelay']),\n", + " ('layers', ['reslay', 'slayer']),\n", + " ('laymen', ['meanly', 'namely']),\n", + " ('layover', ['layover', 'overlay']),\n", + " ('lays', ['slay']),\n", + " ('lead', ['dale', 'deal', 'lade', 'lead']),\n", + " ('leader', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('leak', ['kale', 'lake', 'leak']),\n", + " ('leams', ['amsel', 'mesal', 'samel']),\n", + " ('leap', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('leaps', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('leared', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('learnt', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('leary', ['early', 'layer', 'relay']),\n", + " ('leat', ['atle', 'laet', 'late', 'leat', 'tael', 'tale', 'teal']),\n", + " ('lee', ['eel', 'lee']),\n", + " ('leek', ['keel', 'kele', 'leek']),\n", + " ('leeks', ['skeel', 'sleek']),\n", + " ('left', ['felt', 'flet', 'left']),\n", + " ('leg', ['gel', 'leg']),\n", + " ('leke', ['keel', 'kele', 'leek']),\n", + " ('lemon', ['lemon', 'melon', 'monel']),\n", + " ('leper', ['leper', 'perle', 'repel']),\n", + " ('lessened', ['needless', 'seldseen']),\n", + " ('lessons', ['sonless']),\n", + " ('levis', ['slive']),\n", + " ('liar', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('license', ['license', 'selenic', 'silence']),\n", + " ('licensed', ['licensed', 'silenced']),\n", + " ('licks', ['slick']),\n", + " ('lied', ['idle', 'lied']),\n", + " ('lifer', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('lime', ['lime', 'mile']),\n", + " ('limes', ['limes', 'slime', 'smile']),\n", + " ('limped', ['dimple']),\n", + " ('link', ['kiln', 'link']),\n", + " ('lino', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lintseed', ['enlisted', 'lintseed']),\n", + " ('lion', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lippers', ['slipper']),\n", + " ('lips', ['lisp', 'slip']),\n", + " ('lira', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lisp', ['lisp', 'slip']),\n", + " ('list', ['list', 'silt', 'slit']),\n", + " ('listen', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('listened', ['enlisted', 'lintseed']),\n", + " ('listing', ['listing', 'silting']),\n", + " ('lits', ['list', 'silt', 'slit']),\n", + " ('live', ['evil', 'live', 'veil', 'vile', 'vlei']),\n", + " ('lives', ['slive']),\n", + " ('loca', ['alco', 'coal', 'cola', 'loca']),\n", + " ('loco', ['cool', 'loco']),\n", + " ('loin', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lookout', ['lookout', 'outlook']),\n", + " ('looped', ['poodle']),\n", + " ('loops', ['polos', 'sloop', 'spool']),\n", + " ('loot', ['loot', 'tool']),\n", + " ('lose', ['lose', 'sloe', 'sole']),\n", + " ('lost', ['lost', 'lots', 'slot']),\n", + " ('loto', ['loot', 'tool']),\n", + " ('lots', ['lost', 'lots', 'slot']),\n", + " ('loyal', ['alloy', 'loyal']),\n", + " ('lump', ['lump', 'plum']),\n", + " ('lure', ['lure', 'rule']),\n", + " ('lured', ['duler', 'urled']),\n", + " ('lures', ['sluer']),\n", + " ('luring', ['ruling', 'urling']),\n", + " ('ma', ['am', 'ma']),\n", + " ('mace', ['acme', 'came', 'mace']),\n", + " ('mad', ['dam', 'mad']),\n", + " ('mainer', ['marine', 'remain']),\n", + " ('maleness', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('males', ['amsel', 'mesal', 'samel']),\n", + " ('mane', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('maneless', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('manors', ['ramson', 'ransom']),\n", + " ('manures', ['surname']),\n", + " ('map', ['amp', 'map', 'pam']),\n", + " ('maples', ['sample']),\n", + " ('maps', ['samp', 'spam']),\n", + " ('mar', ['arm', 'mar', 'ram']),\n", + " ('march', ['charm', 'march']),\n", + " ('marcher', ['charmer', 'marcher', 'remarch']),\n", + " ('marching', ['charming']),\n", + " ('mare', ['mare', 'rame', 'ream']),\n", + " ('marine', ['marine', 'remain']),\n", + " ('marital', ['marital', 'martial']),\n", + " ('marons', ['ramson', 'ransom']),\n", + " ('mars', ['arms']),\n", + " ('martial', ['marital', 'martial']),\n", + " ('marts', ['smart', 'stram']),\n", + " ('mash', ['mash', 'samh', 'sham']),\n", + " ('mast', ['mast', 'stam']),\n", + " ('mate', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('mated', ['metad']),\n", + " ('mates', ['steam', 'stema']),\n", + " ('mating', ['mating']),\n", + " ('mats', ['mast', 'stam']),\n", + " ('meals', ['amsel', 'mesal', 'samel']),\n", + " ('mean', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('meanly', ['meanly', 'namely']),\n", + " ('meat', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('meats', ['steam', 'stema']),\n", + " ('melas', ['amsel', 'mesal', 'samel']),\n", + " ('melon', ['lemon', 'melon', 'monel']),\n", + " ('melts', ['smelt']),\n", + " ('mesal', ['amsel', 'mesal', 'samel']),\n", + " ('meta', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('meteor', ['meteor', 'remote']),\n", + " ('metis', ['metis', 'smite', 'stime', 'times']),\n", + " ('metols', ['molest']),\n", + " ('mile', ['lime', 'mile']),\n", + " ('miles', ['limes', 'slime', 'smile']),\n", + " ('misprint', ['misprint']),\n", + " ('mite', ['emit', 'item', 'mite', 'time']),\n", + " ('mites', ['metis', 'smite', 'stime', 'times']),\n", + " ('mobbed', ['bombed']),\n", + " ('moist', ['moist']),\n", + " ('moits', ['moist']),\n", + " ('molest', ['molest']),\n", + " ('mono', ['mono', 'moon']),\n", + " ('mood', ['doom', 'mood']),\n", + " ('moon', ['mono', 'moon']),\n", + " ('moor', ['moor', 'moro', 'room']),\n", + " ('motels', ['molest']),\n", + " ('much', ['chum', 'much']),\n", + " ('mug', ['gum', 'mug']),\n", + " ('murenas', ['surname']),\n", + " ('mush', ['mush']),\n", + " ('mutilate', ['mutilate', 'ultimate']),\n", + " ('nags', ['sang', 'snag']),\n", + " ('nails', ['sinal', 'slain', 'snail']),\n", + " ('name', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('nameless', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('namely', ['meanly', 'namely']),\n", + " ('nap', ['nap', 'pan']),\n", + " ('nare', ['earn', 'near', 'rane']),\n", + " ('nat', ['ant', 'nat', 'tan']),\n", + " ('nay', ['any', 'nay', 'yan']),\n", + " ('near', ['earn', 'near', 'rane']),\n", + " ('nearer', ['earner']),\n", + " ('needless', ['needless', 'seldseen']),\n", + " ('needs', ['dense', 'needs']),\n", + " ('nema', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('neon', ['neon', 'none']),\n", + " ('nest', ['nest', 'sent', 'sten']),\n", + " ('net', ['net', 'ten']),\n", + " ('nets', ['nest', 'sent', 'sten']),\n", + " ('nevi', ['vein', 'vine']),\n", + " ('nicest', ['encist', 'incest', 'insect', 'scient']),\n", + " ('night', ['night', 'thing']),\n", + " ('nights', ['nights']),\n", + " ('nip', ['nip', 'pin']),\n", + " ('nips', ['snip', 'spin']),\n", + " ('nis', ['sin']),\n", + " ('no', ['no', 'on']),\n", + " ('nod', ['don', 'nod']),\n", + " ('node', ['done', 'node']),\n", + " ('noil', ['lino', 'lion', 'loin', 'noil']),\n", + " ('none', ['neon', 'none']),\n", + " ('normas', ['ramson', 'ransom']),\n", + " ('not', ['not', 'ton']),\n", + " ('note', ['note', 'tone']),\n", + " ('noted', ['noted', 'toned']),\n", + " ('noteless', ['noteless', 'toneless']),\n", + " ('notices', ['contise', 'noetics', 'section']),\n", + " ('noughts', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('now', ['now', 'own', 'won']),\n", + " ('nows', ['snow', 'sown']),\n", + " ('nude', ['dune', 'nude', 'unde']),\n", + " ('nudity', ['nudity', 'untidy']),\n", + " ('nur', ['run', 'urn']),\n", + " ('nurs', ['snur']),\n", + " ('oaks', ['asok', 'soak', 'soka']),\n", + " ('ocean', ['acone', 'canoe', 'ocean']),\n", + " ('oceanic', ['cocaine', 'oceanic']),\n", + " ('oh', ['ho', 'oh']),\n", + " ('oils', ['silo', 'siol', 'soil', 'soli']),\n", + " ('okas', ['asok', 'soak', 'soka']),\n", + " ('oles', ['lose', 'sloe', 'sole']),\n", + " ('omits', ['moist']),\n", + " ('on', ['no', 'on']),\n", + " ('once', ['cone', 'once']),\n", + " ('opener', ['opener', 'reopen', 'repone']),\n", + " ('opt', ['opt', 'pot', 'top']),\n", + " ('option', ['option', 'potion']),\n", + " ('opts', ['post', 'spot', 'stop', 'tops']),\n", + " ('orbed', ['boder', 'orbed']),\n", + " ('ores', ['eros', 'rose', 'sero', 'sore']),\n", + " ('organist', ['orangist', 'organist', 'roasting', 'signator']),\n", + " ('oriental', ['oriental', 'relation']),\n", + " ('ought', ['ought', 'tough']),\n", + " ('oughts', ['sought']),\n", + " ('ours', ['ours', 'sour']),\n", + " ('outlook', ['lookout', 'outlook']),\n", + " ('overhang', ['overhang']),\n", + " ('overlay', ['layover', 'overlay']),\n", + " ('own', ['now', 'own', 'won']),\n", + " ('owns', ['snow', 'sown']),\n", + " ('owt', ['tow', 'two', 'wot']),\n", + " ('pace', ['cape', 'cepa', 'pace']),\n", + " ('packer', ['packer', 'repack']),\n", + " ('padle', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('painter', ['painter', 'pertain', 'repaint']),\n", + " ('paired', ['diaper', 'paired']),\n", + " ('pal', ['alp', 'lap', 'pal']),\n", + " ('pale', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('paled', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pales', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('palest', ['pastel', 'septal', 'staple']),\n", + " ('palets', ['pastel', 'septal', 'staple']),\n", + " ('palm', ['lamp', 'palm']),\n", + " ('pals', ['salp', 'slap']),\n", + " ('pam', ['amp', 'map', 'pam']),\n", + " ('pams', ['samp', 'spam']),\n", + " ('pan', ['nap', 'pan']),\n", + " ('panel', ['panel', 'penal', 'plane']),\n", + " ('pardie', ['diaper', 'paired']),\n", + " ('pare', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('parks', ['spark']),\n", + " ('partim', ['armpit', 'impart']),\n", + " ('parts', ['spart', 'sprat', 'strap', 'traps']),\n", + " ('pass', ['pass']),\n", + " ('pastel', ['pastel', 'septal', 'staple']),\n", + " ('pat', ['apt', 'pat', 'tap']),\n", + " ('pate', ['pate', 'peat', 'tape', 'teap']),\n", + " ('pay', ['pay', 'pya', 'yap']),\n", + " ('pea', ['ape', 'pea']),\n", + " ('peaks', ['sapek', 'speak']),\n", + " ('peal', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('peals', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pear', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('peat', ['pate', 'peat', 'tape', 'teap']),\n", + " ('pedal', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pela', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('pelas', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pelmas', ['sample']),\n", + " ('peltas', ['pastel', 'septal', 'staple']),\n", + " ('pelts', ['slept', 'spelt', 'splet']),\n", + " ('penal', ['panel', 'penal', 'plane']),\n", + " ('penster', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('per', ['per', 'rep']),\n", + " ('pereon', ['opener', 'reopen', 'repone']),\n", + " ('peri', ['peri', 'pier', 'ripe']),\n", + " ('perone', ['opener', 'reopen', 'repone']),\n", + " ('pertain', ['painter', 'pertain', 'repaint']),\n", + " ('pest', ['pest', 'sept', 'spet', 'step']),\n", + " ('petals', ['pastel', 'septal', 'staple']),\n", + " ('pets', ['pest', 'sept', 'spet', 'step']),\n", + " ('pier', ['peri', 'pier', 'ripe']),\n", + " ('pills', ['spill']),\n", + " ('pin', ['nip', 'pin']),\n", + " ('pinots', ['piston']),\n", + " ('pins', ['snip', 'spin']),\n", + " ('pintos', ['piston']),\n", + " ('piston', ['piston']),\n", + " ('pit', ['pit', 'tip']),\n", + " ('pitons', ['piston']),\n", + " ('pits', ['pist', 'spit']),\n", + " ('plains', ['spinal']),\n", + " ('plane', ['panel', 'penal', 'plane']),\n", + " ('plaste', ['pastel', 'septal', 'staple']),\n", + " ('plates', ['pastel', 'septal', 'staple']),\n", + " ('plea', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('plead', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pleas', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pleats', ['pastel', 'septal', 'staple']),\n", + " ('plena', ['panel', 'penal', 'plane']),\n", + " ('plug', ['gulp', 'plug']),\n", + " ('plum', ['lump', 'plum']),\n", + " ('points', ['piston']),\n", + " ('polos', ['polos', 'sloop', 'spool']),\n", + " ('poodle', ['poodle']),\n", + " ('pooled', ['poodle']),\n", + " ('pools', ['polos', 'sloop', 'spool']),\n", + " ('pore', ['pore', 'rope']),\n", + " ('pores', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('ports', ['sport', 'strop']),\n", + " ('poser', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('post', ['post', 'spot', 'stop', 'tops']),\n", + " ('postin', ['piston']),\n", + " ('postman', ['postman', 'topsman']),\n", + " ('pot', ['opt', 'pot', 'top']),\n", + " ('potins', ['piston']),\n", + " ('potion', ['option', 'potion']),\n", + " ('pots', ['post', 'spot', 'stop', 'tops']),\n", + " ('praised', ['despair', 'pardesi']),\n", + " ('prats', ['spart', 'sprat', 'strap', 'traps']),\n", + " ('prays', ['raspy', 'spary', 'spray']),\n", + " ('pre', ['per', 'rep']),\n", + " ('present', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('printer', ['printer', 'reprint']),\n", + " ('pronto', ['pronto', 'proton']),\n", + " ('prose', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('prost', ['sport', 'strop']),\n", + " ('proton', ['pronto', 'proton']),\n", + " ('pya', ['pay', 'pya', 'yap']),\n", + " ('quiet', ['quiet', 'quite']),\n", + " ('quite', ['quiet', 'quite']),\n", + " ('race', ['acre', 'care', 'crea', 'race']),\n", + " ('races', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('racket', ['racket', 'retack', 'tacker']),\n", + " ('rade', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('ragee', ['agree', 'eager', 'eagre']),\n", + " ('ragees', ['grease']),\n", + " ('raginis', ['raising']),\n", + " ('rail', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('raising', ['raising']),\n", + " ('ram', ['arm', 'mar', 'ram']),\n", + " ('rams', ['arms']),\n", + " ('ramson', ['ramson', 'ransom']),\n", + " ('ransom', ['ramson', 'ransom']),\n", + " ('rape', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('rare', ['rare', 'rear']),\n", + " ('rase', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('raspy', ['raspy', 'spary', 'spray']),\n", + " ('rast', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('rat', ['art', 'rat', 'tar', 'tra']),\n", + " ('rats', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('raw', ['raw', 'war']),\n", + " ('rayle', ['early', 'layer', 'relay']),\n", + " ('rayles', ['reslay', 'slayer']),\n", + " ('react',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('read', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('reader', ['reader', 'redare', 'reread']),\n", + " ('realist', ['realist', 'saltier']),\n", + " ('ream', ['mare', 'rame', 'ream']),\n", + " ('rean', ['earn', 'near', 'rane']),\n", + " ('reap', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('rear', ['rare', 'rear']),\n", + " ('reared', ['reader', 'redare', 'reread']),\n", + " ('rebuild', ['builder', 'rebuild']),\n", + " ('recall', ['caller', 'cellar', 'recall']),\n", + " ('recede', ['decree', 'recede']),\n", + " ('recital', ['article', 'recital']),\n", + " ('recitals', ['altrices', 'selictar']),\n", + " ('recta',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('rectos', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('recuse', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('recused', ['seducer']),\n", + " ('redeal', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('redear', ['reader', 'redare', 'reread']),\n", + " ('redfin', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('reduces', ['seducer']),\n", + " ('reearn', ['earner']),\n", + " ('reef', ['feer', 'free', 'reef']),\n", + " ('reest',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('refed', ['defer', 'freed']),\n", + " ('refill', ['filler', 'refill']),\n", + " ('refind', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('refining', ['infringe', 'refining']),\n", + " ('reform', ['former', 'reform']),\n", + " ('regal', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('reheat', ['heater', 'hereat', 'reheat']),\n", + " ('reheats', ['thereas']),\n", + " ('reifs', ['serif']),\n", + " ('reins', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('reird', ['drier', 'rider']),\n", + " ('reists', ['resist', 'restis', 'sister']),\n", + " ('rejoin', ['joiner', 'rejoin']),\n", + " ('relation', ['oriental', 'relation']),\n", + " ('relay', ['early', 'layer', 'relay']),\n", + " ('relayed', ['delayer', 'layered', 'redelay']),\n", + " ('relays', ['reslay', 'slayer']),\n", + " ('remain', ['marine', 'remain']),\n", + " ('remote', ['meteor', 'remote']),\n", + " ('rental', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('rentals', ['saltern', 'starnel', 'sternal']),\n", + " ('reopen', ['opener', 'reopen', 'repone']),\n", + " ('rep', ['per', 'rep']),\n", + " ('repack', ['packer', 'repack']),\n", + " ('repaid', ['diaper', 'paired']),\n", + " ('repaint', ['painter', 'pertain', 'repaint']),\n", + " ('repel', ['leper', 'perle', 'repel']),\n", + " ('repents', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('repins', ['respin', 'sniper']),\n", + " ('repo', ['pore', 'rope']),\n", + " ('repone', ['opener', 'reopen', 'repone']),\n", + " ('repos', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('reprint', ['printer', 'reprint']),\n", + " ('reread', ['reader', 'redare', 'reread']),\n", + " ('rescue', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('rescued', ['seducer']),\n", + " ('resell', ['resell', 'seller']),\n", + " ('resend', ['resend', 'sender']),\n", + " ('reserve', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reserved', ['deserver', 'reserved', 'reversed']),\n", + " ('reset',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('reshow', ['shower']),\n", + " ('resin', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('resist', ['resist', 'restis', 'sister']),\n", + " ('resits', ['resist', 'restis', 'sister']),\n", + " ('retack', ['racket', 'retack', 'tacker']),\n", + " ('retag', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('retails', ['realist', 'saltier']),\n", + " ('retes',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('rethink', ['rethink', 'thinker']),\n", + " ('retrain', ['arterin', 'retrain', 'terrain', 'trainer']),\n", + " ('retund', ['runted', 'tunder', 'turned']),\n", + " ('reveres', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reverse', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reversed', ['deserver', 'reserved', 'reversed']),\n", + " ('review', ['review', 'viewer']),\n", + " ('rhies', ['hirse', 'shier', 'shire']),\n", + " ('rial', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('rictus', ['citrus', 'rictus', 'rustic']),\n", + " ('rider', ['drier', 'rider']),\n", + " ('rifle', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('rines', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('ring', ['girn', 'grin', 'ring']),\n", + " ('rinse', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('ripe', ['peri', 'pier', 'ripe']),\n", + " ('ripens', ['respin', 'sniper']),\n", + " ('ripples', ['slipper']),\n", + " ('risen', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('rite', ['iter', 'reit', 'rite', 'tier', 'tire']),\n", + " ('rival', ['rival', 'viral']),\n", + " ('roasting', ['orangist', 'organist', 'roasting', 'signator']),\n", + " ('robed', ['boder', 'orbed']),\n", + " ('robes', ['boser', 'brose', 'sober']),\n", + " ('rock', ['cork', 'rock']),\n", + " ('roes', ['eros', 'rose', 'sero', 'sore']),\n", + " ('romans', ['ramson', 'ransom']),\n", + " ('room', ['moor', 'moro', 'room']),\n", + " ('rope', ['pore', 'rope']),\n", + " ('ropes', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('rose', ['eros', 'rose', 'sero', 'sore']),\n", + " ('rout', ['rout', 'toru', 'tour']),\n", + " ('rowdier', ['worried']),\n", + " ('ruby', ['bury', 'ruby']),\n", + " ('rule', ['lure', 'rule']),\n", + " ('ruled', ['duler', 'urled']),\n", + " ('rules', ['sluer']),\n", + " ('ruling', ['ruling', 'urling']),\n", + " ('run', ['run', 'urn']),\n", + " ('runs', ['snur']),\n", + " ('runted', ['runted', 'tunder', 'turned']),\n", + " ('runts', ['snurt', 'turns']),\n", + " ('rust', ['rust']),\n", + " ('rustic', ['citrus', 'rictus', 'rustic']),\n", + " ('rusts', ['truss']),\n", + " ('ruts', ['rust']),\n", + " ('sack', ['cask', 'sack']),\n", + " ('sacred', ['sacred']),\n", + " ('sag', ['gas', 'sag']),\n", + " ('saint', ['saint', 'satin', 'stain']),\n", + " ('sairing', ['raising']),\n", + " ('salep', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('sales', ['salse']),\n", + " ('salesmen', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('salp', ['salp', 'slap']),\n", + " ('salse', ['salse']),\n", + " ('salt', ['last', 'salt', 'slat']),\n", + " ('salted', ['desalt', 'salted']),\n", + " ('saltern', ['saltern', 'starnel', 'sternal']),\n", + " ('saltier', ['realist', 'saltier']),\n", + " ('salting', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('saltire', ['realist', 'saltier']),\n", + " ('samel', ['amsel', 'mesal', 'samel']),\n", + " ('samp', ['samp', 'spam']),\n", + " ('sample', ['sample']),\n", + " ('sang', ['sang', 'snag']),\n", + " ('santir', ['instar', 'santir', 'strain']),\n", + " ('saps', ['pass']),\n", + " ('sate', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('satem', ['steam', 'stema']),\n", + " ('satin', ['saint', 'satin', 'stain']),\n", + " ('sauce', ['cause', 'sauce']),\n", + " ('sauces', ['causse']),\n", + " ('save', ['save', 'vase']),\n", + " ('saw', ['saw', 'swa', 'was']),\n", + " ('sawed', ['sawed']),\n", + " ('scab', ['scab']),\n", + " ('scan', ['scan']),\n", + " ('scar', ['scar']),\n", + " ('scare', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('scared', ['sacred']),\n", + " ('scat', ['cast', 'scat']),\n", + " ('scent', ['scent']),\n", + " ...]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "words_anagrams" + ] + }, + { + "cell_type": "markdown", + "id": "d91434bc", + "metadata": {}, + "source": [ + "The complexity of this algorithm is O(M * KlogK + N), much much faster!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "03ce3e28", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a2fc5ec4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/anagrams/anagrams.ipynb b/exercises/anagrams/anagrams.ipynb new file mode 100644 index 0000000..2e6968d --- /dev/null +++ b/exercises/anagrams/anagrams.ipynb @@ -0,0 +1,210 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "245d99ab", + "metadata": {}, + "source": [ + "# Exercise: Find the anagrams for all words in a list" + ] + }, + { + "cell_type": "markdown", + "id": "d1e46c4a", + "metadata": {}, + "source": [ + "* You are given an English dictionary containing M words (“the dictionary”), and a separate list of N words (“the input”, saved in the file `words_to_search.txt`)\n", + "* For each word in the input, find all the anagrams in the dictionary (e.g., for input 'acme' the anagrams are `['acme', 'came', 'mace']`)\n", + "\n", + "How to proceed?\n", + "1. Write an algorithm to find all anagrams for one input word first\n", + "2. What is the Big-O class of this algorithm when executed the full N-words input?\n", + "3. Is there a way to pre-process the dictionary to improve the Big-O performance?" + ] + }, + { + "cell_type": "markdown", + "id": "b9b9cecd", + "metadata": {}, + "source": [ + "# 1. Load the system dictionary and the input words" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "24070a26", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the system dictionary\n", + "with open('/usr/share/dict/words', 'r') as f:\n", + " dict_words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4002fcdd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['A',\n", + " 'a',\n", + " 'aa',\n", + " 'aal',\n", + " 'aalii',\n", + " '...',\n", + " 'zythem',\n", + " 'Zythia',\n", + " 'zythum',\n", + " 'Zyzomys',\n", + " 'Zyzzogeton']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the dictionary\n", + "dict_words[:5] + ['...'] + dict_words[-5:]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "823537ef", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the input words\n", + "with open('words_to_search.txt', 'r') as f:\n", + " words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "4ccec6a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['acer',\n", + " 'acers',\n", + " 'aces',\n", + " 'aches',\n", + " 'acme',\n", + " '...',\n", + " 'yap',\n", + " 'yaw',\n", + " 'yea',\n", + " 'zendo',\n", + " 'zoned']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the input list\n", + "words[:5] + ['...'] + words[-5:]" + ] + }, + { + "cell_type": "markdown", + "id": "14d91685", + "metadata": {}, + "source": [ + "# 2. Look for the anagrams of one input word, e.g. \"organ\"\n", + "\n", + "* There are several anagrams, including \"groan\" and \"argon\".\n", + "\n", + "* What is the Big-O performance oh your algorithm? In terms of M, the number of words in the dictionary, and K, the number of letters in a word" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "badf44c1", + "metadata": {}, + "outputs": [], + "source": [ + "word = 'organ'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef938d95", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "7cd1196c", + "metadata": {}, + "source": [ + "The performance of this implementation is ... ." + ] + }, + { + "cell_type": "markdown", + "id": "115c3219", + "metadata": {}, + "source": [ + "# 3. Look for the anagrams of the words in the input list\n", + "\n", + "* How does the Big-O performance of your one-word implementation scale to an input list of M words?\n", + "* Is there a way to pre-process the dictionary words in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "03ce3e28", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a2fc5ec4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/anagrams/anagrams_solution.ipynb b/exercises/anagrams/anagrams_solution.ipynb new file mode 100644 index 0000000..57a9da9 --- /dev/null +++ b/exercises/anagrams/anagrams_solution.ipynb @@ -0,0 +1,1451 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "245d99ab", + "metadata": {}, + "source": [ + "# Exercise: Find the anagrams for all words in a list" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "id": "d1e46c4a", + "metadata": {}, + "source": [ + "* You are given an English dictionary containing M words (“the dictionary”), and a separate list of N words (“the input”, saved in the file `words_to_search.txt`)\n", + "* For each word in the input, find all the anagrams in the dictionary (e.g., for input 'acme' the anagrams are `['acme', 'came', 'mace']`)\n", + "\n", + "How to proceed?\n", + "1. Write an algorithm to find all anagrams for one input word first\n", + "2. What is the Big-O class of this algorithm when executed the full N-words input?\n", + "3. Is there a way to pre-process the dictionary to improve the Big-O performance?" + ] + }, + { + "cell_type": "markdown", + "id": "b9b9cecd", + "metadata": {}, + "source": [ + "# 1. Load the system dictionary and the input words" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "24070a26", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the system dictionary\n", + "with open('/usr/share/dict/words', 'r') as f:\n", + " dict_words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4002fcdd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['A',\n", + " 'a',\n", + " 'aa',\n", + " 'aal',\n", + " 'aalii',\n", + " '...',\n", + " 'zythem',\n", + " 'Zythia',\n", + " 'zythum',\n", + " 'Zyzomys',\n", + " 'Zyzzogeton']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the dictionary\n", + "dict_words[:5] + ['...'] + dict_words[-5:]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "823537ef", + "metadata": {}, + "outputs": [], + "source": [ + "# Load the input words\n", + "with open('words_to_search.txt', 'r') as f:\n", + " words = [w.strip() for w in f.readlines()]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "4ccec6a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['acer',\n", + " 'acers',\n", + " 'aces',\n", + " 'aches',\n", + " 'acme',\n", + " '...',\n", + " 'yap',\n", + " 'yaw',\n", + " 'yea',\n", + " 'zendo',\n", + " 'zoned']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Print the start and end of the input list\n", + "words[:5] + ['...'] + words[-5:]" + ] + }, + { + "cell_type": "markdown", + "id": "14d91685", + "metadata": {}, + "source": [ + "# 2. Look for the anagrams of one input word, e.g. \"organ\"\n", + "\n", + "* There are several anagrams, including \"groan\" and \"argon\".\n", + "\n", + "* What is the Big-O performance oh your algorithm? In terms of M, the number of words in the dictionary, and K, the number of letters in a word" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "badf44c1", + "metadata": {}, + "outputs": [], + "source": [ + "word = 'organ'" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "551e6b54", + "metadata": {}, + "outputs": [], + "source": [ + "anagrams = []\n", + "for dict_word in dict_words: # O(M)\n", + " if sorted(word) == sorted(dict_word): # 2 * O(K log K) ~ O(K log K)\n", + " anagrams.append(dict_word) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "84294a2f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['angor',\n", + " 'argon',\n", + " 'goran',\n", + " 'grano',\n", + " 'groan',\n", + " 'nagor',\n", + " 'orang',\n", + " 'organ',\n", + " 'rogan']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "anagrams" + ] + }, + { + "cell_type": "markdown", + "id": "7cd1196c", + "metadata": {}, + "source": [ + "The performance of this implementation is O(M * K log K).\n", + "\n", + "Note that instead of sorting , we could use a dictionary mapping letters to letter counts. This would make the performance even better, O(M * K)! However, in practice it would make little difference and would make the code more complicated, so we'll leave it like this." + ] + }, + { + "cell_type": "markdown", + "id": "115c3219", + "metadata": {}, + "source": [ + "# 3. Look for the anagrams of the words in the input list\n", + "\n", + "* How does the Big-O performance of your one-word implementation scale to an input list of M words?\n", + "* Is there a way to pre-process the dictionary words in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e00054ff", + "metadata": {}, + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[18], line 12\u001b[0m\n\u001b[1;32m 10\u001b[0m words_anagrams \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m word \u001b[38;5;129;01min\u001b[39;00m words: \u001b[38;5;66;03m# O(M)\u001b[39;00m\n\u001b[0;32m---> 12\u001b[0m anagrams \u001b[38;5;241m=\u001b[39m find_anagrams(word, dict_words)\n\u001b[1;32m 13\u001b[0m words_anagrams\u001b[38;5;241m.\u001b[39mappend((word, anagrams))\n", + "Cell \u001b[0;32mIn[18], line 6\u001b[0m, in \u001b[0;36mfind_anagrams\u001b[0;34m(word, dict_words)\u001b[0m\n\u001b[1;32m 4\u001b[0m anagrams \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m dict_word \u001b[38;5;129;01min\u001b[39;00m dict_words: \u001b[38;5;66;03m# O(N)\u001b[39;00m\n\u001b[0;32m----> 6\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28msorted\u001b[39m(word) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28msorted\u001b[39m(dict_word): \u001b[38;5;66;03m# O(K log K)\u001b[39;00m\n\u001b[1;32m 7\u001b[0m anagrams\u001b[38;5;241m.\u001b[39mappend(dict_word) \u001b[38;5;66;03m# O(1)\u001b[39;00m\n\u001b[1;32m 8\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m anagrams\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "# Naive implementation, it takes a long time\n", + "\n", + "def find_anagrams(word, dict_words):\n", + " anagrams = []\n", + " for dict_word in dict_words: # O(N)\n", + " if sorted(word) == sorted(dict_word): # O(K log K)\n", + " anagrams.append(dict_word) # O(1)\n", + " return anagrams\n", + "\n", + "words_anagrams = []\n", + "for word in words: # O(M)\n", + " anagrams = find_anagrams(word, dict_words)\n", + " words_anagrams.append((word, anagrams)) # O(1)" + ] + }, + { + "cell_type": "markdown", + "id": "297fdc78", + "metadata": {}, + "source": [ + "The complexity of this algorithm is O(M * N * KlogK), where M is the length of the list of words to search, N is the length of words in the dictionary, and K is the length of words." + ] + }, + { + "cell_type": "markdown", + "id": "48947a28", + "metadata": {}, + "source": [ + "# What if we pre-process the dictionary in a data structure that is better suited for this task?" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "3ad5dccd", + "metadata": {}, + "outputs": [], + "source": [ + "anagrams_map = {}\n", + "for dict_word in dict_words: # O(N)\n", + " letters = tuple(sorted(dict_word)) # O(K log K)\n", + " if letters not in anagrams_map: # O(1)\n", + " anagrams_map[letters] = [] # O(1)\n", + " anagrams_map[letters].append(dict_word) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "786fec1b", + "metadata": {}, + "outputs": [], + "source": [ + "words_anagrams = []\n", + "final_words = []\n", + "for word in words: # O(M)\n", + " letters = tuple(sorted(word)) # O(K log K)\n", + " if letters not in anagrams_map: # O(1)\n", + " print('This word is not in the system dictionary -- skipping', word)\n", + " continue\n", + " else:\n", + " final_words.append(word)\n", + " words_anagrams.append((word, anagrams_map[letters])) # O(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "dda842a1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('acer', ['acre', 'care', 'crea', 'race']),\n", + " ('acers', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('aces', ['case', 'esca']),\n", + " ('aches', ['chase']),\n", + " ('acme', ['acme', 'came', 'mace']),\n", + " ('acned', ['dance', 'decan']),\n", + " ('acre', ['acre', 'care', 'crea', 'race']),\n", + " ('acres', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('act', ['act', 'cat']),\n", + " ('acts', ['cast', 'scat']),\n", + " ('acyl', ['acyl', 'clay', 'lacy']),\n", + " ('add', ['add', 'dad']),\n", + " ('adverb', ['adverb']),\n", + " ('aesc', ['case', 'esca']),\n", + " ('aether', ['heater', 'hereat', 'reheat']),\n", + " ('aethers', ['thereas']),\n", + " ('afield', ['afield', 'defial']),\n", + " ('aft', ['aft', 'fat']),\n", + " ('agree', ['agree', 'eager', 'eagre']),\n", + " ('agrees', ['grease']),\n", + " ('ags', ['gas', 'sag']),\n", + " ('ah', ['ah', 'ha']),\n", + " ('ahs', ['ash', 'sah', 'sha']),\n", + " ('aide', ['aide', 'idea']),\n", + " ('aides', ['aside']),\n", + " ('airings', ['raising']),\n", + " ('airmen', ['marine', 'remain']),\n", + " ('alloy', ['alloy', 'loyal']),\n", + " ('almes', ['amsel', 'mesal', 'samel']),\n", + " ('alp', ['alp', 'lap', 'pal']),\n", + " ('alps', ['salp', 'slap']),\n", + " ('altern', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('altrices', ['altrices', 'selictar']),\n", + " ('alts', ['last', 'salt', 'slat']),\n", + " ('am', ['am', 'ma']),\n", + " ('amen', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('amp', ['amp', 'map', 'pam']),\n", + " ('amps', ['samp', 'spam']),\n", + " ('anglist', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('anils', ['sinal', 'slain', 'snail']),\n", + " ('ant', ['ant', 'nat', 'tan']),\n", + " ('antis', ['saint', 'satin', 'stain']),\n", + " ('antler', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('antlers', ['saltern', 'starnel', 'sternal']),\n", + " ('any', ['any', 'nay', 'yan']),\n", + " ('ape', ['ape', 'pea']),\n", + " ('aper', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('apt', ['apt', 'pat', 'tap']),\n", + " ('arb', ['bar', 'bra', 'rab']),\n", + " ('arc', ['arc', 'car']),\n", + " ('arcs', ['scar']),\n", + " ('are', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('ared', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('ares', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('argle', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('aril', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('arising', ['raising']),\n", + " ('arm', ['arm', 'mar', 'ram']),\n", + " ('armpit', ['armpit', 'impart']),\n", + " ('arms', ['arms']),\n", + " ('arse', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('art', ['art', 'rat', 'tar', 'tra']),\n", + " ('article', ['article', 'recital']),\n", + " ('articles', ['altrices', 'selictar']),\n", + " ('arts', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('arty', ['arty', 'atry', 'tray']),\n", + " ('ash', ['ash', 'sah', 'sha']),\n", + " ('aside', ['aside']),\n", + " ('aspired', ['despair', 'pardesi']),\n", + " ('asps', ['pass']),\n", + " ('ate', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('ates', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('atoners', ['noreast', 'rosetan', 'seatron', 'senator', 'treason']),\n", + " ('attic', ['attic', 'tacit']),\n", + " ('aves', ['save', 'vase']),\n", + " ('aye', ['aye', 'yea']),\n", + " ('backward', ['backward', 'drawback']),\n", + " ('bad', ['bad', 'dab']),\n", + " ('bag', ['bag', 'gab']),\n", + " ('bake', ['bake', 'beak']),\n", + " ('baker', ['baker', 'brake', 'break']),\n", + " ('balm', ['balm', 'lamb']),\n", + " ('bar', ['bar', 'bra', 'rab']),\n", + " ('bare', ['bare', 'bear', 'brae']),\n", + " ('bast', ['bast', 'bats', 'stab']),\n", + " ('bat', ['bat', 'tab']),\n", + " ('batlet', ['battel', 'battle', 'tablet']),\n", + " ('bats', ['bast', 'bats', 'stab']),\n", + " ('battel', ['battel', 'battle', 'tablet']),\n", + " ('battle', ['battel', 'battle', 'tablet']),\n", + " ('beak', ['bake', 'beak']),\n", + " ('bear', ['bare', 'bear', 'brae']),\n", + " ('begin', ['begin', 'being', 'binge']),\n", + " ('being', ['begin', 'being', 'binge']),\n", + " ('below', ['below', 'bowel', 'elbow']),\n", + " ('best', ['best']),\n", + " ('bets', ['best']),\n", + " ('binge', ['begin', 'being', 'binge']),\n", + " ('blam', ['balm', 'lamb']),\n", + " ('blot', ['blot', 'bolt']),\n", + " ('blow', ['blow', 'bowl']),\n", + " ('bludier', ['builder', 'rebuild']),\n", + " ('bluest', ['bustle', 'sublet', 'subtle']),\n", + " ('bluets', ['bustle', 'sublet', 'subtle']),\n", + " ('bolt', ['blot', 'bolt']),\n", + " ('bombed', ['bombed']),\n", + " ('borde', ['boder', 'orbed']),\n", + " ('bored', ['boder', 'orbed']),\n", + " ('bores', ['boser', 'brose', 'sober']),\n", + " ('boss', ['boss']),\n", + " ('bourne', ['unrobe']),\n", + " ('bowel', ['below', 'bowel', 'elbow']),\n", + " ('bowl', ['blow', 'bowl']),\n", + " ('bra', ['bar', 'bra', 'rab']),\n", + " ('brae', ['bare', 'bear', 'brae']),\n", + " ('brag', ['brag', 'garb', 'grab']),\n", + " ('brake', ['baker', 'brake', 'break']),\n", + " ('braved', ['adverb']),\n", + " ('break', ['baker', 'brake', 'break']),\n", + " ('brief', ['bifer', 'brief', 'fiber']),\n", + " ('brose', ['boser', 'brose', 'sober']),\n", + " ('brush', ['brush', 'shrub']),\n", + " ('buhrs', ['brush', 'shrub']),\n", + " ('builder', ['builder', 'rebuild']),\n", + " ('burden', ['bunder', 'burden', 'burned', 'unbred']),\n", + " ('burned', ['bunder', 'burden', 'burned', 'unbred']),\n", + " ('bury', ['bury', 'ruby']),\n", + " ('bush', ['bush']),\n", + " ('bust', ['bust', 'stub']),\n", + " ('bustle', ['bustle', 'sublet', 'subtle']),\n", + " ('but', ['but', 'tub']),\n", + " ('butles', ['bustle', 'sublet', 'subtle']),\n", + " ('buts', ['bust', 'stub']),\n", + " ('cab', ['bac', 'cab']),\n", + " ('cabs', ['scab']),\n", + " ('cadres', ['sacred']),\n", + " ('cafe', ['face']),\n", + " ('caller', ['caller', 'cellar', 'recall']),\n", + " ('calm', ['calm', 'clam']),\n", + " ('calo', ['alco', 'coal', 'cola', 'loca']),\n", + " ('came', ['acme', 'came', 'mace']),\n", + " ('caned', ['dance', 'decan']),\n", + " ('canoe', ['acone', 'canoe', 'ocean']),\n", + " ('cans', ['scan']),\n", + " ('cape', ['cape', 'cepa', 'pace']),\n", + " ('car', ['arc', 'car']),\n", + " ('care', ['acre', 'care', 'crea', 'race']),\n", + " ('cares', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('caret',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('carol', ['calor', 'carol', 'claro', 'coral']),\n", + " ('carp', ['carp', 'crap']),\n", + " ('cars', ['scar']),\n", + " ('carse', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('carte',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('case', ['case', 'esca']),\n", + " ('cask', ['cask', 'sack']),\n", + " ('cast', ['cast', 'scat']),\n", + " ('cat', ['act', 'cat']),\n", + " ('cater',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('cats', ['cast', 'scat']),\n", + " ('cause', ['cause', 'sauce']),\n", + " ('causes', ['causse']),\n", + " ('ceas', ['case', 'esca']),\n", + " ('cedars', ['sacred']),\n", + " ('cedi', ['dice', 'iced']),\n", + " ('cellar', ['caller', 'cellar', 'recall']),\n", + " ('cents', ['scent']),\n", + " ('cereus', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('ceruse', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('cesure', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('charm', ['charm', 'march']),\n", + " ('charmer', ['charmer', 'marcher', 'remarch']),\n", + " ('charming', ['charming']),\n", + " ('chase', ['chase']),\n", + " ('cheating', ['cheating', 'teaching']),\n", + " ('chetnik', ['kitchen', 'thicken']),\n", + " ('chin', ['chin', 'inch']),\n", + " ('chit', ['chit', 'itch']),\n", + " ('chum', ['chum', 'much']),\n", + " ('cion', ['cion', 'coin', 'icon']),\n", + " ('citrus', ['citrus', 'rictus', 'rustic']),\n", + " ('clam', ['calm', 'clam']),\n", + " ('claro', ['calor', 'carol', 'claro', 'coral']),\n", + " ('clay', ['acyl', 'clay', 'lacy']),\n", + " ('cloud', ['cloud', 'could']),\n", + " ('coal', ['alco', 'coal', 'cola', 'loca']),\n", + " ('cocaine', ['cocaine', 'oceanic']),\n", + " ('cod', ['cod', 'doc']),\n", + " ('coin', ['cion', 'coin', 'icon']),\n", + " ('cola', ['alco', 'coal', 'cola', 'loca']),\n", + " ('comics', ['cosmic']),\n", + " ('cone', ['cone', 'once']),\n", + " ('coni', ['cion', 'coin', 'icon']),\n", + " ('cool', ['cool', 'loco']),\n", + " ('coral', ['calor', 'carol', 'claro', 'coral']),\n", + " ('cork', ['cork', 'rock']),\n", + " ('corset', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('corvet', ['covert', 'vector']),\n", + " ('cosmic', ['cosmic']),\n", + " ('coster', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('could', ['cloud', 'could']),\n", + " ('covert', ['covert', 'vector']),\n", + " ('crap', ['carp', 'crap']),\n", + " ('crate',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('crews', ['screw']),\n", + " ('dab', ['bad', 'dab']),\n", + " ('dad', ['add', 'dad']),\n", + " ('dah', ['dah', 'dha', 'had']),\n", + " ('dairy', ['dairy', 'diary', 'yaird']),\n", + " ('dale', ['dale', 'deal', 'lade', 'lead']),\n", + " ('dalets', ['desalt', 'salted']),\n", + " ('dali', ['dali', 'dial', 'laid']),\n", + " ('dam', ['dam', 'mad']),\n", + " ('dance', ['dance', 'decan']),\n", + " ('dare', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('dashed', ['dashed', 'shaded']),\n", + " ('dawn', ['dawn', 'wand']),\n", + " ('deaf', ['deaf', 'fade']),\n", + " ('deal', ['dale', 'deal', 'lade', 'lead']),\n", + " ('dealer', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('dear', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('dearer', ['reader', 'redare', 'reread']),\n", + " ('death', ['death']),\n", + " ('deaws', ['sawed']),\n", + " ('declines', ['licensed', 'silenced']),\n", + " ('decree', ['decree', 'recede']),\n", + " ('deens', ['dense', 'needs']),\n", + " ('defer', ['defer', 'freed']),\n", + " ('deil', ['idle', 'lied']),\n", + " ('delayer', ['delayer', 'layered', 'redelay']),\n", + " ('deli', ['idle', 'lied']),\n", + " ('deltas', ['desalt', 'salted']),\n", + " ('denes', ['dense', 'needs']),\n", + " ('dense', ['dense', 'needs']),\n", + " ('denser', ['resend', 'sender']),\n", + " ('desalt', ['desalt', 'salted']),\n", + " ('deserver', ['deserver', 'reserved', 'reversed']),\n", + " ('despair', ['despair', 'pardesi']),\n", + " ('devote', ['devote']),\n", + " ('dew', ['dew', 'wed']),\n", + " ('dial', ['dali', 'dial', 'laid']),\n", + " ('diaper', ['diaper', 'paired']),\n", + " ('diapers', ['despair', 'pardesi']),\n", + " ('diary', ['dairy', 'diary', 'yaird']),\n", + " ('dice', ['dice', 'iced']),\n", + " ('diel', ['idle', 'lied']),\n", + " ('diet', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('dikes', ['skied']),\n", + " ('dimple', ['dimple']),\n", + " ('direr', ['drier', 'rider']),\n", + " ('disease', ['disease', 'seaside']),\n", + " ('disk', ['disk', 'skid']),\n", + " ('dite', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('doc', ['cod', 'doc']),\n", + " ('doen', ['done', 'node']),\n", + " ('dog', ['dog', 'god']),\n", + " ('dogs', ['dogs']),\n", + " ('don', ['don', 'nod']),\n", + " ('done', ['done', 'node']),\n", + " ('doom', ['doom', 'mood']),\n", + " ('dozen', ['dozen', 'zoned']),\n", + " ('draw', ['draw', 'ward']),\n", + " ('drawback', ['backward', 'drawback']),\n", + " ('dreare', ['reader', 'redare', 'reread']),\n", + " ('drier', ['drier', 'rider']),\n", + " ('dune', ['dune', 'nude', 'unde']),\n", + " ('dunite', ['dunite', 'united', 'untied']),\n", + " ('dusty', ['dusty', 'study']),\n", + " ('eager', ['agree', 'eager', 'eagre']),\n", + " ('eagers', ['grease']),\n", + " ('eagre', ['agree', 'eager', 'eagre']),\n", + " ('eagres', ['grease']),\n", + " ('ear', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('eard', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('early', ['early', 'layer', 'relay']),\n", + " ('earn', ['earn', 'near', 'rane']),\n", + " ('earner', ['earner']),\n", + " ('ears', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('earthy', ['earthy', 'hearty', 'yearth']),\n", + " ('east', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('eastling', ['genitals', 'stealing']),\n", + " ('eat', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('eath', ['haet', 'hate', 'heat']),\n", + " ('eats', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('edit', ['diet', 'dite', 'edit', 'tide', 'tied']),\n", + " ('eel', ['eel', 'lee']),\n", + " ('egos', ['goes', 'sego']),\n", + " ('eh', ['eh', 'he']),\n", + " ('eild', ['idle', 'lied']),\n", + " ('elbow', ['below', 'bowel', 'elbow']),\n", + " ('elints', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('emit', ['emit', 'item', 'mite', 'time']),\n", + " ('emits', ['metis', 'smite', 'stime', 'times']),\n", + " ('emoter', ['meteor', 'remote']),\n", + " ('enders', ['resend', 'sender']),\n", + " ('enfiring', ['infringe', 'refining']),\n", + " ('enlist', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('enlisted', ['enlisted', 'lintseed']),\n", + " ('era', ['aer', 'are', 'ear', 'era', 'rea']),\n", + " ('eras', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('eros', ['eros', 'rose', 'sero', 'sore']),\n", + " ('escar', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('escort', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('ester',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('eta', ['ate', 'eat', 'eta', 'tae', 'tea']),\n", + " ('etas', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('ether', ['ether', 'rethe', 'theer', 'there', 'three']),\n", + " ('evil', ['evil', 'live', 'veil', 'vile', 'vlei']),\n", + " ('evils', ['slive']),\n", + " ('ewts', ['stew', 'west']),\n", + " ('except', ['except', 'expect']),\n", + " ('exist', ['exist', 'sixte']),\n", + " ('exits', ['exist', 'sixte']),\n", + " ('expect', ['except', 'expect']),\n", + " ('face', ['face']),\n", + " ('fade', ['deaf', 'fade']),\n", + " ('failed', ['afield', 'defial']),\n", + " ('faker', ['faker', 'freak']),\n", + " ('fare', ['fare', 'fear', 'frae']),\n", + " ('farmed', ['framed']),\n", + " ('farming', ['farming', 'framing']),\n", + " ('fast', ['fast', 'saft']),\n", + " ('fat', ['aft', 'fat']),\n", + " ('fate', ['atef', 'fate', 'feat']),\n", + " ('fats', ['fast', 'saft']),\n", + " ('fear', ['fare', 'fear', 'frae']),\n", + " ('feat', ['atef', 'fate', 'feat']),\n", + " ('feel', ['feel', 'flee']),\n", + " ('feer', ['feer', 'free', 'reef']),\n", + " ('felid', ['felid', 'field']),\n", + " ('felt', ['felt', 'flet', 'left']),\n", + " ('fere', ['feer', 'free', 'reef']),\n", + " ('feta', ['atef', 'fate', 'feat']),\n", + " ('fiber', ['bifer', 'brief', 'fiber']),\n", + " ('fibre', ['bifer', 'brief', 'fiber']),\n", + " ('field', ['felid', 'field']),\n", + " ('filed', ['felid', 'field']),\n", + " ('filer', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('filets', ['itself', 'stifle']),\n", + " ('filler', ['filler', 'refill']),\n", + " ('finder', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('finer', ['finer', 'infer']),\n", + " ('finger', ['finger', 'fringe']),\n", + " ('fired', ['fired', 'fried']),\n", + " ('fires', ['serif']),\n", + " ('fist', ['fist', 'sift']),\n", + " ('fitness', ['fitness']),\n", + " ('fits', ['fist', 'sift']),\n", + " ('flee', ['feel', 'flee']),\n", + " ('flesh', ['flesh', 'shelf']),\n", + " ('flied', ['felid', 'field']),\n", + " ('flier', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('fliest', ['itself', 'stifle']),\n", + " ('flites', ['itself', 'stifle']),\n", + " ('flog', ['flog', 'golf']),\n", + " ('flow', ['flow', 'fowl', 'wolf']),\n", + " ('flue', ['flue', 'fuel']),\n", + " ('form', ['form', 'from']),\n", + " ('former', ['former', 'reform']),\n", + " ('forth', ['forth', 'froth']),\n", + " ('fowl', ['flow', 'fowl', 'wolf']),\n", + " ('frae', ['fare', 'fear', 'frae']),\n", + " ('framed', ['framed']),\n", + " ('framing', ['farming', 'framing']),\n", + " ('freak', ['faker', 'freak']),\n", + " ('free', ['feer', 'free', 'reef']),\n", + " ('freed', ['defer', 'freed']),\n", + " ('fried', ['fired', 'fried']),\n", + " ('friend', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('fries', ['serif']),\n", + " ('fringe', ['finger', 'fringe']),\n", + " ('frise', ['serif']),\n", + " ('from', ['form', 'from']),\n", + " ('froth', ['forth', 'froth']),\n", + " ('fuel', ['flue', 'fuel']),\n", + " ('furs', ['surf']),\n", + " ('gab', ['bag', 'gab']),\n", + " ('gals', ['slag']),\n", + " ('gaps', ['gasp']),\n", + " ('garb', ['brag', 'garb', 'grab']),\n", + " ('gas', ['gas', 'sag']),\n", + " ('gasp', ['gasp']),\n", + " ('gater', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('geare', ['agree', 'eager', 'eagre']),\n", + " ('geares', ['grease']),\n", + " ('gel', ['gel', 'leg']),\n", + " ('gelatins', ['genitals', 'stealing']),\n", + " ('genitals', ['genitals', 'stealing']),\n", + " ('geos', ['goes', 'sego']),\n", + " ('girn', ['girn', 'grin', 'ring']),\n", + " ('glare', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('god', ['dog', 'god']),\n", + " ('gods', ['dogs']),\n", + " ('goes', ['goes', 'sego']),\n", + " ('golf', ['flog', 'golf']),\n", + " ('grab', ['brag', 'garb', 'grab']),\n", + " ('grate', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('grease', ['grease']),\n", + " ('great', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('grin', ['girn', 'grin', 'ring']),\n", + " ('grues', ['surge']),\n", + " ('gulp', ['gulp', 'plug']),\n", + " ('gum', ['gum', 'mug']),\n", + " ('gunshot', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('gust', ['gust', 'stug']),\n", + " ('guts', ['gust', 'stug']),\n", + " ('ha', ['ah', 'ha']),\n", + " ('had', ['dah', 'dha', 'had']),\n", + " ('haet', ['haet', 'hate', 'heat']),\n", + " ('halls', ['shall']),\n", + " ('halses', ['hassel', 'hassle']),\n", + " ('hams', ['mash', 'samh', 'sham']),\n", + " ('hangover', ['overhang']),\n", + " ('harps', ['sharp', 'shrap']),\n", + " ('has', ['ash', 'sah', 'sha']),\n", + " ('hassel', ['hassel', 'hassle']),\n", + " ('hassle', ['hassel', 'hassle']),\n", + " ('hate', ['haet', 'hate', 'heat']),\n", + " ('hated', ['death']),\n", + " ('hay', ['hay', 'yah']),\n", + " ('he', ['eh', 'he']),\n", + " ('hearty', ['earthy', 'hearty', 'yearth']),\n", + " ('heat', ['haet', 'hate', 'heat']),\n", + " ('heater', ['heater', 'hereat', 'reheat']),\n", + " ('heaters', ['thereas']),\n", + " ('heir', ['heir', 'hire']),\n", + " ('heirs', ['hirse', 'shier', 'shire']),\n", + " ('hereat', ['heater', 'hereat', 'reheat']),\n", + " ('hewn', ['hewn', 'when']),\n", + " ('hikes', ['sheik']),\n", + " ('hire', ['heir', 'hire']),\n", + " ('hires', ['hirse', 'shier', 'shire']),\n", + " ('ho', ['ho', 'oh']),\n", + " ('hocks', ['shock']),\n", + " ('hoes', ['hose', 'shoe']),\n", + " ('hognuts', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('hooks', ['shook']),\n", + " ('hose', ['hose', 'shoe']),\n", + " ('host', ['host', 'shot', 'tosh']),\n", + " ('hots', ['host', 'shot', 'tosh']),\n", + " ('houts', ['shout', 'south']),\n", + " ('how', ['how', 'who']),\n", + " ('howres', ['shower']),\n", + " ('hubs', ['bush']),\n", + " ('hug', ['hug', 'ugh']),\n", + " ('hums', ['mush']),\n", + " ('hustle', ['hustle', 'sleuth']),\n", + " ('hustling', ['sunlight']),\n", + " ('huts', ['shut', 'thus', 'tush']),\n", + " ('iced', ['dice', 'iced']),\n", + " ('icon', ['cion', 'coin', 'icon']),\n", + " ('idea', ['aide', 'idea']),\n", + " ('ideas', ['aside']),\n", + " ('idle', ['idle', 'lied']),\n", + " ('impart', ['armpit', 'impart']),\n", + " ('impled', ['dimple']),\n", + " ('imprints', ['misprint']),\n", + " ('incest', ['encist', 'incest', 'insect', 'scient']),\n", + " ('inch', ['chin', 'inch']),\n", + " ('infer', ['finer', 'infer']),\n", + " ('infests', ['fitness']),\n", + " ('infringe', ['infringe', 'refining']),\n", + " ('ink', ['ink', 'kin']),\n", + " ('inks', ['inks', 'sink', 'skin']),\n", + " ('inlets', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('ins', ['sin']),\n", + " ('insect', ['encist', 'incest', 'insect', 'scient']),\n", + " ('instar', ['instar', 'santir', 'strain']),\n", + " ('insult', ['insult', 'sunlit', 'unlist', 'unslit']),\n", + " ('itch', ['chit', 'itch']),\n", + " ('item', ['emit', 'item', 'mite', 'time']),\n", + " ('items', ['metis', 'smite', 'stime', 'times']),\n", + " ('its', ['ist', 'its', 'sit']),\n", + " ('itself', ['itself', 'stifle']),\n", + " ('jest', ['jest']),\n", + " ('jets', ['jest']),\n", + " ('joiner', ['joiner', 'rejoin']),\n", + " ('just', ['just']),\n", + " ('juts', ['just']),\n", + " ('kale', ['kale', 'lake', 'leak']),\n", + " ('kebar', ['baker', 'brake', 'break']),\n", + " ('keel', ['keel', 'kele', 'leek']),\n", + " ('keels', ['skeel', 'sleek']),\n", + " ('keen', ['keen', 'knee']),\n", + " ('kids', ['disk', 'skid']),\n", + " ('kills', ['skill']),\n", + " ('kiln', ['kiln', 'link']),\n", + " ('kin', ['ink', 'kin']),\n", + " ('kins', ['inks', 'sink', 'skin']),\n", + " ('kiss', ['kiss']),\n", + " ('kisser', ['kisser', 'rekiss']),\n", + " ('kitchen', ['kitchen', 'thicken']),\n", + " ('knee', ['keen', 'knee']),\n", + " ('koas', ['asok', 'soak', 'soka']),\n", + " ('krises', ['kisser', 'rekiss']),\n", + " ('lacy', ['acyl', 'clay', 'lacy']),\n", + " ('lade', ['dale', 'deal', 'lade', 'lead']),\n", + " ('laered', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('lager', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('lags', ['slag']),\n", + " ('laid', ['dali', 'dial', 'laid']),\n", + " ('lair', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lake', ['kale', 'lake', 'leak']),\n", + " ('lamb', ['balm', 'lamb']),\n", + " ('lameness', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('lames', ['amsel', 'mesal', 'samel']),\n", + " ('lamp', ['lamp', 'palm']),\n", + " ('lap', ['alp', 'lap', 'pal']),\n", + " ('lapins', ['spinal']),\n", + " ('laps', ['salp', 'slap']),\n", + " ('lapse', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('large', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('lari', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lases', ['salse']),\n", + " ('lashes', ['hassel', 'hassle']),\n", + " ('last', ['last', 'salt', 'slat']),\n", + " ('lasted', ['desalt', 'salted']),\n", + " ('lasting', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('late', ['atle', 'laet', 'late', 'leat', 'tael', 'tale', 'teal']),\n", + " ('lats', ['last', 'salt', 'slat']),\n", + " ('layer', ['early', 'layer', 'relay']),\n", + " ('layered', ['delayer', 'layered', 'redelay']),\n", + " ('layers', ['reslay', 'slayer']),\n", + " ('laymen', ['meanly', 'namely']),\n", + " ('layover', ['layover', 'overlay']),\n", + " ('lays', ['slay']),\n", + " ('lead', ['dale', 'deal', 'lade', 'lead']),\n", + " ('leader', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('leak', ['kale', 'lake', 'leak']),\n", + " ('leams', ['amsel', 'mesal', 'samel']),\n", + " ('leap', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('leaps', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('leared', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('learnt', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('leary', ['early', 'layer', 'relay']),\n", + " ('leat', ['atle', 'laet', 'late', 'leat', 'tael', 'tale', 'teal']),\n", + " ('lee', ['eel', 'lee']),\n", + " ('leek', ['keel', 'kele', 'leek']),\n", + " ('leeks', ['skeel', 'sleek']),\n", + " ('left', ['felt', 'flet', 'left']),\n", + " ('leg', ['gel', 'leg']),\n", + " ('leke', ['keel', 'kele', 'leek']),\n", + " ('lemon', ['lemon', 'melon', 'monel']),\n", + " ('leper', ['leper', 'perle', 'repel']),\n", + " ('lessened', ['needless', 'seldseen']),\n", + " ('lessons', ['sonless']),\n", + " ('levis', ['slive']),\n", + " ('liar', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('license', ['license', 'selenic', 'silence']),\n", + " ('licensed', ['licensed', 'silenced']),\n", + " ('licks', ['slick']),\n", + " ('lied', ['idle', 'lied']),\n", + " ('lifer', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('lime', ['lime', 'mile']),\n", + " ('limes', ['limes', 'slime', 'smile']),\n", + " ('limped', ['dimple']),\n", + " ('link', ['kiln', 'link']),\n", + " ('lino', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lintseed', ['enlisted', 'lintseed']),\n", + " ('lion', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lippers', ['slipper']),\n", + " ('lips', ['lisp', 'slip']),\n", + " ('lira', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('lisp', ['lisp', 'slip']),\n", + " ('list', ['list', 'silt', 'slit']),\n", + " ('listen', ['enlist', 'listen', 'silent', 'tinsel']),\n", + " ('listened', ['enlisted', 'lintseed']),\n", + " ('listing', ['listing', 'silting']),\n", + " ('lits', ['list', 'silt', 'slit']),\n", + " ('live', ['evil', 'live', 'veil', 'vile', 'vlei']),\n", + " ('lives', ['slive']),\n", + " ('loca', ['alco', 'coal', 'cola', 'loca']),\n", + " ('loco', ['cool', 'loco']),\n", + " ('loin', ['lino', 'lion', 'loin', 'noil']),\n", + " ('lookout', ['lookout', 'outlook']),\n", + " ('looped', ['poodle']),\n", + " ('loops', ['polos', 'sloop', 'spool']),\n", + " ('loot', ['loot', 'tool']),\n", + " ('lose', ['lose', 'sloe', 'sole']),\n", + " ('lost', ['lost', 'lots', 'slot']),\n", + " ('loto', ['loot', 'tool']),\n", + " ('lots', ['lost', 'lots', 'slot']),\n", + " ('loyal', ['alloy', 'loyal']),\n", + " ('lump', ['lump', 'plum']),\n", + " ('lure', ['lure', 'rule']),\n", + " ('lured', ['duler', 'urled']),\n", + " ('lures', ['sluer']),\n", + " ('luring', ['ruling', 'urling']),\n", + " ('ma', ['am', 'ma']),\n", + " ('mace', ['acme', 'came', 'mace']),\n", + " ('mad', ['dam', 'mad']),\n", + " ('mainer', ['marine', 'remain']),\n", + " ('maleness', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('males', ['amsel', 'mesal', 'samel']),\n", + " ('mane', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('maneless', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('manors', ['ramson', 'ransom']),\n", + " ('manures', ['surname']),\n", + " ('map', ['amp', 'map', 'pam']),\n", + " ('maples', ['sample']),\n", + " ('maps', ['samp', 'spam']),\n", + " ('mar', ['arm', 'mar', 'ram']),\n", + " ('march', ['charm', 'march']),\n", + " ('marcher', ['charmer', 'marcher', 'remarch']),\n", + " ('marching', ['charming']),\n", + " ('mare', ['mare', 'rame', 'ream']),\n", + " ('marine', ['marine', 'remain']),\n", + " ('marital', ['marital', 'martial']),\n", + " ('marons', ['ramson', 'ransom']),\n", + " ('mars', ['arms']),\n", + " ('martial', ['marital', 'martial']),\n", + " ('marts', ['smart', 'stram']),\n", + " ('mash', ['mash', 'samh', 'sham']),\n", + " ('mast', ['mast', 'stam']),\n", + " ('mate', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('mated', ['metad']),\n", + " ('mates', ['steam', 'stema']),\n", + " ('mating', ['mating']),\n", + " ('mats', ['mast', 'stam']),\n", + " ('meals', ['amsel', 'mesal', 'samel']),\n", + " ('mean', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('meanly', ['meanly', 'namely']),\n", + " ('meat', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('meats', ['steam', 'stema']),\n", + " ('melas', ['amsel', 'mesal', 'samel']),\n", + " ('melon', ['lemon', 'melon', 'monel']),\n", + " ('melts', ['smelt']),\n", + " ('mesal', ['amsel', 'mesal', 'samel']),\n", + " ('meta', ['mate', 'meat', 'meta', 'tame', 'team']),\n", + " ('meteor', ['meteor', 'remote']),\n", + " ('metis', ['metis', 'smite', 'stime', 'times']),\n", + " ('metols', ['molest']),\n", + " ('mile', ['lime', 'mile']),\n", + " ('miles', ['limes', 'slime', 'smile']),\n", + " ('misprint', ['misprint']),\n", + " ('mite', ['emit', 'item', 'mite', 'time']),\n", + " ('mites', ['metis', 'smite', 'stime', 'times']),\n", + " ('mobbed', ['bombed']),\n", + " ('moist', ['moist']),\n", + " ('moits', ['moist']),\n", + " ('molest', ['molest']),\n", + " ('mono', ['mono', 'moon']),\n", + " ('mood', ['doom', 'mood']),\n", + " ('moon', ['mono', 'moon']),\n", + " ('moor', ['moor', 'moro', 'room']),\n", + " ('motels', ['molest']),\n", + " ('much', ['chum', 'much']),\n", + " ('mug', ['gum', 'mug']),\n", + " ('murenas', ['surname']),\n", + " ('mush', ['mush']),\n", + " ('mutilate', ['mutilate', 'ultimate']),\n", + " ('nags', ['sang', 'snag']),\n", + " ('nails', ['sinal', 'slain', 'snail']),\n", + " ('name', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('nameless', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('namely', ['meanly', 'namely']),\n", + " ('nap', ['nap', 'pan']),\n", + " ('nare', ['earn', 'near', 'rane']),\n", + " ('nat', ['ant', 'nat', 'tan']),\n", + " ('nay', ['any', 'nay', 'yan']),\n", + " ('near', ['earn', 'near', 'rane']),\n", + " ('nearer', ['earner']),\n", + " ('needless', ['needless', 'seldseen']),\n", + " ('needs', ['dense', 'needs']),\n", + " ('nema', ['amen', 'enam', 'mane', 'mean', 'name', 'nema']),\n", + " ('neon', ['neon', 'none']),\n", + " ('nest', ['nest', 'sent', 'sten']),\n", + " ('net', ['net', 'ten']),\n", + " ('nets', ['nest', 'sent', 'sten']),\n", + " ('nevi', ['vein', 'vine']),\n", + " ('nicest', ['encist', 'incest', 'insect', 'scient']),\n", + " ('night', ['night', 'thing']),\n", + " ('nights', ['nights']),\n", + " ('nip', ['nip', 'pin']),\n", + " ('nips', ['snip', 'spin']),\n", + " ('nis', ['sin']),\n", + " ('no', ['no', 'on']),\n", + " ('nod', ['don', 'nod']),\n", + " ('node', ['done', 'node']),\n", + " ('noil', ['lino', 'lion', 'loin', 'noil']),\n", + " ('none', ['neon', 'none']),\n", + " ('normas', ['ramson', 'ransom']),\n", + " ('not', ['not', 'ton']),\n", + " ('note', ['note', 'tone']),\n", + " ('noted', ['noted', 'toned']),\n", + " ('noteless', ['noteless', 'toneless']),\n", + " ('notices', ['contise', 'noetics', 'section']),\n", + " ('noughts', ['gunshot', 'shotgun', 'uhtsong']),\n", + " ('now', ['now', 'own', 'won']),\n", + " ('nows', ['snow', 'sown']),\n", + " ('nude', ['dune', 'nude', 'unde']),\n", + " ('nudity', ['nudity', 'untidy']),\n", + " ('nur', ['run', 'urn']),\n", + " ('nurs', ['snur']),\n", + " ('oaks', ['asok', 'soak', 'soka']),\n", + " ('ocean', ['acone', 'canoe', 'ocean']),\n", + " ('oceanic', ['cocaine', 'oceanic']),\n", + " ('oh', ['ho', 'oh']),\n", + " ('oils', ['silo', 'siol', 'soil', 'soli']),\n", + " ('okas', ['asok', 'soak', 'soka']),\n", + " ('oles', ['lose', 'sloe', 'sole']),\n", + " ('omits', ['moist']),\n", + " ('on', ['no', 'on']),\n", + " ('once', ['cone', 'once']),\n", + " ('opener', ['opener', 'reopen', 'repone']),\n", + " ('opt', ['opt', 'pot', 'top']),\n", + " ('option', ['option', 'potion']),\n", + " ('opts', ['post', 'spot', 'stop', 'tops']),\n", + " ('orbed', ['boder', 'orbed']),\n", + " ('ores', ['eros', 'rose', 'sero', 'sore']),\n", + " ('organist', ['orangist', 'organist', 'roasting', 'signator']),\n", + " ('oriental', ['oriental', 'relation']),\n", + " ('ought', ['ought', 'tough']),\n", + " ('oughts', ['sought']),\n", + " ('ours', ['ours', 'sour']),\n", + " ('outlook', ['lookout', 'outlook']),\n", + " ('overhang', ['overhang']),\n", + " ('overlay', ['layover', 'overlay']),\n", + " ('own', ['now', 'own', 'won']),\n", + " ('owns', ['snow', 'sown']),\n", + " ('owt', ['tow', 'two', 'wot']),\n", + " ('pace', ['cape', 'cepa', 'pace']),\n", + " ('packer', ['packer', 'repack']),\n", + " ('padle', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('painter', ['painter', 'pertain', 'repaint']),\n", + " ('paired', ['diaper', 'paired']),\n", + " ('pal', ['alp', 'lap', 'pal']),\n", + " ('pale', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('paled', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pales', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('palest', ['pastel', 'septal', 'staple']),\n", + " ('palets', ['pastel', 'septal', 'staple']),\n", + " ('palm', ['lamp', 'palm']),\n", + " ('pals', ['salp', 'slap']),\n", + " ('pam', ['amp', 'map', 'pam']),\n", + " ('pams', ['samp', 'spam']),\n", + " ('pan', ['nap', 'pan']),\n", + " ('panel', ['panel', 'penal', 'plane']),\n", + " ('pardie', ['diaper', 'paired']),\n", + " ('pare', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('parks', ['spark']),\n", + " ('partim', ['armpit', 'impart']),\n", + " ('parts', ['spart', 'sprat', 'strap', 'traps']),\n", + " ('pass', ['pass']),\n", + " ('pastel', ['pastel', 'septal', 'staple']),\n", + " ('pat', ['apt', 'pat', 'tap']),\n", + " ('pate', ['pate', 'peat', 'tape', 'teap']),\n", + " ('pay', ['pay', 'pya', 'yap']),\n", + " ('pea', ['ape', 'pea']),\n", + " ('peaks', ['sapek', 'speak']),\n", + " ('peal', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('peals', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pear', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('peat', ['pate', 'peat', 'tape', 'teap']),\n", + " ('pedal', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pela', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('pelas', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pelmas', ['sample']),\n", + " ('peltas', ['pastel', 'septal', 'staple']),\n", + " ('pelts', ['slept', 'spelt', 'splet']),\n", + " ('penal', ['panel', 'penal', 'plane']),\n", + " ('penster', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('per', ['per', 'rep']),\n", + " ('pereon', ['opener', 'reopen', 'repone']),\n", + " ('peri', ['peri', 'pier', 'ripe']),\n", + " ('perone', ['opener', 'reopen', 'repone']),\n", + " ('pertain', ['painter', 'pertain', 'repaint']),\n", + " ('pest', ['pest', 'sept', 'spet', 'step']),\n", + " ('petals', ['pastel', 'septal', 'staple']),\n", + " ('pets', ['pest', 'sept', 'spet', 'step']),\n", + " ('pier', ['peri', 'pier', 'ripe']),\n", + " ('pills', ['spill']),\n", + " ('pin', ['nip', 'pin']),\n", + " ('pinots', ['piston']),\n", + " ('pins', ['snip', 'spin']),\n", + " ('pintos', ['piston']),\n", + " ('piston', ['piston']),\n", + " ('pit', ['pit', 'tip']),\n", + " ('pitons', ['piston']),\n", + " ('pits', ['pist', 'spit']),\n", + " ('plains', ['spinal']),\n", + " ('plane', ['panel', 'penal', 'plane']),\n", + " ('plaste', ['pastel', 'septal', 'staple']),\n", + " ('plates', ['pastel', 'septal', 'staple']),\n", + " ('plea', ['leap', 'lepa', 'pale', 'peal', 'plea']),\n", + " ('plead', ['padle', 'paled', 'pedal', 'plead']),\n", + " ('pleas', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('pleats', ['pastel', 'septal', 'staple']),\n", + " ('plena', ['panel', 'penal', 'plane']),\n", + " ('plug', ['gulp', 'plug']),\n", + " ('plum', ['lump', 'plum']),\n", + " ('points', ['piston']),\n", + " ('polos', ['polos', 'sloop', 'spool']),\n", + " ('poodle', ['poodle']),\n", + " ('pooled', ['poodle']),\n", + " ('pools', ['polos', 'sloop', 'spool']),\n", + " ('pore', ['pore', 'rope']),\n", + " ('pores', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('ports', ['sport', 'strop']),\n", + " ('poser', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('post', ['post', 'spot', 'stop', 'tops']),\n", + " ('postin', ['piston']),\n", + " ('postman', ['postman', 'topsman']),\n", + " ('pot', ['opt', 'pot', 'top']),\n", + " ('potins', ['piston']),\n", + " ('potion', ['option', 'potion']),\n", + " ('pots', ['post', 'spot', 'stop', 'tops']),\n", + " ('praised', ['despair', 'pardesi']),\n", + " ('prats', ['spart', 'sprat', 'strap', 'traps']),\n", + " ('prays', ['raspy', 'spary', 'spray']),\n", + " ('pre', ['per', 'rep']),\n", + " ('present', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('printer', ['printer', 'reprint']),\n", + " ('pronto', ['pronto', 'proton']),\n", + " ('prose', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('prost', ['sport', 'strop']),\n", + " ('proton', ['pronto', 'proton']),\n", + " ('pya', ['pay', 'pya', 'yap']),\n", + " ('quiet', ['quiet', 'quite']),\n", + " ('quite', ['quiet', 'quite']),\n", + " ('race', ['acre', 'care', 'crea', 'race']),\n", + " ('races', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('racket', ['racket', 'retack', 'tacker']),\n", + " ('rade', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('ragee', ['agree', 'eager', 'eagre']),\n", + " ('ragees', ['grease']),\n", + " ('raginis', ['raising']),\n", + " ('rail', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('raising', ['raising']),\n", + " ('ram', ['arm', 'mar', 'ram']),\n", + " ('rams', ['arms']),\n", + " ('ramson', ['ramson', 'ransom']),\n", + " ('ransom', ['ramson', 'ransom']),\n", + " ('rape', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('rare', ['rare', 'rear']),\n", + " ('rase', ['arse', 'rase', 'sare', 'sear', 'sera']),\n", + " ('raspy', ['raspy', 'spary', 'spray']),\n", + " ('rast', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('rat', ['art', 'rat', 'tar', 'tra']),\n", + " ('rats', ['sart', 'star', 'stra', 'tars', 'tsar']),\n", + " ('raw', ['raw', 'war']),\n", + " ('rayle', ['early', 'layer', 'relay']),\n", + " ('rayles', ['reslay', 'slayer']),\n", + " ('react',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('read', ['ared', 'daer', 'dare', 'dear', 'read']),\n", + " ('reader', ['reader', 'redare', 'reread']),\n", + " ('realist', ['realist', 'saltier']),\n", + " ('ream', ['mare', 'rame', 'ream']),\n", + " ('rean', ['earn', 'near', 'rane']),\n", + " ('reap', ['aper', 'pare', 'pear', 'rape', 'reap']),\n", + " ('rear', ['rare', 'rear']),\n", + " ('reared', ['reader', 'redare', 'reread']),\n", + " ('rebuild', ['builder', 'rebuild']),\n", + " ('recall', ['caller', 'cellar', 'recall']),\n", + " ('recede', ['decree', 'recede']),\n", + " ('recital', ['article', 'recital']),\n", + " ('recitals', ['altrices', 'selictar']),\n", + " ('recta',\n", + " ['caret',\n", + " 'carte',\n", + " 'cater',\n", + " 'crate',\n", + " 'creat',\n", + " 'creta',\n", + " 'react',\n", + " 'recta',\n", + " 'trace']),\n", + " ('rectos', ['corset', 'coster', 'escort', 'scoter', 'sector']),\n", + " ('recuse', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('recused', ['seducer']),\n", + " ('redeal', ['dealer', 'leader', 'redeal', 'relade', 'relead']),\n", + " ('redear', ['reader', 'redare', 'reread']),\n", + " ('redfin', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('reduces', ['seducer']),\n", + " ('reearn', ['earner']),\n", + " ('reef', ['feer', 'free', 'reef']),\n", + " ('reest',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('refed', ['defer', 'freed']),\n", + " ('refill', ['filler', 'refill']),\n", + " ('refind', ['finder', 'friend', 'redfin', 'refind']),\n", + " ('refining', ['infringe', 'refining']),\n", + " ('reform', ['former', 'reform']),\n", + " ('regal', ['argel', 'ergal', 'garle', 'glare', 'lager', 'large', 'regal']),\n", + " ('reheat', ['heater', 'hereat', 'reheat']),\n", + " ('reheats', ['thereas']),\n", + " ('reifs', ['serif']),\n", + " ('reins', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('reird', ['drier', 'rider']),\n", + " ('reists', ['resist', 'restis', 'sister']),\n", + " ('rejoin', ['joiner', 'rejoin']),\n", + " ('relation', ['oriental', 'relation']),\n", + " ('relay', ['early', 'layer', 'relay']),\n", + " ('relayed', ['delayer', 'layered', 'redelay']),\n", + " ('relays', ['reslay', 'slayer']),\n", + " ('remain', ['marine', 'remain']),\n", + " ('remote', ['meteor', 'remote']),\n", + " ('rental', ['altern', 'antler', 'learnt', 'rental', 'ternal']),\n", + " ('rentals', ['saltern', 'starnel', 'sternal']),\n", + " ('reopen', ['opener', 'reopen', 'repone']),\n", + " ('rep', ['per', 'rep']),\n", + " ('repack', ['packer', 'repack']),\n", + " ('repaid', ['diaper', 'paired']),\n", + " ('repaint', ['painter', 'pertain', 'repaint']),\n", + " ('repel', ['leper', 'perle', 'repel']),\n", + " ('repents', ['penster', 'present', 'serpent', 'strepen']),\n", + " ('repins', ['respin', 'sniper']),\n", + " ('repo', ['pore', 'rope']),\n", + " ('repone', ['opener', 'reopen', 'repone']),\n", + " ('repos', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('reprint', ['printer', 'reprint']),\n", + " ('reread', ['reader', 'redare', 'reread']),\n", + " ('rescue', ['ceruse', 'recuse', 'rescue', 'secure']),\n", + " ('rescued', ['seducer']),\n", + " ('resell', ['resell', 'seller']),\n", + " ('resend', ['resend', 'sender']),\n", + " ('reserve', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reserved', ['deserver', 'reserved', 'reversed']),\n", + " ('reset',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('reshow', ['shower']),\n", + " ('resin', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('resist', ['resist', 'restis', 'sister']),\n", + " ('resits', ['resist', 'restis', 'sister']),\n", + " ('retack', ['racket', 'retack', 'tacker']),\n", + " ('retag', ['gater', 'grate', 'great', 'retag', 'targe']),\n", + " ('retails', ['realist', 'saltier']),\n", + " ('retes',\n", + " ['ester',\n", + " 'estre',\n", + " 'reest',\n", + " 'reset',\n", + " 'steer',\n", + " 'stere',\n", + " 'stree',\n", + " 'terse',\n", + " 'tsere']),\n", + " ('rethink', ['rethink', 'thinker']),\n", + " ('retrain', ['arterin', 'retrain', 'terrain', 'trainer']),\n", + " ('retund', ['runted', 'tunder', 'turned']),\n", + " ('reveres', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reverse', ['reserve', 'resever', 'reverse', 'severer']),\n", + " ('reversed', ['deserver', 'reserved', 'reversed']),\n", + " ('review', ['review', 'viewer']),\n", + " ('rhies', ['hirse', 'shier', 'shire']),\n", + " ('rial', ['aril', 'lair', 'lari', 'liar', 'lira', 'rail', 'rial']),\n", + " ('rictus', ['citrus', 'rictus', 'rustic']),\n", + " ('rider', ['drier', 'rider']),\n", + " ('rifle', ['filer', 'flier', 'lifer', 'rifle']),\n", + " ('rines', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('ring', ['girn', 'grin', 'ring']),\n", + " ('rinse', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('ripe', ['peri', 'pier', 'ripe']),\n", + " ('ripens', ['respin', 'sniper']),\n", + " ('ripples', ['slipper']),\n", + " ('risen', ['reins', 'resin', 'rinse', 'risen', 'serin', 'siren']),\n", + " ('rite', ['iter', 'reit', 'rite', 'tier', 'tire']),\n", + " ('rival', ['rival', 'viral']),\n", + " ('roasting', ['orangist', 'organist', 'roasting', 'signator']),\n", + " ('robed', ['boder', 'orbed']),\n", + " ('robes', ['boser', 'brose', 'sober']),\n", + " ('rock', ['cork', 'rock']),\n", + " ('roes', ['eros', 'rose', 'sero', 'sore']),\n", + " ('romans', ['ramson', 'ransom']),\n", + " ('room', ['moor', 'moro', 'room']),\n", + " ('rope', ['pore', 'rope']),\n", + " ('ropes', ['poser', 'prose', 'ropes', 'spore']),\n", + " ('rose', ['eros', 'rose', 'sero', 'sore']),\n", + " ('rout', ['rout', 'toru', 'tour']),\n", + " ('rowdier', ['worried']),\n", + " ('ruby', ['bury', 'ruby']),\n", + " ('rule', ['lure', 'rule']),\n", + " ('ruled', ['duler', 'urled']),\n", + " ('rules', ['sluer']),\n", + " ('ruling', ['ruling', 'urling']),\n", + " ('run', ['run', 'urn']),\n", + " ('runs', ['snur']),\n", + " ('runted', ['runted', 'tunder', 'turned']),\n", + " ('runts', ['snurt', 'turns']),\n", + " ('rust', ['rust']),\n", + " ('rustic', ['citrus', 'rictus', 'rustic']),\n", + " ('rusts', ['truss']),\n", + " ('ruts', ['rust']),\n", + " ('sack', ['cask', 'sack']),\n", + " ('sacred', ['sacred']),\n", + " ('sag', ['gas', 'sag']),\n", + " ('saint', ['saint', 'satin', 'stain']),\n", + " ('sairing', ['raising']),\n", + " ('salep', ['lapse', 'salep', 'saple', 'sepal', 'slape', 'spale', 'speal']),\n", + " ('sales', ['salse']),\n", + " ('salesmen', ['lameness', 'maleness', 'maneless', 'nameless']),\n", + " ('salp', ['salp', 'slap']),\n", + " ('salse', ['salse']),\n", + " ('salt', ['last', 'salt', 'slat']),\n", + " ('salted', ['desalt', 'salted']),\n", + " ('saltern', ['saltern', 'starnel', 'sternal']),\n", + " ('saltier', ['realist', 'saltier']),\n", + " ('salting', ['lasting', 'salting', 'slating', 'staling']),\n", + " ('saltire', ['realist', 'saltier']),\n", + " ('samel', ['amsel', 'mesal', 'samel']),\n", + " ('samp', ['samp', 'spam']),\n", + " ('sample', ['sample']),\n", + " ('sang', ['sang', 'snag']),\n", + " ('santir', ['instar', 'santir', 'strain']),\n", + " ('saps', ['pass']),\n", + " ('sate', ['ates', 'east', 'eats', 'sate', 'seat', 'seta']),\n", + " ('satem', ['steam', 'stema']),\n", + " ('satin', ['saint', 'satin', 'stain']),\n", + " ('sauce', ['cause', 'sauce']),\n", + " ('sauces', ['causse']),\n", + " ('save', ['save', 'vase']),\n", + " ('saw', ['saw', 'swa', 'was']),\n", + " ('sawed', ['sawed']),\n", + " ('scab', ['scab']),\n", + " ('scan', ['scan']),\n", + " ('scar', ['scar']),\n", + " ('scare', ['carse', 'caser', 'ceras', 'scare', 'scrae']),\n", + " ('scared', ['sacred']),\n", + " ('scat', ['cast', 'scat']),\n", + " ('scent', ['scent']),\n", + " ...]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "words_anagrams" + ] + }, + { + "cell_type": "markdown", + "id": "d91434bc", + "metadata": {}, + "source": [ + "The complexity of this algorithm is O(M * KlogK + N), much much faster!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "03ce3e28", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a2fc5ec4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/anagrams/words_to_search.txt b/exercises/anagrams/words_to_search.txt new file mode 100644 index 0000000..1255639 --- /dev/null +++ b/exercises/anagrams/words_to_search.txt @@ -0,0 +1,1410 @@ +acer +acers +aces +aches +acme +acned +acre +acres +act +acts +acyl +add +adverb +aesc +aether +aethers +afield +aft +agree +agrees +ags +ah +ahs +aide +aides +airings +airmen +alloy +almes +alp +alps +altern +altrices +alts +am +amen +amp +amps +anglist +anils +ant +antis +antler +antlers +any +ape +aper +apt +arb +arc +arcs +are +ared +ares +argle +aril +arising +arm +armpit +arms +arse +art +article +articles +arts +arty +ash +aside +aspired +asps +ate +ates +atoners +attic +aves +aye +backward +bad +bag +bake +baker +balm +bar +bare +bast +bat +batlet +bats +battel +battle +beak +bear +begin +being +below +best +bets +binge +blam +blot +blow +bludier +bluest +bluets +bolt +bombed +borde +bored +bores +boss +bourne +bowel +bowl +bra +brae +brag +brake +braved +break +brief +brose +brush +buhrs +builder +burden +burned +bury +bush +bust +bustle +but +butles +buts +cab +cabs +cadres +cafe +caller +calm +calo +came +caned +canoe +cans +cape +car +care +cares +caret +carol +carp +cars +carse +carte +case +cask +cast +cat +cater +cats +cause +causes +ceas +cedars +cedi +cellar +cents +cereus +ceruse +cesure +charm +charmer +charming +chase +cheating +chetnik +chin +chit +chum +cion +citrus +clam +claro +clay +cloud +coal +cocaine +cod +coin +cola +comics +cone +coni +cool +coral +cork +corset +corvet +cosmic +coster +could +covert +crap +crate +crews +dab +dad +dah +dairy +dale +dalets +dali +dam +dance +dare +dashed +dawn +deaf +deal +dealer +dear +dearer +death +deaws +declines +decree +deens +defer +deil +delayer +deli +deltas +denes +dense +denser +desalt +deserver +despair +devote +dew +dial +diaper +diapers +diary +dice +diel +diet +dikes +dimple +direr +disease +disk +dite +doc +doen +dog +dogs +don +done +doom +dozen +draw +drawback +dreare +drier +dune +dunite +dusty +eager +eagers +eagre +eagres +ear +eard +early +earn +earner +ears +earthy +east +eastling +eat +eath +eats +edit +eel +egos +eh +eild +elbow +elints +emit +emits +emoter +enders +enfiring +enlist +enlisted +era +eras +eros +escar +escort +ester +eta +etas +ether +evil +evils +ewts +except +exist +exits +expect +face +fade +failed +faker +fare +farmed +farming +fast +fat +fate +fats +fear +feat +feel +feer +felid +felt +fere +feta +fiber +fibre +field +filed +filer +filets +filler +finder +finer +finger +fired +fires +fist +fitness +fits +flee +flesh +flied +flier +fliest +flites +flog +flow +flue +form +former +forth +fowl +frae +framed +framing +freak +free +freed +fried +friend +fries +fringe +frise +from +froth +fuel +furs +gab +gals +gaps +garb +gas +gasp +gater +geare +geares +gel +gelatins +genitals +geos +girn +glare +god +gods +goes +golf +grab +grate +grease +great +grin +grues +gulp +gum +gunshot +gust +guts +ha +had +haet +halls +halses +hams +hangover +harps +has +hassel +hassle +hate +hated +hay +he +hearty +heat +heater +heaters +heir +heirs +hereat +hewn +hikes +hire +hires +ho +hocks +hoes +hognuts +hooks +hose +host +hots +houts +how +howres +hubs +hug +hums +hustle +hustling +huts +iced +icon +idea +ideas +idle +impart +impled +imprints +incest +inch +infer +infests +infringe +ink +inks +inlets +ins +insect +instar +insult +itch +item +items +its +itself +jest +jets +joiner +just +juts +kale +kebar +keel +keels +keen +kids +kills +kiln +kin +kins +kiss +kisser +kitchen +knee +koas +krises +lacy +lade +laered +lager +lags +laid +lair +lake +lamb +lameness +lames +lamp +lap +lapins +laps +lapse +large +lari +lases +lashes +last +lasted +lasting +late +lats +layer +layered +layers +laymen +layover +lays +lead +leader +leak +leams +leap +leaps +leared +learnt +leary +leat +lee +leek +leeks +left +leg +leke +lemon +leper +lessened +lessons +levis +liar +license +licensed +licks +lied +lifer +lime +limes +limped +link +lino +lintseed +lion +lippers +lips +lira +lisp +list +listen +listened +listing +lits +live +lives +loca +loco +loin +lookout +looped +loops +loot +lose +lost +loto +lots +loyal +lump +lure +lured +lures +luring +ma +mace +mad +mainer +maleness +males +mane +maneless +manors +manures +map +maples +maps +mar +march +marcher +marching +mare +marine +marital +marons +mars +martial +marts +mash +mast +mate +mated +mates +mating +mats +meals +mean +meanly +meat +meats +melas +melon +melts +mesal +meta +meteor +metis +metols +mile +miles +misprint +mite +mites +mobbed +moist +moits +molest +mono +mood +moon +moor +motels +much +mug +murenas +mush +mutilate +nags +nails +name +nameless +namely +nap +nare +nat +nay +near +nearer +needless +needs +nema +neon +nest +net +nets +nevi +nicest +night +nights +nip +nips +nis +no +nod +node +noil +none +normas +not +note +noted +noteless +notices +noughts +now +nows +nude +nudity +nur +nurs +oaks +ocean +oceanic +oh +oils +okas +oles +omits +on +once +opener +opt +option +opts +orbed +ores +organist +oriental +ought +oughts +ours +outlook +overhang +overlay +own +owns +owt +pace +packer +padle +painter +paired +pal +pale +paled +pales +palest +palets +palm +pals +pam +pams +pan +panel +pardie +pare +parks +partim +parts +pass +pastel +pat +pate +pay +pea +peaks +peal +peals +pear +peat +pedal +pela +pelas +pelmas +peltas +pelts +penal +penster +per +pereon +peri +perone +pertain +pest +petals +pets +pier +pills +pin +pinots +pins +pintos +piston +pit +pitons +pits +plains +plane +plaste +plates +plea +plead +pleas +pleats +plena +plug +plum +points +polos +poodle +pooled +pools +pore +pores +ports +poser +post +postin +postman +pot +potins +potion +pots +praised +prats +prays +pre +present +printer +pronto +prose +prost +proton +pya +quiet +quite +race +races +racket +rade +ragee +ragees +raginis +rail +raising +ram +rams +ramson +ransom +rape +rare +rase +raspy +rast +rat +rats +raw +rayle +rayles +react +read +reader +realist +ream +rean +reap +rear +reared +rebuild +recall +recede +recital +recitals +recta +rectos +recuse +recused +redeal +redear +redfin +reduces +reearn +reef +reest +refed +refill +refind +refining +reform +regal +reheat +reheats +reifs +reins +reird +reists +rejoin +relation +relay +relayed +relays +remain +remote +rental +rentals +reopen +rep +repack +repaid +repaint +repel +repents +repins +repo +repone +repos +reprint +reread +rescue +rescued +resell +resend +reserve +reserved +reset +reshow +resin +resist +resits +retack +retag +retails +retes +rethink +retrain +retund +reveres +reverse +reversed +review +rhies +rial +rictus +rider +rifle +rines +ring +rinse +ripe +ripens +ripples +risen +rite +rival +roasting +robed +robes +rock +roes +romans +room +rope +ropes +rose +rout +rowdier +ruby +rule +ruled +rules +ruling +run +runs +runted +runts +rust +rustic +rusts +ruts +sack +sacred +sag +saint +sairing +salep +sales +salesmen +salp +salse +salt +salted +saltern +saltier +salting +saltire +samel +samp +sample +sang +santir +saps +sate +satem +satin +sauce +sauces +save +saw +sawed +scab +scan +scar +scare +scared +scat +scent +scient +scoter +scrae +screw +seals +sear +seaside +seat +section +sector +secure +secured +seducer +sego +selahs +seldseen +selenic +selictar +seller +senator +sender +sensual +sent +sepal +sept +septal +sera +serac +serif +serin +serpent +serve +seta +sever +severer +sha +shaded +shales +shall +sham +shams +sharp +sheals +sheik +shelf +shier +shire +shock +shoe +shook +shot +shotgun +shout +shower +shrub +shut +sift +silence +silenced +silent +silo +silt +silting +sin +sink +siren +sister +sit +sixte +skid +skied +skiers +skill +skin +skis +skries +slaes +slag +slain +slap +slat +slated +slatier +slating +slay +slayer +sleek +slept +sleuth +slick +slime +slip +slipper +slipt +slit +slive +sloe +sloop +slot +smart +smash +smelt +smile +smite +snag +snail +snaps +sneed +snip +sniper +snow +soak +sober +sobs +soil +sole +soli +sonless +sore +soth +sought +sour +south +sown +spag +spake +spale +spam +spans +spark +spart +spas +speak +speal +spelt +spet +spill +spilt +spin +spinal +spinto +spirt +spit +split +spool +spore +sport +spot +sprat +spray +sprit +stab +stack +stain +staled +staling +stalk +staple +star +stated +states +stealing +steam +steer +sten +step +stere +sterical +sternal +stew +stick +stifle +stiling +stilt +stime +stires +stirp +stop +stove +strain +strap +straw +strip +strop +stub +study +sublet +subtle +sue +sunlight +sunlit +supper +surf +surge +surname +swart +sweat +swell +swig +swing +swipe +tab +tablet +tabs +tacit +tacker +tacks +tae +tael +taes +taglines +taileron +tailers +tains +talcier +tale +talks +tame +tamed +tames +taming +tampons +tams +tan +tap +tape +tar +targe +tarps +tars +tasset +tasted +tastes +tavs +tawse +tea +teaching +teal +team +teams +teas +teers +tela +ten +tens +tepa +tepals +teres +terga +ternal +terrain +terse +tews +thae +thaw +there +thicken +thing +things +thinker +thous +three +thus +tich +ticks +tide +tied +tier +tilings +tils +tilts +time +times +tinsel +tinseled +tip +tips +tire +tired +tis +ton +tone +toned +toneless +tool +top +tops +topsman +tosh +tough +toughs +tour +tow +trace +trails +trainer +trains +trams +traps +tray +treason +trees +trials +tride +trie +tried +trips +trout +truss +tsar +tub +tubs +tugs +turned +turns +tush +tutor +twaes +two +ugh +ultimate +unbore +unbred +unde +unite +united +unlit +unrobe +unseals +untidy +untie +untied +until +uppers +urges +urn +urns +use +vaes +vail +vali +vase +vast +vats +vector +veers +veil +veils +vein +veins +verse +veto +vetoed +vial +viewer +vile +vine +vines +viral +visne +vlei +vleis +vlies +vote +votes +wades +waist +waits +wake +wand +war +ward +warp +warst +warts +was +waste +way +weak +weather +wed +weka +wells +west +wetas +wets +what +when +whereat +who +whores +wigs +wings +wipes +wolf +won +wons +wordier +worried +wot +wrap +wrast +wreathe +yah +yaird +yap +yaw +yea +zendo +zoned \ No newline at end of file diff --git a/exercises/match_tarots/.ipynb_checkpoints/match_tarots-checkpoint.ipynb b/exercises/match_tarots/.ipynb_checkpoints/match_tarots-checkpoint.ipynb new file mode 100644 index 0000000..6af246f --- /dev/null +++ b/exercises/match_tarots/.ipynb_checkpoints/match_tarots-checkpoint.ipynb @@ -0,0 +1,108 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "373ed1db", + "metadata": {}, + "source": [ + "# Exercise: Match the tarot cards!\n", + "\n", + "Given 2 decks of tarot cards, `deck1` and `deck2`, find all the matching pairs. The output should be a set of tuples `(idx1, idx2)` for every matching pair in `deck1`, `deck2`.\n", + "\n", + "For example:\n", + "```\n", + "deck1 = ['C', 'B', 'A']\n", + "deck2 = ['A', 'C', 'B']\n", + "```\n", + "\n", + "should return (in no particular order):\n", + "\n", + "```\n", + "{(0, 1), (1, 2), (2, 0)}\n", + "```\n", + "\n", + "1. Write an algorithm to match the tarot cards\n", + "2. Compute the Big-O complexity of your algorithm\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "cf05b9c4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-- Deck 1: --\n", + " ['The Lovers', 'Temperance', 'The Emperor', 'The Sun', 'The Fool', 'The Chariot', 'Death', 'Strength', 'Justice', 'The Star', 'Judgement', 'The World', 'The Tower', 'The Hanged Man', 'The Empress', 'The Hermit', 'The Devil', 'The High Priestess', 'The Moon', 'The Hierophant', 'Wheel of Fortune', 'The Magician']\n", + "-- Deck 2: --\n", + " ['The Fool', 'Death', 'The Hermit', 'Strength', 'The Moon', 'Wheel of Fortune', 'Judgement', 'The Lovers', 'The Star', 'The Hanged Man', 'The Empress', 'The Emperor', 'The Magician', 'The Tower', 'The Hierophant', 'The Chariot', 'The High Priestess', 'Temperance', 'The World', 'The Devil', 'The Sun', 'Justice']\n" + ] + } + ], + "source": [ + "import random\n", + "\n", + "# List of tarot card names (Major Arcana)\n", + "tarot_cards = [\n", + " \"The Fool\", \"The Magician\", \"The High Priestess\", \"The Empress\", \"The Emperor\",\n", + " \"The Hierophant\", \"The Lovers\", \"The Chariot\", \"Strength\", \"The Hermit\",\n", + " \"Wheel of Fortune\", \"Justice\", \"The Hanged Man\", \"Death\", \"Temperance\",\n", + " \"The Devil\", \"The Tower\", \"The Star\", \"The Moon\", \"The Sun\", \"Judgement\",\n", + " \"The World\"\n", + "]\n", + "\n", + "# Copy the list to create two separate decks\n", + "deck1 = tarot_cards.copy()\n", + "deck2 = tarot_cards.copy()\n", + "\n", + "# Shuffle both decks\n", + "random.shuffle(deck1)\n", + "random.shuffle(deck2)\n", + "\n", + "# Print the shuffled decks\n", + "print(\"-- Deck 1: --\\n\", deck1)\n", + "print(\"-- Deck 2: --\\n\", deck2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "48eb31e2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "509dda71", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/match_tarots/.ipynb_checkpoints/match_tarots_solution-checkpoint.ipynb b/exercises/match_tarots/.ipynb_checkpoints/match_tarots_solution-checkpoint.ipynb new file mode 100644 index 0000000..3bc0366 --- /dev/null +++ b/exercises/match_tarots/.ipynb_checkpoints/match_tarots_solution-checkpoint.ipynb @@ -0,0 +1,281 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "373ed1db", + "metadata": {}, + "source": [ + "# Exercise: Match the tarot cards!\n", + "\n", + "Given 2 decks of tarot cards, `deck1` and `deck2`, find all the matching pairs. The output should be a set of tuples `(idx1, idx2)` for every matching pair in `deck1`, `deck2`.\n", + "\n", + "For example:\n", + "```\n", + "deck1 = ['C', 'B', 'A']\n", + "deck2 = ['A', 'C', 'B']\n", + "```\n", + "\n", + "should return (in no particular order):\n", + "\n", + "```\n", + "{(0, 1), (1, 2), (2, 0)}\n", + "```\n", + "\n", + "1. Write an algorithm to match the tarot cards\n", + "2. Compute the Big-O complexity of your algorithm\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "cf05b9c4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-- Deck 1: --\n", + " ['The Tower', 'The Star', 'Strength', 'The Devil', 'Judgement', 'The World', 'The High Priestess', 'The Hanged Man', 'The Sun', 'The Lovers', 'The Chariot', 'The Emperor', 'The Fool', 'The Empress', 'Death', 'Temperance', 'Justice', 'The Magician', 'Wheel of Fortune', 'The Hermit', 'The Hierophant', 'The Moon']\n", + "-- Deck 2: --\n", + " ['Temperance', 'The Sun', 'The Lovers', 'Strength', 'The High Priestess', 'The Magician', 'Justice', 'Judgement', 'The Empress', 'The Star', 'The Fool', 'The Hierophant', 'The Hanged Man', 'The Tower', 'The Moon', 'The Chariot', 'Death', 'The World', 'The Hermit', 'The Devil', 'Wheel of Fortune', 'The Emperor']\n" + ] + } + ], + "source": [ + "import random\n", + "\n", + "# List of tarot card names (Major Arcana)\n", + "tarot_cards = [\n", + " \"The Fool\", \"The Magician\", \"The High Priestess\", \"The Empress\", \"The Emperor\",\n", + " \"The Hierophant\", \"The Lovers\", \"The Chariot\", \"Strength\", \"The Hermit\",\n", + " \"Wheel of Fortune\", \"Justice\", \"The Hanged Man\", \"Death\", \"Temperance\",\n", + " \"The Devil\", \"The Tower\", \"The Star\", \"The Moon\", \"The Sun\", \"Judgement\",\n", + " \"The World\"\n", + "]\n", + "\n", + "# Copy the list to create two separate decks\n", + "deck1 = tarot_cards.copy()\n", + "deck2 = tarot_cards.copy()\n", + "\n", + "# Shuffle both decks\n", + "random.shuffle(deck1)\n", + "random.shuffle(deck2)\n", + "\n", + "# Print the shuffled decks\n", + "print(\"-- Deck 1: --\\n\", deck1)\n", + "print(\"-- Deck 2: --\\n\", deck2)" + ] + }, + { + "cell_type": "markdown", + "id": "3db3f337", + "metadata": {}, + "source": [ + "# Simplest implementation: O(N^2)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "319ef6a9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "matches = set()\n", + "for idx1, card in enumerate(deck1): # O(N)\n", + " match = (idx1, deck2.index(card)) # O(N)\n", + " matches.add(match)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "markdown", + "id": "3264eb67", + "metadata": {}, + "source": [ + "# Faster solution: O(N log N)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c768a7c2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a list of (tarot_card, idx), and sort it. This is kind of equivalent to np.argsort\n", + "n_cards = len(deck1)\n", + "sorted_deck1 = sorted((deck1[idx], idx) for idx in range(n_cards)) # O(N log N)\n", + "sorted_deck2 = sorted((deck2[idx], idx) for idx in range(n_cards)) # O(N log N)\n", + "\n", + "matches = set()\n", + "for idx in range(n_cards): # O(N)\n", + " matches.add((sorted_deck1[idx][1], sorted_deck2[idx][1])) # O(1)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "markdown", + "id": "5099970a", + "metadata": {}, + "source": [ + "# 3. Fastest solution: O(N)" + ] + }, + { + "cell_type": "markdown", + "id": "83c53b82", + "metadata": {}, + "source": [] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "509dda71", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a dictionary, mapping cards to the index in deck2\n", + "deck2_card_to_idx = {}\n", + "for idx2, card in enumerate(deck2): # O(N)\n", + " deck2_card_to_idx[card] = idx2\n", + "\n", + "# For each card and index in deck1, look up the index in deck2, and store the match\n", + "matches = set()\n", + "for idx1, card in enumerate(deck1): # O(N)\n", + " idx2 = deck2_card_to_idx[card] # O(1)\n", + " matches.add((idx1, idx2)) # O(1)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f403a4ce", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/match_tarots/match_tarots.ipynb b/exercises/match_tarots/match_tarots.ipynb new file mode 100644 index 0000000..6af246f --- /dev/null +++ b/exercises/match_tarots/match_tarots.ipynb @@ -0,0 +1,108 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "373ed1db", + "metadata": {}, + "source": [ + "# Exercise: Match the tarot cards!\n", + "\n", + "Given 2 decks of tarot cards, `deck1` and `deck2`, find all the matching pairs. The output should be a set of tuples `(idx1, idx2)` for every matching pair in `deck1`, `deck2`.\n", + "\n", + "For example:\n", + "```\n", + "deck1 = ['C', 'B', 'A']\n", + "deck2 = ['A', 'C', 'B']\n", + "```\n", + "\n", + "should return (in no particular order):\n", + "\n", + "```\n", + "{(0, 1), (1, 2), (2, 0)}\n", + "```\n", + "\n", + "1. Write an algorithm to match the tarot cards\n", + "2. Compute the Big-O complexity of your algorithm\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "cf05b9c4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-- Deck 1: --\n", + " ['The Lovers', 'Temperance', 'The Emperor', 'The Sun', 'The Fool', 'The Chariot', 'Death', 'Strength', 'Justice', 'The Star', 'Judgement', 'The World', 'The Tower', 'The Hanged Man', 'The Empress', 'The Hermit', 'The Devil', 'The High Priestess', 'The Moon', 'The Hierophant', 'Wheel of Fortune', 'The Magician']\n", + "-- Deck 2: --\n", + " ['The Fool', 'Death', 'The Hermit', 'Strength', 'The Moon', 'Wheel of Fortune', 'Judgement', 'The Lovers', 'The Star', 'The Hanged Man', 'The Empress', 'The Emperor', 'The Magician', 'The Tower', 'The Hierophant', 'The Chariot', 'The High Priestess', 'Temperance', 'The World', 'The Devil', 'The Sun', 'Justice']\n" + ] + } + ], + "source": [ + "import random\n", + "\n", + "# List of tarot card names (Major Arcana)\n", + "tarot_cards = [\n", + " \"The Fool\", \"The Magician\", \"The High Priestess\", \"The Empress\", \"The Emperor\",\n", + " \"The Hierophant\", \"The Lovers\", \"The Chariot\", \"Strength\", \"The Hermit\",\n", + " \"Wheel of Fortune\", \"Justice\", \"The Hanged Man\", \"Death\", \"Temperance\",\n", + " \"The Devil\", \"The Tower\", \"The Star\", \"The Moon\", \"The Sun\", \"Judgement\",\n", + " \"The World\"\n", + "]\n", + "\n", + "# Copy the list to create two separate decks\n", + "deck1 = tarot_cards.copy()\n", + "deck2 = tarot_cards.copy()\n", + "\n", + "# Shuffle both decks\n", + "random.shuffle(deck1)\n", + "random.shuffle(deck2)\n", + "\n", + "# Print the shuffled decks\n", + "print(\"-- Deck 1: --\\n\", deck1)\n", + "print(\"-- Deck 2: --\\n\", deck2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "48eb31e2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "509dda71", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/match_tarots/match_tarots_solution.ipynb b/exercises/match_tarots/match_tarots_solution.ipynb new file mode 100644 index 0000000..3bc0366 --- /dev/null +++ b/exercises/match_tarots/match_tarots_solution.ipynb @@ -0,0 +1,281 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "373ed1db", + "metadata": {}, + "source": [ + "# Exercise: Match the tarot cards!\n", + "\n", + "Given 2 decks of tarot cards, `deck1` and `deck2`, find all the matching pairs. The output should be a set of tuples `(idx1, idx2)` for every matching pair in `deck1`, `deck2`.\n", + "\n", + "For example:\n", + "```\n", + "deck1 = ['C', 'B', 'A']\n", + "deck2 = ['A', 'C', 'B']\n", + "```\n", + "\n", + "should return (in no particular order):\n", + "\n", + "```\n", + "{(0, 1), (1, 2), (2, 0)}\n", + "```\n", + "\n", + "1. Write an algorithm to match the tarot cards\n", + "2. Compute the Big-O complexity of your algorithm\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "cf05b9c4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-- Deck 1: --\n", + " ['The Tower', 'The Star', 'Strength', 'The Devil', 'Judgement', 'The World', 'The High Priestess', 'The Hanged Man', 'The Sun', 'The Lovers', 'The Chariot', 'The Emperor', 'The Fool', 'The Empress', 'Death', 'Temperance', 'Justice', 'The Magician', 'Wheel of Fortune', 'The Hermit', 'The Hierophant', 'The Moon']\n", + "-- Deck 2: --\n", + " ['Temperance', 'The Sun', 'The Lovers', 'Strength', 'The High Priestess', 'The Magician', 'Justice', 'Judgement', 'The Empress', 'The Star', 'The Fool', 'The Hierophant', 'The Hanged Man', 'The Tower', 'The Moon', 'The Chariot', 'Death', 'The World', 'The Hermit', 'The Devil', 'Wheel of Fortune', 'The Emperor']\n" + ] + } + ], + "source": [ + "import random\n", + "\n", + "# List of tarot card names (Major Arcana)\n", + "tarot_cards = [\n", + " \"The Fool\", \"The Magician\", \"The High Priestess\", \"The Empress\", \"The Emperor\",\n", + " \"The Hierophant\", \"The Lovers\", \"The Chariot\", \"Strength\", \"The Hermit\",\n", + " \"Wheel of Fortune\", \"Justice\", \"The Hanged Man\", \"Death\", \"Temperance\",\n", + " \"The Devil\", \"The Tower\", \"The Star\", \"The Moon\", \"The Sun\", \"Judgement\",\n", + " \"The World\"\n", + "]\n", + "\n", + "# Copy the list to create two separate decks\n", + "deck1 = tarot_cards.copy()\n", + "deck2 = tarot_cards.copy()\n", + "\n", + "# Shuffle both decks\n", + "random.shuffle(deck1)\n", + "random.shuffle(deck2)\n", + "\n", + "# Print the shuffled decks\n", + "print(\"-- Deck 1: --\\n\", deck1)\n", + "print(\"-- Deck 2: --\\n\", deck2)" + ] + }, + { + "cell_type": "markdown", + "id": "3db3f337", + "metadata": {}, + "source": [ + "# Simplest implementation: O(N^2)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "319ef6a9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "matches = set()\n", + "for idx1, card in enumerate(deck1): # O(N)\n", + " match = (idx1, deck2.index(card)) # O(N)\n", + " matches.add(match)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "markdown", + "id": "3264eb67", + "metadata": {}, + "source": [ + "# Faster solution: O(N log N)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c768a7c2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a list of (tarot_card, idx), and sort it. This is kind of equivalent to np.argsort\n", + "n_cards = len(deck1)\n", + "sorted_deck1 = sorted((deck1[idx], idx) for idx in range(n_cards)) # O(N log N)\n", + "sorted_deck2 = sorted((deck2[idx], idx) for idx in range(n_cards)) # O(N log N)\n", + "\n", + "matches = set()\n", + "for idx in range(n_cards): # O(N)\n", + " matches.add((sorted_deck1[idx][1], sorted_deck2[idx][1])) # O(1)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "markdown", + "id": "5099970a", + "metadata": {}, + "source": [ + "# 3. Fastest solution: O(N)" + ] + }, + { + "cell_type": "markdown", + "id": "83c53b82", + "metadata": {}, + "source": [] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "509dda71", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{(0, 13),\n", + " (1, 9),\n", + " (2, 3),\n", + " (3, 19),\n", + " (4, 7),\n", + " (5, 17),\n", + " (6, 4),\n", + " (7, 12),\n", + " (8, 1),\n", + " (9, 2),\n", + " (10, 15),\n", + " (11, 21),\n", + " (12, 10),\n", + " (13, 8),\n", + " (14, 16),\n", + " (15, 0),\n", + " (16, 6),\n", + " (17, 5),\n", + " (18, 20),\n", + " (19, 18),\n", + " (20, 11),\n", + " (21, 14)}" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a dictionary, mapping cards to the index in deck2\n", + "deck2_card_to_idx = {}\n", + "for idx2, card in enumerate(deck2): # O(N)\n", + " deck2_card_to_idx[card] = idx2\n", + "\n", + "# For each card and index in deck1, look up the index in deck2, and store the match\n", + "matches = set()\n", + "for idx1, card in enumerate(deck1): # O(N)\n", + " idx2 = deck2_card_to_idx[card] # O(1)\n", + " matches.add((idx1, idx2)) # O(1)\n", + " \n", + "matches" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f403a4ce", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_broadcasting_extra/broadcasting.ipynb b/exercises/numpy_broadcasting_extra/broadcasting.ipynb new file mode 100644 index 0000000..1a2ff40 --- /dev/null +++ b/exercises/numpy_broadcasting_extra/broadcasting.ipynb @@ -0,0 +1,374 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "282817dd", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:23.900532Z", + "start_time": "2023-06-27T20:08:22.963157Z" + }, + "slideshow": { + "slide_type": "skip" + } + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "def print_info(a):\n", + " \"\"\" Print the content of an array, and its metadata. \"\"\"\n", + " \n", + " txt = f\"\"\"\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + "\n", + " print(a)\n", + " print(txt)" + ] + }, + { + "cell_type": "markdown", + "id": "6cd0f8cf", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + " Mind-on exercises " + ] + }, + { + "cell_type": "markdown", + "id": "acba732f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 1: warm up\n", + "\n", + "```What is the expected output shape for each operation?```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a41d0f74", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.881059Z", + "start_time": "2023-06-27T19:58:57.830Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.arange(5)\n", + "b = 5\n", + "\n", + "np.shape(a-b)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6f82a2fb", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.884966Z", + "start_time": "2023-06-27T19:58:57.833Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.ones((7, 1))\n", + "b = np.arange(7)\n", + "np.shape(a*b)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "808095ad", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.888119Z", + "start_time": "2023-06-27T19:58:57.836Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.random.randint(0, 50, (2, 3, 3))\n", + "b = np.random.randint(0, 10, (3, 1))\n", + "\n", + "np.shape(a-b)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d9a12a90", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.891462Z", + "start_time": "2023-06-27T19:58:57.839Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.arange(100).reshape(10, 10)\n", + "b = np.arange(1, 10)\n", + "\n", + "np.shape(a+b)" + ] + }, + { + "cell_type": "markdown", + "id": "69632f95", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 2\n", + "\n", + "```\n", + "1. Create a random 2D array of dimension (5, 3)\n", + "2. Calculate the maximum value of each row\n", + "3. Divide each row by its maximum\n", + "```\n", + "\n", + "Remember to use broadcasting : NO FOR LOOPS!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "54e2a53e", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.894433Z", + "start_time": "2023-06-27T19:58:57.843Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "## Your code here" + ] + }, + { + "cell_type": "markdown", + "id": "b9facc0f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 3" + ] + }, + { + "cell_type": "markdown", + "id": "7e8156d0", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Task: Find the closest **cluster** to the **observation**. \n", + "\n", + "Again, use broadcasting: DO NOT iterate cluster by cluster" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2969994e", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.899204Z", + "start_time": "2023-06-27T19:58:57.847Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "observation = np.array([30.0, 99.0]) #Observation\n", + "\n", + "#Clusters\n", + "clusters = np.array([[102.0, 203.0],\n", + " [132.0, 193.0],\n", + " [45.0, 155.0], \n", + " [57.0, 173.0]])" + ] + }, + { + "cell_type": "markdown", + "id": "f13352ff", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Lets plot this data\n", + "\n", + "In the plot below, **+** is the observation and dots are the cluster coordinates" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b9f6b5cf", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.906715Z", + "start_time": "2023-06-27T19:58:57.850Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt \n", + "\n", + "plt.scatter(clusters[:, 0], clusters[:, 1]) #Scatter plot of clusters\n", + "for n, x in enumerate(clusters):\n", + " print('cluster %d' %n)\n", + " plt.annotate('cluster%d' %n, (x[0], x[1])) #Label each cluster\n", + "plt.plot(observation[0], observation[1], '+'); #Plot observation" + ] + }, + { + "cell_type": "markdown", + "id": "4f9b84e2", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Closest cluster as seen by the plot is **2**. Your task is to write a function to calculate this" + ] + }, + { + "cell_type": "markdown", + "id": "8aea6781", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-26T19:25:08.202848Z", + "start_time": "2023-06-26T19:25:08.194923Z" + } + }, + "source": [ + "\n", + "**hint:** Find the distance between the observation and each row in the cluster. The cluster to which the observation belongs to is the row with the minimum distance.\n", + "\n", + "distance = $\\sqrt {\\left( {x_1 - x_2 } \\right)^2 + \\left( {y_1 - y_2 } \\right)^2 }$" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ea8a7240", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.916610Z", + "start_time": "2023-06-27T19:58:57.854Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "## Your code here" + ] + }, + { + "cell_type": "markdown", + "id": "beaee243", + "metadata": { + "slideshow": { + "slide_type": "skip" + } + }, + "source": [ + "## Sources + Resources\n", + "\n", + "ASPP 2016 - Stéfan van der Walt - https://github.com/ASPP/2016_numpy\n", + "\n", + "Basic Numpy: http://scipy-lectures.org/intro/numpy/index.html\n", + "\n", + "Advanced Numpy: http://scipy-lectures.org/advanced/advanced_numpy/index.html\n", + "\n", + "Numpy chapter in \"Python Data Science Handbook\" https://jakevdp.github.io/PythonDataScienceHandbook/02.00-introduction-to-numpy.html" + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + }, + "rise": { + "scroll": true + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_vectorize/.ipynb_checkpoints/numpy_vectorize_solution-checkpoint.ipynb b/exercises/numpy_vectorize/.ipynb_checkpoints/numpy_vectorize_solution-checkpoint.ipynb new file mode 100644 index 0000000..3947555 --- /dev/null +++ b/exercises/numpy_vectorize/.ipynb_checkpoints/numpy_vectorize_solution-checkpoint.ipynb @@ -0,0 +1,125 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "id": "192a5107", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "id": "75aa6951", + "metadata": {}, + "source": [ + "Vectorize this code" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "c912bb05", + "metadata": {}, + "outputs": [], + "source": [ + "size = 101\n", + "center = size // 2\n", + "radius = 20\n", + "\n", + "circle = np.zeros((size, size), dtype=float)\n", + "for i in range(size):\n", + " for j in range(size):\n", + " distance_from_center = np.sqrt((i - center)**2 + (j - center)**2)\n", + " if distance_from_center <= radius:\n", + " circle[i, j] = 1" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "9bb5a50c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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SCSirq4utbe3J6zW2traVFxcfE5fJxqNqqWlRc455eXlqaWlxddjspacOP/IHH055unsmKOzY47O7sQcHTp0SIFAQNFo1NfP9zVq+fn5ikQiqqur07hx4yRJXV1dqq+v1/LlyyVJhYWFGjhwoOrq6nT33XdLkj799FO9//77qqmpOaevM2DAAI0cOdJbsWVnZ/MDdBbM0blhns6OOTo75ujsQqFQn8zReUft8OHD+uCDD7znzc3Nampq0tChQ5WXl6eysjJVVVWpoKBABQUFqqqqUmZmpqZPny7p+Dfy3e9+V9///vc1bNgwDR06VD/4wQ909dVX65ZbbvHvOwMApJzzjto777yjm266yXt+4gKOWbNm6fnnn9fChQt15MgRzZ07V+3t7Ro/fry2bdumrKws7z0//elPlZ6errvvvltHjhzRzTffrOeff15paWk+fEsAgFR13lErKSn50qtVAoGAKisrVVlZecZ9Bg8erFWrVmnVqlXn++UTBINBPfnkkwkXkSARc3RumKezY47Ojjk6u76eo//pl68BALiU8AeNAQBmEDUAgBlEDQBgBlEDAJhB1AAAZvTrqD377LPKz8/X4MGDVVhYqLfffjvZQ0qK6upq3XDDDcrKytKIESM0depU7d+/P2Gfc7l5ayqprq5WIBBQWVmZt405Ou7jjz/W/fffr2HDhikzM1PXXXedGhsbvddTfZ66u7v1xBNPKD8/XxkZGRo9erSWLl2qnp4eb59Um6NL6ubRrp/auHGjGzhwoFu7dq3bt2+fW7BggRsyZIg7ePBgsod20d16661u3bp17v3333dNTU1uypQpLi8vzx0+fNjb55lnnnFZWVnu5Zdfdnv27HH33HOPy8nJcfF4PIkjT46dO3e6yy+/3F1zzTVuwYIF3nbmyLl///vfbtSoUe7BBx90f/3rX11zc7N79dVX3QcffODtk+rz9PTTT7thw4a53//+9665udn95je/cV/5ylfcypUrvX1SbY62bt3qlixZ4l5++WUnyW3evDnh9XOZjzlz5rjLLrvM1dXVuV27drmbbrrJXXvtta67u/u8xtJvo/aNb3zDzZkzJ2HbmDFj3OLFi5M0oktHW1ubk+Tq6+udc8719PS4SCTinnnmGW+f//73vy4UCrnnnnsuWcNMio6ODldQUODq6urcpEmTvKgxR8ctWrTITZw48YyvM0/OTZkyxT300EMJ26ZNm+buv/9+5xxzdGrUzmU+/vOf/7iBAwe6jRs3evt8/PHHbsCAAe6Pf/zjeX39fnn4saurS42NjQk3GpWk0tLSM95oNJXEYjFJ0tChQyWd281bU8W8efM0ZcqUXn9nlDk6bsuWLSoqKtJdd92lESNGaNy4cVq7dq33OvMkTZw4Ua+99poOHDggSXr33Xe1fft23XbbbZKYo1P11c2jz6RP7qfW1z777DMdO3bstDcjPdONRlOFc07l5eWaOHGixo4dK+ncbt6aCjZu3Khdu3apoaGh12vM0XEffvihVq9erfLycj3++OPauXOnHnnkEQWDQc2cOZN5krRo0SLFYjGNGTNGaWlpOnbsmJYtW6b77rtPEj9Lp+qrm0efSb+M2gkXcjNS6+bPn6/33ntP27dv7/VaKs9XS0uLFixYoG3btmnw4MFn3C+V50iSenp6VFRUpKqqKknSuHHjtHfvXq1evVozZ8709kvleXrppZe0fv16bdiwQVdddZWamppUVlamaDSqWbNmeful8hydjt83jz6Tfnn4cfjw4UpLS+tV8JNvRpqKHn74YW3ZskVvvPGGRo4c6W0/+eatJ0ul+WpsbFRbW5sKCwuVnp6u9PR01dfX62c/+5nS09O9eUjlOZKknJwcXXnllQnbrrjiCh06dEgSP0uS9Nhjj2nx4sW69957dfXVV+uBBx7Qo48+qurqaknM0anOZT5Ovnn0mfY5V/0yaoMGDVJhYaHq6uoSttfV1Z3z3bMtcc5p/vz52rRpk15//XXl5+cnvH7yzVtPOHHz1lSZr5tvvll79uxRU1OT9ygqKtKMGTPU1NSk0aNHp/wcSdKECRN6/TrIgQMHNGrUKEn8LEnSF198oQEDEv/TmZaW5l3SzxwlOpf5OPnm0SecuHn0ec/ZBV3ecgk4cUn/L3/5S7dv3z5XVlbmhgwZ4v7xj38ke2gX3fe+9z0XCoXcm2++6T799FPv8cUXX3j7PPPMMy4UCrlNmza5PXv2uPvuu8/0Jcbn4uSrH51jjpw7/usO6enpbtmyZe7vf/+7+/Wvf+0yMzPd+vXrvX1SfZ5mzZrlLrvsMu+S/k2bNrnhw4e7hQsXevuk2hx1dHS43bt3u927dztJbsWKFW737t3er1idy3zMmTPHjRw50r366qtu165d7lvf+lZqXdLvnHM///nP3ahRo9ygQYPc9ddf713Cnmoknfaxbt06b5+enh735JNPukgk4oLBoLvxxhvdnj17kjfoS8CpUWOOjvvd737nxo4d64LBoBszZoxbs2ZNwuupPk/xeNwtWLDA5eXlucGDB7vRo0e7JUuWuM7OTm+fVJujN95447T/DZo1a5Zz7tzm48iRI27+/Plu6NChLiMjw91+++3u0KFD5z0W7qcGADCjX55TAwDgdIgaAMAMogYAMIOoAQDMIGoAADOIGgDADKIGADCDqAEAzCBqAAAziBoAwAyiBgAw4/8AYnPO+dy4ZecAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.imshow(circle)" + ] + }, + { + "cell_type": "markdown", + "id": "1282ed4c", + "metadata": {}, + "source": [ + "# Solution" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "a94b5623", + "metadata": {}, + "outputs": [], + "source": [ + "size = 101\n", + "center = size // 2\n", + "x = np.arange(size)\n", + "y = x.reshape((size, 1))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c17f406b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_vectorize/numpy_vectorize.ipynb b/exercises/numpy_vectorize/numpy_vectorize.ipynb new file mode 100644 index 0000000..f335960 --- /dev/null +++ b/exercises/numpy_vectorize/numpy_vectorize.ipynb @@ -0,0 +1,117 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "84886528", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "id": "b8b62e7c", + "metadata": {}, + "source": [ + "Vectorize this code" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "30cd956c", + "metadata": {}, + "outputs": [], + "source": [ + "size = 101\n", + "center = size // 2\n", + "radius = 20\n", + "\n", + "circle = np.zeros((size, size), dtype=float)\n", + "for i in range(size):\n", + " for j in range(size):\n", + " distance_from_center = np.sqrt((i - center)**2 + (j - center)**2)\n", + " if distance_from_center <= radius:\n", + " circle[i, j] = 1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "698050fb", + "metadata": {}, + "outputs": [], + "source": [ + "plt.imshow(circle)" + ] + }, + { + "cell_type": "markdown", + "id": "a6ac0138", + "metadata": {}, + "source": [ + "# Solution" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d89a3e0d", + "metadata": {}, + "outputs": [], + "source": [ + "# type your solution here" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ea311dfc", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c62096b1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a1469dfa", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_vectorize/numpy_vectorize_solution.ipynb b/exercises/numpy_vectorize/numpy_vectorize_solution.ipynb new file mode 100644 index 0000000..4cfeac3 --- /dev/null +++ b/exercises/numpy_vectorize/numpy_vectorize_solution.ipynb @@ -0,0 +1,125 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "84886528", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "id": "b8b62e7c", + "metadata": {}, + "source": [ + "Vectorize this code" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "30cd956c", + "metadata": {}, + "outputs": [], + "source": [ + "size = 101\n", + "center = size // 2\n", + "radius = 20\n", + "\n", + "circle = np.zeros((size, size), dtype=float)\n", + "for i in range(size):\n", + " for j in range(size):\n", + " distance_from_center = np.sqrt((i - center)**2 + (j - center)**2)\n", + " if distance_from_center <= radius:\n", + " circle[i, j] = 1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "698050fb", + "metadata": {}, + "outputs": [], + "source": [ + "plt.imshow(circle)" + ] + }, + { + "cell_type": "markdown", + "id": "a6ac0138", + "metadata": {}, + "source": [ + "# Solution" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d89a3e0d", + "metadata": {}, + "outputs": [], + "source": [ + "size = 101\n", + "center = size // 2\n", + "x = np.arange(size)\n", + "y = x.reshape((size, 1))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ea311dfc", + "metadata": {}, + "outputs": [], + "source": [ + "distance_from_center = np.sqrt((x - center) ** 2 + (y - center) ** 2)\n", + "circle = distance_from_center <= radius" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c62096b1", + "metadata": {}, + "outputs": [], + "source": [ + "plt.imshow(circle)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a1469dfa", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_view_or_copy/view_or_copy.ipynb b/exercises/numpy_view_or_copy/view_or_copy.ipynb new file mode 100644 index 0000000..dbd5adc --- /dev/null +++ b/exercises/numpy_view_or_copy/view_or_copy.ipynb @@ -0,0 +1,194 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "774cc021", + "metadata": {}, + "source": [ + "# Is it a view or a copy?\n", + "\n", + "- For every operations on the array `x`, decide whether it returns a view of `x`, or a copy\n", + "- If it's a view, derive the new values for the metadata (ndim, shape, strides)\n", + "- You can verify your answers with the function `print_info` defined below" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4ccf18f3", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "\n", + "def is_view(a, x):\n", + " \"\"\" Is `a` a view of `x`? \"\"\"\n", + " return a.base is x\n", + "\n", + "\n", + "def print_info(a, x):\n", + " txt = f\"\"\"\n", + "Is it a view? {is_view(a, x)}\n", + "\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + " print(a)\n", + " print(txt)\n", + "\n", + "\n", + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b68308e8", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[::2, :]\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "85feedb0", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[1, :]\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dbbb9a7f", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "y = x[1]\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4957469c", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[[1, 2, 0], [1, 1, 2]]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "aa8effeb", + "metadata": {}, + "outputs": [], + "source": [ + "# Get the first and third row\n", + "y = x[[0, 2], :]\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d1649515", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.reshape((6, 2))\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "15b0d7ad", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.ravel()\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "38cc1ef3", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.T.ravel()\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b7d0cc63", + "metadata": {}, + "outputs": [], + "source": [ + "# Get all the odd elements\n", + "y = x[(x % 2) == 1]\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4474f8cf", + "metadata": {}, + "outputs": [], + "source": [ + "y = x + 2\n", + "#print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "866e842a", + "metadata": {}, + "outputs": [], + "source": [ + "y = np.sort(x, axis=1)\n", + "#print_info(y ,x)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/numpy_view_or_copy/view_or_copy_solution.ipynb b/exercises/numpy_view_or_copy/view_or_copy_solution.ipynb new file mode 100644 index 0000000..da68064 --- /dev/null +++ b/exercises/numpy_view_or_copy/view_or_copy_solution.ipynb @@ -0,0 +1,194 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "774cc021", + "metadata": {}, + "source": [ + "# Is it a view or a copy?\n", + "\n", + "- For every operations on the array `x`, decide whether it returns a view of `x`, or a copy\n", + "- If it's a view, derive the new values for the metadata (ndim, shape, strides)\n", + "- You can verify your answers with the function `print_info` defined below" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4ccf18f3", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "\n", + "def is_view(a, x):\n", + " \"\"\" Is `a` a view of `x`? \"\"\"\n", + " return a.base is x\n", + "\n", + "\n", + "def print_info(a, x):\n", + " txt = f\"\"\"\n", + "Is it a view? {is_view(a, x)}\n", + "\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + " print(a)\n", + " print(txt)\n", + "\n", + "\n", + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b68308e8", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[::2, :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "85feedb0", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[1, :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dbbb9a7f", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "y = x[1]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4957469c", + "metadata": {}, + "outputs": [], + "source": [ + "y = x[[1, 2, 0], [1, 1, 2]]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "aa8effeb", + "metadata": {}, + "outputs": [], + "source": [ + "# Get the first and third row\n", + "y = x[[0, 2], :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d1649515", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.reshape((6, 2))\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "15b0d7ad", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.ravel()\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "38cc1ef3", + "metadata": {}, + "outputs": [], + "source": [ + "y = x.T.ravel()\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b7d0cc63", + "metadata": {}, + "outputs": [], + "source": [ + "# Get all the odd elements\n", + "y = x[(x % 2) == 1]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4474f8cf", + "metadata": {}, + "outputs": [], + "source": [ + "y = x + 2\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "866e842a", + "metadata": {}, + "outputs": [], + "source": [ + "y = np.sort(x, axis=1)\n", + "print_info(y ,x)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/pandas_intro/.DS_Store b/exercises/pandas_intro/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/exercises/pandas_intro/.DS_Store differ diff --git a/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro-checkpoint.ipynb b/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro-checkpoint.ipynb new file mode 100644 index 0000000..0ecc796 --- /dev/null +++ b/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro-checkpoint.ipynb @@ -0,0 +1,227 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "560f48cd", + "metadata": {}, + "source": [ + "# Exercise: Have a look at the neural data using Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f7777604", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "6494fb41", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9ca3bec6", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "0d78a63e", + "metadata": {}, + "source": [ + "## 1. How many rows/columns does the data set have?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4b68e5a6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "0fab635e", + "metadata": {}, + "source": [ + "## 2. Display the first 5 rows of the DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4adcd5bf", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "deecdfa0", + "metadata": {}, + "source": [ + "## 3. Display the names and dtypes of all the columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "64df567c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "411f4228", + "metadata": {}, + "source": [ + "## 4. Display the unique values of the `high K concentration` and of the `treatment` columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b90ce541", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "1e395e8d", + "metadata": {}, + "source": [ + "## 5. Display the main statistics of the `max_spikes` column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e2b86159", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "c8c9f6b2", + "metadata": {}, + "source": [ + "## 6. Show all the rows where the max number of spikes is larger than 50" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c449e9ff", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "ce9ff32b", + "metadata": {}, + "source": [ + "## 7. Display the main statistics of `'max_spikes'`, for the rows where `high K concentration` is `8 mM` and `15 mM` (separately)\n", + "\n", + "Are the distributions any different?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8b84faa2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "8b2d1c2b", + "metadata": {}, + "source": [ + "## 8. Display the statistics of `max_spikes` when `high K concentration` is `8 mM`, and the maximum number of spikes is <= 100\n", + "\n", + "Does that change your conclusion?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1201f7d1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "6dbbf6c8", + "metadata": {}, + "source": [ + "## 9. Transform the `high K concentration` column into a numerical column\n", + "\n", + "a) Discard the last three characters of the columns (`' mM'`)\n", + "\n", + "b) Use `.astype(float)` to convert to floating point numbers\n", + "\n", + "c) Save the result in a column `K (mM)`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1cf5c15d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ecc0cad1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro_solution-checkpoint.ipynb b/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro_solution-checkpoint.ipynb new file mode 100644 index 0000000..550e823 --- /dev/null +++ b/exercises/pandas_intro/.ipynb_checkpoints/pandas_intro_solution-checkpoint.ipynb @@ -0,0 +1,1487 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "560f48cd", + "metadata": {}, + "source": [ + "# Exercise: Have a look at the neural data using Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f7777604", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "6494fb41", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9ca3bec6", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "0d78a63e", + "metadata": {}, + "source": [ + "## 1. How many rows/columns does the data set have?" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "291ebbfb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(827, 31)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "markdown", + "id": "0fab635e", + "metadata": {}, + "source": [ + "## 2. Display the first 5 rows of the DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "908f60ae", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.173839
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char \n", + "0 8 mM -61.828554 \n", + "1 8 mM -60.460298 \n", + "2 8 mM -59.615979 \n", + "3 8 mM -61.173839 \n", + "4 8 mM -60.956350 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "deecdfa0", + "metadata": {}, + "source": [ + "## 3. Display the names and dtypes of all the columns" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "025779f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OP object\n", + "filename object\n", + "slice object\n", + "cell_ch int64\n", + "cell_ID object\n", + "day object\n", + "treatment object\n", + "hrs_incubation float64\n", + "repatch object\n", + "hrs_after_OP float64\n", + "Rs float64\n", + "Rin float64\n", + "resting_potential float64\n", + "max_spikes int64\n", + "Rheobase float64\n", + "AP_heigth float64\n", + "TH float64\n", + "max_depol float64\n", + "max_repol float64\n", + "membra_time_constant_tau float64\n", + "capacitance float64\n", + "comments object\n", + "rheo_ramp float64\n", + "AP_halfwidth float64\n", + "Rheobse_ramp float64\n", + "Unnamed: 27 float64\n", + "rheos_ramp float64\n", + "comment object\n", + " float64\n", + "high K concentration object\n", + "RMP_from_char float64\n", + "dtype: object" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "markdown", + "id": "411f4228", + "metadata": {}, + "source": [ + "## 4. Display the unique values of the `high K concentration` and of the `treatment` columns" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a2248e7b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['8 mM', '15 mM'], dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['high K concentration'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "4d0f3708", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['TTX', 'high K', 'Ctrl', 'wash in high K'], dtype=object)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['treatment'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "f3154259", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "44" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['OP'].nunique()" + ] + }, + { + "cell_type": "markdown", + "id": "1e395e8d", + "metadata": {}, + "source": [ + "## 5. Display the main statistics of the `max_spikes` column" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0d196291", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 827.000000\n", + "mean 27.920193\n", + "std 57.997378\n", + "min 0.000000\n", + "25% 19.000000\n", + "50% 26.000000\n", + "75% 33.000000\n", + "max 1664.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "c8c9f6b2", + "metadata": {}, + "source": [ + "## 6. Show all the rows where the max number of spikes is larger than 50" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "d907492d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
70OP23113023n30003.abfS1123n30S1c1D1Ctrl0.0yes11.99277815.62708158.666581-78.06091355300.088.775635-41.577148352.294922-103.51562513.80329.3506190NaN0.811086351.581719NaNNaNNaNNaN8 mM-71.584465
74OP23113023n30037.abfS1_D2223n30S1_D2c2D2wash in high K21.0no32.6994447.42644265.804793-67.54455661250.077.716064-36.505127246.459961-74.34082012.50200.2933988; exclude; Rs_end > 30NaN0.950158322.090736NaNNaNNaNNaN8 mM-59.579331
262OP23080823808003.abfS1623808S1c6D1TTX0.0no8.16333310.394754106.082649-83.3007811664-300.071.081543-15.057373237.426758-69.70214813.0598.9408615NaN1.025354NaNNaNNaNNaNNaN8 mM-32.684415
321OP23020923209012.abfS2523209S2c5D1high K0.0no-2.8747228.52573081.231493-69.04907253100.082.275391-34.912109365.478516-98.26660213.05141.8316428192.0246010.713136NaNNaNNaNNaNNaN8 mM-58.246034
396OP23081023810004.abfS1523810S1c5D1high K0.0yes5.66083325.46841279.043216-65.15502955100.085.491943-43.072510389.770508-80.07812511.45241.5927883224.5875000.966593NaNNaNNaNNaNNaN8 mM-60.860893
397OP23081023810004.abfS1723810S1c7D1high K0.0yes5.66083326.75653074.709503-64.85595753150.090.942383-42.932129423.950195-83.0078129.10239.3168545307.5403000.965371NaNNaNNaNNaNNaN8 mM-61.513494
398OP23081023810004.abfS1823810S1c8D1high K0.0no5.66083318.02366563.532613-61.41357455200.084.509277-39.605713339.843750-77.3925787.10146.6915516199.5067001.043352NaNNaNNaNNaNNaN8 mM-62.291177
558OP23031423314003.abfS1823314S1c8D1high K0.0no5.94083322.05420497.596130-67.35839852100.079.431152-41.333008325.073242-111.57226613.30186.4047905NaN0.776089NaNNaN201.505075NaNNaN8 mM-61.035575
646OP24011724118004.abfS2_D2424117S2_D2c4D1Ctrl20.0no26.42420017.188385139.095453-76.91650461100.078.436279-40.686035316.040039-95.09277319.80201.3675983NaN0.740537295.539851NaNNaNNaNNaN8 mM-59.561161
647OP24011724118004.abfS2_D2524117S2_D2c5D1Ctrl20.0no26.42420027.929918140.091217-70.42236356100.082.684326-44.421387325.561523-96.92382818.85226.1723914NaN0.769121207.006900NaNNaNNaNNaN8 mM-60.495223
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "70 OP231130 23n30003.abf S1 1 23n30S1c1 D1 Ctrl \n", + "74 OP231130 23n30037.abf S1_D2 2 23n30S1_D2c2 D2 wash in high K \n", + "262 OP230808 23808003.abf S1 6 23808S1c6 D1 TTX \n", + "321 OP230209 23209012.abf S2 5 23209S2c5 D1 high K \n", + "396 OP230810 23810004.abf S1 5 23810S1c5 D1 high K \n", + "397 OP230810 23810004.abf S1 7 23810S1c7 D1 high K \n", + "398 OP230810 23810004.abf S1 8 23810S1c8 D1 high K \n", + "558 OP230314 23314003.abf S1 8 23314S1c8 D1 high K \n", + "646 OP240117 24118004.abf S2_D2 4 24117S2_D2c4 D1 Ctrl \n", + "647 OP240117 24118004.abf S2_D2 5 24117S2_D2c5 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "70 0.0 yes 11.992778 15.627081 58.666581 \n", + "74 21.0 no 32.699444 7.426442 65.804793 \n", + "262 0.0 no 8.163333 10.394754 106.082649 \n", + "321 0.0 no -2.874722 8.525730 81.231493 \n", + "396 0.0 yes 5.660833 25.468412 79.043216 \n", + "397 0.0 yes 5.660833 26.756530 74.709503 \n", + "398 0.0 no 5.660833 18.023665 63.532613 \n", + "558 0.0 no 5.940833 22.054204 97.596130 \n", + "646 20.0 no 26.424200 17.188385 139.095453 \n", + "647 20.0 no 26.424200 27.929918 140.091217 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH \\\n", + "70 -78.060913 55 300.0 88.775635 -41.577148 \n", + "74 -67.544556 61 250.0 77.716064 -36.505127 \n", + "262 -83.300781 1664 -300.0 71.081543 -15.057373 \n", + "321 -69.049072 53 100.0 82.275391 -34.912109 \n", + "396 -65.155029 55 100.0 85.491943 -43.072510 \n", + "397 -64.855957 53 150.0 90.942383 -42.932129 \n", + "398 -61.413574 55 200.0 84.509277 -39.605713 \n", + "558 -67.358398 52 100.0 79.431152 -41.333008 \n", + "646 -76.916504 61 100.0 78.436279 -40.686035 \n", + "647 -70.422363 56 100.0 82.684326 -44.421387 \n", + "\n", + " max_depol max_repol membra_time_constant_tau capacitance \\\n", + "70 352.294922 -103.515625 13.80 329.350619 \n", + "74 246.459961 -74.340820 12.50 200.293398 \n", + "262 237.426758 -69.702148 13.05 98.940861 \n", + "321 365.478516 -98.266602 13.05 141.831642 \n", + "396 389.770508 -80.078125 11.45 241.592788 \n", + "397 423.950195 -83.007812 9.10 239.316854 \n", + "398 339.843750 -77.392578 7.10 146.691551 \n", + "558 325.073242 -111.572266 13.30 186.404790 \n", + "646 316.040039 -95.092773 19.80 201.367598 \n", + "647 325.561523 -96.923828 18.85 226.172391 \n", + "\n", + " comments rheo_ramp AP_halfwidth Rheobse_ramp \\\n", + "70 0 NaN 0.811086 351.581719 \n", + "74 8; exclude; Rs_end > 30 NaN 0.950158 322.090736 \n", + "262 5 NaN 1.025354 NaN \n", + "321 8 192.024601 0.713136 NaN \n", + "396 3 224.587500 0.966593 NaN \n", + "397 5 307.540300 0.965371 NaN \n", + "398 6 199.506700 1.043352 NaN \n", + "558 5 NaN 0.776089 NaN \n", + "646 3 NaN 0.740537 295.539851 \n", + "647 4 NaN 0.769121 207.006900 \n", + "\n", + " Unnamed: 27 rheos_ramp comment high K concentration RMP_from_char \n", + "70 NaN NaN NaN NaN 8 mM -71.584465 \n", + "74 NaN NaN NaN NaN 8 mM -59.579331 \n", + "262 NaN NaN NaN NaN 8 mM -32.684415 \n", + "321 NaN NaN NaN NaN 8 mM -58.246034 \n", + "396 NaN NaN NaN NaN 8 mM -60.860893 \n", + "397 NaN NaN NaN NaN 8 mM -61.513494 \n", + "398 NaN NaN NaN NaN 8 mM -62.291177 \n", + "558 NaN 201.505075 NaN NaN 8 mM -61.035575 \n", + "646 NaN NaN NaN NaN 8 mM -59.561161 \n", + "647 NaN NaN NaN NaN 8 mM -60.495223 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['max_spikes'] > 50]" + ] + }, + { + "cell_type": "markdown", + "id": "ce9ff32b", + "metadata": {}, + "source": [ + "## 7. Display the main statistics of `'max_spikes'`, for the rows where `high K concentration` is `8 mM` and `15 mM` (separately)\n", + "\n", + "Are the distributions any different?" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "5924179e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 474.000000\n", + "mean 30.955696\n", + "std 75.960740\n", + "min 1.000000\n", + "25% 21.000000\n", + "50% 27.000000\n", + "75% 34.000000\n", + "max 1664.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['high K concentration'] == '8 mM', 'max_spikes'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "660e2af2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 353.000000\n", + "mean 23.844193\n", + "std 10.519791\n", + "min 0.000000\n", + "25% 18.000000\n", + "50% 24.000000\n", + "75% 31.000000\n", + "max 48.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['high K concentration'] == '15 mM', 'max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "8b2d1c2b", + "metadata": {}, + "source": [ + "## 8. Display the statistics of `max_spikes` when `high K concentration` is `8 mM`, and the maximum number of spikes is <= 100\n", + "\n", + "Does that change your conclusion?" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "eec287c7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 473.000000\n", + "mean 27.503171\n", + "std 10.965493\n", + "min 1.000000\n", + "25% 21.000000\n", + "50% 27.000000\n", + "75% 34.000000\n", + "max 61.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[(df['high K concentration'] == '8 mM') & (df['max_spikes'] <= 100), 'max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "6dbbf6c8", + "metadata": {}, + "source": [ + "## 9. Transform the `high K concentration` column into a numerical column\n", + "\n", + "a) Discard the last three characters of the columns (`' mM'`)\n", + "\n", + "b) Use `.astype(float)` to convert to floating point numbers\n", + "\n", + "c) Save the result in a column `K (mM)`" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "3a2bcc9c", + "metadata": {}, + "outputs": [], + "source": [ + "df['K (mM)'] = df['high K concentration'].str[:-3].astype(float)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "35061149", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_charK (mM)
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.8285548.0
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.4602988.0
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.6159798.0
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.1738398.0
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.9563508.0
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char K (mM) \n", + "0 8 mM -61.828554 8.0 \n", + "1 8 mM -60.460298 8.0 \n", + "2 8 mM -59.615979 8.0 \n", + "3 8 mM -61.173839 8.0 \n", + "4 8 mM -60.956350 8.0 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ecc0cad1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/pandas_intro/pandas_intro.ipynb b/exercises/pandas_intro/pandas_intro.ipynb new file mode 100644 index 0000000..0ecc796 --- /dev/null +++ b/exercises/pandas_intro/pandas_intro.ipynb @@ -0,0 +1,227 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "560f48cd", + "metadata": {}, + "source": [ + "# Exercise: Have a look at the neural data using Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f7777604", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "6494fb41", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9ca3bec6", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "0d78a63e", + "metadata": {}, + "source": [ + "## 1. How many rows/columns does the data set have?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4b68e5a6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "0fab635e", + "metadata": {}, + "source": [ + "## 2. Display the first 5 rows of the DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4adcd5bf", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "deecdfa0", + "metadata": {}, + "source": [ + "## 3. Display the names and dtypes of all the columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "64df567c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "411f4228", + "metadata": {}, + "source": [ + "## 4. Display the unique values of the `high K concentration` and of the `treatment` columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b90ce541", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "1e395e8d", + "metadata": {}, + "source": [ + "## 5. Display the main statistics of the `max_spikes` column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e2b86159", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "c8c9f6b2", + "metadata": {}, + "source": [ + "## 6. Show all the rows where the max number of spikes is larger than 50" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c449e9ff", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "ce9ff32b", + "metadata": {}, + "source": [ + "## 7. Display the main statistics of `'max_spikes'`, for the rows where `high K concentration` is `8 mM` and `15 mM` (separately)\n", + "\n", + "Are the distributions any different?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8b84faa2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "8b2d1c2b", + "metadata": {}, + "source": [ + "## 8. Display the statistics of `max_spikes` when `high K concentration` is `8 mM`, and the maximum number of spikes is <= 100\n", + "\n", + "Does that change your conclusion?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1201f7d1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "6dbbf6c8", + "metadata": {}, + "source": [ + "## 9. Transform the `high K concentration` column into a numerical column\n", + "\n", + "a) Discard the last three characters of the columns (`' mM'`)\n", + "\n", + "b) Use `.astype(float)` to convert to floating point numbers\n", + "\n", + "c) Save the result in a column `K (mM)`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1cf5c15d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ecc0cad1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/pandas_intro/pandas_intro_solution.ipynb b/exercises/pandas_intro/pandas_intro_solution.ipynb new file mode 100644 index 0000000..550e823 --- /dev/null +++ b/exercises/pandas_intro/pandas_intro_solution.ipynb @@ -0,0 +1,1487 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "560f48cd", + "metadata": {}, + "source": [ + "# Exercise: Have a look at the neural data using Pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f7777604", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "6494fb41", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9ca3bec6", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "0d78a63e", + "metadata": {}, + "source": [ + "## 1. How many rows/columns does the data set have?" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "291ebbfb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(827, 31)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "markdown", + "id": "0fab635e", + "metadata": {}, + "source": [ + "## 2. Display the first 5 rows of the DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "908f60ae", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.173839
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char \n", + "0 8 mM -61.828554 \n", + "1 8 mM -60.460298 \n", + "2 8 mM -59.615979 \n", + "3 8 mM -61.173839 \n", + "4 8 mM -60.956350 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "deecdfa0", + "metadata": {}, + "source": [ + "## 3. Display the names and dtypes of all the columns" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "025779f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OP object\n", + "filename object\n", + "slice object\n", + "cell_ch int64\n", + "cell_ID object\n", + "day object\n", + "treatment object\n", + "hrs_incubation float64\n", + "repatch object\n", + "hrs_after_OP float64\n", + "Rs float64\n", + "Rin float64\n", + "resting_potential float64\n", + "max_spikes int64\n", + "Rheobase float64\n", + "AP_heigth float64\n", + "TH float64\n", + "max_depol float64\n", + "max_repol float64\n", + "membra_time_constant_tau float64\n", + "capacitance float64\n", + "comments object\n", + "rheo_ramp float64\n", + "AP_halfwidth float64\n", + "Rheobse_ramp float64\n", + "Unnamed: 27 float64\n", + "rheos_ramp float64\n", + "comment object\n", + " float64\n", + "high K concentration object\n", + "RMP_from_char float64\n", + "dtype: object" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.dtypes" + ] + }, + { + "cell_type": "markdown", + "id": "411f4228", + "metadata": {}, + "source": [ + "## 4. Display the unique values of the `high K concentration` and of the `treatment` columns" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a2248e7b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['8 mM', '15 mM'], dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['high K concentration'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "4d0f3708", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['TTX', 'high K', 'Ctrl', 'wash in high K'], dtype=object)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['treatment'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "f3154259", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "44" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['OP'].nunique()" + ] + }, + { + "cell_type": "markdown", + "id": "1e395e8d", + "metadata": {}, + "source": [ + "## 5. Display the main statistics of the `max_spikes` column" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0d196291", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 827.000000\n", + "mean 27.920193\n", + "std 57.997378\n", + "min 0.000000\n", + "25% 19.000000\n", + "50% 26.000000\n", + "75% 33.000000\n", + "max 1664.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "c8c9f6b2", + "metadata": {}, + "source": [ + "## 6. Show all the rows where the max number of spikes is larger than 50" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "d907492d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
70OP23113023n30003.abfS1123n30S1c1D1Ctrl0.0yes11.99277815.62708158.666581-78.06091355300.088.775635-41.577148352.294922-103.51562513.80329.3506190NaN0.811086351.581719NaNNaNNaNNaN8 mM-71.584465
74OP23113023n30037.abfS1_D2223n30S1_D2c2D2wash in high K21.0no32.6994447.42644265.804793-67.54455661250.077.716064-36.505127246.459961-74.34082012.50200.2933988; exclude; Rs_end > 30NaN0.950158322.090736NaNNaNNaNNaN8 mM-59.579331
262OP23080823808003.abfS1623808S1c6D1TTX0.0no8.16333310.394754106.082649-83.3007811664-300.071.081543-15.057373237.426758-69.70214813.0598.9408615NaN1.025354NaNNaNNaNNaNNaN8 mM-32.684415
321OP23020923209012.abfS2523209S2c5D1high K0.0no-2.8747228.52573081.231493-69.04907253100.082.275391-34.912109365.478516-98.26660213.05141.8316428192.0246010.713136NaNNaNNaNNaNNaN8 mM-58.246034
396OP23081023810004.abfS1523810S1c5D1high K0.0yes5.66083325.46841279.043216-65.15502955100.085.491943-43.072510389.770508-80.07812511.45241.5927883224.5875000.966593NaNNaNNaNNaNNaN8 mM-60.860893
397OP23081023810004.abfS1723810S1c7D1high K0.0yes5.66083326.75653074.709503-64.85595753150.090.942383-42.932129423.950195-83.0078129.10239.3168545307.5403000.965371NaNNaNNaNNaNNaN8 mM-61.513494
398OP23081023810004.abfS1823810S1c8D1high K0.0no5.66083318.02366563.532613-61.41357455200.084.509277-39.605713339.843750-77.3925787.10146.6915516199.5067001.043352NaNNaNNaNNaNNaN8 mM-62.291177
558OP23031423314003.abfS1823314S1c8D1high K0.0no5.94083322.05420497.596130-67.35839852100.079.431152-41.333008325.073242-111.57226613.30186.4047905NaN0.776089NaNNaN201.505075NaNNaN8 mM-61.035575
646OP24011724118004.abfS2_D2424117S2_D2c4D1Ctrl20.0no26.42420017.188385139.095453-76.91650461100.078.436279-40.686035316.040039-95.09277319.80201.3675983NaN0.740537295.539851NaNNaNNaNNaN8 mM-59.561161
647OP24011724118004.abfS2_D2524117S2_D2c5D1Ctrl20.0no26.42420027.929918140.091217-70.42236356100.082.684326-44.421387325.561523-96.92382818.85226.1723914NaN0.769121207.006900NaNNaNNaNNaN8 mM-60.495223
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "70 OP231130 23n30003.abf S1 1 23n30S1c1 D1 Ctrl \n", + "74 OP231130 23n30037.abf S1_D2 2 23n30S1_D2c2 D2 wash in high K \n", + "262 OP230808 23808003.abf S1 6 23808S1c6 D1 TTX \n", + "321 OP230209 23209012.abf S2 5 23209S2c5 D1 high K \n", + "396 OP230810 23810004.abf S1 5 23810S1c5 D1 high K \n", + "397 OP230810 23810004.abf S1 7 23810S1c7 D1 high K \n", + "398 OP230810 23810004.abf S1 8 23810S1c8 D1 high K \n", + "558 OP230314 23314003.abf S1 8 23314S1c8 D1 high K \n", + "646 OP240117 24118004.abf S2_D2 4 24117S2_D2c4 D1 Ctrl \n", + "647 OP240117 24118004.abf S2_D2 5 24117S2_D2c5 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "70 0.0 yes 11.992778 15.627081 58.666581 \n", + "74 21.0 no 32.699444 7.426442 65.804793 \n", + "262 0.0 no 8.163333 10.394754 106.082649 \n", + "321 0.0 no -2.874722 8.525730 81.231493 \n", + "396 0.0 yes 5.660833 25.468412 79.043216 \n", + "397 0.0 yes 5.660833 26.756530 74.709503 \n", + "398 0.0 no 5.660833 18.023665 63.532613 \n", + "558 0.0 no 5.940833 22.054204 97.596130 \n", + "646 20.0 no 26.424200 17.188385 139.095453 \n", + "647 20.0 no 26.424200 27.929918 140.091217 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH \\\n", + "70 -78.060913 55 300.0 88.775635 -41.577148 \n", + "74 -67.544556 61 250.0 77.716064 -36.505127 \n", + "262 -83.300781 1664 -300.0 71.081543 -15.057373 \n", + "321 -69.049072 53 100.0 82.275391 -34.912109 \n", + "396 -65.155029 55 100.0 85.491943 -43.072510 \n", + "397 -64.855957 53 150.0 90.942383 -42.932129 \n", + "398 -61.413574 55 200.0 84.509277 -39.605713 \n", + "558 -67.358398 52 100.0 79.431152 -41.333008 \n", + "646 -76.916504 61 100.0 78.436279 -40.686035 \n", + "647 -70.422363 56 100.0 82.684326 -44.421387 \n", + "\n", + " max_depol max_repol membra_time_constant_tau capacitance \\\n", + "70 352.294922 -103.515625 13.80 329.350619 \n", + "74 246.459961 -74.340820 12.50 200.293398 \n", + "262 237.426758 -69.702148 13.05 98.940861 \n", + "321 365.478516 -98.266602 13.05 141.831642 \n", + "396 389.770508 -80.078125 11.45 241.592788 \n", + "397 423.950195 -83.007812 9.10 239.316854 \n", + "398 339.843750 -77.392578 7.10 146.691551 \n", + "558 325.073242 -111.572266 13.30 186.404790 \n", + "646 316.040039 -95.092773 19.80 201.367598 \n", + "647 325.561523 -96.923828 18.85 226.172391 \n", + "\n", + " comments rheo_ramp AP_halfwidth Rheobse_ramp \\\n", + "70 0 NaN 0.811086 351.581719 \n", + "74 8; exclude; Rs_end > 30 NaN 0.950158 322.090736 \n", + "262 5 NaN 1.025354 NaN \n", + "321 8 192.024601 0.713136 NaN \n", + "396 3 224.587500 0.966593 NaN \n", + "397 5 307.540300 0.965371 NaN \n", + "398 6 199.506700 1.043352 NaN \n", + "558 5 NaN 0.776089 NaN \n", + "646 3 NaN 0.740537 295.539851 \n", + "647 4 NaN 0.769121 207.006900 \n", + "\n", + " Unnamed: 27 rheos_ramp comment high K concentration RMP_from_char \n", + "70 NaN NaN NaN NaN 8 mM -71.584465 \n", + "74 NaN NaN NaN NaN 8 mM -59.579331 \n", + "262 NaN NaN NaN NaN 8 mM -32.684415 \n", + "321 NaN NaN NaN NaN 8 mM -58.246034 \n", + "396 NaN NaN NaN NaN 8 mM -60.860893 \n", + "397 NaN NaN NaN NaN 8 mM -61.513494 \n", + "398 NaN NaN NaN NaN 8 mM -62.291177 \n", + "558 NaN 201.505075 NaN NaN 8 mM -61.035575 \n", + "646 NaN NaN NaN NaN 8 mM -59.561161 \n", + "647 NaN NaN NaN NaN 8 mM -60.495223 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['max_spikes'] > 50]" + ] + }, + { + "cell_type": "markdown", + "id": "ce9ff32b", + "metadata": {}, + "source": [ + "## 7. Display the main statistics of `'max_spikes'`, for the rows where `high K concentration` is `8 mM` and `15 mM` (separately)\n", + "\n", + "Are the distributions any different?" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "5924179e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 474.000000\n", + "mean 30.955696\n", + "std 75.960740\n", + "min 1.000000\n", + "25% 21.000000\n", + "50% 27.000000\n", + "75% 34.000000\n", + "max 1664.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['high K concentration'] == '8 mM', 'max_spikes'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "660e2af2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 353.000000\n", + "mean 23.844193\n", + "std 10.519791\n", + "min 0.000000\n", + "25% 18.000000\n", + "50% 24.000000\n", + "75% 31.000000\n", + "max 48.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[df['high K concentration'] == '15 mM', 'max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "8b2d1c2b", + "metadata": {}, + "source": [ + "## 8. Display the statistics of `max_spikes` when `high K concentration` is `8 mM`, and the maximum number of spikes is <= 100\n", + "\n", + "Does that change your conclusion?" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "eec287c7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 473.000000\n", + "mean 27.503171\n", + "std 10.965493\n", + "min 1.000000\n", + "25% 21.000000\n", + "50% 27.000000\n", + "75% 34.000000\n", + "max 61.000000\n", + "Name: max_spikes, dtype: float64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[(df['high K concentration'] == '8 mM') & (df['max_spikes'] <= 100), 'max_spikes'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "6dbbf6c8", + "metadata": {}, + "source": [ + "## 9. Transform the `high K concentration` column into a numerical column\n", + "\n", + "a) Discard the last three characters of the columns (`' mM'`)\n", + "\n", + "b) Use `.astype(float)` to convert to floating point numbers\n", + "\n", + "c) Save the result in a column `K (mM)`" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "3a2bcc9c", + "metadata": {}, + "outputs": [], + "source": [ + "df['K (mM)'] = df['high K concentration'].str[:-3].astype(float)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "35061149", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_charK (mM)
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.8285548.0
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.4602988.0
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.6159798.0
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.1738398.0
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.9563508.0
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char K (mM) \n", + "0 8 mM -61.828554 8.0 \n", + "1 8 mM -60.460298 8.0 \n", + "2 8 mM -59.615979 8.0 \n", + "3 8 mM -61.173839 8.0 \n", + "4 8 mM -60.956350 8.0 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ecc0cad1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_join/.DS_Store b/exercises/tabular_join/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/exercises/tabular_join/.DS_Store differ diff --git a/exercises/tabular_join/.ipynb_checkpoints/tabular_join-checkpoint.ipynb b/exercises/tabular_join/.ipynb_checkpoints/tabular_join-checkpoint.ipynb new file mode 100644 index 0000000..76e3ad5 --- /dev/null +++ b/exercises/tabular_join/.ipynb_checkpoints/tabular_join-checkpoint.ipynb @@ -0,0 +1,124 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f11a76bf", + "metadata": {}, + "source": [ + "# Exercise: Add experiment information to electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f2742b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "2967c84e", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ed626ee3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')\n", + "info = pd.read_csv('../../data/op_info.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "2fef4d37", + "metadata": {}, + "source": [ + "# 1. Add experiment information to the electrophysiology results\n", + "\n", + "* Is there information for every experiment?\n", + "* How many experiments did each patcher perform? (i.e., individual OPs, or rows in `info`)\n", + "* How many samples did each patcher analyze? (i.e., individual rows in `df`)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1f3f57eb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "44031178", + "metadata": {}, + "source": [ + "# 2. Remove outliers from the table\n", + "\n", + "1. Load the list of outliers in `outliers.csv`\n", + "2. Use an anti-join to remove the outliers from the table\n", + "3. How many samples (rows) are left in the data?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7fa953af", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "84270332", + "metadata": {}, + "source": [ + "# 3. Save final result in `processed_QC_passed_2024-07-04_collected_v1.csv`\n", + "\n", + "1. Using the `.to_csv` method of Pandas DataFrames" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c7bcff45", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_join/.ipynb_checkpoints/tabular_join_solution-checkpoint.ipynb b/exercises/tabular_join/.ipynb_checkpoints/tabular_join_solution-checkpoint.ipynb new file mode 100644 index 0000000..603d481 --- /dev/null +++ b/exercises/tabular_join/.ipynb_checkpoints/tabular_join_solution-checkpoint.ipynb @@ -0,0 +1,1086 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f11a76bf", + "metadata": {}, + "source": [ + "# Exercise: Add experiment information to electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f2742b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "2967c84e", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ed626ee3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')\n", + "info = pd.read_csv('../../data/op_info.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "48d5375f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.173839
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char \n", + "0 8 mM -61.828554 \n", + "1 8 mM -60.460298 \n", + "2 8 mM -59.615979 \n", + "3 8 mM -61.173839 \n", + "4 8 mM -60.956350 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "47191528", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPtissue_sourceareapatient_agepatcher
0OP201027Mittetemporal33Rosie
1OP201029Mittetemporal47Rosie
2OP210323Virchowtemporal10Rosie
3OP210615Virchowtemporal19Rosie
4OP211123Bielefeldtemporal68Rosie
\n", + "
" + ], + "text/plain": [ + " OP tissue_source area patient_age patcher\n", + "0 OP201027 Mitte temporal 33 Rosie\n", + "1 OP201029 Mitte temporal 47 Rosie\n", + "2 OP210323 Virchow temporal 10 Rosie\n", + "3 OP210615 Virchow temporal 19 Rosie\n", + "4 OP211123 Bielefeld temporal 68 Rosie" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "info.head()" + ] + }, + { + "cell_type": "markdown", + "id": "2fef4d37", + "metadata": {}, + "source": [ + "# 1. Add experiment information to the electrophysiology results\n", + "\n", + "* Is there information for every experiment?\n", + "* How many experiments did each patcher perform? (i.e., individual OPs, or rows in `info`)\n", + "* How many samples did each patcher analyze? (i.e., individual rows in `df`)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "35e19a53", + "metadata": {}, + "outputs": [], + "source": [ + "df_with_info = df.merge(info, on='OP', how='left')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "eac1244f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OP 827\n", + "filename 827\n", + "slice 827\n", + "cell_ch 827\n", + "cell_ID 827\n", + "day 827\n", + "treatment 827\n", + "hrs_incubation 827\n", + "repatch 827\n", + "hrs_after_OP 827\n", + "Rs 827\n", + "Rin 827\n", + "resting_potential 827\n", + "max_spikes 827\n", + "Rheobase 824\n", + "AP_heigth 824\n", + "TH 824\n", + "max_depol 824\n", + "max_repol 824\n", + "membra_time_constant_tau 827\n", + "capacitance 827\n", + "comments 742\n", + "rheo_ramp 120\n", + "AP_halfwidth 820\n", + "Rheobse_ramp 160\n", + "Unnamed: 27 0\n", + "rheos_ramp 32\n", + "comment 5\n", + " 37\n", + "high K concentration 827\n", + "RMP_from_char 827\n", + "tissue_source 800\n", + "area 800\n", + "patient_age 800\n", + "patcher 800\n", + "dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_with_info.count()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "2f6724ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Verji 35\n", + "Rosie 8\n", + "Anna 2\n", + "Name: patcher, dtype: int64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "info['patcher'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "8f996049", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Verji 594\n", + "Rosie 206\n", + "Name: patcher, dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_with_info['patcher'].value_counts()" + ] + }, + { + "cell_type": "markdown", + "id": "44031178", + "metadata": {}, + "source": [ + "# 2. Remove outliers from the table\n", + "\n", + "1. Load the list of outliers in `outliers.csv`\n", + "2. Use an anti-join to remove the outliers from the table\n", + "3. How many samples (rows) are left in the data?" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "d1d4cc27", + "metadata": {}, + "outputs": [], + "source": [ + "outliers = pd.read_csv('outliers.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "fbebbd97", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(134, 2)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "outliers.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "8a3c7943", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPcell_ID
0OP24020124201S2c2
1OP2103232021_03_25_0S4_D2c6
2OP23080823808S2c6
3OP24050324503S1c6
4OP2301092311S3c2
\n", + "
" + ], + "text/plain": [ + " OP cell_ID\n", + "0 OP240201 24201S2c2\n", + "1 OP210323 2021_03_25_0S4_D2c6\n", + "2 OP230808 23808S2c6\n", + "3 OP240503 24503S1c6\n", + "4 OP230109 2311S3c2" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "outliers.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "573687e7", + "metadata": {}, + "outputs": [], + "source": [ + "temp = df_with_info.merge(outliers, on=['OP', 'cell_ID'], how='outer', indicator=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "a4a6574b", + "metadata": {}, + "outputs": [], + "source": [ + "df_without_outliers = temp[temp['_merge'] == 'left_only'].drop('_merge', axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "8fd89a40", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_without_outliers.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "07f4776a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
5OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
6OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "5 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "6 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "5 0.0 yes 10.416389 6.000400 31.599917 \n", + "6 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "5 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "6 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "5 -61.401367 16.65 575.513924 5 786.927898 \n", + "6 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "5 1.182830 NaN NaN NaN NaN NaN \n", + "6 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "5 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "6 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "5 Verji \n", + "6 Verji " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_without_outliers.head()" + ] + }, + { + "cell_type": "markdown", + "id": "84270332", + "metadata": {}, + "source": [ + "# 3. Save final result in `processed_QC_passed_2024-07-04_collected_v1.csv`\n", + "\n", + "1. Using the `.to_csv` method of Pandas DataFrames" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "85902eea", + "metadata": {}, + "outputs": [], + "source": [ + "df_without_outliers.to_csv('processed_QC_passed_2024-07-04_collected_v1.csv', index=None)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c7bcff45", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_join/outliers.csv b/exercises/tabular_join/outliers.csv new file mode 100644 index 0000000..d67a45b --- /dev/null +++ b/exercises/tabular_join/outliers.csv @@ -0,0 +1,135 @@ +OP,cell_ID +OP240201,24201S2c2 +OP210323,2021_03_25_0S4_D2c6 +OP230808,23808S2c6 +OP240503,24503S1c6 +OP230109,2311S3c2 +OP211209,21d10S1_D2c7 +OP220127,22128S3c5 +OP221020,22o21S4_D2c6 +OP230808,23808S1c1 +OP210323,2021_03_25_0S4_D2c7 +OP211209,21d10S4c3 +OP240215,24215S2c5 +OP220111,22112S5_D2c7 +OP240321,24321S4c8 +OP220623,22623S2c2 +OP240221,24221S1c1 +OP230209,23209S3_D2c6 +OP240117,24117S2_D2c6 +OP240201,24201S2c5 +OP220518,22519S2c6 +OP221024,22o24S1_D2c7 +OP220426,22427S4c7 +OP230523,23523S2c1 +OP230808,23808S1_D2c6 +OP211209,21d10S5c8 +OP230817,23817S1c3 +OP221027,22o27S1c2 +OP210323,2021_03_25_0S6_D2c4 +OP211123,2021_11_24_0S3c8 +OP220217,22217S1c4 +OP220602,22602S2_D2c6 +OP210323,2021_03_24_0S5c2 +OP240215,24215S2c1 +OP230523,23523S3c4 +OP231109,23n09S1c1 +OP211123,2021_11_24_0S3c6 +OP221024,22o24S3c7 +OP230810,23810S1c8 +OP220426,22427S2c3 +OP220426,22427S4c4 +OP221024,22o24S1c7 +OP230817,23817S3c5 +OP220623,22623S3c3 +OP220111,22112S1_D2c1 +OP220217,22217S3c5 +OP220426,22427S2_D2c1 +OP231123,23n23S1c5 +OP220127,22127S3_D2c7 +OP231123,23n23S1_D2c5 +OP240201,24201S2c8 +OP211123,2021_11_24_0S3c1 +OP220308,22308S2c4 +OP220127,22129S3_D2c8 +OP211123,21n23S2c4 +OP220518,22519S2c5 +OP230808,23808S5c7 +OP220914,22915S2c8 +OP220127,22128S4c5 +OP230314,23314S2_D2c7 +OP240503,24503S3c2 +OP220120,22121S1c5 +OP221024,22o24S1c5 +OP210615,2021_06_16_0S1_D2c3 +OP221027,22o27S1c3 +OP220602,22602S3_D2c7 +OP220602,22602S1c3 +OP230314,23314S4c3 +OP240321,24321S3c1 +OP230314,23314S4c6 +OP220228,22228S2_D2c7 +OP210323,2021_03_24_0S3c1 +OP230426,23426S3c2 +OP211209,21d10S1c7 +OP220111,22111S1c8 +OP231130,23n30S1_D2c7 +OP230810,23810S3c2 +OP240503,24503S1_D2c4 +OP220120,22121S1c4 +OP220623,22623S4_D2c2 +OP220623,22623S2c6 +OP210615,2021_06_16_0S1_D2c1 +OP220518,22519S1c4 +OP220602,22602S3c2 +OP230523,23523S2c4 +OP240503,24503S1c1 +OP220217,22217S1c7 +OP230523,23523S2c2 +OP231130,23n30S2c5 +OP231130,23n30S1_D2c6 +OP240411,24411S1c5 +OP220914,22915S2c7 +OP220914,22915S3_D2c2 +OP240503,24503S2c2 +OP240417,24417S2_D2c1 +OP220602,22602S2c4 +OP220228,22228S1c6 +OP220217,22218S2_D2c7 +OP230808,23808S2c4 +OP220914,22915S2c1 +OP210323,2021_03_25_0S4_D2c4 +OP230314,23314S3c1 +OP220228,22228S2c1 +OP220120,22121S1c7 +OP230109,2311S1c1 +OP230420,23420S2c1 +OP220426,22427S2c4 +OP220111,22112S6_D2c5 +OP240503,24503S2c7 +OP240503,24503S2c8 +OP220602,22602S2c1 +OP221027,22o27S1c6 +OP230817,23817S3_D2c1 +OP231130,23n30S1_D2c5 +OP220127,22127S2_D2c7 +OP230808,23808S4c2 +OP220127,22128S2c2 +OP220602,22602S2c5 +OP230817,23817S3c2 +OP240117,24117S1c5 +OP220518,22519S4c2 +OP221020,22o21S4_D2c3 +OP230420,23420S1c7 +OP240201,24201S1c5 +OP221027,22o27S1c3 +OP230808,23808S3_D2c6 +OP220308,22308S2c2 +OP220120,22121S1c4 +OP230209,23209S3c8 +OP230209,23209S1_D2c2 +OP221027,22o27S3_D2c7 +OP201029,20o29S2c1 +OP230808,23808S2_D2c4 +OP220623,22623S3_D2c1 +OP230314,23314S1c6 diff --git a/exercises/tabular_join/tabular_join.ipynb b/exercises/tabular_join/tabular_join.ipynb new file mode 100644 index 0000000..76e3ad5 --- /dev/null +++ b/exercises/tabular_join/tabular_join.ipynb @@ -0,0 +1,124 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f11a76bf", + "metadata": {}, + "source": [ + "# Exercise: Add experiment information to electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f2742b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "2967c84e", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ed626ee3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')\n", + "info = pd.read_csv('../../data/op_info.csv')" + ] + }, + { + "cell_type": "markdown", + "id": "2fef4d37", + "metadata": {}, + "source": [ + "# 1. Add experiment information to the electrophysiology results\n", + "\n", + "* Is there information for every experiment?\n", + "* How many experiments did each patcher perform? (i.e., individual OPs, or rows in `info`)\n", + "* How many samples did each patcher analyze? (i.e., individual rows in `df`)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1f3f57eb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "44031178", + "metadata": {}, + "source": [ + "# 2. Remove outliers from the table\n", + "\n", + "1. Load the list of outliers in `outliers.csv`\n", + "2. Use an anti-join to remove the outliers from the table\n", + "3. How many samples (rows) are left in the data?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7fa953af", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "84270332", + "metadata": {}, + "source": [ + "# 3. Save final result in `processed_QC_passed_2024-07-04_collected_v1.csv`\n", + "\n", + "1. Using the `.to_csv` method of Pandas DataFrames" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c7bcff45", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_join/tabular_join_solution.ipynb b/exercises/tabular_join/tabular_join_solution.ipynb new file mode 100644 index 0000000..603d481 --- /dev/null +++ b/exercises/tabular_join/tabular_join_solution.ipynb @@ -0,0 +1,1086 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f11a76bf", + "metadata": {}, + "source": [ + "# Exercise: Add experiment information to electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f2742b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "2967c84e", + "metadata": {}, + "source": [ + "# Load electrophysiology data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ed626ee3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('../../data/QC_passed_2024-07-04_collected.csv')\n", + "info = pd.read_csv('../../data/op_info.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "48d5375f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_char
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979
3OP23042023420003.abfS1723420S1c7D1TTX0.0yes10.4163897.26919539.186101-69.26879924300.075.030518-29.699707242.553711-71.41113317.15478.2733624598.0799360.994396NaNNaNNaNNaNNaN8 mM-61.173839
4OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 7 23420S1c7 D1 TTX \n", + "4 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 7.269195 39.186101 \n", + "4 0.0 yes 10.416389 6.000400 31.599917 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -69.268799 24 300.0 75.030518 -29.699707 242.553711 \n", + "4 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -71.411133 17.15 478.273362 4 598.079936 \n", + "4 -61.401367 16.65 575.513924 5 786.927898 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 0.994396 NaN NaN NaN NaN NaN \n", + "4 1.182830 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char \n", + "0 8 mM -61.828554 \n", + "1 8 mM -60.460298 \n", + "2 8 mM -59.615979 \n", + "3 8 mM -61.173839 \n", + "4 8 mM -60.956350 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "47191528", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPtissue_sourceareapatient_agepatcher
0OP201027Mittetemporal33Rosie
1OP201029Mittetemporal47Rosie
2OP210323Virchowtemporal10Rosie
3OP210615Virchowtemporal19Rosie
4OP211123Bielefeldtemporal68Rosie
\n", + "
" + ], + "text/plain": [ + " OP tissue_source area patient_age patcher\n", + "0 OP201027 Mitte temporal 33 Rosie\n", + "1 OP201029 Mitte temporal 47 Rosie\n", + "2 OP210323 Virchow temporal 10 Rosie\n", + "3 OP210615 Virchow temporal 19 Rosie\n", + "4 OP211123 Bielefeld temporal 68 Rosie" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "info.head()" + ] + }, + { + "cell_type": "markdown", + "id": "2fef4d37", + "metadata": {}, + "source": [ + "# 1. Add experiment information to the electrophysiology results\n", + "\n", + "* Is there information for every experiment?\n", + "* How many experiments did each patcher perform? (i.e., individual OPs, or rows in `info`)\n", + "* How many samples did each patcher analyze? (i.e., individual rows in `df`)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "35e19a53", + "metadata": {}, + "outputs": [], + "source": [ + "df_with_info = df.merge(info, on='OP', how='left')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "eac1244f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OP 827\n", + "filename 827\n", + "slice 827\n", + "cell_ch 827\n", + "cell_ID 827\n", + "day 827\n", + "treatment 827\n", + "hrs_incubation 827\n", + "repatch 827\n", + "hrs_after_OP 827\n", + "Rs 827\n", + "Rin 827\n", + "resting_potential 827\n", + "max_spikes 827\n", + "Rheobase 824\n", + "AP_heigth 824\n", + "TH 824\n", + "max_depol 824\n", + "max_repol 824\n", + "membra_time_constant_tau 827\n", + "capacitance 827\n", + "comments 742\n", + "rheo_ramp 120\n", + "AP_halfwidth 820\n", + "Rheobse_ramp 160\n", + "Unnamed: 27 0\n", + "rheos_ramp 32\n", + "comment 5\n", + " 37\n", + "high K concentration 827\n", + "RMP_from_char 827\n", + "tissue_source 800\n", + "area 800\n", + "patient_age 800\n", + "patcher 800\n", + "dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_with_info.count()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "2f6724ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Verji 35\n", + "Rosie 8\n", + "Anna 2\n", + "Name: patcher, dtype: int64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "info['patcher'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "8f996049", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Verji 594\n", + "Rosie 206\n", + "Name: patcher, dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_with_info['patcher'].value_counts()" + ] + }, + { + "cell_type": "markdown", + "id": "44031178", + "metadata": {}, + "source": [ + "# 2. Remove outliers from the table\n", + "\n", + "1. Load the list of outliers in `outliers.csv`\n", + "2. Use an anti-join to remove the outliers from the table\n", + "3. How many samples (rows) are left in the data?" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "d1d4cc27", + "metadata": {}, + "outputs": [], + "source": [ + "outliers = pd.read_csv('outliers.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "fbebbd97", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(134, 2)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "outliers.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "8a3c7943", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPcell_ID
0OP24020124201S2c2
1OP2103232021_03_25_0S4_D2c6
2OP23080823808S2c6
3OP24050324503S1c6
4OP2301092311S3c2
\n", + "
" + ], + "text/plain": [ + " OP cell_ID\n", + "0 OP240201 24201S2c2\n", + "1 OP210323 2021_03_25_0S4_D2c6\n", + "2 OP230808 23808S2c6\n", + "3 OP240503 24503S1c6\n", + "4 OP230109 2311S3c2" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "outliers.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "573687e7", + "metadata": {}, + "outputs": [], + "source": [ + "temp = df_with_info.merge(outliers, on=['OP', 'cell_ID'], how='outer', indicator=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "a4a6574b", + "metadata": {}, + "outputs": [], + "source": [ + "df_without_outliers = temp[temp['_merge'] == 'left_only'].drop('_merge', axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "8fd89a40", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_without_outliers.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "07f4776a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
5OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
6OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "5 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "6 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "5 0.0 yes 10.416389 6.000400 31.599917 \n", + "6 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "5 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "6 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "5 -61.401367 16.65 575.513924 5 786.927898 \n", + "6 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "5 1.182830 NaN NaN NaN NaN NaN \n", + "6 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "5 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "6 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "5 Verji \n", + "6 Verji " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_without_outliers.head()" + ] + }, + { + "cell_type": "markdown", + "id": "84270332", + "metadata": {}, + "source": [ + "# 3. Save final result in `processed_QC_passed_2024-07-04_collected_v1.csv`\n", + "\n", + "1. Using the `.to_csv` method of Pandas DataFrames" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "85902eea", + "metadata": {}, + "outputs": [], + "source": [ + "df_without_outliers.to_csv('processed_QC_passed_2024-07-04_collected_v1.csv', index=None)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c7bcff45", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine-checkpoint.ipynb b/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine-checkpoint.ipynb new file mode 100644 index 0000000..baf6d01 --- /dev/null +++ b/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine-checkpoint.ipynb @@ -0,0 +1,446 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f634238", + "metadata": {}, + "source": [ + "# Exercise: Compute summary statistics for the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "141ca000", + "metadata": {}, + "source": [ + "# Load the processed neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "d2dfebd3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('processed_QC_passed_2024-07-04_collected_v1.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "09554c84", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "df95a10b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
3OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
4OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "4 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 6.000400 31.599917 \n", + "4 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "4 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -61.401367 16.65 575.513924 5 786.927898 \n", + "4 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 1.182830 NaN NaN NaN NaN NaN \n", + "4 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "3 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "4 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "3 Verji \n", + "4 Verji " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "0b4f6091", + "metadata": {}, + "source": [ + "# 1. Does capacitance change with age?\n", + "\n", + "* Compute the capacitance by patient age, and plot it\n", + "* Does it change with age? (eyeballing is enough)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bb796266", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "1940d3fe", + "metadata": {}, + "source": [ + "# 2. Spiking threshold after potassium incubation\n", + "\n", + "1. Does the spiking threshold (TH) change between Day 1 and Day 2?\n", + "2. Does this result depend on the treatment?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dd5023cd", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine_solution-checkpoint.ipynb b/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine_solution-checkpoint.ipynb new file mode 100644 index 0000000..0ccbf53 --- /dev/null +++ b/exercises/tabular_split_apply_combine/.ipynb_checkpoints/split_apply_combine_solution-checkpoint.ipynb @@ -0,0 +1,684 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: Compute summary statistics for the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the processed neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "d2dfebd3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('processed_QC_passed_2024-07-04_collected_v1.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "09554c84", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "df95a10b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
3OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
4OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "4 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 6.000400 31.599917 \n", + "4 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "4 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -61.401367 16.65 575.513924 5 786.927898 \n", + "4 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 1.182830 NaN NaN NaN NaN NaN \n", + "4 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "3 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "4 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "3 Verji \n", + "4 Verji " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "0b4f6091", + "metadata": {}, + "source": [ + "# 1. Does capacitance change with age?\n", + "\n", + "* Compute the capacitance by patient age, and plot it\n", + "* Does it change with age? (eyeballing is enough)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "00bb9eb1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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t+ratasSEhLa7LVmzpyp48eP680332yz5wQQOaLDXQEAHUdSUlK4qwCgg2HoB+iERo0apccee0yPPfaYrrzySiUnJ+tf/uVfdKaDdePGjRoyZIgSEhLk9Xp1//33q6KiQpJ05MgRjR49WpLUo0cPOY6jmTNnus979tBPfX29nnjiCV111VWKj4/XsGHDtGPHDvf62rVrdeWVV2rLli268cYb1b17d91+++3y+/2SpLy8PK1bt05//OMf5TiOHMcJ+vvmLFy4UP3791e3bt10zTXX6Omnn9bp06eDyvz6179Wr169lJCQoF/+8pd68skndfPNNweVWbNmjW688UZdccUVuuGGG/Qf//EfIbQygLZAUAE6qXXr1ik6Olp//vOf9fLLL2vFihX6wx/+IOmHgPHcc8/pf/7nf/Tmm2/q8OHDbhhJT0/XG2+8IUk6ePCg/H6/XnrppSZf4xe/+IX+9Kc/qaCgQPv27dO9996r22+/XYcOHXLLnDp1Sv/2b/+mDRs26KOPPtLRo0e1YMECSdKCBQs0depUN7z4/X6NGDHiou8tISFBa9eu1V/+8he99NJLWr16tVasWOFef+211/T888/rN7/5jUpKStS7d2+tWrUq6DlWr16tp556Ss8//7w+++wzLVmyRE8//bTWrVvX8kYGcOkucYdnABFo5MiR5sYbbzSNjY3uuYULF5obb7yxyfIff/yxkWRqamqMMcZ8+OGHRpKpqqo673nnzp1rjDHm888/N47jmL/97W9BZcaOHWsWLVpkjDFmzZo1RpL5/PPP3ev//u//blJTU93HM2bMMHfddVdr36oxxphly5aZwYMHu4+HDRtmZs+eHVTmlltuMTfddJP7OD093bz++utBZZ577jmTnZ19SXUBEBruUQE6qeHDh8txHPdxdna2li9froaGBu3bt095eXnau3evvv32WzU2NkqSjh49qgEDBrTo+T/55BMZY9S/f/+g83V1dUpOTnYfd+vWTddee6372OfzucNMrfVf//VfevHFF/X555/rxIkT+v7775WYmOheP3jwoB599NGgv/mHf/gHbd++XZL0f//3fyorK9OsWbP00EMPuWW+//57eTyeS6obgNAQVAAE+e677zRhwgRNmDBBGzduVM+ePXX06FFNnDhR9fX1LX6exsZGRUVFqaSkRFFRUUHXunfv7v5z165dg645juPeK9Mau3fv1n333adnn31WEydOlMfjUUFBgZYvX37e65zt7Nc8E8xWr16tYcOGBZU7970AuLwIKkAntXv37vMe9+vXT//7v/+ryspKLV26VOnp6ZKkPXv2BJWNiYmRJDU0NDT7/IMGDVJDQ4MqKir04x//uNX1jImJueDrnOtPf/qTMjIy9NRTT7nnvvrqq6Ay119/vT7++GM98MAD7rmz32Nqaqquuuoqffnll5o+fXqr6w7g0hFUgE6qrKxM8+bN08MPP6xPPvlEv/vd77R8+XL17t1bMTEx+t3vfqdHHnlE+/fv13PPPRf0txkZGXIcR//93/+tn/zkJ4qLiwvqJZGk/v37a/r06fr5z3+u5cuXa9CgQaqsrNT27duVlZWln/zkJy2qZ58+fbRlyxYdPHhQycnJ8ng85/XCnO26667T0aNHVVBQoKFDh+qdd95RYWFhUJk5c+booYce0pAhQzRixAht2rRJ+/bt0zXXXOOWycvL0+OPP67ExERNmjRJdXV12rNnj6qqqjRv3rwW1R1AGwjzPTIAwmDkyJHm0UcfNY888ohJTEw0PXr0ME8++aR7c+3rr79u+vTpY2JjY012drZ56623jCTz6aefus/xq1/9yni9XuM4jpkxY4b7vGdupjXGmPr6evOv//qvpk+fPqZr167G6/Wau+++2+zbt88Y88PNtB6PJ6huhYWF5uz/NVVUVJjx48eb7t27G0nmww8/vOj7++d//meTnJxsunfvbqZNm2ZWrFhx3uv86le/MikpKaZ79+7mwQcfNI8//rgZPnx4UJnXXnvN3HzzzSYmJsb06NHD3HbbbWbz5s0XfX0AbYeVaYFOaNSoUbr55pv14osvhrsq1hg/fry8Xq82bNgQ7qoAOAtDPwA6nVOnTun3v/+9Jk6cqKioKP3nf/6ntm3bpq1bt4a7agDOwYJvACLKkiVL1L179yaPSZMmteg5HMfRu+++qx//+McaPHiw3n77bb3xxhsaN27cZa49gFAx9AMgonz77bf69ttvm7wWFxenq666qp1rBOByIqgAAABrMfQDAACsRVABAADWIqgAAABrEVQAAIC1CCoAAMBaBBUAAGAtggoAALAWQQUAAFjr/wG6t+F7pXHoxgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.groupby('patient_age')['capacitance'].mean().plot(ls='', marker='.')" + ] + }, + { + "cell_type": "markdown", + "id": "1940d3fe", + "metadata": {}, + "source": [ + "# 2. Spiking threshold after potassium incubation\n", + "\n", + "1. Does the spiking threshold (TH) change between Day 1 and Day 2?\n", + "2. Does this result depend on the treatment?" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "8175fc1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "day\n", + "D1 -37.276805\n", + "D2 -33.039838\n", + "Name: TH, dtype: float64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('day')['TH'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "fc34eecb", + "metadata": {}, + "outputs": [], + "source": [ + "th_per_treatment_and_day = df.pivot_table(index='treatment', columns='day', values='TH', aggfunc='mean')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "05761273", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dayD1D2
treatment
Ctrl-37.865372-35.751658
TTX-36.852170-30.008780
high K-36.926069-33.162092
wash in high KNaN-35.791016
\n", + "
" + ], + "text/plain": [ + "day D1 D2\n", + "treatment \n", + "Ctrl -37.865372 -35.751658\n", + "TTX -36.852170 -30.008780\n", + "high K -36.926069 -33.162092\n", + "wash in high K NaN -35.791016" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "th_per_treatment_and_day" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "95fabcd9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
meanstd
dayD1D2D1D2
treatment
Ctrl-37.865372-35.7516584.2601405.459102
TTX-36.852170-30.0087805.4065696.577182
high K-36.926069-33.1620923.9662944.479648
wash in high KNaN-35.791016NaN1.009906
\n", + "
" + ], + "text/plain": [ + " mean std \n", + "day D1 D2 D1 D2\n", + "treatment \n", + "Ctrl -37.865372 -35.751658 4.260140 5.459102\n", + "TTX -36.852170 -30.008780 5.406569 6.577182\n", + "high K -36.926069 -33.162092 3.966294 4.479648\n", + "wash in high K NaN -35.791016 NaN 1.009906" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "th_per_treatment_and_day = df.pivot_table(index='treatment', columns='day', values='TH', aggfunc=['mean', 'std'])\n", + "th_per_treatment_and_day" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dd5023cd", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_split_apply_combine/processed_QC_passed_2024-07-04_collected_v1.csv b/exercises/tabular_split_apply_combine/processed_QC_passed_2024-07-04_collected_v1.csv new file mode 100644 index 0000000..32554f3 --- /dev/null +++ b/exercises/tabular_split_apply_combine/processed_QC_passed_2024-07-04_collected_v1.csv @@ -0,0 +1,660 @@ +OP,filename,slice,cell_ch,cell_ID,day,treatment,hrs_incubation,repatch,hrs_after_OP,Rs,Rin,resting_potential,max_spikes,Rheobase,AP_heigth,TH,max_depol,max_repol,membra_time_constant_tau,capacitance,comments,rheo_ramp,AP_halfwidth,Rheobse_ramp,Unnamed: 27,rheos_ramp,comment, ,high K concentration,RMP_from_char,tissue_source,area,patient_age,patcher +OP230420,23420003.abf,S1,1,23420S1c1,D1,TTX,0.0,no,10.41638889,6.675642783,39.02530066,-74.28588867,24,200.0,80.74951172,-35.27832031,336.1816406,-60.79101563,19.4,510.6017671,0,753.3801127,1.151008709,,,,,,8 mM,-61.82855423,Bielefeld,temporal,13.0,Verji +OP230420,23420003.abf,S1,3,23420S1c3,D1,TTX,0.0,no,10.41638889,7.86717388,48.728367,-69.57397461,26,300.0,78.44848633,-32.04345703,350.0976563,-67.13867188,17.3,393.3979181,1,585.1028368,1.006321207,,,,,,8 mM,-60.46029755,Bielefeld,temporal,13.0,Verji +OP230420,23420003.abf,S1,6,23420S1c6,D1,TTX,0.0,no,10.41638889,8.820133954,35.97108195,-54.95605469,22,300.0,76.66015625,-29.82788086,270.6298828,-52.24609375,14.85,426.0987741,3,173.9157972,1.266334769,,,,,,8 mM,-59.61597931,Bielefeld,temporal,13.0,Verji +OP230420,23420003.abf,S1,8,23420S1c8,D1,TTX,0.0,yes,10.41638889,6.000399595,31.59991662,-70.55053711,22,350.0,81.01196289,-33.06884766,309.4482422,-61.40136719,16.65,575.5139241,5,786.9278976,1.182829516,,,,,,8 mM,-60.9563504,Bielefeld,temporal,13.0,Verji +OP230420,23420061.abf,S1_D2,8,23420S1c8,D2,TTX,19.0,yes,29.63333333,8.27161387,30.60725912,-70.74584961,1,1300.0,48.88305664,-20.85571289,100.9521484,-27.46582031,13.25,864.8924303,29,565.9388646,1.504127172,,,,,,8 mM,-61.28396652,Bielefeld,temporal,13.0,Verji +OP230420,23420013.abf,S2,2,23420S2c2,D1,high K,0.0,yes,12.18805556,6.474840398,32.07293365,-69.54956055,23,350.0,83.7890625,-29.89501953,413.6962891,-70.55664063,16.4,516.7261538,7,201.3400447,1.027804266,,,,,,8 mM,-60.52478302,Bielefeld,temporal,13.0,Verji +OP230420,23420077.abf,S2_D2,2,23420S2c2,D2,high K,19.0,yes,30.98388889,9.968065615,36.3802336,-68.51196289,24,400.0,84.40551758,-30.52978516,394.0429688,-75.07324219,11.6,390.6565262,31,765.9555319,0.930062058,,,,,,8 mM,-59.85708862,Bielefeld,temporal,13.0,Verji +OP230420,23420013.abf,S2,5,23420S2c5,D1,high K,0.0,no,12.18805556,8.999843286,44.60996072,-75.38452148,28,200.0,84.31396484,-36.4074707,395.1416016,-76.29394531,21.0,445.1021992,9,192.7797593,1.011750103,,,,,,8 mM,-61.64437424,Bielefeld,temporal,13.0,Verji +OP230420,23420013.abf,S2,7,23420S2c7,D1,high K,0.0,yes,12.18805556,7.407777278,29.9454656,-70.00732422,25,300.0,89.69726563,-36.01074219,469.4824219,-79.34570313,16.75,585.1428571,11,730.2643421,0.95473797,,,,,,8 mM,-61.72656616,Bielefeld,temporal,13.0,Verji +OP230420,23420089.abf,S2_D2,8,23420S2c7,D2,high K,19.0,yes,31.39111111,7.713653313,30.01570082,-63.01269531,14,500.0,85.02807617,-32.37915039,240.8447266,-32.83691406,9.0,447.5144158,41,685.3961799,2.089426026,,,,,,8 mM,-60.07796478,Bielefeld,temporal,13.0,Verji +OP230420,23420013.abf,S2,8,23420S2c8,D1,high K,0.0,no,12.18805556,10.15496886,33.77378731,-69.79370117,22,300.0,86.32202148,-36.98730469,432.7392578,-61.03515625,18.3,644.0970999,12; exclude; Rs_end > 30,974.7058235,1.122725061,,,,,,8 mM,-61.19957474,Bielefeld,temporal,13.0,Verji +OP230420,23420082.abf,S2_D2,3,23420S2c6,D2,high K,19.0,yes,31.07722222,6.579656173,25.38582301,-61.50512695,17,700.0,76.82495117,-26.26342773,336.7919922,-56.640625,8.45,391.0870056,34,898.3632788,1.067489562,,,,,,8 mM,-64.32669205,Bielefeld,temporal,13.0,Verji +OP230420,23420089.abf,S2_D2,4,23420S2c4,D2,high K,19.0,yes,31.39111111,8.203241825,33.07277794,-64.09912109,12,500.0,74.73144531,-27.57568359,170.4101563,-25.87890625,7.55,349.9270156,38,671.9390646,2.3157393,,,,,,8 mM,-61.24166061,Bielefeld,temporal,13.0,Verji +OP230420,23420089.abf,S2_D2,7,23420S2_D2c7,D2,high K,19.0,no,31.39111111,9.301121412,48.02493093,-60.99243164,17,350.0,83.22753906,-30.51147461,270.5078125,-38.33007813,18.45,551.6145985,40,359.0886363,1.792339262,,,,,,8 mM,-60.2222229,Bielefeld,temporal,13.0,Verji +OP220623,22623012.abf,S2,3,22623S2c3,D1,high K,0.0,no,9.266944444,6.567370956,21.87430608,-68.68286133,29,400.0,75.6652832,-29.70581055,292.2363281,-80.32226563,13.1,362.8578191,1,,0.808835298,,,,,,8 mM,-54.82799149,Mitte,frontal,32.0,Verji +OP220623,22623012.abf,S2,5,22623S2c5,D1,high K,0.0,no,9.266944444,8.100154874,32.366858,-71.50878906,13,200.0,83.28857422,-37.43286133,383.0566406,-79.22363281,12.2,267.2256684,2,,0.866514786,,,,,,8 mM,-58.27890594,Mitte,frontal,32.0,Verji +OP220623,22623012.abf,S2,8,22623S2c8,D1,high K,0.0,no,9.266944444,10.76286348,43.03477568,-66.82739258,28,200.0,80.20019531,-34.03930664,260.0097656,-61.15722656,14.3,349.9495146,5,,1.080965273,,,,,,8 mM,-61.64262833,Mitte,frontal,32.0,Verji +OP220623,22623020.abf,S3,2,22623S3c2,D1,Ctrl,0.0,no,11.15611111,8.286958234,73.17783032,-78.94897461,31,150.0,79.66918945,-35.22338867,283.203125,-113.1591797,14.9,175.9434955,7,,0.667559582,,,,,,8 mM,-59.97206573,Mitte,frontal,32.0,Verji +OP220623,22623020.abf,S3,4,22623S3c4,D1,Ctrl,0.0,no,11.15611111,7.299165038,29.26620304,-75.79956055,24,200.0,81.53686523,-34.28955078,267.2119141,-70.06835938,16.95,354.8994249,9,,0.989486403,,,,,,8 mM,-63.04627823,Mitte,frontal,32.0,Verji +OP220623,22623020.abf,S3,6,22623S3c6,D1,Ctrl,0.0,no,11.15611111,7.217536181,30.66001016,-76.63574219,30,100.0,90.75927734,-42.50488281,336.7919922,-99.24316406,21.65,376.9538789,11,,0.775832236,,,,,,8 mM,-59.41052475,Mitte,frontal,32.0,Verji +OP220623,22623020.abf,S3,7,22623S3c7,D1,Ctrl,0.0,no,11.15611111,6.431786593,33.43171949,-60.28442383,27,300.0,77.34375,-33.05053711,314.6972656,-74.95117188,10.25,317.4593573,12,,0.889394928,,,,,,8 mM,-59.64039612,Mitte,frontal,32.0,Verji +OP220623,22623029.abf,S4,1,22623S4c1,D1,TTX,0.0,yes,12.90611111,7.128821582,39.45025408,-65.27709961,26,400.0,76.55029297,-33.06884766,311.2792969,-57.00683594,10.2,231.4637119,14,,1.097791645,,,,,,8 mM,-61.15372162,Mitte,frontal,32.0,Verji +OP220623,22623053.abf,S4_d2,8,22623S4c1,D2,TTX,22.0,yes,35.0525,29.64063094,78.98804495,-62.21313477,24,250.0,62.70141602,-32.11669922,180.9082031,-58.10546875,7.75,185.2312181,23,,0.999206084,,,,,,8 mM,-62.48835083,Mitte,frontal,32.0,Verji +OP220623,22623029.abf,S4,6,22623S4c6,D1,TTX,0.0,no,12.90611111,8.789322911,81.75947704,-60.29663086,32,200.0,74.55444336,-35.21118164,219.4824219,-60.66894531,12.1,155.183092,17,,1.019203423,,,,,,8 mM,-61.5940918,Mitte,frontal,32.0,Verji +OP240507,24507016.abf,S2,4,24507S2c4,D1,high K,0.0,no,10.99111111,12.36416637,72.87736705,-62.17041016,16,100.0,80.94482422,-38.04321289,271.3623047,-72.265625,27.45,506.1798537,7,,1.022462166,197.6765892,,,,,8 mM,-59.10916031,Hamburg,temporal,16.0,Verji +OP240507,24507016.abf,S2,6,24507S2c6,D1,high K,0.0,no,10.99111111,10.92189913,49.61267498,-53.90014648,23,200.0,84.91210938,-37.98828125,351.1962891,-76.29394531,15.3,409.2656327,9,,1.032390974,102.3934131,,,,,8 mM,-61.09294525,Hamburg,temporal,16.0,Verji +OP240507,24507029.abf,S3,2,24507S3c2,D1,Ctrl,0.0,no,13.35833333,30.02004502,50.41696127,-52.75268555,9,1200.0,67.16308594,-36.02294922,321.7773438,-59.81445313,0.15,45.9364486,12; exclude; Rs_end > 30,,0.962486019,520.9373646,,,,,8 mM,-58.46185867,Hamburg,temporal,16.0,Verji +OP240507,24507051.abf,S2_D2,4,24507S2c5,D2,high K,17.0,yes,29.12694444,18.9552835,50.32373039,-50.8605957,20,500.0,73.05908203,-35.09521484,314.3310547,-79.95605469,0.15,23.97658537,21; exclude; Rs_end > 30,,0.811532107,255.6685223,,,,,8 mM,-53.57775635,Hamburg,temporal,16.0,Verji +OP240507,24507060.abf,S3_D2,6,24507S3_D2c6,D2,Ctrl,17.0,no,31.47138889,12.18102556,45.63257558,-56.90917969,23,350.0,84.85717773,-37.09716797,332.8857422,-81.90917969,20.2,733.8288248,27,,0.899682815,249.6683223,,,,,8 mM,-61.83390396,Hamburg,temporal,16.0,Verji +OP231109,23n09004.abf,S1,2,23n09S1c2,D1,Ctrl,0.0,no,5.016944444,9.160783254,94.60849635,-70.50170898,41,150.0,78.05175781,-35.68115234,270.6298828,-65.67382813,26.1,345.8329155,1,,1.052610637,289.9296643,,,,,8 mM,-54.33382431,Mitte,temporal,44.0,Verji +OP231109,23n09004.abf,S1,5,23n09S1c5,D1,Ctrl,0.0,no,5.016944444,8.385924129,47.95658754,-71.57592773,33,150.0,86.98120117,-37.12768555,356.3232422,-75.07324219,15.25,375.8646108,3,,1.005146053,534.7078236,,,,,8 mM,-64.12757767,Mitte,temporal,44.0,Verji +OP231109,23n09004.abf,S1,6,23n09S1c6,D1,Ctrl,0.0,no,5.016944444,6.30525859,45.78416717,-72.55249023,31,150.0,85.2722168,-34.19189453,318.7255859,-51.63574219,19.05,430.8008282,4,,1.253816758,598.2799427,,,,,8 mM,-61.03536026,Mitte,temporal,44.0,Verji +OP231109,23n09004.abf,S1,7,23n09S1c7,D1,Ctrl,0.0,no,5.016944444,14.76206099,46.91589011,-66.07055664,28,300.0,72.86376953,-34.61914063,232.5439453,-67.26074219,9.9,344.7430393,5,,1.037331314,307.9902663,,,,,8 mM,-58.56504822,Mitte,temporal,44.0,Verji +OP231109,23n09015.abf,S2,2,23n09S2c2,D1,high K,0.0,yes,5.535,8.860476921,71.09933762,-66.64428711,43,100.0,79.96826172,-37.5,257.5683594,-67.01660156,17.8,228.7334902,8,,1.026145745,253.7484583,,,,,8 mM,-60.68150299,Mitte,temporal,44.0,Verji +OP231109,23n09015.abf,S2,7,23n09S2c7,D1,high K,0.0,no,5.535,9.106013132,96.0378979,-75.08544922,37,150.0,86.92016602,-36.98120117,331.6650391,-87.76855469,19.8,469.129718,11,,0.83326724,307.9902663,,,,,8 mM,-59.81362976,Mitte,temporal,44.0,Verji +OP231109,23n09015.abf,S2,8,23n09S2c8,D1,high K,0.0,yes,5.535,11.87209051,78.30865164,-70.40405273,25,800.0,51.33666992,-25.72631836,136.5966797,-43.57910156,12.85,398.362157,12,,1.068929243,0.0,,,,,8 mM,-61.78157059,Mitte,temporal,44.0,Verji +OP230426,23426003.abf,S1,8,23426S1c8,D1,Ctrl,0.0,no,21.42833333,9.104908937,128.6879089,-72.72949219,32,100.0,92.82836914,-44.3359375,492.6757813,-92.40722656,11.25,196.7129136,5,228.877629,0.824561445,,,,,,8 mM,-64.70461487,Hamburg,temporal,58.0,Verji +OP230426,23426011.abf,S2,8,23426S2c8,D1,high K,0.0,no,23.40777778,7.736325451,51.25116731,-70.17822266,30,200.0,88.26904297,-37.26196289,426.5136719,-88.37890625,17.3,357.2063012,7,478.845962,0.834236337,,,,,,8 mM,-60.40496033,Hamburg,temporal,58.0,Verji +OP230426,23426017.abf,S3,4,23426S3c4,D1,high K,0.0,no,24.36611111,8.550426449,41.49446295,-72.94311523,43,200.0,79.94995117,-37.31689453,355.9570313,-91.18652344,13.0,309.8065455,9,534.977833,0.729802573,,,,,,8 mM,-60.25913116,Hamburg,temporal,58.0,Verji +OP230426,23426017.abf,S3,5,23426S3c5,D1,high K,0.0,no,24.36611111,7.225007513,38.36266736,-69.6105957,33,150.0,87.51220703,-38.7878418,412.5976563,-81.78710938,15.0,372.3636364,10,423.554118,0.895493486,,,,,,8 mM,-60.92206757,Hamburg,temporal,58.0,Verji +OP230426,23426017.abf,S3,6,23426S3c6,D1,high K,0.0,no,24.36611111,7.533919301,60.58603809,-69.48852539,26,100.0,86.51123047,-36.328125,417.6025391,-77.63671875,13.85,241.2742158,11,331.81106,0.904285424,,,,,,8 mM,-61.94321762,Hamburg,temporal,58.0,Verji +OP220426,22427010.abf,S2,6,22427S2c6,D1,TTX,0.0,no,22.85555556,8.11855387,42.98952558,-70.86791992,30,150.0,81.86035156,-35.46142578,228.0273438,-80.078125,16.05,250.7994278,3,,0.920186379,,,,,,15 mM,-58.88047363,Bielefeld,temporal,60.0,Verji +OP220426,22427019.abf,S3,1,22427S3c1,D1,high K,0.0,no,24.78472222,9.413326965,64.16138123,-68.84765625,26,200.0,81.87866211,-35.83374023,286.2548828,-85.44921875,16.5,264.2580645,6,,0.913302897,,,,,,15 mM,-60.5696228,Bielefeld,temporal,60.0,Verji +OP220426,22427019.abf,S3,3,22427S3c3,D1,high K,0.0,yes,24.78472222,14.69289725,61.06627519,-69.26879883,30,150.0,81.7565918,-35.36987305,288.9404297,-78.125,21.0,404.5432099,8,,0.877826816,,,,,,15 mM,-61.62928177,Bielefeld,temporal,60.0,Verji +OP220426,22427073.abf,S3_D2,3,22427S3c3,D2,high K,24.0,yes,48.90805556,7.368074757,33.91831019,-60.25390625,14,350.0,77.66113281,-25.88500977,316.0400391,-70.55664063,17.3,441.1567315,30,,0.933136291,,,,,,15 mM,-59.35913712,Bielefeld,temporal,60.0,Verji +OP220426,22427019.abf,S3,4,22427S3c4,D1,high K,0.0,no,24.78472222,6.555757205,37.19217609,-71.13647461,25,250.0,89.13574219,-35.90698242,311.5234375,-83.984375,16.4,440.4878689,9,,0.930810631,,,,,,15 mM,-62.88617523,Bielefeld,temporal,60.0,Verji +OP220426,22427019.abf,S3,5,22427S3c5,D1,high K,0.0,no,24.78472222,7.805099445,36.28028452,-53.43017578,18,200.0,74.76196289,-34.5703125,239.8681641,-76.90429688,13.4,353.5355878,10,,0.866591582,,,,,,15 mM,-59.16793152,Bielefeld,temporal,60.0,Verji +OP220426,22427032.abf,S4,5,22427S4c5,D1,Ctrl,0.0,no,26.92055556,7.379796886,24.40440787,-61.43188477,30,450.0,85.8215332,-37.45117188,343.0175781,-74.95117188,5.45,261.472328,15,,0.956681649,,,,,,15 mM,-61.4922142,Bielefeld,temporal,60.0,Verji +OP220426,22427032.abf,S4,6,22427S4c6,D1,Ctrl,0.0,yes,26.92055556,9.702328093,29.98075961,-59.43603516,34,450.0,80.84716797,-37.87841797,246.9482422,-69.94628906,6.35,320.6114022,16,,0.948891491,,,,,,15 mM,-61.3225766,Bielefeld,temporal,60.0,Verji +OP220426,22427042.abf,S4_D2,2,22427S4c6,D2,Ctrl,24.0,yes,44.96472222,9.948346991,43.5896815,-64.03808594,20,300.0,69.52514648,-29.4128418,153.8085938,-47.72949219,9.75,230.6772563,19,,1.235679977,,,,,,15 mM,-61.97793671,Bielefeld,temporal,60.0,Verji +OP220426,22427061.abf,S2_D2,5,22427S2_D2c5,D2,TTX,24.0,no,47.1325,6.511569126,23.16589737,-67.97485352,17,700.0,58.56933594,-24.42626953,173.2177734,-45.41015625,14.25,409.2410167,26,,1.1037319,,,,,,15 mM,-60.57814545,Bielefeld,temporal,60.0,Verji +OP231130,23n30003.abf,S1,1,23n30S1c1,D1,Ctrl,0.0,yes,11.99277778,15.62708067,58.6665813,-78.06091309,55,300.0,88.77563477,-41.57714844,352.2949219,-103.515625,13.8,329.3506191,0,,0.8110857,351.5817194,,,,,8 mM,-71.58446503,Bielefeld,temporal,39.0,Verji +OP231130,23n30003.abf,S1,5,23n30S1c5,D1,Ctrl,0.0,no,11.99277778,20.14300934,59.82588333,-60.80932617,29,800.0,68.36547852,-31.46362305,258.5449219,-58.10546875,11.75,632.2233169,1,,1.081763385,0.0,,,,,8 mM,-57.46246033,Bielefeld,temporal,39.0,Verji +OP231130,23n30012.abf,S2,8,23n30S2c8,D1,high K,0.0,yes,12.98361111,9.484605043,63.77992321,-73.14453125,41,150.0,89.00146484,-36.85913086,327.8808594,-88.13476563,19.7,367.4044394,6,,0.890428468,496.1865396,,,,,8 mM,-60.28375305,Bielefeld,temporal,39.0,Verji +OP231130,23n30046.abf,S2_D2,1,23n30S2c8,D2,Ctrl,21.0,yes,34.04833333,11.22861787,67.26239848,-69.43359375,31,300.0,74.03564453,-29.44946289,198.2421875,-52.36816406,14.95,296.0009668,13,,1.262300492,530.2376746,,,,,8 mM,-61.09348236,Bielefeld,temporal,39.0,Verji +OP231130,23n30037.abf,S1_D2,2,23n30S1_D2c2,D2,wash in high K,21.0,no,32.69944444,7.426442253,65.8047933,-67.54455566,61,250.0,77.71606445,-36.50512695,246.4599609,-74.34082031,12.5,200.2933985,8; exclude; Rs_end > 30,,0.950157567,322.0907364,,,,,8 mM,-59.5793309,Bielefeld,temporal,39.0,Verji +OP231130,23n30037.abf,S1_D2,4,23n30S1_D2c4,D2,wash in high K,21.0,no,32.69944444,18.99990833,78.69863438,-53.76586914,34,200.0,76.91040039,-35.0769043,327.6367188,-73.48632813,18.15,403.4865672,9,,0.894415557,160.1153372,,,,,8 mM,-59.20614609,Bielefeld,temporal,39.0,Verji +OP231130,23n30052.abf,S2_D2,6,23n30S2_D2c6,D2,Ctrl,21.0,no,34.33166667,7.483370401,60.24605052,-68.10302734,43,200.0,88.671875,-36.85302734,510.6201172,-114.5019531,10.2,209.2884158,14,,2.401554283,498.6466216,,,,,8 mM,-60.56877396,Bielefeld,temporal,39.0,Verji +OP231130,23n30052.abf,S2_D2,7,23n30S2_D2c7,D2,Ctrl,21.0,no,34.33166667,8.566453943,67.89862467,-58.95385742,27,500.0,79.07104492,-35.33325195,376.2207031,-78.49121094,8.4,275.2512,15,,0.912125624,523.4874496,,,,,8 mM,-60.89023193,Bielefeld,temporal,39.0,Verji +OP221020,22o21021.abf,S4_D2,1,22o21S4_D2c1,D2,TTX,20.0,no,29.72861111,7.733713029,38.67799621,-50.33569336,7,600.0,52.19726563,-22.11303711,108.8867188,-20.5078125,13.1,375.227972,0,,2.22021895,,,,,,8 mM,-61.67611801,Mitte,temporal,25.0,Verji +OP221020,22o21021.abf,S4_D2,2,22o21S4_D2c2,D2,TTX,20.0,no,29.72861111,8.398708399,35.9606823,-66.45507813,11,450.0,61.81030273,-23.88305664,193.7255859,-48.828125,20.6,440.3266797,1,,1.182197457,,,,,,8 mM,-63.15130936,Mitte,temporal,25.0,Verji +OP221020,22o21021.abf,S4_D2,4,22o21S4_D2c4,D2,TTX,20.0,no,29.72861111,7.613993266,41.27707007,-75.14038086,19,200.0,72.27172852,-31.24389648,271.484375,-50.53710938,23.05,361.2158776,3,,1.280341857,,,,,,8 mM,-60.83120071,Mitte,temporal,25.0,Verji +OP221020,22o21035.abf,S5_D2,2,22o21S5_D2c2,D2,Ctrl,20.0,no,31.66277778,7.435570276,32.20945132,-61.14501953,15,400.0,69.48852539,-32.03125,206.4208984,-43.33496094,13.0,377.6453901,7,,1.432495862,,,,,,8 mM,-65.25906036,Mitte,temporal,25.0,Verji +OP221020,22o21035.abf,S5_D2,6,22o21S5_D2c6,D2,Ctrl,20.0,no,31.66277778,7.049154391,39.90329308,-72.70507813,23,300.0,78.82080078,-33.22753906,311.8896484,-65.79589844,18.45,389.7934236,9,,0.976485054,,,,,,8 mM,-60.89603516,Mitte,temporal,25.0,Verji +OP221020,22o21035.abf,S5_D2,7,22o21S5_D2c7,D2,Ctrl,20.0,no,31.66277778,14.60486232,55.41783323,-50.33569336,12,300.0,68.33496094,-32.07397461,191.0400391,-36.1328125,17.4,484.8326531,10,,1.802421399,,,,,,8 mM,-61.39603683,Mitte,temporal,25.0,Verji +OP221020,22o21042.abf,S6_D2,2,22o21S6_D2c2,D2,high K,20.0,no,33.4275,21.01995359,57.54313245,-61.63330078,20,350.0,63.671875,-31.92138672,197.7539063,-46.14257813,26.15,767.8164875,12,,1.138023178,,,,,,8 mM,-62.82082886,Mitte,temporal,25.0,Verji +OP221020,22o21042.abf,S6_D2,4,22o21S6_D2c4,D2,high K,20.0,no,33.4275,6.058090218,40.81383928,-64.46533203,17,500.0,74.8840332,-29.69970703,314.9414063,-66.04003906,15.5,501.8814229,13,,0.947928896,,,,,,8 mM,-62.32504959,Mitte,temporal,25.0,Verji +OP221020,22o21042.abf,S6_D2,6,22o21S6_D2c6,D2,high K,20.0,no,33.4275,7.2884183,51.77505905,-65.46630859,19,350.0,78.42407227,-27.93579102,348.2666016,-64.94140625,10.85,237.8145819,14,,0.993077044,,,,,,8 mM,-62.63967575,Mitte,temporal,25.0,Verji +OP221020,22o21042.abf,S6_D2,8,22o21S6_D2c8,D2,high K,20.0,no,33.4275,10.47091713,32.93464403,-64.88037109,29,450.0,84.11254883,-33.44116211,423.0957031,-83.0078125,9.45,349.5006772,16,,0.83853321,,,,,,8 mM,-61.22122147,Mitte,temporal,25.0,Verji +OP221027,22o27003.abf,S1,1,22o27S1c1,D1,high K,0.0,no,8.293888889,9.756233648,81.64484463,-73.60839844,30,100.0,89.09912109,-35.98632813,427.6123047,-64.33105469,22.6,285.2684129,0,,1.122933865,,,,,,8 mM,-59.49905487,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,1,22o27S2c1,D1,TTX,0.0,yes,9.679166667,6.155731873,51.43651151,-78.35693359,36,-300.0,85.16845703,-38.66577148,374.7558594,-77.02636719,23.75,396.2525458,8,,0.88592002,,,,,,8 mM,-53.55212463,Mitte,temporal,61.0,Verji +OP221027,22o27047.abf,S2_D2,1,22o27S2c1,D2,TTX,24.0,yes,34.57166667,9.714606889,58.60567723,-73.41918945,30,150.0,76.97753906,-34.73510742,297.7294922,-74.21875,16.3,288.5566721,29,,0.951785601,,,,,,8 mM,-61.65735245,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,2,22o27S2c2,D1,TTX,0.0,yes,9.679166667,7.087507564,61.17202158,-76.16577148,37,100.0,87.890625,-37.9699707,380.6152344,-78.85742188,21.35,305.6342508,9,,0.879168388,,,,,,8 mM,-57.17740082,Mitte,temporal,61.0,Verji +OP221027,22o27051.abf,S2_D2,2,22o27S2c2,D2,TTX,24.0,yes,34.65888889,13.08692097,53.72979843,-69.47021484,33,200.0,76.171875,-34.0637207,290.2832031,-88.98925781,10.9,276.2344934,30,,0.80601395,,,,,,8 mM,-61.88209991,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,3,22o27S2c3,D1,TTX,0.0,no,9.679166667,7.058307001,31.33281368,-53.61328125,24,250.0,73.26660156,-35.53466797,277.8320313,-56.88476563,17.75,469.815832,10,,1.076363284,,,,,,8 mM,-56.43325989,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,4,22o27S2c4,D1,TTX,0.0,no,9.679166667,7.056790213,63.5187133,-73.92578125,33,-300.0,90.17333984,-38.69628906,388.3056641,-75.31738281,30.7,380.9078379,11,,0.939451805,,,,,,8 mM,-53.84588562,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,5,22o27S2c5,D1,TTX,0.0,no,9.679166667,10.17094489,107.7500857,-71.59423828,38,-300.0,89.5690918,-38.97094727,381.7138672,-60.42480469,14.95,139.2104575,12,,1.24877545,,,,,,8 mM,-57.30952667,Mitte,temporal,61.0,Verji +OP221027,22o27011.abf,S2,7,22o27S2c7,D1,TTX,0.0,no,9.679166667,13.16751874,76.78538465,-70.70922852,40,-300.0,94.28100586,-38.0065918,420.2880859,-79.58984375,10.55,160.2700046,14,,0.942054004,,,,,,8 mM,-61.88760284,Mitte,temporal,61.0,Verji +OP221027,22o27022.abf,S3,1,22o27S3c1,D1,Ctrl,0.0,no,11.07,8.066904806,42.5484786,-73.42529297,37,50.0,87.72583008,-35.71166992,392.9443359,-91.06445313,24.6,377.7379569,15,,0.821365849,,,,,,8 mM,-52.82335205,Mitte,temporal,61.0,Verji +OP221027,22o27022.abf,S3,2,22o27S3c2,D1,Ctrl,0.0,yes,11.07,9.953828519,70.89452357,-73.49243164,33,50.0,84.93652344,-35.79101563,334.8388672,-75.07324219,19.85,220.4150457,16,,0.915298627,,,,,,8 mM,-55.20203781,Mitte,temporal,61.0,Verji +OP221027,22o27068.abf,S3_D2,2,22o27S3c2,D2,Ctrl,24.0,yes,36.47166667,8.413644313,58.52921935,-73.6328125,48,100.0,88.54370117,-40.90576172,398.8037109,-79.46777344,12.35,196.8311284,37,,0.931550364,,,,,,8 mM,-58.8679126,Mitte,temporal,61.0,Verji +OP221027,22o27022.abf,S3,3,22o27S3c3,D1,Ctrl,0.0,no,11.07,9.843946351,54.92829172,-56.53686523,24,150.0,80.75561523,-35.94360352,299.1943359,-63.96484375,13.6,228.6530528,17,,1.055618671,,,,,,8 mM,-58.39441132,Mitte,temporal,61.0,Verji +OP221027,22o27022.abf,S3,4,22o27S3c4,D1,Ctrl,0.0,yes,11.07,8.179952821,52.91854894,-72.16186523,38,100.0,90.05126953,-37.3840332,415.0390625,-79.95605469,18.4,336.8330726,18,,0.926687357,,,,,,8 mM,-59.85078659,Mitte,temporal,61.0,Verji +OP221027,22o27022.abf,S3,7,22o27S3c7,D1,Ctrl,0.0,no,11.07,7.778175078,61.72579711,-73.16894531,42,100.0,89.5324707,-40.66162109,469.4824219,-112.9150391,15.3,258.2948995,20,,0.743927907,,,,,,8 mM,-58.90775345,Mitte,temporal,61.0,Verji +OP221027,22o27061.abf,S2_D2,7,22o27S2_D2c7,D2,TTX,24.0,no,35.15,15.56751424,57.9726908,-50.88500977,21,200.0,74.31640625,-34.2956543,254.6386719,-64.57519531,13.55,318.9701149,34,,0.984890116,,,,,,8 mM,-59.18066528,Mitte,temporal,61.0,Verji +OP221027,22o27082.abf,S3_D2,5,22o27S3_D2c5,D2,Ctrl,24.0,no,37.03916667,16.82096288,62.58066213,-67.77954102,26,100.0,93.75,-43.11523438,564.9414063,-120.2392578,15.7,310.8505136,39,,0.67740102,,,,,,8 mM,-62.29583862,Mitte,temporal,61.0,Verji +OP221027,22o27082.abf,S3_D2,6,22o27S3_D2c6,D2,Ctrl,24.0,no,37.03916667,8.553550256,56.84382906,-66.21704102,27,150.0,89.33105469,-37.51220703,458.7402344,-94.48242188,17.05,349.6210263,manually corrected HW,,0.78221732,,,,,,8 mM,-61.95102509,Mitte,temporal,61.0,Verji +OP221027,22o27082.abf,S3_D2,8,22o27S3_D2c8,D2,Ctrl,24.0,no,37.03916667,7.800428113,61.56485253,-69.79980469,15,450.0,85.53466797,-38.37890625,468.5058594,-112.7929688,10.25,291.8088619,manually corrected HW,,0.718350859,,,,,,8 mM,-67.57936676,Mitte,temporal,61.0,Verji +OP240411,24411004.abf,S1,6,24411S1c6,D1,Ctrl,0.0,yes,11.24083333,9.301190898,94.74011558,-48.79760742,33,150.0,75.59204102,-33.57543945,264.1601563,-74.21875,15.7,228.8512456,5,,0.914748888,81.75272509,,,,,8 mM,-55.16677032,Bielefeld,temporal,46.0,Verji +OP240411,24411004.abf,S1,8,24411S1c8,D1,Ctrl,0.0,no,11.24083333,23.64922188,56.36350039,-64.52636719,40,100.0,76.11694336,-37.08496094,257.0800781,-75.68359375,19.65,242.2465011,7; exclude; Rs_end > 30,,0.911321783,212.1370712,,,,,8 mM,-60.41564621,Bielefeld,temporal,46.0,Verji +OP240411,24411018.abf,S2,1,24411S2c1,D1,high K,0.0,yes,13.15111111,13.08889851,58.30619249,-71.27685547,38,200.0,79.79125977,-37.5793457,329.9560547,-84.83886719,23.0,415.0132159,8; exclude; Rs_end > 30,,0.83047811,492.2564085,,,,,8 mM,-59.9469545,Bielefeld,temporal,46.0,Verji +OP240411,24411057.abf,S2_D2,1,24411S2c1,D2,high K,18.0,yes,32.95638889,8.334740611,67.00655397,-70.44067383,37,250.0,81.37817383,-32.46459961,373.7792969,-89.23339844,17.2,287.9967297,30,,0.807577882,452.1150705,,,,,8 mM,-62.00080978,Bielefeld,temporal,46.0,Verji +OP240411,24411018.abf,S2,6,24411S2c6,D1,high K,0.0,no,13.15111111,26.52061106,70.27418804,-45.02563477,38,350.0,56.99462891,-28.82080078,148.5595703,-60.79101563,8.1,149.8705816,13; exclude; Rs_end > 30,,0.920958014,233.9477983,,,,,8 mM,-62.49560654,Bielefeld,temporal,46.0,Verji +OP240411,24411032.abf,S3,2,24411S3c2,D1,Ctrl,0.0,yes,15.32305556,9.275814484,140.6164837,-72.3449707,46,150.0,80.9387207,-34.05761719,330.2001953,-83.984375,19.2,173.1752271,16,,0.811604765,230.7076903,,,,,8 mM,-62.10460373,Bielefeld,temporal,46.0,Verji +OP240411,24411032.abf,S3,3,24411S3c3,D1,Ctrl,0.0,no,15.32305556,10.17931707,71.11000869,-68.17626953,34,150.0,79.21142578,-32.91625977,337.7685547,-89.35546875,20.7,434.8061538,17,,0.779389797,415.8438615,,,,,8 mM,-59.99896011,Bielefeld,temporal,46.0,Verji +OP240411,24411046.abf,S1_D2,5,24411S1_D2c5,D2,Ctrl,18.0,no,31.11666667,18.68227738,66.88604847,-72.4609375,31,150.0,83.25805664,-41.63208008,417.1142578,-83.49609375,17.1,442.95083,26,,0.881120538,511.6670556,,,,,8 mM,-63.40537842,Bielefeld,temporal,46.0,Verji +OP240411,24411063.abf,S2_D2,4,24411S2c4,D2,high K,18.0,yes,33.32833333,8.805756443,75.59854705,-59.41772461,27,350.0,74.40185547,-29.01000977,285.7666016,-76.171875,9.9,208.217715,35,,0.822721551,284.0494683,,,,,8 mM,-64.57589218,Bielefeld,temporal,46.0,Verji +OP240411,24411063.abf,S2_D2,5,24411S2c5,D2,high K,18.0,yes,33.32833333,14.51770727,102.5430427,-70.30639648,45,200.0,74.21875,-33.99658203,299.4384766,-87.64648438,13.6,252.3469989,36,,0.760328104,398.3532784,,,,,8 mM,-61.93764832,Bielefeld,temporal,46.0,Verji +OP240411,24411075.abf,S3_D2,4,24411S3_D2c4,D2,Ctrl,18.0,no,35.3,9.440213464,147.9477743,-64.50195313,43,150.0,75.36621094,-38.48266602,247.6806641,-79.46777344,13.1,137.1440256,42,,0.854413493,174.3958132,,,,,8 mM,-58.62794159,Bielefeld,temporal,46.0,Verji +OP240411,24411075.abf,S3_D2,5,24411S3c5,D2,Ctrl,18.0,yes,35.3,21.76884238,77.2707294,-60.96191406,33,300.0,71.69189453,-26.39770508,303.4667969,-71.53320313,11.25,219.6901073,43,,0.838723549,356.6218874,,,,,8 mM,-60.31371185,Bielefeld,temporal,46.0,Verji +OP240215,24215004.abf,S1,2,24215S1c2,D1,Ctrl,0.0,no,11.72583333,10.06559083,59.87388673,-69.70214844,25,100.0,91.96777344,-40.3503418,370.3613281,-95.703125,23.75,486.0961899,1,,0.85751271,408.0136005,,,,,8 mM,-59.18205887,Bielefeld,temporal,30.0,Verji +OP240215,24215004.abf,S1,3,24215S1c3,D1,Ctrl,0.0,no,11.72583333,6.263417105,69.92492438,-71.83837891,29,250.0,75.91552734,-35.63842773,269.6533203,-59.20410156,22.3,379.5981299,2,,1.096868056,436.3345445,,,,,8 mM,-59.95096344,Bielefeld,temporal,30.0,Verji +OP240215,24215004.abf,S1,4,24215S1c4,D1,Ctrl,0.0,no,11.72583333,10.02916639,45.2685955,-74.06616211,25,150.0,88.14086914,-42.74291992,333.0078125,-79.95605469,19.25,486.3407864,3,,0.958975243,719.5139838,,,,,8 mM,-60.0295697,Bielefeld,temporal,30.0,Verji +OP240215,24215035.abf,S1_D2,1,24215S1c1,D2,Ctrl,17.0,yes,28.55416667,9.06040533,62.48006637,-64.59350586,17,200.0,75.43334961,-34.01489258,237.6708984,-58.10546875,23.3,523.6587106,12,,1.156730682,268.6289543,,,,,8 mM,-61.11916382,Bielefeld,temporal,30.0,Verji +OP240215,24215050.abf,S2_D2,2,24215S2c2,D2,high K,17.0,yes,30.47527778,12.95342465,39.00108534,-73.18725586,21,150.0,82.97119141,-36.20605469,326.7822266,-87.03613281,18.35,382.2586141,17; exclude; Rs_end > 30,,0.832962082,748.1349378,,,,,8 mM,-58.07454956,Bielefeld,temporal,30.0,Verji +OP240417,24417004.abf,S1,2,24417S1c2,D1,Ctrl,0.0,yes,9.533055556,13.25477331,84.31330615,-59.32617188,25,150.0,82.97119141,-36.59667969,365.3564453,-85.44921875,21.9,367.8212199,1,,0.8484865,158.9152972,,,,,8 mM,-61.03942688,Hamburg,temporal,29.0,Verji +OP240417,24417040.abf,S1_D2,2,24417S1c2,D2,Ctrl,16.0,yes,27.47166667,19.61963713,123.3555607,-81.42700195,28,50.0,91.43066406,-47.49755859,459.5947266,-94.48242188,26.5,315.5348837,23,,0.791991558,314.2904763,,,,,8 mM,-64.37795044,Hamburg,temporal,29.0,Verji +OP240417,24417004.abf,S1,4,24417S1c4,D1,Ctrl,0.0,no,9.533055556,10.91244348,109.9015451,-70.59936523,30,100.0,82.64770508,-36.37695313,349.3652344,-77.27050781,20.65,274.6181818,3,,0.92916031,228.2176073,,,,,8 mM,-61.16168457,Hamburg,temporal,29.0,Verji +OP240417,24417004.abf,S1,5,24417S1c5,D1,Ctrl,0.0,yes,9.533055556,11.80760956,183.1272351,-73.06518555,27,100.0,85.62011719,-38.62915039,368.6523438,-95.703125,20.9,200.1318527,4,,0.819130955,203.0767692,,,,,8 mM,-59.52498276,Hamburg,temporal,29.0,Verji +OP240417,24417004.abf,S1,6,24417S1c6,D1,Ctrl,0.0,yes,9.533055556,10.53358843,67.57135556,-66.27807617,30,200.0,82.52563477,-33.82568359,365.234375,-78.36914063,20.0,391.026253,5,,0.930314405,330.7010234,,,,,8 mM,-60.87614349,Hamburg,temporal,29.0,Verji +OP240417,24417040.abf,S1_D2,6,24417S1c6,D2,Ctrl,16.0,yes,27.47166667,12.76924171,55.73877309,-66.90063477,31,300.0,74.89624023,-26.39160156,314.0869141,-64.57519531,12.35,229.9345455,25,,0.99835308,427.9042635,,,,,8 mM,-62.42892487,Hamburg,temporal,29.0,Verji +OP240417,24417004.abf,S1,7,24417S1c7,D1,Ctrl,0.0,no,9.533055556,10.9010961,66.66537083,-57.94067383,31,250.0,77.47192383,-32.98950195,275.8789063,-87.76855469,18.15,389.7373526,6,,0.835423376,229.6276543,,,,,8 mM,-60.97737152,Hamburg,temporal,29.0,Verji +OP240417,24417018.abf,S2,1,24417S2c1,D1,high K,0.0,no,13.59611111,12.4418003,66.61329506,-57.8918457,30,250.0,79.55322266,-33.61206055,345.0927734,-81.0546875,19.4,358.1403944,8,,0.826064891,250.9583653,,,,,8 mM,-61.81928131,Hamburg,temporal,29.0,Verji +OP240417,24417029.abf,S3,2,24417S3c2,D1,Ctrl,0.0,no,15.24944444,25.1133928,111.9061667,-72.16796875,33,100.0,82.06176758,-39.02587891,375.6103516,-87.890625,23.65,330.6156997,16,,0.804465902,308.6202873,,,,,8 mM,-59.71862778,Hamburg,temporal,29.0,Verji +OP240417,24417029.abf,S3,5,24417S3c5,D1,Ctrl,0.0,no,15.24944444,12.97490749,91.89792623,-48.18115234,32,150.0,77.75878906,-34.47265625,342.5292969,-71.16699219,18.7,264.3492666,18; exclude; Rs_end > 30,,0.945585706,81.93273109,,,,,8 mM,-61.04722763,Hamburg,temporal,29.0,Verji +OP240417,24417029.abf,S3,6,24417S3c6,D1,Ctrl,0.0,yes,15.24944444,17.95915531,51.57457558,-48.95019531,23,100.0,80.68237305,-40.35644531,255.3710938,-85.81542969,22.3,289.511252,19; exclude; Rs_end > 30; exclude; Rs_end > 30,,0.884513624,,,,,,8 mM,-67.18292725,Hamburg,temporal,29.0,Verji +OP240417,24417062.abf,S3_D2,6,24417S3c6,D1,Ctrl,16.0,yes,31.57638889,13.81928135,129.1641464,-75.32958984,25,100.0,84.60693359,-37.18261719,377.4414063,-99.97558594,23.35,252.3525066,37; exclude; Rs_end > 30; exclude; Rs_end > 30,,0.752147864,288.4896163,,,,,8 mM,-61.49481277,Hamburg,temporal,29.0,Verji +OP240417,24417029.abf,S3,8,24417S3c8,D1,Ctrl,0.0,no,15.24944444,15.75260523,86.19896937,-48.51074219,39,200.0,79.90112305,-34.91210938,358.5205078,-94.7265625,17.0,296.779968,21; exclude; Rs_end > 30,,0.722794161,82.71275709,,,,,8 mM,-60.85140671,Hamburg,temporal,29.0,Verji +OP240417,24417040.abf,S1_D2,1,24417S1_D2c1,D2,Ctrl,16.0,no,27.47166667,8.466645628,64.9064782,-71.72241211,22,50.0,81.9519043,-34.70458984,337.4023438,-96.80175781,22.15,324.4573983,22,,0.775243791,351.9117304,,,,,8 mM,-52.23121353,Hamburg,temporal,29.0,Verji +OP240417,24417052.abf,S2_D2,2,24417S2c2,D2,high K,16.0,yes,29.90805556,11.36884095,80.52932785,-73.50463867,23,100.0,84.72900391,-34.42382813,458.1298828,-94.11621094,23.7,324.3949875,29,,1.027538205,388.1829394,,,,,8 mM,-59.17502167,Hamburg,temporal,29.0,Verji +OP240417,24417052.abf,S2_D2,7,24417S2c7,D2,high K,16.0,yes,29.90805556,12.56057291,60.17618042,-50.78125,18,150.0,81.28051758,-35.22949219,378.5400391,-101.1962891,13.85,228.7483871,33,,0.758878733,113.9137971,,,,,8 mM,-63.64973099,Hamburg,temporal,29.0,Verji +OP230109,2311003.abf,S1,2,2311S1c2,D1,TTX,0.0,yes,19.0325,7.74627878,47.439058,-71.77124023,35,100.0,91.74804688,-37.63427734,442.9931641,-67.87109375,19.3,273.6574643,1,,1.015149893,,,,,,8 mM,-55.71777023,Bielefeld,temporal,42.0,Verji +OP230109,2311027.abf,S1_D2,1,2311S1c2,D2,TTX,24.0,yes,43.80138889,8.451131063,39.68067578,-65.84472656,30,250.0,79.52880859,-33.81958008,305.7861328,-57.98339844,7.6,204.6317173,19,,1.106972822,,,,,,8 mM,-63.41109406,Bielefeld,temporal,42.0,Verji +OP230109,2311003.abf,S1,8,2311S1c8,D1,TTX,0.0,yes,19.0325,6.148548937,25.34815766,-71.38061523,26,250.0,89.93530273,-37.35351563,462.6464844,-84.83886719,13.15,403.6526464,manually_corrected,,0.843977527,,,,,,8 mM,-59.76012955,Bielefeld,temporal,42.0,Verji +OP230109,2311035.abf,S1_D2,6,2311S1c8,D2,TTX,24.0,yes,44.01333333,9.818375264,27.65569897,-63.96484375,21,700.0,70.75195313,-25.02441406,281.3720703,-88.13476563,6.0,260.407947,21; exclude; Rs_end > 30,,0.713587031,,,,,,8 mM,-63.07123352,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,1,2311S2c1,D1,high K,0.0,yes,20.8525,11.8984563,32.67588579,-55.00488281,1,250.0,76.86157227,-49.05395508,277.2216797,-59.81445313,9.0,224.9519451,7,,1.129772509,,,,,,8 mM,-60.30499054,Bielefeld,temporal,42.0,Verji +OP230109,2311047.abf,S2_D2,1,2311S2c1,D2,high K,24.0,yes,46.09027778,10.24690558,54.58327572,-68.37768555,30,200.0,82.31201172,-36.63330078,411.0107422,-70.3125,8.4,156.5706485,30,,0.888556758,,,,,,8 mM,-61.58459412,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,2,2311S2c2,D1,high K,0.0,no,20.8525,13.02227706,157.2082139,-62.39013672,17,-300.0,71.34399414,-30.51757813,207.2753906,-39.91699219,16.55,104.7942802,8,,1.527415926,,,,,,8 mM,-55.10668106,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,5,2311S2c5,D1,high K,0.0,no,20.8525,13.79298611,98.5777257,-53.90625,1,50.0,81.14624023,-48.76708984,356.9335938,-122.9248047,6.05,67.13389773,10,,0.601502835,,,,,,8 mM,-61.78229919,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,6,2311S2c6,D1,high K,0.0,no,20.8525,15.82506011,138.0202564,-71.67358398,33,100.0,80.18798828,-40.16113281,334.2285156,-111.2060547,4.95,54.12132132,11,,0.681809675,,,,,,8 mM,-66.84029236,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,7,2311S2c7,D1,high K,0.0,yes,20.8525,11.93618222,45.08424713,-67.09594727,49,250.0,82.97729492,-38.37280273,363.8916016,-83.0078125,9.05,248.5753562,12,,0.801776934,,,,,,8 mM,-61.62123215,Bielefeld,temporal,42.0,Verji +OP230109,2311055.abf,S2_D2,5,2311S2c7,D2,high K,24.0,yes,46.2775,8.594446103,34.11516418,-46.72241211,26,450.0,75.85449219,-35.69946289,331.7871094,-83.12988281,1.75,105.4117647,32,,0.782910244,,,,,,8 mM,-60.73864365,Bielefeld,temporal,42.0,Verji +OP230109,2311010.abf,S2,8,2311S2c8,D1,high K,0.0,no,20.8525,11.5686629,40.27959212,-63.72070313,48,300.0,84.08203125,-37.59765625,380.9814453,-84.71679688,8.3,275.8361055,13,,0.804060607,,,,,,8 mM,-62.4380603,Bielefeld,temporal,42.0,Verji +OP230109,2311018.abf,S3,3,2311S3c3,D1,Ctrl,0.0,no,23.58111111,15.49846979,38.09356486,-68.50280762,40,150.0,90.13061523,-49.74975586,477.4169922,-112.3046875,14.9,549.2049494,15,,0.648946849,,,,,,8 mM,-60.73683701,Bielefeld,temporal,42.0,Verji +OP230109,2311018.abf,S3,5,2311S3c5,D1,Ctrl,0.0,no,23.58111111,8.049398714,39.26399226,-75.73242188,24,200.0,88.7878418,-42.98095703,430.5419922,-90.45410156,10.75,256.0,16,,0.789030286,,,,,,8 mM,-61.50154633,Bielefeld,temporal,42.0,Verji +OP230109,2311018.abf,S3,7,2311S3c7,D1,Ctrl,0.0,yes,23.58111111,7.438506459,36.42467711,-68.23120117,30,300.0,87.35961914,-35.90087891,373.046875,-56.88476563,9.2,257.8833191,17,,1.229653193,,,,,,8 mM,-61.02633377,Bielefeld,temporal,42.0,Verji +OP230109,2311066.abf,S3_D2,5,2311S3c7,D2,Ctrl,24.0,yes,48.18694444,10.02771222,36.0568183,-63.64135742,25,350.0,80.52978516,-36.46240234,330.4443359,-75.68359375,10.2,303.0223028,43,,0.954831846,,,,,,8 mM,-61.23121948,Bielefeld,temporal,42.0,Verji +OP230109,2311018.abf,S3,8,2311S3c8,D1,Ctrl,0.0,no,23.58111111,7.378515708,42.43448927,-66.83959961,36,250.0,90.08178711,-36.40136719,504.1503906,-93.13964844,10.5,284.1156069,18,,0.777427384,,,,,,8 mM,-61.80401093,Bielefeld,temporal,42.0,Verji +OP230109,2311040.abf,S1_D2,2,2311S1_D2c2,D2,TTX,24.0,no,44.32472222,8.621053829,59.98245962,-67.44384766,23,150.0,71.86889648,-28.69873047,269.53125,-60.05859375,17.4,235.6046281,23,,1.063718469,,,,,,8 mM,-57.1927832,Bielefeld,temporal,42.0,Verji +OP230109,2311040.abf,S1_D2,3,2311S1_D2c3,D2,TTX,24.0,no,44.32472222,6.887046081,39.37708426,-68.06640625,7,350.0,62.84790039,-27.16064453,230.46875,-60.546875,13.8,325.5568035,24,,0.877284156,,,,,,8 mM,-61.09482574,Bielefeld,temporal,42.0,Verji +OP230109,2311040.abf,S1_D2,5,2311S1_D2c5,D2,TTX,24.0,no,44.32472222,6.754819034,24.91202102,-49.61547852,18,300.0,56.86645508,-24.609375,198.2421875,-73.60839844,17.15,355.0039166,26,,0.744011464,,,,,,8 mM,-55.40875076,Bielefeld,temporal,42.0,Verji +OP230109,2311059.abf,S2_D2,2,2311S2_D2c2,D2,high K,24.0,no,46.55611111,12.0591842,102.348767,-65.17333984,5,200.0,67.28515625,-30.53588867,262.6953125,-84.83886719,9.5,126.6460537,34,,0.804893682,,,,,,8 mM,-61.562229,Bielefeld,temporal,42.0,Verji +OP230109,2311059.abf,S2_D2,7,2311S2_D2c7,D2,high K,24.0,no,46.55611111,9.9176544,93.757403,-62.43896484,22,250.0,90.99121094,-39.08081055,491.4550781,-74.82910156,13.1,233.293913,37,,0.929070607,,,,,,8 mM,-62.14580154,Bielefeld,temporal,42.0,Verji +OP230109,2311059.abf,S2_D2,8,2311S2_D2c8,D2,high K,24.0,no,46.55611111,7.142124874,66.50965105,-72.97973633,27,300.0,86.12060547,-37.60986328,445.4345703,-75.31738281,12.4,269.2665341,38,,0.907096786,,,,,,8 mM,-61.44799988,Bielefeld,temporal,42.0,Verji +OP230109,2311066.abf,S3_D2,1,2311S3_D2c1,D2,Ctrl,24.0,no,48.18694444,6.537602029,37.69412217,-72.00927734,26,350.0,79.90722656,-32.1472168,333.6181641,-80.44433594,11.9,313.0784424,39,,0.870267242,,,,,,8 mM,-61.06909546,Bielefeld,temporal,42.0,Verji +OP230109,2311066.abf,S3_D2,2,2311S3_D2c2,D2,Ctrl,24.0,no,48.18694444,11.26591557,37.29130323,-67.14477539,28,350.0,86.33422852,-39.41040039,422.6074219,-110.2294922,9.65,382.3593712,40,,0.667487938,,,,,,8 mM,-63.56005234,Bielefeld,temporal,42.0,Verji +OP230109,2311066.abf,S3_D2,4,2311S3_D2c4,D2,Ctrl,24.0,no,48.18694444,9.77584181,35.10349866,-72.38769531,33,400.0,86.2121582,-43.48144531,450.4394531,-77.51464844,10.25,313.3134328,42,,0.909188407,,,,,,8 mM,-61.22377167,Bielefeld,temporal,42.0,Verji +OP230109,2311070.abf,S3_D2,8,2311S3_D2c8,D2,Ctrl,24.0,no,48.30694444,12.25239064,86.00234923,-66.34521484,36,200.0,94.09179688,-36.10229492,513.0615234,-80.68847656,16.8,288.372132,50,,0.871664657,,,,,,8 mM,-61.00419952,Bielefeld,temporal,42.0,Verji +OP240201,24201004.abf,S1,1,24201S1c1,D1,high K,0.0,no,9.856111111,14.40803495,91.64961766,-75.64086914,43,200.0,73.10791016,-34.83886719,219.7265625,-81.42089844,15.25,225.5018051,0,,0.813042715,305.7701923,,,,,8 mM,-71.11311462,Mitte,temporal,39.0,Verji +OP240201,24201004.abf,S1,2,24201S1c2,D1,high K,0.0,no,9.856111111,11.21822981,81.65572842,-76.01318359,44,50.0,80.5480957,-35.16235352,280.7617188,-86.05957031,33.8,310.0667413,1,,0.833160376,397.4232474,,,,,8 mM,-51.18600235,Mitte,temporal,39.0,Verji +OP240201,24201004.abf,S1,3,24201S1c3,D1,high K,0.0,no,9.856111111,10.30457154,56.28737597,-56.84204102,24,500.0,79.40673828,-34.66186523,289.5507813,-75.68359375,18.6,602.2577075,2,,0.937866408,181.7160572,,,,,8 mM,-71.69730026,Mitte,temporal,39.0,Verji +OP240201,24201004.abf,S1,6,24201S1c6,D1,high K,0.0,no,9.856111111,19.43676784,55.79062937,-58.35571289,29,450.0,83.99047852,-40.5090332,344.8486328,-61.03515625,17.2,696.6744129,5,,1.237340459,166.1155372,,,,,8 mM,-67.74392349,Mitte,temporal,39.0,Verji +OP240201,24201004.abf,S1,8,24201S1c8,D1,high K,0.0,no,9.856111111,8.334526892,74.69525761,-73.31542969,37,200.0,83.97216797,-37.49389648,312.6220703,-79.46777344,19.9,327.351004,7,,0.91553694,315.9105304,,,,,8 mM,-69.47863617,Mitte,temporal,39.0,Verji +OP240201,24201018.abf,S2,1,24201S2c1,D1,Ctrl,0.0,no,11.55388889,7.517338792,52.8149681,-67.90161133,28,250.0,85.60791016,-33.54492188,408.8134766,-81.54296875,19.55,443.6387812,8,,0.913293499,550.6983566,,,,,8 mM,-61.21498108,Mitte,temporal,39.0,Verji +OP240201,24201038.abf,S1_D2,2,24201S1_D2c2,D2,high K,20.0,no,29.45305556,11.40509985,96.18467695,-79.99267578,33,200.0,69.51904297,-29.83398438,254.3945313,-81.42089844,23.45,343.6536673,15,,0.777066731,332.7410914,,,,,8 mM,-59.44737183,Mitte,temporal,39.0,Verji +OP240201,24201038.abf,S1_D2,5,24201S1_D2c5,D2,high K,20.0,no,29.45305556,6.58356222,62.71807114,-75.83618164,18,350.0,71.82617188,-26.37939453,301.7578125,-74.82910156,19.8,410.636962,16,,0.82397949,745.7348578,,,,,8 mM,-61.77360016,Mitte,temporal,39.0,Verji +OP240201,24201038.abf,S1_D2,7,24201S1_D2c7,D2,high K,20.0,no,29.45305556,7.857365917,63.98318093,-67.02880859,19,250.0,67.79785156,-28.69262695,217.2851563,-62.01171875,18.25,390.6048334,17,,1.004357392,353.6517884,,,,,8 mM,-61.25591019,Mitte,temporal,39.0,Verji +OP240201,24201054.abf,S2_D2,2,24201S2_D2c2,D2,Ctrl,20.0,no,30.65472222,11.67200895,49.84756524,-71.81396484,15,400.0,72.35107422,-34.94262695,233.1542969,-42.96875,17.55,579.1323263,19,,1.383787642,845.0981699,,,,,8 mM,-61.2813443,Mitte,temporal,39.0,Verji +OP240201,24201067.abf,S2_D2,7,24201S2_D2c7,D2,Ctrl,20.0,no,31.16416667,13.69269489,76.25239644,-66.11938477,37,150.0,78.03344727,-29.44335938,311.5234375,-89.35546875,15.6,228.4096515,24,,0.785888373,345.5515184,,,,,8 mM,-60.74756653,Mitte,temporal,39.0,Verji +OP240201,24201067.abf,S2_D2,8,24201S2_D2c8,D2,Ctrl,20.0,no,31.16416667,27.10348399,73.51481375,-50.63476563,20,250.0,71.63085938,-30.60302734,243.7744141,-73.12011719,13.7,318.3841135,25,,0.862896929,221.8,,,,,8 mM,-63.22924316,Mitte,temporal,39.0,Verji +OP230523,23523004.abf,S1,2,23523S1c2,D1,TTX,0.0,yes,9.898888889,20.81798156,103.8518342,-78.0456543,27,50.0,88.59863281,-42.97485352,356.6894531,-77.63671875,22.65,282.8487805,1,272.7990933,0.98362592,,,,,,8 mM,-63.42125,Hamburg,temporal,16.0,Verji +OP230523,23523004.abf,S1,5,23523S1c5,D1,TTX,0.0,no,9.898888889,9.56637439,47.13365556,-68.78662109,14,250.0,75.26245117,-35.09521484,277.0996094,-41.74804688,20.75,441.5168831,4; exclude; Rs_end > 30,234.4578153,1.554472238,,,,,,8 mM,-59.42656448,Hamburg,temporal,16.0,Verji +OP230523,23523019.abf,S2,7,23523S2c7,D1,high K,0.0,yes,11.8525,17.02795599,103.6896391,-76.83105469,31,-300.0,82.44628906,-38.83056641,357.1777344,-67.74902344,31.2,368.950415,12,363.5521184,1.038446744,,,,,,8 mM,-59.48517334,Hamburg,temporal,16.0,Verji +OP230523,23523019.abf,S2,8,23523S2c8,D1,high K,0.0,no,11.8525,11.05007298,69.02407708,-74.609375,28,50.0,85.89477539,-39.2578125,336.7919922,-81.42089844,25.45,375.3130513,13; exclude; Rs_end > 30,428.5342845,0.945738534,,,,,,8 mM,-54.57881302,Hamburg,temporal,16.0,Verji +OP230523,23523033.abf,S3,2,23523S3c2,D1,Ctrl,0.0,yes,13.27361111,8.054329516,43.44103325,-75.16479492,22,200.0,83.30078125,-31.1340332,347.9003906,-72.38769531,16.15,349.3090429,15,651.3517117,1.07139335,,,,,,8 mM,-61.0537587,Hamburg,temporal,16.0,Verji +OP230523,23523033.abf,S3,8,23523S3c8,D1,Ctrl,0.0,yes,13.27361111,9.536930828,67.59967925,-79.44946289,24,150.0,85.33935547,-35.7421875,355.5908203,-80.078125,21.55,320.6859219,21,475.8758625,0.946046005,,,,,,8 mM,-60.85445969,Hamburg,temporal,16.0,Verji +OP211209,21d10002.abf,S1,5,21d10S1c5,D1,high K,0.0,no,11.50583333,8.43572654,55.83052432,-75.5065918,20,200.0,85.11352539,-39.61791992,340.2099609,-95.94726563,15.2,250.1625314,,,0.856530059,,,,,,15 mM,-63.21465912,Bielefeld,temporal,27.0,Verji +OP211209,21d10002.abf,S1,8,21d10S1c8,D1,high K,0.0,no,11.50583333,10.52287748,209.0864877,-65.86303711,47,50.0,86.42578125,-38.0859375,305.6640625,-97.29003906,18.85,118.7383314,,,0.791526052,,,,,,15 mM,-59.77544846,Bielefeld,temporal,27.0,Verji +OP211209,21d10010.abf,S2,5,21d10S2c5,D1,Ctrl,0.0,no,13.29888889,9.959714493,58.55580093,-71.98486328,25,150.0,84.75952148,-32.80029297,297.7294922,-69.58007813,17.65,273.7128254,,,1.020502952,,,,,,15 mM,-57.84879105,Bielefeld,temporal,27.0,Verji +OP211209,21d10010.abf,S2,6,21d10S2c6,D1,Ctrl,0.0,no,13.29888889,20.05491793,92.2475973,-70.3125,38,-300.0,73.97460938,-48.24829102,198.9746094,-75.68359375,26.0,256.6168675,,,0.903698941,,,,,,15 mM,-55.47584076,Bielefeld,temporal,27.0,Verji +OP211209,21d10010.abf,S2,8,21d10S2c8,D1,Ctrl,0.0,no,13.29888889,14.47028099,166.8789159,-67.96264648,34,50.0,83.19091797,-36.1328125,302.1240234,-72.63183594,20.75,152.6231201,,,0.966102219,,,,,,15 mM,-59.10138168,Bielefeld,temporal,27.0,Verji +OP211209,21d10017.abf,S3,5,21d10S3c5,D1,TTX,0.0,no,15.17694444,6.423325674,43.69179197,-75.50048828,35,250.0,79.12597656,-32.63549805,276.9775391,-70.92285156,16.15,309.2946815,,,1.003666938,,,,,,15 mM,-59.35357269,Bielefeld,temporal,27.0,Verji +OP211209,21d10017.abf,S3,7,21d10S3c7,D1,TTX,0.0,no,15.17694444,8.161538435,37.49641296,-50.26855469,27,250.0,77.12402344,-33.67919922,231.5673828,-81.29882813,15.3,380.3872534,,,0.896000758,,,,,,15 mM,-57.0918515,Bielefeld,temporal,27.0,Verji +OP211209,21d10017.abf,S3,8,21d10S3c8,D1,TTX,0.0,no,15.17694444,10.72496566,134.6700001,-58.02001953,33,50.0,84.25292969,-38.79394531,271.9726563,-83.0078125,15.65,125.0473543,,,0.921350286,,,,,,15 mM,-55.01094894,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,2,21d10S4c2,D1,TTX,0.0,no,16.86083333,8.478921351,63.10909076,-69.87304688,40,200.0,83.3984375,-35.22949219,256.4697266,-86.54785156,18.4,235.8424408,,,0.875158719,,,,,,15 mM,-62.90255936,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,4,21d10S4c4,D1,TTX,0.0,no,16.86083333,11.43787597,70.48390449,-72.41821289,45,150.0,84.57641602,-39.23339844,272.2167969,-85.69335938,17.7,252.5004789,,,0.888858053,,,,,,15 mM,-62.05386581,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,5,21d10S4c5,D1,TTX,0.0,no,16.86083333,6.647148777,35.55886975,-71.51489258,23,150.0,84.53979492,-37.1887207,360.5957031,-77.39257813,29.65,584.5795427,,,0.963097328,,,,,,15 mM,-58.30245193,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,6,21d10S4c6,D1,TTX,0.0,no,16.86083333,8.442177704,43.11814899,-75.85449219,31,250.0,82.69042969,-37.24365234,220.0927734,-74.82910156,17.05,354.052218,,,0.988511271,,,,,,15 mM,-64.81771149,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,7,21d10S4c7,D1,TTX,0.0,no,16.86083333,7.449245635,41.67053868,-73.89526367,27,250.0,87.59155273,-35.05249023,331.5429688,-68.60351563,13.6,320.8385889,,,1.096537811,,,,,,15 mM,-65.3482486,Bielefeld,temporal,27.0,Verji +OP211209,21d10024.abf,S4,8,21d10S4c8,D1,TTX,0.0,no,16.86083333,9.561624237,92.74219702,-69.61669922,28,100.0,89.44091797,-39.41040039,297.8515625,-79.58984375,15.0,204.7147022,,,0.986719179,,,,,,15 mM,-60.10773666,Bielefeld,temporal,27.0,Verji +OP211209,21d10033.abf,S5,1,21d10S5c1,D1,high K,0.0,yes,18.54833333,7.811923414,36.90389115,-68.78662109,22,300.0,88.58642578,-34.97924805,367.3095703,-80.68847656,14.85,361.7879554,,,0.95847288,,,,,,15 mM,-62.18035385,Bielefeld,temporal,27.0,Verji +OP211209,21d11065.abf,S5_D2,1,21d10S5c1,D2,high K,18.0,yes,38.62972222,17.54360853,31.32344949,-65.06347656,22,450.0,76.32446289,-32.39135742,312.8662109,-65.67382813,14.0,436.490961,,,0.976828717,,,,,,15 mM,-67.92901184,Bielefeld,temporal,27.0,Verji +OP211209,21d10033.abf,S5,2,21d10S5c2,D1,high K,0.0,no,18.54833333,8.199848817,48.83822766,-72.93701172,23,200.0,78.41186523,-29.42504883,225.4638672,-63.11035156,20.1,358.149429,,,1.095961539,,,,,,15 mM,-60.74420547,Bielefeld,temporal,27.0,Verji +OP211209,21d10033.abf,S5,4,21d10S5c4,D1,high K,0.0,yes,18.54833333,19.51643038,47.01012001,-71.66137695,28,200.0,79.90112305,-40.39306641,246.2158203,-60.18066406,23.95,784.7936,,,1.173126203,,,,,,15 mM,-63.47950897,Bielefeld,temporal,27.0,Verji +OP211209,21d11065.abf,S5_D2,5,21d10S5c4,D2,high K,18.0,yes,38.62972222,5.770413156,29.26141299,-70.39794922,16,450.0,70.56884766,-27.0690918,248.2910156,-46.99707031,17.2,510.515942,,,1.32185427,,,,,,15 mM,-61.44616989,Bielefeld,temporal,27.0,Verji +OP211209,21d10043.abf,S1_D2,3,21d10S1_D2c3,D2,high K,18.0,no,30.52,12.46411919,80.59900233,-68.37768555,29,200.0,70.65429688,-32.04345703,204.8339844,-81.90917969,21.8,267.6442113,,,0.862808404,,,,,,15 mM,-57.73243149,Bielefeld,temporal,27.0,Verji +OP211209,21d10043.abf,S1_D2,5,21d10S1_D2c5,D2,high K,18.0,no,30.52,9.991316294,67.3526551,-75.22583008,19,250.0,72.97973633,-29.01000977,269.8974609,-69.58007813,21.65,292.6679868,,,0.91356659,,,,,,15 mM,-61.07623215,Bielefeld,temporal,27.0,Verji +OP211209,21d10050.abf,S2_D2,3,21d10S2_D2c3,D2,Ctrl,18.0,no,32.85888889,9.561012032,40.38834816,-74.83520508,25,150.0,83.6730957,-40.96679688,244.3847656,-65.18554688,19.15,300.9626859,,,1.165189312,,,,,,15 mM,-58.31745102,Bielefeld,temporal,27.0,Verji +OP211209,21d10050.abf,S2_D2,8,21d10S2_D2c8,D2,Ctrl,18.0,no,32.85888889,15.32648948,144.0754068,-66.65039063,29,100.0,75.40283203,-33.94165039,191.2841797,-61.27929688,20.4,158.0300709,,,1.06437926,,,,,,15 mM,-55.53968887,Bielefeld,temporal,27.0,Verji +OP211209,21d10055.abf,S3_D2,2,21d10S3_D2c2,D2,TTX,18.0,no,34.725,7.868088358,80.58351523,-79.84313965,18,250.0,63.61694336,-23.828125,179.5654297,-57.86132813,18.45,279.3759704,,,0.955020815,,,,,,15 mM,-61.64818573,Bielefeld,temporal,27.0,Verji +OP211209,21d11059.abf,S4_D2,8,21d11S4_D2c8,D2,TTX,18.0,no,37.0275,8.15357475,48.82977763,-75.34790039,27,200.0,77.35595703,-30.10253906,226.1962891,-54.80957031,16.25,345.5418559,,,1.222325586,,,,,,15 mM,-61.48587662,Bielefeld,temporal,27.0,Verji +OP231123,23n23004.abf,S1,1,23n23S1c1,D1,Ctrl,0.0,no,9.935555556,7.385476161,58.31092722,-71.02050781,34,150.0,80.08422852,-34.46044922,333.8623047,-72.02148438,25.6,359.2551606,0,,0.948385447,496.6665556,,,,,8 mM,-57.68329117,Bielefeld,temporal,40.0,Verji +OP231123,23n23004.abf,S1,4,23n23S1c4,D1,Ctrl,0.0,no,9.935555556,22.68089321,77.7152084,-72.88818359,34,50.0,87.9699707,-42.62084961,370.8496094,-89.11132813,27.2,444.977334,2,,0.860672277,365.7121904,,,,,8 mM,-61.50239609,Bielefeld,temporal,40.0,Verji +OP231123,23n23004.abf,S1,8,23n23S1c8,D1,Ctrl,0.0,no,9.935555556,9.160818923,94.36786612,-72.66845703,32,100.0,83.63647461,-35.13793945,314.5751953,-79.95605469,24.0,261.5337546,5,,0.932714846,262.2087403,,,,,8 mM,-60.18246964,Bielefeld,temporal,40.0,Verji +OP231123,23n23016.abf,S2,4,23n23S2c4,D1,high K,0.0,no,11.95777778,7.894233982,173.8261386,-77.13012695,46,100.0,81.90307617,-35.77270508,334.1064453,-73.36425781,23.9,196.4764676,7,,0.89973391,240.2780093,,,,,8 mM,-58.19835022,Bielefeld,temporal,40.0,Verji +OP231123,23n23016.abf,S2,5,23n23S2c5,D1,high K,0.0,no,11.95777778,6.416594228,55.15976306,-73.10791016,29,100.0,88.72680664,-40.13061523,402.4658203,-75.43945313,20.75,399.3750367,8,,1.010076404,415.6938565,,,,,8 mM,-62.93654877,Bielefeld,temporal,40.0,Verji +OP231123,23n23040.abf,S1_D2,8,23n23S1_D2c8,D2,Ctrl,19.0,no,30.38972222,9.495077355,140.6327013,-82.31811523,19,200.0,71.33789063,-33.22753906,234.4970703,-67.74902344,13.7,226.6136295,16,,0.977783695,244.7481583,,,,,8 mM,-57.24612091,Bielefeld,temporal,40.0,Verji +OP231123,23n23049.abf,S2_D2,2,23n23S2_D2c2,D2,high K,19.0,no,31.71361111,5.938039705,63.2568905,-75.4699707,37,200.0,79.68139648,-37.3046875,297.9736328,-75.68359375,16.65,271.7067729,18; exclude; Rs_end > 30,,0.950352873,523.5174506,,,,,8 mM,-60.3600975,Bielefeld,temporal,40.0,Verji +OP231123,23n23049.abf,S2_D2,5,23n23S2_D2c5,D2,high K,19.0,no,31.71361111,6.369858688,48.70777117,-75.79956055,22,200.0,83.64257813,-34.97314453,407.9589844,-82.64160156,19.9,359.6708218,20,,0.859003878,562.3387446,,,,,8 mM,-60.70497925,Bielefeld,temporal,40.0,Verji +OP231123,23n23049.abf,S2_D2,7,23n23S2_D2c7,D2,high K,19.0,no,31.71361111,7.172977536,45.23349945,-71.06323242,24,150.0,87.48168945,-35.63842773,447.7539063,-79.1015625,16.55,376.0821082,21,,0.896085467,527.8975966,,,,,8 mM,-60.87491974,Bielefeld,temporal,40.0,Verji +OP230808,23808003.abf,S1,2,23808S1c2,D1,TTX,0.0,no,8.163333333,9.131297415,58.66048767,-80.29785156,22,150.0,90.56396484,-37.87841797,437.3779297,-81.17675781,25.85,492.1864033,1,702.9234308,0.938416634,,,,,,8 mM,-61.38620529,Hamburg,temporal,14.0,Verji +OP230808,23808003.abf,S1,3,23808S1c3,D1,TTX,0.0,no,8.163333333,11.8307557,50.36227256,-73.46191406,17,200.0,85.49804688,-39.3737793,369.7509766,-71.16699219,27.5,683.1842305,2,625.4908497,1.060314711,,,,,,8 mM,-59.71858475,Hamburg,temporal,14.0,Verji +OP230808,23808003.abf,S1,6,23808S1c6,D1,TTX,0.0,no,8.163333333,10.39475376,106.0826492,-83.30078125,1664,-300.0,71.08154297,-15.05737305,237.4267578,-69.70214844,13.05,98.94086071,5,,1.025354282,,,,,,8 mM,-32.68441467,Hamburg,temporal,14.0,Verji +OP230808,23808003.abf,S1,8,23808S1c8,D1,TTX,0.0,no,8.163333333,9.152405498,62.30493792,-80.56640625,24,150.0,86.15722656,-38.14697266,392.3339844,-93.87207031,25.7,491.9028037,7,721.5840528,0.820988123,,,,,,8 mM,-61.77982468,Hamburg,temporal,14.0,Verji +OP230808,23808016.abf,S2,2,23808S2c2,D1,high K,0.0,yes,9.599722222,12.54916517,39.81919675,-79.65087891,21,150.0,91.3269043,-41.07055664,424.3164063,-66.52832031,22.6,463.1374609,8,745.7648588,1.045329649,,,,,,8 mM,-63.82646912,Hamburg,temporal,14.0,Verji +OP230808,23808091.abf,S2_D2,1,23808S2c2,D2,high K,25.0,yes,34.21527778,11.61188763,40.55157565,-67.82226563,14,250.0,86.59667969,-38.32397461,420.6542969,-68.359375,20.3,517.6578988,61,481.8160605,1.323131827,,,,,,8 mM,-59.6189299,Hamburg,temporal,14.0,Verji +OP230808,23808016.abf,S2,7,23808S2c7,D1,high K,0.0,no,9.599722222,17.32489001,51.99144137,-74.74975586,17,150.0,88.82446289,-41.55883789,392.3339844,-67.99316406,29.4,593.5792976,13,552.8884296,1.06063396,,,,,,8 mM,-64.07546417,Hamburg,temporal,14.0,Verji +OP230808,23808016.abf,S2,8,23808S2c8,D1,high K,0.0,yes,9.599722222,7.826529285,38.6927171,-74.5300293,23,150.0,88.03710938,-39.41040039,352.0507813,-69.94628906,22.6,532.3916607,14,691.6430548,1.054541814,,,,,,8 mM,-62.34673767,Hamburg,temporal,14.0,Verji +OP230808,23808091.abf,S2_D2,2,23808S2c8,D2,high K,25.0,yes,34.21527778,9.628695708,38.51179182,-76.57470703,13,200.0,86.27319336,-35.96191406,349.9755859,-75.31738281,18.75,459.5362752,62,842.3980799,1.079390253,,,,,,8 mM,-59.88091431,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,1,23808S3c1,D1,Ctrl,0.0,no,10.92722222,10.50058477,64.13097997,-82.65380859,21,50.0,84.56420898,-39.54467773,291.9921875,-82.88574219,31.65,460.5271758,15,650.4516817,0.904627918,,,,,,8 mM,-60.33710159,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,3,23808S3c3,D1,Ctrl,0.0,no,10.92722222,12.46878469,75.67539078,-83.21533203,21,50.0,86.2121582,-40.72265625,340.5761719,-72.75390625,31.7,408.3119497,16,565.6388546,1.0094401,,,,,,8 mM,-59.5631015,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,4,23808S3c4,D1,Ctrl,0.0,no,10.92722222,18.59292205,78.30694372,-74.73754883,17,-300.0,82.54394531,-46.00219727,313.7207031,-72.75390625,38.2,603.5378978,17,410.1136705,1.03353115,,,,,,8 mM,-60.57568039,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,5,23808S3c5,D1,Ctrl,0.0,no,10.92722222,7.88960956,60.04895348,-80.54199219,19,100.0,90.21606445,-39.6484375,397.9492188,-74.58496094,26.7,479.9262754,18,605.0301677,1.073589231,,,,,,8 mM,-61.89890442,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,6,23808S3c6,D1,Ctrl,0.0,no,10.92722222,8.038596046,51.14812827,-78.36303711,16,100.0,87.65869141,-40.10620117,337.5244141,-71.53320313,27.9,567.4905028,19,679.8526618,1.078288991,,,,,,8 mM,-60.36881439,Hamburg,temporal,14.0,Verji +OP230808,23808030.abf,S3,8,23808S3c8,D1,Ctrl,0.0,no,10.92722222,8.565213353,61.80074835,-80.23681641,18,100.0,86.65161133,-41.55273438,325.5615234,-69.09179688,25.8,414.2157766,20,497.8065936,1.12020915,,,,,,8 mM,-61.09218033,Hamburg,temporal,14.0,Verji +OP230808,23808038.abf,S4,4,23808S4c4,D1,TTX,0.0,no,23.75972222,10.08791051,86.29501911,-76.14746094,17,100.0,85.52856445,-38.18969727,333.0078125,-74.95117188,23.2,368.3224806,23,400.5133504,1.032756149,,,,,,8 mM,-61.9985498,Hamburg,temporal,14.0,Verji +OP230808,23808038.abf,S4,5,23808S4c5,D1,TTX,0.0,yes,23.75972222,8.731586121,63.94811293,-81.04858398,15,150.0,88.72680664,-38.56811523,374.0234375,-73.12011719,29.65,574.2146572,24,656.1518717,1.093037518,,,,,,8 mM,-61.99093338,Hamburg,temporal,14.0,Verji +OP230808,23808046.abf,S5,1,23808S5c1,D1,Ctrl,0.0,no,24.79277778,7.618060495,46.22288171,-66.62597656,29,500.0,79.82177734,-35.47973633,329.2236328,-59.44824219,14.2,417.6890485,26,540.9180306,1.071890005,,,,,,8 mM,-62.24109924,Hamburg,temporal,14.0,Verji +OP230808,23808046.abf,S5,2,23808S5c2,D1,Ctrl,0.0,no,24.79277778,17.19904485,75.89440972,-73.16894531,21,200.0,84.89379883,-37.45117188,401.9775391,-74.58496094,15.75,348.242915,27,337.3612454,0.9421223,,,,,,8 mM,-62.08622925,Hamburg,temporal,14.0,Verji +OP230808,23808046.abf,S5,4,23808S5c4,D1,Ctrl,0.0,no,24.79277778,8.488247607,52.49446801,-74.8840332,23,250.0,88.89770508,-37.53662109,437.0117188,-64.20898438,15.95,493.5312559,28,513.5571186,1.143392566,,,,,,8 mM,-65.06136215,Hamburg,temporal,14.0,Verji +OP230808,23808055.abf,S6,2,23808S6c2,D1,high K,0.0,yes,26.92027778,8.334968781,79.12469902,-79.67529297,25,150.0,87.5,-37.27416992,316.0400391,-88.37890625,24.95,346.7182358,32,506.7168906,0.879915703,,,,,,8 mM,-59.53879135,Hamburg,temporal,14.0,Verji +OP230808,23808055.abf,S6,4,23808S6c4,D1,high K,0.0,yes,26.92027778,8.558555913,66.21168608,-81.59179688,15,150.0,87.21313477,-37.41455078,358.1542969,-78.00292969,25.8,430.8941896,34,672.2924097,1.007731375,,,,,,8 mM,-60.77840912,Hamburg,temporal,14.0,Verji +OP230808,23808055.abf,S6,6,23808S6c6,D1,high K,0.0,no,26.92027778,7.60856527,81.35938456,-80.96923828,19,100.0,90.67993164,-39.63012695,351.8066406,-74.34082031,31.15,445.5360978,36,500.2966766,1.077461204,,,,,,8 mM,-58.33286499,Hamburg,temporal,14.0,Verji +OP230808,23808083.abf,S1_D2,2,23808S1_D2c2,D2,TTX,25.0,no,33.29638889,8.084762148,80.84846091,-77.23999023,11,150.0,70.95336914,-30.95703125,259.0332031,-52.97851563,33.6,452.1580287,56,487.8462615,1.248623118,,,,,,8 mM,-59.99172531,Hamburg,temporal,14.0,Verji +OP230808,23808083.abf,S1_D2,7,23808S1_D2c7,D2,TTX,25.0,no,33.29638889,11.4377309,142.8314949,-72.10083008,6,100.0,63.63525391,-33.38012695,184.3261719,-31.49414063,30.55,312.9297906,59,189.8763292,1.956534702,,,,,,8 mM,-62.28236816,Hamburg,temporal,14.0,Verji +OP230808,23808096.abf,S2_D2,7,23808S2_D2c7,D2,high K,25.0,no,34.48722222,7.118036377,48.02908089,-78.93066406,12,200.0,83.75854492,-35.62011719,387.0849609,-79.71191406,24.5,502.7025673,66,741.5047168,0.901209983,,,,,,8 mM,-62.0711113,Hamburg,temporal,14.0,Verji +OP230808,23808105.abf,S3_D2,2,23808S3_D2c2,D2,Ctrl,25.0,no,35.75638889,8.11929593,55.1986248,-77.72827148,9,250.0,75.13427734,-38.09204102,261.2304688,-58.47167969,24.65,488.0551057,69,605.5101837,1.122261401,,,,,,8 mM,-59.79965714,Hamburg,temporal,14.0,Verji +OP230808,23808105.abf,S3_D2,4,23808S3_D2c4,D2,Ctrl,25.0,no,35.75638889,6.933973943,39.73174516,-58.4777832,7,250.0,75.1159668,-32.93457031,264.1601563,-50.65917969,19.35,525.7552239,70,292.0897363,1.416427238,,,,,,8 mM,-54.16771835,Hamburg,temporal,14.0,Verji +OP240321,24321004.abf,S1,1,24321S1c1,D1,high K,0.0,no,9.830277778,14.68695264,64.47039974,-49.51171875,15,200.0,64.97802734,-33.203125,171.1425781,-70.80078125,21.75,436.4384568,0,,0.937077429,55.32184406,,,,,8 mM,-60.1537262,Bielefeld,temporal,31.0,Verji +OP240321,24321004.abf,S1,4,24321S1c4,D1,high K,0.0,no,9.830277778,10.03188268,60.08927934,-67.578125,34,200.0,81.55517578,-37.74414063,290.1611328,-80.93261719,20.45,328.322195,2,,0.906199841,326.3808794,,,,,8 mM,-59.26156143,Bielefeld,temporal,31.0,Verji +OP240321,24321004.abf,S1,7,24321S1c7,D1,high K,0.0,no,9.830277778,8.999935019,53.27392018,-55.62744141,33,300.0,78.07617188,-33.96606445,273.8037109,-89.59960938,21.1,464.6537634,4,,0.806692721,108.6036201,,,,,8 mM,-60.33785324,Bielefeld,temporal,31.0,Verji +OP240321,24321004.abf,S1,8,24321S1c8,D1,high K,0.0,no,9.830277778,8.687671673,51.21022987,-65.52124023,37,150.0,78.85742188,-35.36987305,256.3476563,-79.34570313,20.1,337.7624615,5,,0.919938703,310.1203373,,,,,8 mM,-57.74256592,Bielefeld,temporal,31.0,Verji +OP240321,24321014.abf,S2,2,24321S2c2,D1,Ctrl,0.0,no,11.53027778,12.97679765,61.18784607,-69.88525391,20,100.0,86.13891602,-44.7265625,342.8955078,-79.83398438,22.65,409.6,7,,0.952535749,278.3492783,,,,,8 mM,-61.1739859,Bielefeld,temporal,31.0,Verji +OP240321,24321014.abf,S2,4,24321S2c4,D1,Ctrl,0.0,no,11.53027778,7.632941391,32.88480792,-52.45361328,21,200.0,84.00878906,-36.78588867,403.4423828,-71.89941406,14.8,695.7911047,8,,1.063837531,324.5208174,,,,,8 mM,-63.14976883,Bielefeld,temporal,31.0,Verji +OP240321,24321014.abf,S2,8,24321S2c8,D1,Ctrl,0.0,yes,11.53027778,21.40485393,49.62557662,-68.25561523,29,200.0,88.70849609,-38.72070313,383.4228516,-106.0791016,20.2,524.9116574,12,,0.81954569,388.4829494,,,,,8 mM,-61.90836395,Bielefeld,temporal,31.0,Verji +OP240321,24321075.abf,S2_D2,8,24321S2c8,D2,Ctrl,17.0,yes,29.92277778,15.35227553,52.967462,-68.75,15,100.0,82.97729492,-40.78369141,280.8837891,-94.36035156,25.15,724.1785589,38,,0.856868651,436.4245475,,,,,8 mM,-60.55378326,Bielefeld,temporal,31.0,Verji +OP240321,24321022.abf,S3,3,24321S3c3,D1,Ctrl,0.0,no,13.06416667,6.946856511,53.02088922,-74.51171875,26,150.0,85.33935547,-36.29150391,372.8027344,-77.1484375,19.45,385.5641863,15,,0.927598011,552.1084036,,,,,8 mM,-59.7037056,Bielefeld,temporal,31.0,Verji +OP240321,24321022.abf,S3,6,24321S3c6,D1,Ctrl,0.0,no,13.06416667,8.644345294,113.0677186,-80.44433594,40,100.0,82.91015625,-34.8449707,330.8105469,-93.13964844,19.55,196.5074847,18,,0.80391467,316.6305544,,,,,8 mM,-61.41717209,Bielefeld,temporal,31.0,Verji +OP240321,24321022.abf,S3,7,24321S3c7,D1,Ctrl,0.0,no,13.06416667,8.810649087,83.3280164,-68.87817383,30,150.0,80.5847168,-36.85302734,272.5830078,-81.0546875,22.65,395.6264392,19,,0.937969456,339.9413314,,,,,8 mM,-59.20139679,Bielefeld,temporal,31.0,Verji +OP240321,24321034.abf,S4,3,24321S4c3,D1,high K,0.0,no,14.44,12.76562276,54.90833548,-77.68554688,33,50.0,88.06762695,-45.08666992,348.1445313,-82.27539063,29.4,499.9373119,21,,0.914276019,617.4205807,,,,,8 mM,-61.18321259,Bielefeld,temporal,31.0,Verji +OP240321,24321034.abf,S4,6,24321S4c6,D1,high K,0.0,no,14.44,12.90046696,49.35565174,-76.30615234,35,150.0,90.08178711,-40.99121094,406.9824219,-93.75,21.6,426.6358047,23,,0.830009591,515.5971866,,,,,8 mM,-64.50559067,Bielefeld,temporal,31.0,Verji +OP240321,24321034.abf,S4,7,24321S4c7,D1,high K,0.0,no,14.44,7.35440845,44.32746951,-81.92749023,32,150.0,87.28637695,-40.13671875,356.9335938,-106.4453125,24.15,495.5211021,24,,0.755530143,766.8555619,,,,,8 mM,-62.70364975,Bielefeld,temporal,31.0,Verji +OP240321,24321044.abf,S1_D2,5,24321S1_D2c5,D2,high K,17.0,no,28.00555556,17.29944991,68.75175937,-68.34716797,24,100.0,81.43920898,-40.40527344,279.7851563,-90.33203125,24.05,434.9174393,30,,0.844001518,290.2596753,,,,,8 mM,-62.08648849,Bielefeld,temporal,31.0,Verji +OP240321,24321044.abf,S1_D2,6,24321S1_D2c6,D2,high K,17.0,no,28.00555556,16.25695769,40.28967677,-46.6796875,19,500.0,78.21655273,-36.71875,274.2919922,-69.09179688,14.85,594.1450549,31; exclude; Rs_end > 30,,0.999887966,189.8463282,,,,,8 mM,-66.75645996,Bielefeld,temporal,31.0,Verji +OP240321,24321068.abf,S2_D2,1,24321S2c1,D2,Ctrl,17.0,yes,29.73333333,12.46686818,72.9304148,-72.67456055,15,100.0,71.35009766,-39.01367188,189.5751953,-86.66992188,25.85,428.4536166,33,,0.836918792,334.0311344,,,,,8 mM,-59.7174852,Bielefeld,temporal,31.0,Verji +OP240321,24321068.abf,S2_D2,2,24321S2_D2c2,D2,Ctrl,17.0,no,29.73333333,25.00260368,277.8319678,-70.76416016,40,50.0,85.9375,-42.35229492,382.3242188,-100.4638672,13.9,107.5248347,34; exclude; Rs_end > 30,,0.772774471,109.7736591,,,,,8 mM,-60.29523041,Bielefeld,temporal,31.0,Verji +OP240321,24321068.abf,S2_D2,3,24321S2_D2c3,D2,Ctrl,17.0,no,29.73333333,8.921244372,43.72266465,-67.20581055,20,250.0,86.76757813,-36.16943359,414.4287109,-82.88574219,16.45,491.8189781,35; exclude; Rs_end > 30,,0.92514504,452.6850895,,,,,8 mM,-62.13482056,Bielefeld,temporal,31.0,Verji +OP240321,24321068.abf,S2_D2,4,24321S2c6,D2,Ctrl,17.0,no,29.73333333,22.18658838,74.31214562,-67.67578125,26,100.0,77.13623047,-39.48364258,219.8486328,-87.890625,21.95,285.646386,36,,0.854383895,182.3460782,,,,,8 mM,-61.23827118,Bielefeld,temporal,31.0,Verji +OP230209,23209003.abf,S1,3,23209S1c3,D1,TTX,0.0,yes,-4.47,20.24465384,51.06639102,-60.08911133,2,400.0,55.23071289,-33.32519531,148.1933594,-39.91699219,13.4,339.3285935,1; exclude; Rs_end > 30,,1.241602102,,,,,,8 mM,-62.19541824,Bielefeld,temporal,63.0,Verji +OP230209,23209003.abf,S1,5,23209S1c5,D1,TTX,0.0,no,-4.47,8.73383873,45.79290202,-71.02661133,31,200.0,86.58447266,-35.21728516,412.8417969,-72.14355469,14.9,279.4752147,2,356.11187,0.951907612,,,,,,8 mM,-60.94531128,Bielefeld,temporal,63.0,Verji +OP230209,23209012.abf,S2,1,23209S2c1,D1,high K,0.0,yes,-2.874722222,5.639504191,41.17612284,-62.64648438,39,450.0,71.65527344,-30.96923828,253.0517578,-72.63183594,12.8,289.6618785,5,677.995933,0.847731689,,,,,,8 mM,-59.82920959,Bielefeld,temporal,63.0,Verji +OP230209,23209012.abf,S2,2,23209S2c2,D1,high K,0.0,no,-2.874722222,10.1433057,74.89412827,-58.2824707,45,150.0,75.30517578,-33.3190918,320.1904297,-90.33203125,10.95,124.6732453,6,170.423521,0.752228432,,,,,,8 mM,-58.98840515,Bielefeld,temporal,63.0,Verji +OP230209,23209012.abf,S2,5,23209S2c5,D1,high K,0.0,no,-2.874722222,8.525730043,81.23149337,-69.04907227,53,100.0,82.27539063,-34.91210938,365.4785156,-98.26660156,13.05,141.8316418,8,192.024601,0.713135555,,,,,,8 mM,-58.24603363,Bielefeld,temporal,63.0,Verji +OP230209,23209012.abf,S2,6,23209S2c6,D1,high K,0.0,yes,-2.874722222,7.160036434,52.54920547,-71.83837891,36,150.0,86.81030273,-35.88256836,363.1591797,-84.10644531,12.5,220.9277238,9,345.078169,0.851767522,,,,,,8 mM,-60.81187851,Bielefeld,temporal,63.0,Verji +OP230209,23209054.abf,S2_D2,6,23209S2c6,D2,high K,25.0,yes,21.84833333,9.67236673,50.64075204,-50.13427734,27,100.0,73.74267578,-31.67114258,263.9160156,-71.41113281,16.1,213.5889879,32,433.531118,0.948468432,,,,,,8 mM,-50.13308899,Bielefeld,temporal,63.0,Verji +OP230209,23209012.abf,S2,7,23209S2c7,D1,high K,0.0,yes,-2.874722222,8.656874488,76.18848902,-67.00439453,40,150.0,87.05444336,-33.63037109,381.3476563,-89.47753906,10.45,156.2873574,10,229.541477,0.839826694,,,,,,8 mM,-60.04600006,Bielefeld,temporal,63.0,Verji +OP230209,23209054.abf,S2_D2,7,23209S2c7,D2,high K,25.0,yes,21.84833333,13.01074741,77.26324844,-57.31201172,35,100.0,81.62231445,-30.63964844,316.40625,-92.40722656,12.3,143.7398003,33,246.108204,0.850898052,,,,,,8 mM,-57.31295288,Bielefeld,temporal,63.0,Verji +OP230209,23209024.abf,S3,2,23209S3c2,D1,Ctrl,0.0,yes,-1.504722222,10.78123218,105.1477918,-60.68725586,29,150.0,82.3425293,-36.58447266,302.3681641,-91.43066406,12.8,130.8675195,12,138.081904,0.8433602,,,,,,8 mM,-60.89197357,Bielefeld,temporal,63.0,Verji +OP230209,23209024.abf,S3,3,23209S3c3,D1,Ctrl,0.0,yes,-1.504722222,12.78519343,164.0469717,-71.33178711,12,100.0,80.6640625,-38.84887695,291.015625,-125.7324219,13.75,99.329806,13,118.295915,0.64325168,,,,,,8 mM,-62.18372925,Bielefeld,temporal,63.0,Verji +OP230209,23209066.abf,S3_D2,3,23209S3c3,D2,Ctrl,25.0,yes,23.94944444,27.8535947,200.3500344,-66.91894531,9,50.0,78.57666016,-38.89770508,306.5185547,-104.4921875,16.5,113.8976195,37; exclude; Rs_end > 30,104.360218,0.706254014,,,,,,8 mM,-60.01862885,Bielefeld,temporal,63.0,Verji +OP230209,23209024.abf,S3,4,23209S3c4,D1,Ctrl,0.0,no,-1.504722222,7.527234505,58.5992257,-72.71728516,42,150.0,84.99145508,-35.34545898,390.7470703,-84.59472656,15.2,223.2512775,14,170.288514,0.791140306,,,,,,8 mM,-60.02501266,Bielefeld,temporal,63.0,Verji +OP230209,23209024.abf,S3,5,23209S3c5,D1,Ctrl,0.0,no,-1.504722222,19.30694502,211.04548,-49.43237305,31,-300.0,70.88623047,-26.92260742,277.8320313,-112.0605469,9.2,60.48667737,15,35.341767,0.627174591,,,,,,8 mM,-51.47344025,Bielefeld,temporal,63.0,Verji +OP230209,23209036.abf,S1_D2,5,23209S1_D2c5,D2,TTX,25.0,no,19.9175,9.712582043,76.54923189,-61.77978516,25,200.0,79.27246094,-31.23779297,350.3417969,-77.27050781,15.75,300.9306122,21,233.816691,0.886561944,,,,,,8 mM,-60.54566696,Bielefeld,temporal,63.0,Verji +OP230209,23209054.abf,S2_D2,3,23209S2_D2c3,D2,high K,25.0,no,21.84833333,7.745502768,43.00961023,-68.37158203,31,500.0,67.16308594,-29.28466797,212.0361328,-61.64550781,11.05,215.7845054,30,672.202407,0.958735269,,,,,,8 mM,-62.57747208,Bielefeld,temporal,63.0,Verji +OP230209,23209054.abf,S2_D2,8,23209S2_D2c8,D2,high K,25.0,no,21.84833333,10.03387554,91.53775788,-62.40234375,35,150.0,70.66040039,-27.38647461,271.484375,-79.71191406,13.55,144.4392973,34,247.758259,0.840377946,,,,,,8 mM,-62.39974518,Bielefeld,temporal,63.0,Verji +OP230209,23209066.abf,S3_D2,7,23209S3_D2c7,D2,Ctrl,25.0,no,23.94944444,8.797605912,140.5601509,-65.97900391,26,100.0,79.39453125,-30.85327148,365.9667969,-77.27050781,21.1,200.6398143,39,317.41058,0.83965797,,,,,,8 mM,-61.28153488,Bielefeld,temporal,63.0,Verji +OP211123,21n23003.abf,S1,1,21n23S1c1,D1,Ctrl,0.0,no,10.71861111,7.849354813,40.95147876,-60.35766602,24,150.0,93.40820313,-41.07055664,377.0751953,-93.99414063,21.0,421.3888549,,,0.84976978,,,,,,15 mM,-60.33960999,Bielefeld,temporal,68.0,Rosie +OP211123,21n23003.abf,S1,2,21n23S1c2,D1,Ctrl,0.0,no,10.71861111,12.79079175,36.53479424,-62.47558594,32,350.0,86.8347168,-39.27612305,266.2353516,-89.47753906,14.25,481.385567,,,0.843970155,,,,,,15 mM,-62.46054016,Bielefeld,temporal,68.0,Rosie +OP211123,21n23003.abf,S1,4,21n23S1c4,D1,Ctrl,0.0,yes,10.71861111,8.187239223,38.05536764,-61.95068359,27,300.0,87.41455078,-35.32104492,283.203125,-78.73535156,15.25,343.4446735,,,0.926819288,,,,,,15 mM,-61.91999481,Bielefeld,temporal,68.0,Rosie +OP211123,21n24043.abf,S1_D2,5,21n23S1c4,D2,Ctrl,23.0,yes,34.16111111,12.14987175,45.71300317,-50.93383789,13,50.0,84.80834961,-44.8059082,228.7597656,-63.72070313,23.4,419.9185104,,,1.191881963,,,,,,15 mM,-54.25180237,Bielefeld,temporal,68.0,Rosie +OP211123,21n23003.abf,S1,5,21n23S1c5,D1,Ctrl,0.0,no,10.71861111,7.587403374,34.49835345,-69.14672852,20,400.0,84.66796875,-38.7512207,291.1376953,-77.1484375,12.05,350.048227,,,0.97193521,,,,,,15 mM,-69.13230453,Bielefeld,temporal,68.0,Rosie +OP211123,21n23003.abf,S1,7,21n23S1c7,D1,Ctrl,0.0,no,10.71861111,9.474495001,56.02803552,-56.24389648,3,200.0,19.07958984,-13.07983398,24.16992188,-19.89746094,9.5,198.1514959,,,0.966513407,,,,,,15 mM,-56.22396103,Bielefeld,temporal,68.0,Rosie +OP211123,21n23012.abf,S2,1,21n23S2c1,D1,high K,0.0,no,13.02277778,9.537340187,62.36423964,-60.05249023,24,150.0,89.89257813,-40.06958008,378.2958984,-84.59472656,17.1,218.1981308,,,0.884694031,,,,,,15 mM,-59.9841011,Bielefeld,temporal,68.0,Rosie +OP211123,21n23012.abf,S2,5,21n23S2c5,D1,high K,0.0,no,13.02277778,7.943163267,33.79817611,-61.62719727,25,250.0,87.3046875,-29.77905273,298.2177734,-75.43945313,14.15,298.1782637,,,0.985890698,,,,,,15 mM,-61.2234761,Bielefeld,temporal,68.0,Rosie +OP211123,21n23012.abf,S2,6,21n23S2c6,D1,high K,0.0,no,13.02277778,7.427587005,31.14729037,-62.51220703,11,350.0,74.15161133,-36.8347168,136.3525391,-47.36328125,13.35,534.7833741,,,1.416694541,,,,,,15 mM,-56.99469803,Bielefeld,temporal,68.0,Rosie +OP211123,21n24051.abf,S2_D2,5,21n24S2_D2c5,D2,high K,23.0,no,36.54972222,6.950422649,38.99079437,-65.47241211,27,350.0,87.28027344,-36.99951172,386.71875,-70.92285156,18.55,531.7991251,,,0.952164,,,,,,15 mM,-60.51705048,Bielefeld,temporal,68.0,Rosie +OP211123,21n24051.abf,S2_D2,7,21n24S2_D2c7,D2,high K,23.0,no,36.54972222,12.32736816,149.6074828,-80.02929688,33,50.0,95.73364258,-44.32983398,424.5605469,-80.81054688,22.5,190.1186178,,,0.955288406,,,,,,15 mM,-60.80821594,Bielefeld,temporal,68.0,Rosie +OP240503,24503017.abf,S2,3,24503S2c3,D1,Ctrl,0.0,yes,9.624722222,11.99764633,59.64439376,-57.95288086,22,250.0,80.03540039,-36.20605469,254.6386719,-62.62207031,0.15,523.5212,cap manual adjustment,,1.172528054,225.4275143,,,,,8 mM,-60.83785049,Mitte,temporal,36.0,Verji +OP240503,24503056.abf,S2_D2,3,24503S2c3,D2,Ctrl,17.0,yes,27.96944444,21.14474358,52.28362239,-61.38916016,22,350.0,74.05395508,-42.15087891,261.4746094,-59.44824219,0.15,20.39502075,28,,1.056456971,494.9264975,,,,,8 mM,-61.1649234,Mitte,temporal,36.0,Verji +OP240503,24503017.abf,S2,5,24503S2c5,D1,Ctrl,0.0,yes,9.624722222,15.31122745,57.46673777,-59.70458984,22,300.0,80.84106445,-36.29150391,268.6767578,-51.39160156,0.15,690.3603,cap manual adjustment,,1.378315392,435.6145205,,,,,8 mM,-63.65160202,Mitte,temporal,36.0,Verji +OP240503,24503056.abf,S2_D2,5,24503S2c5,D2,Ctrl,17.0,yes,27.96944444,9.693240931,28.50530594,-54.45556641,20,600.0,72.93701172,-30.05981445,248.9013672,-50.17089844,0.15,391.6072,29,,1.201653929,451.1250375,,,,,8 mM,-59.79904938,Mitte,temporal,36.0,Verji +OP240503,24503017.abf,S2,6,24503S2c6,D1,Ctrl,0.0,no,9.624722222,13.68131269,54.08439262,-65.35644531,28,200.0,84.11254883,-39.08081055,303.5888672,-64.453125,21.9,582.4831169,11,,1.218793035,370.4823494,,,,,8 mM,-57.38546188,Mitte,temporal,36.0,Verji +OP240503,24503032.abf,S3,5,24503S3c5,D1,high K,0.0,yes,11.37694444,9.810366532,74.63081645,-76.73339844,39,150.0,79.30908203,-33.33129883,324.4628906,-84.83886719,24.35,344.8145203,16,,0.810659151,419.0539685,,,,,8 mM,-61.39230179,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,5,24503S3c5,D2,high K,17.0,yes,29.17055556,9.794647626,73.17793985,-72.59521484,26,150.0,75.65307617,-30.18798828,267.9443359,-83.74023438,21.55,297.0763147,34,,0.823667157,346.4515484,,,,,8 mM,-60.72475372,Mitte,temporal,36.0,Verji +OP240503,24503032.abf,S3,6,24503S3c6,D1,high K,0.0,yes,11.37694444,19.06985827,84.37931121,-73.84033203,45,150.0,71.78955078,-35.62011719,347.7783203,-58.95996094,28.9,403.8359062,17; exclude; Rs_end > 30,,0.992082,344.6214874,,,,,8 mM,-62.32868988,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,6,24503S3c6,D2,high K,17.0,yes,29.17055556,9.111475052,78.07519622,-76.86767578,41,150.0,73.01025391,-28.83300781,297.4853516,-70.55664063,28.6,343.7875275,35,,0.874271801,372.7324244,,,,,8 mM,-60.93699051,Mitte,temporal,36.0,Verji +OP240503,24503032.abf,S3,8,24503S3c8,D1,high K,0.0,yes,11.37694444,23.99158012,77.88867565,-66.52832031,40,200.0,54.91333008,-28.28369141,132.0800781,-44.79980469,17.35,230.826147,19; exclude; Rs_end > 30,,1.231711905,276.8792293,,,,,8 mM,-62.72207489,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,8,24503S3c8,D2,high K,17.0,yes,29.17055556,9.674571626,75.22330243,-73.11401367,29,150.0,65.52124023,-31.18896484,177.3681641,-66.04003906,25.5,359.7003874,37,,0.907172712,368.3822794,,,,,8 mM,-61.84618591,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,1,24503S3_D2c1,D2,high K,17.0,no,29.17055556,13.83757686,159.3446453,-76.4465332,38,100.0,71.05712891,-31.34765625,242.6757813,-73.48632813,27.65,238.7444532,31,,0.846090907,243.9981333,,,,,8 mM,-61.21821198,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,3,24503S3_D2c3,D2,high K,17.0,no,29.17055556,11.60014198,84.07619565,-53.80249023,27,150.0,73.29101563,-34.48486328,243.0419922,-104.8583984,19.05,264.9534805,33,,0.699597174,112.8937631,,,,,8 mM,-61.58322662,Mitte,temporal,36.0,Verji +OP240503,24503068.abf,S3_D2,7,24503S3c7,D2,high K,17.0,yes,29.17055556,12.06648987,59.41965483,-76.52587891,32,250.0,64.5690918,-35.22338867,249.1455078,-91.30859375,20.95,418.3361365,36,,0.663181972,584.6894896,,,,,8 mM,-61.41303909,Mitte,temporal,36.0,Verji +OP230817,23817005.abf,S1,2,23817S1c2,D1,TTX,0.0,no,5.061944444,13.18504707,56.66863871,-71.70410156,33,100.0,82.40356445,-39.27001953,268.7988281,-77.1484375,22.85,412.0796918,1,468.6156,0.954787802,,,,,,8 mM,-60.9901799,Mitte,temporal,47.0,Verji +OP230817,23817005.abf,S1,4,23817S1c4,D1,TTX,0.0,no,5.061944444,5.188722636,28.31944714,-70.11108398,33,250.0,78.08227539,-33.99658203,281.6162109,-67.62695313,17.2,400.2909091,3,832.4977,0.972962143,,,,,,8 mM,-60.74189545,Mitte,temporal,47.0,Verji +OP230817,23817005.abf,S1,7,23817S1c7,D1,TTX,0.0,no,5.061944444,6.913599369,52.17652454,-71.14257813,36,150.0,86.95068359,-35.88256836,359.4970703,-84.59472656,16.35,294.8578976,5,497.1466,0.869500032,,,,,,8 mM,-61.97882996,Mitte,temporal,47.0,Verji +OP230817,23817017.abf,S2,2,23817S2c2,D1,high K,0.0,no,6.405833333,6.483930395,47.46929552,-75.40893555,34,150.0,83.08105469,-38.11645508,342.4072266,-92.65136719,18.9,367.7643705,8,629.301,0.840206329,,,,,,8 mM,-59.84307892,Mitte,temporal,47.0,Verji +OP230817,23817017.abf,S2,4,23817S2c4,D1,high K,0.0,no,6.405833333,6.582894638,52.54811271,-74.21264648,32,150.0,88.51928711,-37.52441406,434.2041016,-69.82421875,15.7,326.639746,9,583.7295,1.037160565,,,,,,8 mM,-61.34804794,Mitte,temporal,47.0,Verji +OP230817,23817017.abf,S2,5,23817S2c5,D1,high K,0.0,no,6.405833333,7.644675671,46.62568164,-69.96459961,32,150.0,91.08276367,-39.28222656,369.0185547,-84.59472656,15.0,328.9959839,10,478.1559,0.907917358,,,,,,8 mM,-61.11205521,Mitte,temporal,47.0,Verji +OP230817,23817017.abf,S2,7,23817S2c7,D1,high K,0.0,no,6.405833333,7.393000209,73.23189237,-73.19946289,31,100.0,83.37402344,-35.25390625,251.0986328,-52.00195313,17.6,259.4901237,12,415.8439,1.29745339,,,,,,8 mM,-61.26763275,Mitte,temporal,47.0,Verji +OP230817,23817027.abf,S3,6,23817S3c6,D1,Ctrl,0.0,no,7.576388889,6.378030146,83.31209596,-70.70922852,25,150.0,65.12451172,-26.8737793,169.3115234,-50.65917969,18.75,293.830703,17,382.4827,1.169611959,,,,,,8 mM,-59.91347687,Mitte,temporal,47.0,Verji +OP230817,23817027.abf,S3,7,23817S3c7,D1,Ctrl,0.0,no,7.576388889,7.766765984,94.94505367,-69.30541992,25,100.0,68.70117188,-26.60522461,172.2412109,-40.52734375,13.75,226.0712494,18,289.3896,1.452765621,,,,,,8 mM,-58.00519043,Mitte,temporal,47.0,Verji +OP230817,23817027.abf,S3,8,23817S3c8,D1,Ctrl,0.0,no,7.576388889,21.3561022,75.35247745,-69.83642578,27,100.0,82.33642578,-39.61791992,286.2548828,-68.72558594,16.9,451.3277914,19,424.6042,1.037192893,,,,,,8 mM,-61.06595032,Mitte,temporal,47.0,Verji +OP230817,23817052.abf,S1_D2,3,23817S1_D2c3,D2,TTX,23.0,no,27.70083333,8.956366741,59.84267001,-70.93505859,17,200.0,57.45849609,-25.20141602,142.9443359,-50.65917969,19.25,294.7588785,21,437.2646,1.055696831,,,,,,8 mM,-59.13998245,Mitte,temporal,47.0,Verji +OP230817,23817052.abf,S1_D2,7,23817S1_D2c7,D2,TTX,23.0,no,27.70083333,7.552612885,68.78540477,-63.45825195,21,150.0,56.1340332,-23.79760742,144.4091797,-58.34960938,17.2,249.6056687,24,395.9532,0.913314774,,,,,,8 mM,-60.48967346,Mitte,temporal,47.0,Verji +OP230817,23817061.abf,S2_D2,1,23817S2_D2c1,D2,high K,23.0,no,29.09,7.823500973,44.06787432,-69.62890625,24,250.0,80.10253906,-33.06274414,311.4013672,-81.42089844,14.5,325.4356164,25,248.9183,0.918503011,,,,,,8 mM,-58.62247513,Mitte,temporal,47.0,Verji +OP230817,23817061.abf,S2_D2,4,23817S2c6,D2,high K,23.0,no,29.09,7.618869229,40.55268468,-57.86743164,13,500.0,72.36938477,-29.37011719,229.7363281,-47.8515625,13.25,410.3742911,26; exclude; Rs_end > 30,729.2643,1.588326109,,,,,,8 mM,-60.08552902,Mitte,temporal,47.0,Verji +OP230817,23817061.abf,S2_D2,5,23817S2_D2c5,D2,high K,23.0,no,29.09,8.902212776,71.96662028,-72.25952148,24,150.0,72.75390625,-27.86865234,241.6992188,-64.81933594,18.25,271.9490678,27,378.7026,0.970257963,,,,,,8 mM,-62.8398439,Mitte,temporal,47.0,Verji +OP230817,23817061.abf,S2_D2,7,23817S2_D2c7,D2,high K,23.0,no,29.09,8.815965302,45.82001767,-71.96044922,23,350.0,66.1315918,-29.03442383,188.9648438,-66.40625,15.7,302.978563,28,130.2343,0.942265993,,,,,,8 mM,-59.94914551,Mitte,temporal,47.0,Verji +OP230810,23810004.abf,S1,1,23810S1c1,D1,high K,0.0,no,5.660833333,10.53595993,45.08421063,-66.61987305,42,200.0,84.10644531,-35.43701172,318.9697266,-57.86132813,10.05,243.0394096,0,411.0737,1.137813516,,,,,,8 mM,-62.12011597,Mitte,temporal,63.0,Verji +OP230810,23810004.abf,S1,4,23810S1c4,D1,high K,0.0,no,5.660833333,9.889564039,33.91550875,-63.62915039,50,300.0,88.14697266,-38.07373047,358.6425781,-71.89941406,7.4,230.936381,2,436.0045,0.985160862,,,,,,8 mM,-61.63149551,Mitte,temporal,63.0,Verji +OP230810,23810004.abf,S1,5,23810S1c5,D1,high K,0.0,yes,5.660833333,25.46841192,79.0432156,-65.1550293,55,100.0,85.49194336,-43.07250977,389.7705078,-80.078125,11.45,241.5927882,3,224.5875,0.966592916,,,,,,8 mM,-60.8608934,Mitte,temporal,63.0,Verji +OP230810,23810004.abf,S1,7,23810S1c7,D1,high K,0.0,yes,5.660833333,26.75652963,74.70950316,-64.85595703,53,150.0,90.94238281,-42.93212891,423.9501953,-83.0078125,9.1,239.3168539,5,307.5403,0.965371197,,,,,,8 mM,-61.51349396,Mitte,temporal,63.0,Verji +OP230810,23810015.abf,S2,3,23810S2c3,D1,TTX,0.0,no,7.043055556,9.813709187,43.30366327,-68.34716797,33,150.0,92.21801758,-38.21411133,503.4179688,-82.51953125,18.15,511.3836629,8,579.0793,0.927930576,,,,,,8 mM,-60.64728134,Mitte,temporal,63.0,Verji +OP230810,23810015.abf,S2,4,23810S2c4,D1,TTX,0.0,yes,7.043055556,11.56361098,53.10180243,-68.06640625,43,150.0,89.40429688,-38.63525391,432.3730469,-75.80566406,15.65,369.7326604,9,492.6164,0.938404113,,,,,,8 mM,-60.87508209,Mitte,temporal,63.0,Verji +OP230810,23810015.abf,S2,5,23810S2c5,D1,TTX,0.0,no,7.043055556,10.1206367,67.73941573,-70.62988281,47,100.0,91.97387695,-37.81738281,415.7714844,-107.6660156,13.0,228.6548578,10,402.0134,0.760051718,,,,,,8 mM,-61.32922775,Mitte,temporal,63.0,Verji +OP230810,23810015.abf,S2,6,23810S2c6,D1,TTX,0.0,no,7.043055556,12.92801965,91.54312954,-74.8840332,43,50.0,94.64111328,-44.40917969,489.3798828,-119.6289063,15.8,211.5792399,11,304.9002,0.776494495,,,,,,8 mM,-61.72165741,Mitte,temporal,63.0,Verji +OP230810,23810029.abf,S3,1,23810S3c1,D1,Ctrl,0.0,no,9.101111111,10.14030961,120.2157991,-66.64428711,40,50.0,74.56665039,-36.37084961,270.7519531,-78.97949219,19.5,151.058156,14,172.1157,0.838170863,,,,,,8 mM,-56.2941983,Mitte,temporal,63.0,Verji +OP230810,23810029.abf,S3,5,23810S3c5,D1,Ctrl,0.0,no,9.101111111,9.074148603,63.67820363,-74.8046875,39,100.0,89.19677734,-38.88549805,408.9355469,-81.90917969,21.55,299.3431115,16,459.4953,0.892747443,,,,,,8 mM,-59.79551285,Mitte,temporal,63.0,Verji +OP220228,22228003.abf,S1,1,22228S1c1,D1,high K,0.0,no,13.01777778,9.703039696,57.82823928,-71.13037109,48,200.0,81.67114258,-35.25390625,301.6357422,-68.359375,15.8,227.8760563,0,,0.94154616,,,,,,15 mM,-58.48133881,Bielefeld,temporal,33.0,Verji +OP220228,22228003.abf,S1,2,22228S1c2,D1,high K,0.0,no,13.01777778,9.854402653,38.16954234,-70.55664063,32,200.0,92.91381836,-40.61279297,367.9199219,-91.91894531,13.15,359.3821518,1,,0.848723013,,,,,,15 mM,-61.96286499,Bielefeld,temporal,33.0,Verji +OP220228,22228003.abf,S1,3,22228S1c3,D1,high K,0.0,no,13.01777778,10.94570997,40.15273033,-71.25244141,25,200.0,84.11254883,-36.12670898,280.0292969,-72.38769531,18.15,429.4145848,2,,1.04502126,,,,,,15 mM,-61.53337463,Bielefeld,temporal,33.0,Verji +OP220228,22228003.abf,S1,7,22228S1c7,D1,high K,0.0,yes,13.01777778,9.302653435,35.27534379,-57.60498047,26,300.0,80.05371094,-33.56323242,244.9951172,-74.34082031,8.6,215.2825057,4,,0.969376414,,,,,,15 mM,-55.97195953,Bielefeld,temporal,33.0,Verji +OP220228,22228053.abf,S1_D2,7,22228S1c7,D2,high K,23.0,yes,36.27416667,8.278934792,43.51478731,-75.69580078,23,150.0,69.17114258,-25.81787109,213.2568359,-62.25585938,17.9,343.6128881,18,,0.991119539,,,,,,15 mM,-59.53292999,Bielefeld,temporal,33.0,Verji +OP220228,22228012.abf,S2,5,22228S2c5,D1,TTX,0.0,no,14.85305556,9.695520539,50.1463858,-57.25708008,40,150.0,86.54174805,-38.37280273,301.0253906,-98.99902344,21.4,528.0385542,8,,0.797740167,,,,,,15 mM,-60.16049988,Bielefeld,temporal,33.0,Verji +OP220228,22228012.abf,S2,6,22228S2c6,D1,TTX,0.0,yes,14.85305556,10.38374782,31.59037865,-69.36035156,35,200.0,87.20703125,-35.85205078,247.1923828,-77.51464844,15.5,448.282436,9,,0.979333572,,,,,,15 mM,-60.06162994,Bielefeld,temporal,33.0,Verji +OP220228,22228063.abf,S2_D2,5,22228S2c6,D2,TTX,23.0,yes,38.60805556,7.026996492,27.35234819,-73.79760742,19,400.0,56.26220703,-23.34594727,133.6669922,-40.52734375,15.35,428.0755745,22,,1.284542472,,,,,,15 mM,-61.37136124,Bielefeld,temporal,33.0,Verji +OP220228,22228021.abf,S3,1,22228S3c1,D1,Ctrl,0.0,yes,16.45583333,12.59685025,48.80658018,-73.23608398,25,100.0,87.64648438,-36.98120117,308.3496094,-73.97460938,24.05,346.1003074,10,,0.987659218,,,,,,15 mM,-54.11123474,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,1,22228S3c1,D2,Ctrl,23.0,yes,40.96055556,6.6129101,35.81818408,-70.96557617,33,500.0,71.03271484,-27.27661133,207.3974609,-44.55566406,13.55,328.4071006,25,,1.365305654,,,,,,15 mM,-58.70795258,Bielefeld,temporal,33.0,Verji +OP220228,22228021.abf,S3,2,22228S3c2,D1,Ctrl,0.0,no,16.45583333,15.41093987,79.95721124,-71.76513672,39,100.0,90.21606445,-42.63305664,283.3251953,-97.65625,14.65,171.6307472,11,,0.864059174,,,,,,15 mM,-58.95274002,Bielefeld,temporal,33.0,Verji +OP220228,22228021.abf,S3,3,22228S3c3,D1,Ctrl,0.0,no,16.45583333,10.60749625,50.49957333,-72.90039063,41,100.0,97.15576172,-42.70629883,453.9794922,-80.078125,16.65,283.5692308,12,,0.97542911,,,,,,15 mM,-59.45195053,Bielefeld,temporal,33.0,Verji +OP220228,22228021.abf,S3,5,22228S3c5,D1,Ctrl,0.0,no,16.45583333,11.25796831,53.66263697,-74.14550781,31,100.0,91.87011719,-38.70849609,354.4921875,-80.56640625,15.55,236.1178869,14,,0.959514409,,,,,,15 mM,-57.65140213,Bielefeld,temporal,33.0,Verji +OP220228,22228021.abf,S3,6,22228S3c6,D1,Ctrl,0.0,yes,16.45583333,20.88184397,49.35850581,-72.76611328,32,100.0,86.78588867,-39.19067383,260.7421875,-69.70214844,19.75,420.7854356,15,,1.031004411,,,,,,15 mM,-61.28387939,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,5,22228S3c6,D2,Ctrl,23.0,yes,40.96055556,7.185786002,30.06081623,-72.4609375,16,250.0,75.93383789,-26.99584961,272.4609375,-62.98828125,18.85,445.3329488,28,,0.975104163,,,,,,15 mM,-57.43344757,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,2,22228S3_D2c2,D2,Ctrl,23.0,no,40.96055556,8.828194156,31.56405404,-70.99609375,20,500.0,74.07836914,-30.36499023,238.0371094,-59.44824219,11.55,347.5393939,26,,1.025796648,,,,,,15 mM,-61.48842606,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,3,22228S3_D2c3,D2,Ctrl,23.0,no,40.96055556,10.93334579,39.04474103,-67.7734375,19,250.0,77.72216797,-33.56933594,293.9453125,-69.70214844,15.9,434.5381151,27,,0.927382519,,,,,,15 mM,-61.42417953,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,6,22228S3c7,D2,Ctrl,23.0,no,40.96055556,12.48911672,38.88908437,-62.32299805,20,250.0,80.45654297,-32.98339844,251.3427734,-82.15332031,18.8,392.3811465,29,,0.863327534,,,,,,15 mM,-63.55627686,Bielefeld,temporal,33.0,Verji +OP220228,22228070.abf,S3_D2,7,22228S3_D2c7,D2,Ctrl,23.0,no,40.96055556,9.227520643,63.30278717,-69.68383789,32,150.0,83.72192383,-32.41577148,335.4492188,-71.65527344,13.3,216.285062,30,,0.995608196,,,,,,15 mM,-61.25755585,Bielefeld,temporal,33.0,Verji +OP220217,22217003.abf,S1,1,22217S1c1,D1,Ctrl,0.0,yes,7.946944444,10.66103213,76.33388378,-73.3215332,36,150.0,77.08740234,-38.80004883,184.8144531,-87.890625,21.45,256.4296242,0,,0.868433288,,,,,,15 mM,-60.9327861,Mitte,temporal,17.0,Verji +OP220217,22218033.abf,S1_D2,1,22217S1c1,D2,Ctrl,22.0,yes,31.77861111,12.35506024,86.47702787,-67.32788086,35,50.0,67.86499023,-34.58862305,128.1738281,-43.33496094,18.55,428.664598,18,,1.511119857,,,,,,15 mM,-53.89203979,Mitte,temporal,17.0,Verji +OP220217,22217003.abf,S1,2,22217S1c2,D1,Ctrl,0.0,no,7.946944444,15.45706138,135.9415142,-77.33764648,46,50.0,89.68505859,-42.85888672,267.3339844,-92.65136719,15.9,120.6882557,1,,0.870521903,,,,,,15 mM,-61.75159393,Mitte,temporal,17.0,Verji +OP220217,22217003.abf,S1,6,22217S1c6,D1,Ctrl,0.0,no,7.946944444,11.55743483,64.77569698,-77.72827148,48,100.0,96.42944336,-42.55981445,307.7392578,-103.2714844,12.2,141.8125576,3,,0.869594237,,,,,,15 mM,-60.95539566,Mitte,temporal,17.0,Verji +OP220217,22217015.abf,S2,2,22217S2c2,D1,TTX,0.0,yes,10.37611111,15.7685395,142.7530632,-76.45263672,27,50.0,85.87036133,-48.2421875,202.2705078,-95.45898438,17.85,148.4540102,6,,0.915999554,,,,,,15 mM,-62.02317886,Mitte,temporal,17.0,Verji +OP220217,22218045.abf,S2_D2,2,22217S2c2,D2,TTX,22.0,yes,33.99166667,18.13155068,116.138566,-75.1159668,27,0.0,72.63793945,-38.71459961,188.3544922,-71.41113281,22.45,358.4998051,23,,0.959547275,,,,,,15 mM,-51.26950165,Mitte,temporal,17.0,Verji +OP220217,22217015.abf,S2,6,22217S2c6,D1,TTX,0.0,yes,10.37611111,12.01298187,73.54153582,-74.78637695,33,150.0,73.08349609,-37.54882813,151.3671875,-74.21875,20.0,244.2638837,8,,0.951468494,,,,,,15 mM,-65.0912529,Mitte,temporal,17.0,Verji +OP220217,22218050.abf,S2_D2,6,22217S2c6,D2,TTX,22.0,yes,34.21222222,15.88834982,133.2850322,-79.85229492,29,100.0,62.73803711,-32.48291016,143.4326172,-54.44335938,24.65,265.5263642,24,,1.067558287,,,,,,15 mM,-62.85704315,Mitte,temporal,17.0,Verji +OP220217,22217015.abf,S2,8,22217S2c8,D1,TTX,0.0,no,10.37611111,12.80201688,104.4378439,-48.66333008,35,50.0,86.23657227,-46.24023438,254.5166016,-104.2480469,9.85,110.6875171,10,,0.802457594,,,,,,15 mM,-57.77001999,Mitte,temporal,17.0,Verji +OP220217,22217019.abf,S3,3,22217S3c3,D1,high K,0.0,yes,11.88,18.26345881,61.36442233,-67.62695313,42,200.0,74.2980957,-31.21337891,237.4267578,-76.53808594,12.0,197.9939577,12,,0.860289833,,,,,,15 mM,-60.90937561,Mitte,temporal,17.0,Verji +OP220217,22218066.abf,S3_D2,3,22217S3c3,D2,high K,22.0,yes,36.31111111,9.166298022,75.25294752,-71.1730957,39,200.0,79.52270508,-32.44628906,311.5234375,-71.77734375,15.5,263.4356846,30,,0.886507296,,,,,,15 mM,-61.86466202,Mitte,temporal,17.0,Verji +OP220217,22217019.abf,S3,4,22217S3c4,D1,high K,0.0,no,11.88,8.510487699,38.52877708,-73.65112305,34,450.0,71.29516602,-37.06054688,202.3925781,-67.26074219,11.85,328.5116751,13,,0.932318255,,,,,,15 mM,-64.75763992,Mitte,temporal,17.0,Verji +OP220217,22217019.abf,S3,6,22217S3c6,D1,high K,0.0,no,11.88,8.861853193,63.94871696,-76.65405273,34,100.0,77.01416016,-36.27319336,189.6972656,-79.71191406,22.9,277.71547,15,,0.90259798,,,,,,15 mM,-58.14128174,Mitte,temporal,17.0,Verji +OP220217,22217019.abf,S3,7,22217S3c7,D1,high K,0.0,no,11.88,22.37954071,69.42446686,-73.08959961,31,150.0,79.30908203,-37.25585938,253.6621094,-83.74023438,18.1,293.9052527,16,,0.8489795,,,,,,15 mM,-62.40558319,Mitte,temporal,17.0,Verji +OP220217,22217019.abf,S3,8,22217S3c8,D1,high K,0.0,no,11.88,12.41443569,129.1635122,-75.31738281,32,50.0,87.05444336,-41.16821289,333.3740234,-101.6845703,15.7,121.1343537,17,,0.787790582,,,,,,15 mM,-57.22033875,Mitte,temporal,17.0,Verji +OP220217,22218041.abf,S1_D2,3,22218S1_D2c3,D2,Ctrl,22.0,no,32.48944444,10.79297264,127.5612942,-75.32958984,37,100.0,90.82641602,-43.32275391,383.1787109,-99.97558594,16.3,168.1203651,20,,0.805372503,,,,,,15 mM,-60.69753983,Mitte,temporal,17.0,Verji +OP220217,22218041.abf,S1_D2,6,22218S1_D2c6,D2,Ctrl,22.0,no,32.48944444,9.274831342,57.53145112,-73.87695313,24,150.0,84.36279297,-36.90185547,300.4150391,-72.14355469,18.35,308.3552821,21,,1.0634956,,,,,,15 mM,-62.0959848,Mitte,temporal,17.0,Verji +OP220217,22218041.abf,S1_D2,8,22218S1_D2c8,D2,Ctrl,22.0,no,32.48944444,12.62715842,101.8551684,-69.67773438,34,100.0,88.95263672,-40.48461914,382.0800781,-88.25683594,17.5,176.009822,22,,0.861675774,,,,,,15 mM,-59.82177673,Mitte,temporal,17.0,Verji +OP220217,22218058.abf,S2_D2,1,22218S2_D2c1,D2,TTX,22.0,no,34.75305556,11.40083441,201.6532817,-72.02148438,27,0.0,73.01635742,-32.21435547,290.8935547,-100.8300781,23.75,288.7717996,26,,0.72147361,,,,,,15 mM,-51.81500977,Mitte,temporal,17.0,Verji +OP220217,22218058.abf,S2_D2,3,22218S2_D2c3,D2,TTX,22.0,no,34.75305556,7.854192223,69.71558251,-73.03466797,30,200.0,61.29150391,-29.75463867,140.2587891,-41.9921875,15.65,284.031681,27,,1.240366976,,,,,,15 mM,-61.11393967,Mitte,temporal,17.0,Verji +OP220217,22218058.abf,S2_D2,8,22218S2_D2c8,D2,TTX,22.0,no,34.75305556,11.92866691,194.6156853,-54.52270508,30,100.0,76.04370117,-36.74926758,265.0146484,-82.76367188,15.2,122.0469493,28,,0.858798686,,,,,,15 mM,-60.15599762,Mitte,temporal,17.0,Verji +OP220811,22811012.abf,S2_D2,1,22811S2_D2c1,D2,high K,17.0,no,23.26527778,6.346277248,43.37394322,-57.84301758,25,450.0,76.69677734,-28.79638672,317.6269531,-64.08691406,17.4,378.8459801,0,,0.982923356,,,,,,8 mM,-60.71844376,Mitte,temporal,18.0,Verji +OP220811,22811012.abf,S2_D2,3,22811S2_D2c3,D2,high K,17.0,no,23.26527778,7.055187576,38.20410092,-62.73803711,22,450.0,73.91357422,-28.77197266,279.7851563,-52.36816406,20.65,508.7663158,1,,1.158498711,,,,,,8 mM,-62.72726624,Mitte,temporal,18.0,Verji +OP220811,22811012.abf,S2_D2,4,22811S2_D2c4,D2,high K,17.0,no,23.26527778,8.987975656,62.07735907,-59.1796875,26,300.0,68.73779297,-26.61743164,212.1582031,-48.21777344,14.85,240.2986667,2; exclude; Rs_end > 30,,1.18450913,,,,,,8 mM,-60.19162048,Mitte,temporal,18.0,Verji +OP220811,22811012.abf,S2_D2,5,22811S2_D2c5,D2,high K,17.0,no,23.26527778,5.024042715,40.28845612,-68.79272461,23,400.0,72.66845703,-27.11181641,271.484375,-46.75292969,19.15,427.4572207,3,,1.249915167,,,,,,8 mM,-61.54855072,Mitte,temporal,18.0,Verji +OP220811,22811022.abf,S3_D2,5,22811S3_D2c5,D2,TTX,17.0,no,25.69194444,7.821654527,56.09617591,-61.16943359,25,300.0,69.32983398,-27.86254883,254.8828125,-52.61230469,14.7,248.4216606,8,,1.087222637,,,,,,8 mM,-62.505495,Mitte,temporal,18.0,Verji +OP220811,22811022.abf,S3_D2,8,22811S3_D2c8,D2,TTX,17.0,no,25.69194444,15.48765425,64.87003085,-63.42163086,33,250.0,78.43017578,-31.72607422,312.0117188,-75.31738281,17.45,363.5102352,10,,0.877296965,,,,,,8 mM,-61.40568298,Mitte,temporal,18.0,Verji +OP221024,22o24003.abf,S1,1,22o24S1c1,D1,high K,0.0,yes,21.08555556,10.90931827,69.32492654,-75.80566406,26,-300.0,88.72070313,-44.64111328,483.2763672,-65.18554688,15.95,204.4794992,0,,1.121075787,,,,,,8 mM,-57.89408249,Bielefeld,temporal,42.0,Verji +OP221024,22o24003.abf,S1,2,22o24S1c2,D1,high K,0.0,yes,21.08555556,9.362432704,46.972693,-69.75097656,34,250.0,85.51025391,-37.70751953,418.4570313,-61.5234375,11.25,251.2883436,1,,1.089130051,,,,,,8 mM,-62.87847504,Bielefeld,temporal,42.0,Verji +OP221024,22o24040.abf,S1_D2,3,22o24S1c2,D2,high K,24.0,yes,45.12972222,10.12949209,28.35704489,-64.1784668,2,900.0,64.9230957,-35.93139648,158.5693359,-33.93554688,5.05,273.9708609,23,,1.773285869,,,,,,8 mM,-64.17258881,Bielefeld,temporal,42.0,Verji +OP221024,22o24003.abf,S1,3,22o24S1c3,D1,high K,0.0,yes,21.08555556,9.786674655,55.84245944,-73.77929688,33,100.0,86.73095703,-41.87011719,341.796875,-86.9140625,13.8,222.4291195,2,,0.859553431,,,,,,8 mM,-60.02488037,Bielefeld,temporal,42.0,Verji +OP221024,22o24040.abf,S1_D2,4,22o24S1c3,D2,high K,24.0,yes,45.12972222,9.182507114,32.80368941,-74.37744141,5,700.0,70.48950195,-44.15283203,177.8564453,-64.57519531,7.7,308.8293758,24,,1.065969911,,,,,,8 mM,-63.29925247,Bielefeld,temporal,42.0,Verji +OP221024,22o24003.abf,S1,6,22o24S1c6,D1,high K,0.0,no,21.08555556,8.813492369,38.19798036,-63.28125,28,250.0,85.21118164,-31.57958984,375.2441406,-65.30761719,10.6,243.7479298,5,,1.011249184,,,,,,8 mM,-58.7995285,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,1,22o24S2c1,D1,TTX,0.0,no,22.44666667,8.604516549,30.18913213,-48.68774414,2,350.0,37.06665039,-20.50170898,65.30761719,-27.83203125,8.7,342.2348139,8,,1.084805891,,,,,,8 mM,-57.17624695,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,2,22o24S2c2,D1,TTX,0.0,no,22.44666667,8.03896903,38.1246931,-68.13354492,23,250.0,86.06567383,-35.80322266,358.3984375,-78.97949219,12.55,311.3084027,9,,0.963505408,,,,,,8 mM,-60.434897,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,4,22o24S2c4,D1,TTX,0.0,yes,22.44666667,11.04390653,41.84442835,-70.76416016,30,200.0,87.5,-39.78881836,417.1142578,-77.27050781,15.75,376.9875822,10,,0.909445689,,,,,,8 mM,-60.24489349,Bielefeld,temporal,42.0,Verji +OP221024,22o24049.abf,S2_D2,3,22o24S2c4,D2,TTX,24.0,yes,47.21277778,19.80432492,52.02472251,-66.24145508,15,250.0,70.36743164,-34.17358398,197.1435547,-69.09179688,14.7,384.4290503,29,,0.969108338,,,,,,8 mM,-62.68482742,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,5,22o24S2c5,D1,TTX,0.0,yes,22.44666667,7.519762598,46.53414832,-73.86474609,33,150.0,88.76953125,-38.65356445,414.6728516,-73.60839844,13.7,253.3417607,11,,0.94454288,,,,,,8 mM,-60.33580963,Bielefeld,temporal,42.0,Verji +OP221024,22o24052.abf,S2_D2,4,22o24S2c5,D2,TTX,24.0,yes,47.46416667,9.592057034,38.5317477,-63.37280273,6,600.0,60.59570313,-22.96142578,158.203125,-41.38183594,3.95,117.7739763,30,,1.239089567,,,,,,8 mM,-63.76218063,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,6,22o24S2c6,D1,TTX,0.0,no,22.44666667,6.338786573,36.02503119,-71.08764648,22,300.0,88.46435547,-37.79296875,431.3964844,-70.55664063,10.9,281.2371654,12,,0.954466435,,,,,,8 mM,-61.42349838,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,7,22o24S2c7,D1,TTX,0.0,no,22.44666667,7.802772031,44.335863,-74.07226563,32,150.0,86.82861328,-37.07885742,387.3291016,-81.29882813,12.95,257.9608511,13,,0.882211538,,,,,,8 mM,-60.75148544,Bielefeld,temporal,42.0,Verji +OP221024,22o24011.abf,S2,8,22o24S2c8,D1,TTX,0.0,no,22.44666667,8.514457236,42.01692264,-70.56884766,34,200.0,91.51611328,-38.4765625,433.9599609,-95.703125,11.3,311.9447346,14,,0.825236419,,,,,,8 mM,-61.10428894,Bielefeld,temporal,42.0,Verji +OP221024,22o24021.abf,S3,3,22o24S3c3,D1,Ctrl,0.0,no,23.96416667,8.992057281,99.51333036,-69.09790039,36,100.0,91.40625,-39.25170898,525.390625,-83.37402344,15.35,171.3760818,16,,0.849344649,,,,,,8 mM,-61.23429367,Bielefeld,temporal,42.0,Verji +OP221024,22o24021.abf,S3,4,22o24S3c4,D1,Ctrl,0.0,no,23.96416667,11.5212428,137.8207965,-71.78955078,41,50.0,93.32275391,-42.96875,465.8203125,-83.74023438,14.85,124.3241696,17,,0.959995228,,,,,,8 mM,-62.26568939,Bielefeld,temporal,42.0,Verji +OP221024,22o24021.abf,S3,5,22o24S3c5,D1,Ctrl,0.0,no,23.96416667,7.594409272,45.93332181,-72.43041992,26,200.0,86.43798828,-35.81542969,413.6962891,-93.26171875,13.2,226.1043387,18,,0.746799258,,,,,,8 mM,-60.62566452,Bielefeld,temporal,42.0,Verji +OP221024,22o24040.abf,S1_D2,5,22o24S1_D2c5,D2,high K,24.0,no,45.12972222,10.66227707,80.37507058,-51.42211914,14,-300.0,69.83642578,-32.35473633,248.4130859,-54.19921875,10.8,159.0536629,25,,1.184782058,,,,,,8 mM,-57.97613998,Bielefeld,temporal,42.0,Verji +OP221024,22o24055.abf,S2_D2,6,22o24S2_D2c6,D2,TTX,24.0,no,47.575,8.558724495,44.97863187,-69.43969727,18,250.0,63.26904297,-28.64990234,214.9658203,-77.88085938,11.55,314.6054863,32,,0.753311109,,,,,,8 mM,-60.55082825,Bielefeld,temporal,42.0,Verji +OP221024,22o24063.abf,S3_D2,2,22o24S3_D2c2,D2,Ctrl,24.0,no,50.01027778,7.345219018,37.01188806,-63.03100586,10,600.0,64.30053711,-27.58789063,225.5859375,-75.56152344,9.8,219.7990418,33,,0.802658632,,,,,,8 mM,-61.95141037,Bielefeld,temporal,42.0,Verji +OP240221,24221004.abf,S1,3,24221S1c3,D1,high K,0.0,yes,11.03888889,15.19987599,59.41465581,-67.87109375,35,200.0,80.92041016,-39.39819336,318.359375,-89.84375,20.5,591.3239437,1,,0.825399979,492.3464115,,,,,8 mM,-59.54050186,Bielefeld,temporal,37.0,Verji +OP240221,24221022.abf,S1_D2,2,24221S1c3,D2,high K,20.0,yes,30.81111111,12.58040096,46.37553368,-54.74853516,18,600.0,72.37548828,-31.28662109,290.5273438,-51.7578125,10.5,535.9252336,9,,1.148243515,357.1019034,,,,,8 mM,-61.02496414,Bielefeld,temporal,37.0,Verji +OP240221,24221004.abf,S1,4,24221S1c4,D1,high K,0.0,no,11.03888889,16.05173703,137.9807712,-47.58605957,21,100.0,85.55908203,-44.15893555,339.4775391,-118.0419922,11.55,133.640678,2,,0.743333036,28.92096403,,,,,8 mM,-60.35948746,Bielefeld,temporal,37.0,Verji +OP240221,24221004.abf,S1,6,24221S1c6,D1,high K,0.0,no,11.03888889,28.46934763,92.09385143,-73.12011719,49,100.0,82.62329102,-41.18041992,347.0458984,-84.35058594,15.5,287.7643059,4,,0.88288824,385.1528384,,,,,8 mM,-61.13145767,Bielefeld,temporal,37.0,Verji +OP240221,24221004.abf,S1,7,24221S1c7,D1,high K,0.0,yes,11.03888889,12.3396884,68.35158183,-55.93261719,34,200.0,83.48388672,-38.43383789,314.9414063,-72.38769531,13.25,346.7859425,5,,1.03983575,157.7452582,,,,,8 mM,-60.75606796,Bielefeld,temporal,37.0,Verji +OP240221,24221014.abf,S2,2,24221S2c2,D1,Ctrl,0.0,no,13.15805556,25.21255814,103.1874499,-72.39990234,40,100.0,80.06591797,-40.85693359,328.6132813,-62.86621094,16.75,311.5005675,7,,1.054828584,334.6311544,,,,,8 mM,-62.44723831,Bielefeld,temporal,37.0,Verji +OP220308,22308003.abf,S1,3,22308S1c3,D1,Ctrl,0.0,no,12.17,14.71614506,139.817799,-76.13525391,27,50.0,89.7277832,-41.52832031,294.6777344,-78.36914063,14.95,120.7199606,0,,0.985303103,,,,,,15 mM,-57.45852081,Bielefeld,temporal,52.0,Verji +OP220308,22308003.abf,S1,4,22308S1c4,D1,Ctrl,0.0,no,12.17,19.73230303,79.3243834,-74.47509766,36,50.0,82.93457031,-39.98413086,251.4648438,-61.88964844,24.0,263.5495979,1,,1.082590036,,,,,,15 mM,-56.90159531,Bielefeld,temporal,52.0,Verji +OP220308,22308003.abf,S1,5,22308S1c5,D1,Ctrl,0.0,no,12.17,11.98259768,72.97040459,-78.37524414,35,100.0,88.34838867,-40.40527344,325.9277344,-83.61816406,21.35,268.1474895,2,,0.879131407,,,,,,15 mM,-57.60974518,Bielefeld,temporal,52.0,Verji +OP220308,22308003.abf,S1,7,22308S1c7,D1,Ctrl,0.0,no,12.17,8.522516999,53.58722859,-51.08032227,30,250.0,83.48388672,-36.30981445,267.4560547,-69.82421875,17.0,393.9575672,3,,1.054488383,,,,,,15 mM,-60.0561673,Bielefeld,temporal,52.0,Verji +OP220308,22308003.abf,S1,8,22308S1c8,D1,Ctrl,0.0,yes,12.17,26.9429407,124.403892,-71.44775391,40,100.0,79.3762207,-39.86206055,243.5302734,-77.39257813,20.45,201.7175196,4; exclude; Rs_end > 30,,0.938989072,,,,,,15 mM,-62.01251495,Bielefeld,temporal,52.0,Verji +OP220308,22308054.abf,S1_D2,7,22308S1c8,D2,Ctrl,20.0,yes,36.46888889,16.18039871,112.6543651,-47.14355469,20,200.0,72.20458984,-37.92724609,200.5615234,-53.22265625,11.4,154.5532478,14,,1.208637391,,,,,,15 mM,-57.81399338,Bielefeld,temporal,52.0,Verji +OP220308,22308012.abf,S2,8,22308S2c8,D1,high K,0.0,no,13.88583333,10.23112162,61.3139694,-49.26757813,39,200.0,87.15209961,-38.76342773,280.6396484,-74.82910156,10.55,184.7687867,9,,1.021300313,,,,,,15 mM,-54.41224365,Bielefeld,temporal,52.0,Verji +OP220308,22308022.abf,S3,3,22308S3c3,D1,TTX,0.0,no,15.60305556,10.91069673,55.31995891,-61.4440918,18,100.0,89.99023438,-44.2565918,301.7578125,-78.49121094,11.55,256.0692828,11,,1.016467515,,,,,,15 mM,-57.81399338,Bielefeld,temporal,52.0,Verji +OP220308,22308022.abf,S3,7,22308S3c7,D1,TTX,0.0,no,15.60305556,7.827827594,40.35691738,-73.83422852,45,200.0,89.69116211,-41.53442383,337.7685547,-77.75878906,11.6,315.9674148,12,,0.971664638,,,,,,15 mM,-62.16483994,Bielefeld,temporal,52.0,Verji +OP220308,22308022.abf,S3,8,22308S3c8,D1,TTX,0.0,no,15.60305556,9.160275916,47.96446617,-51.55029297,46,250.0,86.04125977,-39.06860352,251.953125,-63.4765625,7.8,198.903035,13,,1.152188325,,,,,,15 mM,-0.284614105,Bielefeld,temporal,52.0,Verji +OP220322,22308003.abf,S1,3,22322S1c3,D1,Ctrl,0.0,no,10.66527778,7.194921663,30.39460455,-65.58837891,23,250.0,85.76660156,-37.91503906,330.5664063,-87.76855469,11.6,289.9380625,0,,0.896503946,,,,,,15 mM,-61.79714706,Bielefeld,temporal,52.0,Verji +OP220322,22308003.abf,S1,6,22322S1c6,D1,Ctrl,0.0,no,10.66527778,7.45147952,31.63924085,-65.67993164,27,150.0,85.31494141,-37.8112793,258.7890625,-76.04980469,13.45,276.6664156,2,,0.996761814,,,,,,15 mM,-73.95379166,Bielefeld,temporal,52.0,Verji +OP220322,22308003.abf,S1,7,22322S1c7,D1,Ctrl,0.0,no,10.66527778,6.552417488,29.5114112,-70.55053711,35,200.0,89.44702148,-38.13476563,357.6660156,-60.05859375,13.25,360.013267,3,,1.166368749,,,,,,15 mM,-61.08654404,Bielefeld,temporal,52.0,Verji +OP220322,22308012.abf,S2,6,22322S2c6,D1,TTX,0.0,no,12.45194444,7.956380844,38.77242051,-70.67871094,29,200.0,87.63427734,-37.3840332,298.7060547,-68.359375,10.75,220.9887077,6,,1.035384242,,,,,,15 mM,-61.51928101,Bielefeld,temporal,52.0,Verji +OP220322,22308012.abf,S2,7,22322S2c7,D1,TTX,0.0,no,12.45194444,8.412073416,40.93494031,-66.56494141,16,250.0,78.44848633,-34.39941406,261.3525391,-75.56152344,8.55,197.9974558,7,,0.929696138,,,,,,15 mM,-45.82119965,Bielefeld,temporal,52.0,Verji +OP220322,22308020.abf,S3,6,22322S3c6,D1,high K,0.0,no,14.25722222,7.941083205,31.40239003,-55.10864258,22,150.0,89.6484375,-43.26782227,261.5966797,-80.93261719,10.5,265.4814815,11,,1.10270477,,,,,,15 mM,-59.17220581,Bielefeld,temporal,52.0,Verji +OP220322,22308020.abf,S3,7,22322S3c7,D1,high K,0.0,yes,14.25722222,17.07594954,42.51733175,-68.25561523,45,200.0,87.86010742,-42.63305664,385.3759766,-93.13964844,11.8,372.8663452,12,,0.836066893,,,,,,15 mM,-61.74787827,Bielefeld,temporal,52.0,Verji +OP220322,22308056.abf,S3_D2,6,22322S3c7,D2,high K,22.0,yes,36.83888889,7.826844003,35.39196156,-68.89038086,32,200.0,87.7746582,-38.95874023,302.734375,-88.98925781,10.4,246.5898698,24,,0.8921461,,,,,,15 mM,-60.58758072,Bielefeld,temporal,52.0,Verji +OP220322,22308035.abf,S1_D2,1,22322S1_D2c1,D2,Ctrl,22.0,no,32.92194444,13.94190988,41.33163086,-67.0715332,30,250.0,82.9284668,-38.3605957,291.2597656,-71.41113281,12.55,308.5059265,13,,0.969443049,,,,,,15 mM,-59.11999313,Bielefeld,temporal,52.0,Verji +OP220322,22308035.abf,S1_D2,2,22322S1_D2c2,D2,Ctrl,22.0,no,32.92194444,8.428064398,22.42904461,-63.87939453,16,350.0,79.60205078,-40.625,230.9570313,-68.72558594,16.7,532.8389484,14,,0.99863945,,,,,,15 mM,-59.84509964,Bielefeld,temporal,52.0,Verji +OP220322,22308035.abf,S1_D2,3,22322S1_D2c3,D2,Ctrl,22.0,no,32.92194444,4.849723324,20.08404265,-63.33618164,17,700.0,85.57128906,-40.74707031,297.6074219,-59.93652344,7.85,381.6451039,15,,1.158748512,,,,,,15 mM,-61.61914749,Bielefeld,temporal,52.0,Verji +OP220322,22308035.abf,S1_D2,5,22322S1_D2c5,D2,Ctrl,22.0,no,32.92194444,10.37364917,46.67805794,-68.74389648,41,200.0,81.38427734,-39.66064453,284.7900391,-75.1953125,10.5,268.8,16,,0.983115732,,,,,,15 mM,-61.79618927,Bielefeld,temporal,52.0,Verji +OP220322,22308035.abf,S1_D2,6,22322S1_D2c6,D2,Ctrl,22.0,no,32.92194444,11.95523615,33.57619545,-65.57617188,31,350.0,90.13061523,-40.06958008,339.1113281,-78.73535156,9.45,423.6082079,17,,0.927595753,,,,,,15 mM,-61.32522614,Bielefeld,temporal,52.0,Verji +OP220322,22308044.abf,S2_D2,2,22322S2_D2c2,D2,TTX,22.0,no,34.94305556,28.61894282,50.09540417,-73.07739258,1,400.0,62.13378906,-50.59814453,181.640625,-61.76757813,14.85,847.743554,18,,,,,,,,15 mM,-63.68787903,Bielefeld,temporal,52.0,Verji +OP220322,22308044.abf,S2_D2,3,22322S2_D2c3,D2,TTX,22.0,no,34.94305556,7.367304985,24.60982382,-70.96557617,3,550.0,65.10009766,-38.07983398,241.0888672,-54.6875,8.7,408.426361,19,,0.955310884,,,,,,15 mM,-61.6800824,Bielefeld,temporal,52.0,Verji +OP220322,22308044.abf,S2_D2,4,22322S2_D2c4,D2,TTX,22.0,no,34.94305556,7.454915676,27.69312709,-64.74609375,3,500.0,53.02734375,-28.13110352,110.1074219,-36.62109375,9.65,389.902836,20,,1.265881866,,,,,,15 mM,-61.44793198,Bielefeld,temporal,52.0,Verji +OP220322,22308044.abf,S2_D2,7,22322S2c8,D2,TTX,22.0,yes,34.94305556,13.89952086,37.63278602,-67.80395508,30,300.0,83.3984375,-34.77172852,331.0546875,-61.15722656,9.25,310.557377,21,,1.092899316,,,,,,15 mM,-62.50404282,Bielefeld,temporal,52.0,Verji +OP220322,22308053.abf,S3_D2,3,22322S3_D2c3,D2,high K,22.0,no,36.52277778,16.56685795,52.72689878,-58.93554688,29,250.0,81.68334961,-38.50097656,314.3310547,-58.22753906,5.95,165.7904762,22,,1.166314147,,,,,,15 mM,-63.02653992,Bielefeld,temporal,52.0,Verji +OP220914,22915003.abf,S1,3,22915S1c3,D1,high K,0.0,no,22.15861111,9.195096399,106.882222,-75.73852539,18,100.0,71.80175781,-32.40356445,111.6943359,-26.61132813,26.85,308.7090526,1,,2.419354957,,,,,,8 mM,-60.9158136,Bielefeld,temporal,21.0,Verji +OP220914,22915003.abf,S1,4,22915S1c4,D1,high K,0.0,no,22.15861111,11.32184087,186.5099615,-70.29418945,15,50.0,81.89697266,-34.57641602,182.0068359,-24.90234375,20.35,161.616287,2,,2.464322583,,,,,,8 mM,-59.02662552,Bielefeld,temporal,21.0,Verji +OP220914,22915020.abf,S3,6,22915S3c6,D1,Ctrl,0.0,yes,27.14972222,6.164141235,20.39120868,-55.34057617,12,800.0,62.06665039,-27.49633789,93.38378906,-23.4375,6.1,434.5321739,12,,2.339909803,,,,,,8 mM,-59.43974884,Bielefeld,temporal,21.0,Verji +OP220914,22915057.abf,S3_D2,1,22915S3c6,D2,Ctrl,24.0,yes,50.33444444,11.59657556,44.35956273,-66.64428711,11,450.0,47.19238281,-9.704589844,59.5703125,-21.60644531,9.85,271.6875,24,,2.186626811,,,,,,8 mM,-60.6560463,Bielefeld,temporal,21.0,Verji +OP220914,22915041.abf,S2_D2,3,22915S2c4,D2,TTX,24.0,yes,48.47833333,19.75204264,73.06861364,-57.26318359,5,200.0,23.27880859,-10.91308594,16.96777344,-10.86425781,14.0,220.3419789,18,,2.077205595,,,,,,8 mM,-62.98962296,Bielefeld,temporal,21.0,Verji +OP220914,22915051.abf,S2_D2,6,22915S2_D2c6,D2,TTX,24.0,no,48.89638889,14.79940085,80.56026762,-52.40478516,2,100.0,21.42944336,-10.54077148,14.6484375,-8.056640625,20.15,262.5348708,22,,2.936208337,,,,,,8 mM,-47.75891815,Bielefeld,temporal,21.0,Verji +OP220914,22915051.abf,S2_D2,7,22915S2_D2c7,D2,TTX,24.0,no,48.89638889,24.52496757,227.0266854,-62.49389648,9,50.0,39.06860352,-22.87597656,21.484375,-13.42773438,19.25,93.69934641,23,,2.069203723,,,,,,8 mM,-69.56908951,Bielefeld,temporal,21.0,Verji +OP220518,22519003.abf,S1,1,22519S1c1,D1,Ctrl,0.0,no,21.6325,7.619709179,38.97209824,-73.71826172,27,200.0,88.70849609,-41.52832031,436.0351563,-102.2949219,12.85,246.2390643,0,,0.740454363,,,,,,15 mM,-60.7403566,Bielefeld,frontal,37.0,Verji +OP220518,22519003.abf,S1,6,22519S1c6,D1,Ctrl,0.0,no,21.6325,5.727807449,26.77346398,-73.42529297,29,150.0,86.35864258,-41.19262695,325.0732422,-90.33203125,13.2,285.1269611,2,,0.804193551,,,,,,15 mM,-57.42651184,Bielefeld,frontal,37.0,Verji +OP220518,22519003.abf,S1,8,22519S1c8,D1,Ctrl,0.0,no,21.6325,9.748035718,37.98830503,-58.72192383,29,200.0,88.22021484,-37.97607422,302.3681641,-66.16210938,10.8,297.8909091,4,,1.075476164,,,,,,15 mM,-57.92003006,Bielefeld,frontal,37.0,Verji +OP220518,22519009.abf,S2,1,22519S2c1,D1,high K,0.0,no,23.10222222,8.34737089,82.33904131,-72.66845703,13,300.0,76.62353516,-32.87353516,286.1328125,-83.0078125,8.45,126.8971586,5,,0.841426649,,,,,,15 mM,-63.95318436,Bielefeld,frontal,37.0,Verji +OP220518,22519025.abf,S4,1,22519S4c1,D1,TTX,0.0,no,28.25555556,13.39525598,84.83960652,-61.95678711,20,200.0,82.39135742,-39.60571289,349.1210938,-104.1259766,12.0,159.0036393,13,,0.698413213,,,,,,15 mM,-62.05020187,Bielefeld,frontal,37.0,Verji +OP220518,22519028.abf,S4,6,22519S4c6,D1,TTX,0.0,no,28.65777778,10.15526921,39.25969019,-68.18237305,7,300.0,78.14331055,-40.36254883,274.1699219,-81.90917969,10.5,183.012766,17,,0.816956097,,,,,,15 mM,-64.28639297,Bielefeld,frontal,37.0,Verji +OP220518,22519042.abf,s6,2,22519s6c2,D1,Ctrl,0.0,no,32.00833333,19.43667951,104.0752817,-64.47143555,17,100.0,88.22021484,-42.39501953,334.4726563,-76.41601563,5.2,79.06895592,23,,0.903747566,,,,,,15 mM,-63.46298508,Bielefeld,frontal,37.0,Verji +OP220518,22519042.abf,s6,6,22519s6c6,D1,Ctrl,0.0,no,32.00833333,14.15225349,72.10653878,-47.02148438,22,150.0,81.7199707,-36.17553711,318.2373047,-91.43066406,6.65,121.6,25,,0.791771797,,,,,,15 mM,-59.43434067,Bielefeld,frontal,37.0,Verji +OP220518,22519042.abf,s6,7,22519s6c7,D1,Ctrl,0.0,yes,32.00833333,27.43543633,107.6959386,-58.36181641,22,200.0,79.62036133,-35.22338867,368.2861328,-83.74023438,5.5,118.2572178,26,,0.853316638,,,,,,15 mM,-60.22632568,Bielefeld,frontal,37.0,Verji +OP220518,22519085.abf,S6_D2,1,22519s6c7,D2,Ctrl,24.0,yes,53.85388889,17.88181988,145.8902895,-79.66918945,21,100.0,89.19067383,-43.49975586,471.6796875,-94.48242188,13.65,111.2368068,manually corrected TH,,0.857959245,,,,,,15 mM,-61.09501831,Bielefeld,frontal,37.0,Verji +OP220518,22519057.abf,S2_D2,5,22519S2_D2c5,D2,high K,24.0,no,47.49083333,7.294438443,23.61445361,-61.70043945,6,800.0,75.06713867,-34.58251953,300.4150391,-60.91308594,3.95,198.8227343,28,,1.063950777,,,,,,15 mM,-63.05897186,Bielefeld,frontal,37.0,Verji +OP220518,22519064.abf,S3_D2,6,22519S3_D2c6,D2,TTX,24.0,no,49.34388889,12.58692067,111.0820022,-67.34008789,6,-300.0,69.58618164,-36.06567383,222.0458984,-61.5234375,11.1,86.64240114,33,,0.984123863,,,,,,15 mM,-59.16946442,Bielefeld,frontal,37.0,Verji +OP220518,22519064.abf,S3_D2,7,22519S3_D2c7,D2,TTX,24.0,no,49.34388889,7.162305858,39.71913713,-67.42553711,10,200.0,67.84057617,-27.6184082,229.9804688,-50.90332031,14.35,289.7232286,34,,1.212847368,,,,,,15 mM,-57.12844147,Bielefeld,frontal,37.0,Verji +OP220518,22519091.abf,S6_D2,3,22519S6_D2c3,D2,Ctrl,24.0,no,54.17388889,14.59702048,130.0090539,-70.8190918,25,100.0,88.2019043,-39.87426758,475.2197266,-85.44921875,15.65,120.0700539,manually_correctde,,0.88999314,,,,,,15 mM,-61.47412048,Bielefeld,frontal,37.0,Verji +OP230314,23314003.abf,S1,2,23314S1c2,D1,high K,0.0,no,5.940833333,7.941309249,48.3169072,-63.38500977,46,250.0,87.23754883,-34.80834961,453.125,-85.44921875,12.45,238.2953271,1,,0.812826422,,,325.450848,,,8 mM,-61.11683105,Virchow,temporal,12.0,Verji +OP230314,23314003.abf,S1,8,23314S1c8,D1,high K,0.0,no,5.940833333,22.05420381,97.59612952,-67.35839844,52,100.0,79.43115234,-41.33300781,325.0732422,-111.5722656,13.3,186.4047904,5,,0.776088957,,,201.505075,,,8 mM,-61.03557465,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,2,23314S2c2,D1,high K,0.0,no,7.5825,8.135544825,57.89567555,-64.63623047,41,300.0,88.29956055,-34.85107422,504.3945313,-90.8203125,10.15,257.4266254,7,,0.803290871,,,412.183739,,,8 mM,-63.90576553,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,3,23314S2c3,D1,high K,0.0,yes,7.5825,7.154596846,56.44163229,-60.91918945,27,250.0,88.79394531,-37.16430664,534.1796875,-83.25195313,15.2,363.2921955,8,,0.869486758,,,413.953798,,,8 mM,-62.7203743,Virchow,temporal,12.0,Verji +OP230314,23314050.abf,S2_D2,2,23314S2c3,D2,high K,23.0,yes,30.87,22.15537285,57.50227812,-67.82836914,21,200.0,81.77490234,-37.48779297,361.4501953,-69.82421875,14.7,366.0255319,30; exclude; Rs_end > 30,,0.965786577,,,456.731891,,,8 mM,-60.48879898,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,4,23314S2c4,D1,high K,0.0,no,7.5825,9.896792721,83.7562448,-66.12548828,28,200.0,86.59667969,-35.72387695,493.6523438,-84.59472656,12.5,247.6420798,9,,0.836149723,,,328.585953,,,8 mM,-61.3783609,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,6,23314S2c6,D1,high K,0.0,no,7.5825,16.09137431,63.50362604,-46.7956543,26,250.0,78.50952148,-40.97900391,391.1132813,-57.86132813,12.25,333.9500832,10,,1.123476204,,,158.39028,,,8 mM,-59.48166794,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,7,23314S2c7,D1,high K,0.0,no,7.5825,9.881555581,132.2281346,-75.51269531,48,100.0,81.68334961,-31.49414063,418.4570313,-109.8632813,13.05,147.7617139,11,,0.628082553,,,303.940131,,,8 mM,-60.27200439,Virchow,temporal,12.0,Verji +OP230314,23314014.abf,S2,8,23314S2c8,D1,high K,0.0,no,7.5825,8.139952432,140.7020241,-73.33984375,43,100.0,84.23461914,-35.72387695,453.3691406,-105.3466797,14.5,172.3380486,12,,0.687150771,,,294.924831,,,8 mM,-60.19325272,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,2,23314S3c2,D1,TTX,0.0,no,8.987777778,9.368170983,50.24005521,-63.59863281,31,150.0,90.42358398,-32.88574219,492.3095703,-74.70703125,13.1,225.6891693,14,,0.964257748,,,258.713624,,,8 mM,-58.70283783,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,3,23314S3c3,D1,TTX,0.0,yes,8.987777778,7.91233133,53.23603301,-72.25952148,21,200.0,85.59570313,-38.76342773,372.0703125,-81.42089844,16.8,294.0717949,15,,0.884459374,,,273.234108,,,8 mM,-60.18942566,Virchow,temporal,12.0,Verji +OP230314,23314058.abf,S3_D2,4,23314S3c3,D2,TTX,23.0,yes,32.72666667,17.47237941,50.63841144,-64.89868164,4,450.0,58.33740234,-35.48583984,204.5898438,-58.95996094,9.9,514.1096672,33,,0.911866182,,,,,,8 mM,-62.15148026,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,4,23314S3c4,D1,TTX,0.0,no,8.987777778,17.84882679,71.3003024,-47.32666016,44,400.0,81.29272461,-35.18066406,344.3603516,-84.9609375,11.6,270.7327635,16,,0.852367313,,,169.50565,,,8 mM,-65.50192795,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,5,23314S3c5,D1,TTX,0.0,no,8.987777778,7.485599379,65.50847045,-75.36621094,47,100.0,83.28857422,-37.8112793,396.9726563,-99.12109375,16.5,204.6449659,17,,0.701467788,,,368.502283,,,8 mM,-57.15973892,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,6,23314S3c6,D1,TTX,0.0,no,8.987777778,7.931174156,58.83059441,-74.36523438,34,100.0,82.58056641,-40.00244141,362.5488281,-94.60449219,16.55,242.9706093,18,,0.761217709,,,369.59732,,,8 mM,-59.10048904,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,7,23314S3c7,D1,TTX,0.0,yes,8.987777778,8.086421162,55.08455337,-72.44873047,39,150.0,91.66259766,-37.87841797,489.7460938,-90.08789063,13.55,234.9240212,19,,0.839852963,,,300.535018,,,8 mM,-60.00501572,Virchow,temporal,12.0,Verji +OP230314,23314062.abf,S3_D2,7,23314S3c7,D2,TTX,23.0,yes,32.93638889,9.940070715,56.89393257,-62.64648438,21,250.0,75.10986328,-27.99682617,357.6660156,-75.68359375,12.6,249.9254237,36; exclude; Rs_end > 30,,0.826261637,,,347.178239,,,8 mM,-59.80044037,Virchow,temporal,12.0,Verji +OP230314,23314024.abf,S3,8,23314S3c8,D1,TTX,0.0,no,8.987777778,9.328132412,52.34553217,-71.77734375,39,200.0,92.05932617,-40.7043457,451.171875,-69.3359375,14.25,266.6727584,20,,1.050184387,,,188.751292,,,8 mM,-62.56940552,Virchow,temporal,12.0,Verji +OP230314,23314036.abf,S4,1,23314S4c1,D1,Ctrl,0.0,no,10.49277778,9.761997828,71.49183068,-70.14160156,38,150.0,82.09228516,-34.26513672,337.7685547,-89.23339844,16.35,246.6651934,21,,0.799909185,,,384.462815,,,8 mM,-61.7113356,Virchow,temporal,12.0,Verji +OP230314,23314036.abf,S4,4,23314S4c4,D1,Ctrl,0.0,no,10.49277778,28.72395698,85.77712996,-64.7277832,46,250.0,69.70825195,-33.06884766,245.6054688,-76.78222656,14.2,260.9678071,24; exclude; Rs_end > 30,,0.87057997,,,365.71219,,,8 mM,-60.458452,Virchow,temporal,12.0,Verji +OP230314,23314036.abf,S4,5,23314S4c5,D1,Ctrl,0.0,no,10.49277778,19.62398843,79.94941876,-66.21704102,38,100.0,86.52954102,-39.14794922,397.3388672,-90.94238281,15.5,317.8372966,25,,0.77952187,,,282.879429,,,8 mM,-60.90761658,Virchow,temporal,12.0,Verji +OP230314,23314036.abf,S4,7,23314S4c7,D1,Ctrl,0.0,yes,10.49277778,8.867275172,51.33791997,-63.82446289,38,200.0,96.63085938,-40.49682617,505.7373047,-99.97558594,11.4,285.8111706,27,,0.760912792,,,304.390146,,,8 mM,-61.26670181,Virchow,temporal,12.0,Verji +OP230314,23314076.abf,S4_D2,8,23314S4c7,D2,Ctrl,23.0,yes,34.25055556,36.97933472,79.19794232,-60.6262207,24,200.0,81.4453125,-36.18164063,412.4755859,-85.9375,16.75,528.7707129,51,,0.792207822,,,252.683423,,,8 mM,-60.41819473,Virchow,temporal,12.0,Verji +OP230314,23314036.abf,S4,8,23314S4c8,D1,Ctrl,0.0,no,10.49277778,14.36484313,59.95899853,-54.31518555,32,200.0,89.41650391,-39.09301758,473.5107422,-78.73535156,12.3,251.1192523,28; exclude; Rs_end > 30,,0.912745262,,,150.215007,,,8 mM,-58.85796753,Virchow,temporal,12.0,Verji +OP230314,23314050.abf,S2_D2,1,23314S2_D2c1,D2,high K,23.0,no,30.87,24.47965169,78.74419611,-67.55371094,38,200.0,77.33154297,-38.07983398,378.90625,-90.08789063,13.85,271.7585629,29,,0.764771287,,,322.760759,,,8 mM,-61.67677628,Virchow,temporal,12.0,Verji +OP230314,23314076.abf,S4_D2,6,23314S4_D2c6,D2,Ctrl,23.0,no,34.25055556,12.49208469,207.3890798,-77.88696289,48,100.0,80.1574707,-34.71679688,450.3173828,-117.3095703,14.4,100.3528711,49,,0.599684489,,,299.619987,,,8 mM,-61.6056337,Virchow,temporal,12.0,Verji +OP220127,22127003.abf,S1,2,22127S1c2,D1,Ctrl,0.0,no,7.288611111,8.310721527,48.7790831,-76.89208984,25,150.0,90.66772461,-41.07055664,325.4394531,-95.09277344,19.3,379.3775645,0,,0.851768694,,,,,,15 mM,-62.29293533,Mitte,temporal,45.0,Rosie +OP220127,22127003.abf,S1,5,22127S1c5,D1,Ctrl,0.0,no,7.288611111,7.876329631,53.81299506,-75.92163086,17,150.0,84.41772461,-38.00048828,315.4296875,-85.9375,19.0,344.3539823,inh??,,0.877814471,,,,,,15 mM,-61.62779877,Mitte,temporal,45.0,Rosie +OP220127,22127003.abf,S1,6,22127S1c6,D1,Ctrl,0.0,no,7.288611111,7.739818434,63.68184827,-79.03442383,20,100.0,82.44628906,-37.95166016,246.9482422,-85.69335938,20.65,299.4067257,3,,0.882909704,,,,,,15 mM,-60.67413681,Mitte,temporal,45.0,Rosie +OP220127,22127003.abf,S1,7,22127S1c7,D1,Ctrl,0.0,no,7.288611111,8.717942839,74.48012732,-79.97436523,25,100.0,87.73803711,-40.33813477,322.3876953,-95.33691406,20.85,300.4453826,4,,0.858603269,,,,,,15 mM,-61.47163727,Mitte,temporal,45.0,Rosie +OP220127,22127012.abf,S2,1,22127S2c1,D1,high K,0.0,no,9.303888889,9.155659891,52.54134449,-76.30615234,22,100.0,89.35546875,-37.96386719,345.703125,-93.99414063,23.9,369.4128302,6,,0.878282622,,,,,,15 mM,-58.60017395,Mitte,temporal,45.0,Rosie +OP220127,22127012.abf,S2,4,22127S2c4,D1,high K,0.0,no,9.303888889,9.008443755,35.1473217,-78.10668945,23,150.0,84.65576172,-40.10620117,258.5449219,-85.81542969,22.0,507.6732394,7,,0.898855232,,,,,,15 mM,-59.06792999,Mitte,temporal,45.0,Rosie +OP220127,22127012.abf,S2,5,22127S2c5,D1,high K,0.0,yes,9.303888889,8.227546136,45.926301,-73.65722656,33,150.0,88.70239258,-37.05444336,331.2988281,-101.8066406,17.65,313.3018418,8,,0.789142101,,,,,,15 mM,-58.84163193,Mitte,temporal,45.0,Rosie +OP220127,22127045.abf,S2_D2,5,22127S2c5,D2,high K,23.0,yes,32.7325,9.862033416,57.28637607,-75.87890625,26,200.0,80.99975586,-30.77392578,275.8789063,-81.29882813,16.9,304.6090209,27,,0.873977306,,,,,,15 mM,-61.18716629,Mitte,temporal,45.0,Rosie +OP220127,22127012.abf,S2,6,22127S2c6,D1,high K,0.0,no,9.303888889,6.663364233,37.43311749,-76.01928711,25,150.0,90.94848633,-39.80102539,334.8388672,-92.7734375,17.85,372.7908222,9,,0.851883301,,,,,,15 mM,-61.24170425,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,1,22127S3c1,D1,TTX,0.0,no,11.24444444,14.02249839,105.4252861,-83.58154297,16,50.0,84.46655273,-37.29248047,235.8398438,-71.53320313,18.8,148.3714836,10,,1.064420766,,,,,,15 mM,-56.00355545,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,2,22127S3c2,D1,TTX,0.0,yes,11.24444444,11.99584897,105.2297903,-66.83959961,4,50.0,90.17944336,-46.66748047,219.8486328,-89.84375,15.75,160.7775701,11,,0.995209169,,,,,,15 mM,-59.19040115,Mitte,temporal,45.0,Rosie +OP220127,22127052.abf,S3_D2,2,22127S3c2,D2,TTX,23.0,yes,34.94666667,12.59543599,67.73057874,-78.43017578,22,250.0,78.30810547,-37.55493164,207.8857422,-63.4765625,11.2,176.5279461,31,,1.083172438,,,,,,15 mM,-62.56948532,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,3,22127S3c3,D1,TTX,0.0,yes,11.24444444,19.78402751,65.64620828,-77.13012695,23,50.0,91.63818359,-43.57299805,335.5712891,-84.9609375,32.05,389.9793539,12,,0.94437672,,,,,,15 mM,-57.59432983,Mitte,temporal,45.0,Rosie +OP220127,22127052.abf,S3_D2,3,22127S3c3,D2,TTX,23.0,yes,34.94666667,8.726772893,44.69449077,-78.76586914,34,250.0,83.19702148,-37.10327148,301.3916016,-76.41601563,17.3,338.2377088,32,,0.954730442,,,,,,15 mM,-61.7574617,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,4,22127S3c4,D1,TTX,0.0,yes,11.24444444,10.53439202,64.70151402,-76.98974609,24,50.0,91.70532227,-39.56298828,293.0908203,-83.49609375,22.95,281.5520779,13,,0.961157088,,,,,,15 mM,-59.91562134,Mitte,temporal,45.0,Rosie +OP220127,22127052.abf,S3_D2,4,22127S3c4,D2,TTX,23.0,yes,34.94666667,11.37950073,47.43267185,-75.09155273,27,300.0,76.2512207,-37.07275391,221.5576172,-65.55175781,13.55,293.6550265,33,,1.032847797,,,,,,15 mM,-63.25423325,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,5,22127S3c5,D1,TTX,0.0,yes,11.24444444,9.544475502,47.83354259,-77.70996094,20,100.0,88.78173828,-36.24267578,349.3652344,-83.25195313,20.15,329.9726137,14,,0.945234919,,,,,,15 mM,-60.18112961,Mitte,temporal,45.0,Rosie +OP220127,22127052.abf,S3_D2,5,22127S3c5,D2,TTX,23.0,yes,34.94666667,9.305166246,45.0640029,-79.79125977,16,250.0,80.59692383,-42.37060547,256.2255859,-80.20019531,12.15,283.5692308,34,,0.929923618,,,,,,15 mM,-62.90384979,Mitte,temporal,45.0,Rosie +OP220127,22127019.abf,S3,6,22127S3c6,D1,TTX,0.0,yes,11.24444444,10.04846295,60.15896023,-79.94384766,18,150.0,83.19702148,-38.15307617,213.7451172,-67.13867188,20.85,311.8269283,15,,1.113690015,,,,,,15 mM,-59.30215271,Mitte,temporal,45.0,Rosie +OP220127,22127052.abf,S3_D2,6,22127S3c6,D2,TTX,23.0,yes,34.94666667,13.11982914,58.35267399,-80.01098633,22,100.0,78.05786133,-34.60693359,214.9658203,-77.02636719,19.6,252.5571372,35,,0.939139147,,,,,,15 mM,-60.8224144,Mitte,temporal,45.0,Rosie +OP220127,22127029.abf,S4,1,22127S4c1,D1,TTX,0.0,no,13.14,11.31307505,36.95792111,-59.14306641,15,150.0,76.45263672,-33.01391602,214.84375,-68.84765625,22.45,535.7914057,18,,1.013528165,,,,,,15 mM,-51.61471725,Mitte,temporal,45.0,Rosie +OP220127,22127029.abf,S4,3,22127S4c3,D1,TTX,0.0,no,13.14,10.60967198,56.25120325,-77.64892578,20,50.0,91.22314453,-40.90576172,329.8339844,-93.38378906,29.05,336.8401982,20,,0.906959599,,,,,,15 mM,-55.19751389,Mitte,temporal,45.0,Rosie +OP220127,22127029.abf,S4,5,22127S4c5,D1,TTX,0.0,no,13.14,9.644875894,62.17304058,-78.18603516,22,-300.0,88.8671875,-42.05322266,318.2373047,-81.90917969,24.65,274.8319837,22,,0.978935421,,,,,,15 mM,-55.92334946,Mitte,temporal,45.0,Rosie +OP220127,22127039.abf,S1_D2,4,22127S1_D2c4,D2,Ctrl,23.0,no,30.59527778,6.997351569,26.71901684,-70.84960938,18,500.0,71.23413086,-28.67431641,225.5859375,-65.67382813,15.05,530.2778495,24,,0.934864447,,,,,,15 mM,-61.80704712,Mitte,temporal,45.0,Rosie +OP220127,22127045.abf,S2_D2,2,22127S2_D2c2,D2,high K,23.0,no,32.7325,8.407270816,48.74606713,-77.33154297,18,250.0,82.66601563,-33.78295898,280.2734375,-77.51464844,23.45,508.8805298,25,,0.902211635,,,,,,15 mM,-62.76155319,Mitte,temporal,45.0,Rosie +OP220127,22127045.abf,S2_D2,6,22127S2_D2c6,D2,high K,23.0,no,32.7325,19.04636954,49.69794487,-72.63793945,24,150.0,85.80322266,-36.05957031,317.1386719,-70.80078125,18.0,396.9205922,28,,0.982409117,,,,,,15 mM,-62.11214584,Mitte,temporal,45.0,Rosie +OP220127,22127045.abf,S2_D2,8,22127S2_D2c8,D2,high K,23.0,no,32.7325,8.890552192,37.91774878,-61.95678711,17,400.0,80.07202148,-33.74023438,264.1601563,-57.73925781,14.75,467.4352031,30,,1.229008289,,,,,,15 mM,-61.49198029,Mitte,temporal,45.0,Rosie +OP220127,22127059.abf,S4_D2,2,22127S4_D2c2,D2,TTX,23.0,no,36.85194444,8.06378854,44.06267247,-76.4831543,16,200.0,69.20776367,-26.93481445,218.75,-65.30761719,19.0,338.9178008,38,,0.931688226,,,,,,15 mM,-61.34517899,Mitte,temporal,45.0,Rosie +OP220127,22127059.abf,S4_D2,3,22127S4_D2c3,D2,TTX,23.0,no,36.85194444,8.382848446,46.40757293,-78.18603516,14,100.0,71.65527344,-29.15039063,242.0654297,-69.82421875,23.15,327.9633377,39,,0.908339906,,,,,,15 mM,-57.16958908,Mitte,temporal,45.0,Rosie +OP220127,22127059.abf,S4_D2,6,22127S4_D2c6,D2,TTX,23.0,no,36.85194444,8.502048479,53.48807838,-79.84619141,21,100.0,71.71020508,-33.24584961,220.4589844,-77.75878906,25.45,294.5763335,41,,0.844959188,,,,,,15 mM,-56.67318161,Mitte,temporal,45.0,Rosie +OP220120,22121003.abf,S1,1,22121S1c1,D1,high K,0.0,no,12.61361111,8.373694758,35.31743652,-75.1159668,25,250.0,95.81298828,-38.37280273,457.7636719,-89.84375,14.8,305.0103145,0,,0.880971618,,,,,,15 mM,-63.75021851,Bielefeld,temporal,50.0,Rosie +OP220120,22121003.abf,S1,2,22121S1c2,D1,high K,0.0,no,12.61361111,7.033074679,28.799324,-55.30395508,2,200.0,57.3425293,-26.66625977,121.7041016,-34.66796875,8.8,361.8047679,1,,1.434036554,,,,,,15 mM,-45.52814224,Bielefeld,temporal,50.0,Rosie +OP220120,22121010.abf,S2,1,22121S2c1,D1,TTX,0.0,no,14.21611111,9.462642324,50.5737015,-77.77709961,26,100.0,94.11010742,-40.27099609,399.9023438,-71.04492188,19.75,328.0121642,6,,1.033673933,,,,,,15 mM,-60.07064713,Bielefeld,temporal,50.0,Rosie +OP220120,22121010.abf,S2,3,22121S2c3,D1,TTX,0.0,no,14.21611111,10.36475513,40.77368986,-69.53735352,21,250.0,88.27514648,-34.0637207,348.7548828,-73.73046875,11.45,239.8936061,7,,1.044476124,,,,,,15 mM,-64.1073671,Bielefeld,temporal,50.0,Rosie +OP220120,22121010.abf,S2,6,22121S2c6,D1,TTX,0.0,no,14.21611111,10.01522106,39.36095982,-61.74316406,22,100.0,85.67504883,-42.51708984,250.0,-84.22851563,20.2,401.6466019,9,,0.940396199,,,,,,15 mM,-57.16205734,Bielefeld,temporal,50.0,Rosie +OP220120,22122024.abf,S1_D2,4,22122S1_D2c4,D2,high K,23.0,no,36.00722222,9.442730358,57.13025834,-70.94726563,17,200.0,85.32104492,-39.07470703,296.7529297,-75.68359375,17.75,333.5045872,13,,0.917070998,,,,,,15 mM,-61.23827911,Bielefeld,temporal,50.0,Rosie +OP220120,22122024.abf,S1_D2,5,22122S1_D2c5,D2,high K,23.0,no,36.00722222,7.813918798,53.54980264,-76.09863281,18,200.0,84.13085938,-37.45727539,348.2666016,-87.03613281,15.7,300.6765634,14,,0.849123416,,,,,,15 mM,-61.38199173,Bielefeld,temporal,50.0,Rosie +OP220120,22122031.abf,S2_D2,4,22122S2_D2c4,D2,TTX,23.0,no,37.98083333,7.510802767,20.48972647,-50.32958984,1,1300.0,67.91381836,-31.45141602,198.9746094,-64.69726563,4.15,499.9529412,17,,0.93479198,,,,,,15 mM,-59.16356979,Bielefeld,temporal,50.0,Rosie +OP220120,22122031.abf,S2_D2,5,22122S2_D2c5,D2,TTX,23.0,no,37.98083333,7.547028107,21.20599429,-50.01831055,6,900.0,34.77172852,-23.08959961,47.36328125,-17.33398438,0.15,15.60380952,18,,1.178113553,,,,,,15 mM,-59.23936127,Bielefeld,temporal,50.0,Rosie +OP220120,22122031.abf,S2_D2,7,22122S2_D2c7,D2,TTX,23.0,no,37.98083333,17.20997709,250.5832579,-47.66235352,1,-300.0,62.46337891,-41.88232422,182.1289063,-87.03613281,5.0,34.70451176,19,,0.735448619,,,,,,15 mM,-59.95962921,Bielefeld,temporal,50.0,Rosie +OP240117,24117004.abf,S1,7,24117S1c7,D1,Ctrl,0.0,no,9.007222222,11.22800094,229.6532263,-71.89941406,48,100.0,79.86450195,-37.56713867,274.5361328,-83.86230469,17.55,134.7418932,1,,0.859229402,171.8757292,,,,,8 mM,-60.10082916,Hamburg,temporal,55.0,Verji +OP240117,24117013.abf,S2,6,24117S2c6,D1,Ctrl,0.0,no,10.20888889,10.77712533,77.17935481,-57.77587891,27,200.0,81.74438477,-38.8671875,293.8232422,-86.9140625,12.6,240.6041958,2,,0.854404659,145.0548352,,,,,8 mM,-61.56998184,Hamburg,temporal,55.0,Verji +OP240117,24117013.abf,S2,7,24117S2c7,D1,Ctrl,0.0,no,10.20888889,11.25548493,91.91600215,-65.01464844,41,150.0,85.90698242,-39.01977539,287.109375,-89.11132813,17.7,313.1714903,3,,0.831036766,237.5779193,,,,,8 mM,-60.77620743,Hamburg,temporal,55.0,Verji +OP240117,24117013.abf,S2,8,24117S2c8,D1,Ctrl,0.0,no,10.20888889,15.31146402,71.15142991,-56.62841797,37,500.0,80.859375,-36.4440918,260.9863281,-66.16210938,8.5,308.4473976,4,,1.034090488,155.9751992,,,,,8 mM,-65.71673477,Hamburg,temporal,55.0,Verji +OP240117,24117023.abf,S1_D2,2,24117S1_D2c2,D2,Ctrl,23.0,no,30.95694444,11.35346852,105.6817834,-58.43505859,33,150.0,80.80444336,-37.00561523,301.3916016,-105.2246094,14.7,242.6647859,5,,0.786056208,164.1654722,,,,,8 mM,-57.43708237,Hamburg,temporal,55.0,Verji +OP240117,24117023.abf,S1_D2,4,24117S1_D2c4,D2,Ctrl,23.0,no,30.95694444,9.867377797,126.6741044,-63.36669922,33,150.0,77.00195313,-31.90917969,283.5693359,-74.09667969,18.45,245.8599431,6,,0.890606342,215.1671722,,,,,8 mM,-59.87040314,Hamburg,temporal,55.0,Verji +OP240117,24117023.abf,S1_D2,8,24117S1_D2c8,D2,Ctrl,23.0,no,30.95694444,8.928242871,70.41242606,-57.01904297,30,200.0,78.47290039,-31.32324219,306.640625,-72.50976563,15.35,258.8722594,7,,0.931446463,185.1061702,,,,,8 mM,-60.7899501,Hamburg,temporal,55.0,Verji +OP240117,24118004.abf,S2_D2,1,24117S2_D2c1,D1,Ctrl,20.0,no,26.4242,11.44098428,84.47205149,-59.64355469,38,200.0,81.28051758,-34.90600586,305.2978516,-81.42089844,14.55,230.6600871,0,,0.895243543,213.3071102,,,,,8 mM,-60.86702438,Hamburg,temporal,55.0,Verji +OP240117,24118004.abf,S2_D2,2,24117S2_D2c2,D1,Ctrl,20.0,no,26.4242,10.50217642,90.84176523,-66.79077148,32,150.0,81.54296875,-39.72167969,293.7011719,-87.52441406,18.95,306.1901381,1,,0.86169639,268.0289343,,,,,8 mM,-60.93274017,Hamburg,temporal,55.0,Verji +OP240117,24118004.abf,S2_D2,3,24117S2_D2c3,D1,Ctrl,20.0,no,26.4242,7.925609012,70.667672,-63.03100586,30,200.0,76.51977539,-36.12060547,273.8037109,-96.06933594,15.9,311.4233114,2,,0.727939307,237.8779293,,,,,8 mM,-61.17070938,Hamburg,temporal,55.0,Verji +OP240117,24118004.abf,S2_D2,4,24117S2_D2c4,D1,Ctrl,20.0,no,26.4242,17.1883851,139.095453,-76.91650391,61,100.0,78.4362793,-40.68603516,316.0400391,-95.09277344,19.8,201.3675978,3,,0.740537194,295.5398513,,,,,8 mM,-59.56116104,Hamburg,temporal,55.0,Verji +OP240117,24118004.abf,S2_D2,5,24117S2_D2c5,D1,Ctrl,20.0,no,26.4242,27.92991758,140.091217,-70.42236328,56,100.0,82.68432617,-44.42138672,325.5615234,-96.92382813,18.85,226.1723911,4,,0.769120973,207.0069002,,,,,8 mM,-60.49522293,Hamburg,temporal,55.0,Verji +OP240118,24118015.abf,S2,7,24118S2c7,D1,high K,0.0,no,8.083888889,9.079010471,82.00862257,-60.16845703,42,250.0,83.20922852,-38.56201172,307.9833984,-89.84375,14.0,317.0366275,11,,0.838811245,330.8810294,,,,,8 mM,-61.99092041,Mitte,temporal,58.0,Verji +OP240118,24118036.abf,S2_D2,3,24118S2_D2c3,D2,high K,21.0,no,28.92055556,9.219492243,71.08186755,-65.66772461,24,300.0,78.10668945,-38.58032227,351.6845703,-59.08203125,19.4,500.156727,14,,1.126618215,447.6449215,,,,,8 mM,-60.47513367,Mitte,temporal,58.0,Verji +OP220602,22602003.abf,S1,4,22602S1c4,D1,high K,0.0,no,12.15055556,5.696342098,22.17503814,-70.77026367,24,450.0,75.84838867,-35.30273438,223.1445313,-51.63574219,14.8,498.4238438,2,,1.185701423,,,,,,8 mM,-65.18812393,,,, +OP220602,22602003.abf,S1,5,22602S1c5,D1,high K,0.0,yes,12.15055556,9.08721242,60.33503047,-74.61547852,33,50.0,82.41577148,-39.99633789,306.5185547,-90.45410156,17.05,168.9940714,3,,0.828606287,,,,,,8 mM,-57.93476059,,,, +OP220602,22602042.abf,S1_D2,4,22602S1c5,D2,high K,22.0,yes,34.415,11.30825342,47.25974236,-47.05200195,1,200.0,73.33374023,-40.67993164,159.0576172,-57.6171875,3.6,159.6276049,22,,1.196744513,,,,,,8 mM,-53.83101349,,,, +OP220602,22602003.abf,S1,6,22602S1c6,D1,high K,0.0,no,12.15055556,6.735870881,28.41774692,-72.80883789,31,150.0,80.16967773,-35.29663086,260.7421875,-74.34082031,16.35,307.0239542,4,,0.911651215,,,,,,8 mM,-59.97984024,,,, +OP220602,22602003.abf,S1,8,22602S1c8,D1,high K,0.0,no,12.15055556,7.916531985,30.71408799,-70.34301758,36,150.0,76.91040039,-33.06274414,208.2519531,-70.06835938,16.25,325.4767726,6,,0.977154402,,,,,,8 mM,-58.71802383,,,, +OP220602,22602014.abf,S2,3,22602S2c3,D1,Ctrl,0.0,no,13.75444444,8.545286944,50.64742043,-69.67163086,29,150.0,80.37109375,-34.66186523,287.4755859,-79.58984375,15.8,226.4804899,8,,0.90884302,,,,,,8 mM,-58.4927977,,,, +OP220602,22602014.abf,S2,6,22602S2c6,D1,Ctrl,0.0,no,13.75444444,9.677079992,49.25383277,-52.48413086,3,150.0,72.00927734,-41.25366211,153.1982422,-73.36425781,5.05,116.2884048,11,,0.964836554,,,,,,8 mM,-53.1770369,,,, +OP220602,22602025.abf,S3,1,22602S3c1,D1,TTX,0.0,no,15.22916667,6.363932512,25.41806753,-69.18945313,27,250.0,71.85058594,-32.88574219,231.6894531,-84.83886719,13.0,339.1592357,12,,0.8076344,,,,,,8 mM,-59.13479095,,,, +OP220602,22602025.abf,S3,4,22602S3c4,D1,TTX,0.0,no,15.22916667,5.993252395,20.44051244,-70.25146484,28,300.0,76.94091797,-36.66992188,235.8398438,-71.41113281,9.65,298.5941454,15,,0.903412074,,,,,,8 mM,-60.80336823,,,, +OP220602,22602025.abf,S3,5,22602S3c5,D1,TTX,0.0,no,15.22916667,5.882555121,18.36780548,-65.18554688,10,600.0,71.94824219,-31.88476563,224.1210938,-80.68847656,9.9,387.1159905,16,,0.825629006,,,,,,8 mM,-61.76131134,,,, +OP220602,22602025.abf,S3,6,22602S3c6,D1,TTX,0.0,yes,15.22916667,6.499059954,26.96339816,-72.38769531,30,200.0,66.56494141,-31.42089844,152.7099609,-65.91796875,14.85,288.7862315,17,,0.972905637,,,,,,8 mM,-59.6360379,,,, +OP220602,22602062.abf,S3_D2,3,22602S3c6,D2,TTX,22.0,yes,37.41166667,10.51741336,36.93244638,-61.58447266,16,350.0,37.75024414,-15.76538086,57.86132813,-47.97363281,3.7,90.8176779,30,,1.018850712,,,,,,8 mM,-62.29711243,,,, +OP220602,22602025.abf,S3,7,22602S3c7,D1,TTX,0.0,yes,15.22916667,6.921903777,27.3294225,-66.41845703,31,350.0,77.74658203,-32.33032227,247.8027344,-61.64550781,12.55,370.1515752,18,,1.028800854,,,,,,8 mM,-62.95790314,,,, +OP220602,22602065.abf,S3_D2,6,22602S3c7,D2,TTX,22.0,yes,37.54944444,17.26096149,45.63275965,-68.29223633,22,300.0,52.25219727,-28.39355469,116.4550781,-51.26953125,14.2,407.447986,32,,0.949138602,,,,,,8 mM,-63.84489258,,,, +OP220602,22602045.abf,S1_D2,6,22602S1_D2c6,D2,high K,22.0,no,34.6875,7.808003045,62.99865047,-75.24414063,31,150.0,83.22143555,-38.0859375,283.0810547,-66.04003906,12.55,175.9685066,23,,1.033359313,,,,,,8 mM,-61.69442871,,,, +OP220602,22602045.abf,S1_D2,7,22602S1_D2c7,D2,high K,22.0,no,34.6875,6.130847732,27.71764994,-68.92089844,19,400.0,67.48657227,-24.87792969,217.6513672,-46.99707031,13.5,472.1109925,24,,1.205499782,,,,,,8 mM,-62.83143753,,,, +OP220602,22602055.abf,S2_D2,7,22602S2_D2c7,D2,Ctrl,22.0,no,36.10416667,17.83594806,51.42878852,-67.56591797,28,200.0,77.58178711,-35.34545898,227.9052734,-61.76757813,17.4,455.4019169,28,,1.083217872,,,,,,8 mM,-62.36792206,,,, +OP220602,22602065.abf,S3_D2,4,22602S3_D2c4,D2,TTX,22.0,no,37.54944444,6.515307994,30.21130412,-59.03320313,19,300.0,61.82250977,-25.1953125,161.0107422,-48.58398438,11.35,339.0308113,31,,1.10081758,,,,,,8 mM,-63.75360565,,,, +OP220602,22602068.abf,S3_D2,8,22602S3_D2c8,D2,TTX,22.0,no,37.68972222,16.99739632,149.5814704,-66.68701172,25,100.0,65.05737305,-30.82885742,165.2832031,-59.32617188,14.4,112.3474286,34,,0.995200469,,,,,,8 mM,-63.05315857,,,, +OP210615,2021_06_15_0002.abf,S1,2,2021_06_15_0S1c2,D1,TTX,0.0,no,6.974444444,29.37756123,80.26151773,-75.59814453,32,350.0,76.81274414,-34.91210938,274.6582031,-55.90820313,7.0,138.7634604,,,1.166099239,,,,,,15 mM,-75.62946228,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0002.abf,S1,4,2021_06_15_0S1c4,D1,TTX,0.0,no,6.974444444,25.3842994,67.79520399,-74.51782227,26,550.0,46.03881836,-35.40039063,99.85351563,-29.05273438,5.5,103.6962025,,,1.796833186,,,,,,15 mM,-74.49651169,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0002.abf,S1,7,2021_06_15_0S1c7,D1,TTX,0.0,no,6.974444444,8.783499649,54.72911078,-68.70117188,37,200.0,89.28833008,-39.44091797,375.0,-83.61816406,11.05,257.3464108,,,0.928413379,,,,,,15 mM,-68.69131546,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0015.abf,S2,2,2021_06_15_0S2c2,D1,Ctrl,0.0,no,9.555555556,14.25318281,48.73435774,-72.68066406,41,400.0,97.1496582,-44.43359375,559.9365234,-73.85253906,12.4,491.916707,manually_corrected,,1.072201415,,,,,,15 mM,-70.3563118,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0020.abf,S2,2,2021_06_15_0S2c3,D1,Ctrl,0.0,no,9.776944444,17.15509796,51.11096813,-70.73364258,41,450.0,88.61694336,-40.31982422,347.5341797,-71.04492188,8.95,273.8315593,,,1.038597411,,,,,,15 mM,-70.18915436,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0040.abf,S4,2,2021_06_15_0S4c1,D1,TTX,0.0,no,11.14805556,7.591803416,45.49713671,-67.10205078,28,450.0,99.70092773,-44.54345703,498.4130859,-84.83886719,10.55,366.2101695,,,0.975118561,,,,,,15 mM,-71.12725922,Virchow,temporal,19.0,Rosie +OP210615,2021_06_15_0044.abf,S4,2,2021_06_15_0S4c2,D1,TTX,0.0,no,11.5725,7.568696233,43.59352717,-62.06054688,33,500.0,103.137207,-44.30541992,613.7695313,-90.69824219,9.8,389.2441212,manually_corrected,,0.978717772,,,,,,15 mM,-69.04094467,Virchow,temporal,19.0,Rosie +OP210615,2021_06_16_0009.abf,S5,3,2021_06_16_0S5c1,D2,Ctrl,0.0,no,28.98972222,12.55375928,129.6069988,-67.70019531,17,500.0,77.80761719,-42.38891602,360.3515625,-35.76660156,12.15,304.3816514,,,1.543316884,,,,,,15 mM,-67.70525421,Virchow,temporal,19.0,Rosie +OP210615,2021_06_16_0012.abf,S2_D2,4,2021_06_16_0S2_D2c4,D2,Ctrl,19.25,no,30.18861111,6.355402422,79.81984421,-70.53222656,26,300.0,76.98364258,-36.62109375,308.3496094,-51.39160156,18.15,404.0347826,,,1.155930518,,,,,,15 mM,-70.51392471,Virchow,temporal,19.0,Rosie +OP210615,2021_06_16_0040.abf,S4_D2,4,2021_06_16_0S4_D1c2,D2,TTX,20.3,no,33.37333333,9.497902602,84.74858075,-75.93994141,23,250.0,77.49023438,-34.38720703,383.1787109,-77.88085938,15.7,317.9589617,manually_corrected,,0.838218612,,,,,,15 mM,-69.65374832,Virchow,temporal,19.0,Rosie +OP210615,2021_06_16_0044.abf,S4_D2,2,2021_06_16_0S4_D1c3,D2,TTX,20.3,no,33.78388889,17.61494514,53.0830001,-59.32006836,23,250.0,68.11523438,-29.4921875,246.4599609,-43.82324219,13.5,602.6811989,,,1.281173208,,,,,,15 mM,-69.40453964,Virchow,temporal,19.0,Rosie +OP201029,20o29002.abf,S1,2,20o29S1c2,D1,Ctrl,0.0,no,6.178888889,13.10245103,61.44960671,-57.33642578,11,150.0,73.70605469,-43.18237305,154.6630859,-59.5703125,10.6,224.3803618,,,1.22505001,,,,,,15 mM,-57.33457535,Mitte,temporal,47.0,Rosie +OP201029,20o29002.abf,S1,5,20o29S1c5,D1,Ctrl,0.0,no,6.178888889,7.520268524,46.41137462,-63.03710938,25,150.0,77.81982422,-42.4987793,196.0449219,-62.62207031,16.15,380.1747126,,,1.130550148,,,,,,15 mM,-62.96300552,Mitte,temporal,47.0,Rosie +OP201029,20o29002.abf,S1,7,20o29S1c7,D1,Ctrl,0.0,no,6.178888889,7.899763862,54.53262202,-65.50292969,30,200.0,87.12158203,-37.06054688,275.5126953,-72.38769531,13.4,242.7259259,,,1.098270393,,,,,,15 mM,-65.44116592,Mitte,temporal,47.0,Rosie +OP201029,20o29013.abf,S1,7,20o29S1c7,D1,Ctrl,0.0,no,7.865555556,20.63484044,75.11329289,-69.03076172,42,350.0,71.80786133,-35.10131836,171.9970703,-58.22753906,7.0,154.4619529,,,1.160363728,,,,,,15 mM,-69.01241547,Mitte,temporal,47.0,Rosie +OP201029,20o29002.abf,S1,8,20o29S1c8,D1,Ctrl,0.0,no,6.178888889,20.38482719,67.87151177,-69.58618164,39,300.0,72.41821289,-34.27734375,190.3076172,-62.62207031,12.6,223.2973499,,,1.148857739,,,,,,15 mM,-69.58204453,Mitte,temporal,47.0,Rosie +OP201029,20o29013.abf,S1,8,20o29S1c8,D1,Ctrl,0.0,no,7.865555556,6.997220381,43.75053727,-60.77880859,27,400.0,73.83422852,-35.31494141,191.0400391,-60.42480469,13.75,420.2985075,,,1.094900271,,,,,,15 mM,-60.77311935,Mitte,temporal,47.0,Rosie +OP201029,20o29013.abf,S1,3,20o29S1c3,D1,Ctrl,0.0,no,7.865555556,15.91559064,77.16436189,-61.04125977,22,100.0,70.59936523,-43.93920898,174.0722656,-49.8046875,9.8,175.7670498,,,1.289478466,,,,,,15 mM,-61.00458221,Mitte,temporal,47.0,Rosie +OP201029,20o29018.abf,S2,2,20o29S2c2,D1,TTX,0.0,yes,9.434722222,12.1449819,70.78392484,-62.41455078,23,250.0,70.72,-30.40771484,182.3730469,-64.69726563,15.35,275.3085933,,,0.982865148,,,,,,15 mM,-62.39529144,Mitte,temporal,47.0,Rosie +OP201029,20o30008.abf,S2_D2,2,20o29S2c2,D2,TTX,20.0,yes,29.90916667,17.49,69.24,-74.11499023,8,400.0,54.95605469,-20.15991211,125.9765625,-39.55078125,8.1,159.2206,,,1.307468332,,,,manually_correction,,15 mM,-74.11967306,Mitte,temporal,47.0,Rosie +OP201029,20o29018.abf,S2,4,20o29S2c4,D1,TTX,0.0,no,9.434722222,24.21248594,88.66876957,-66.56494141,20,250.0,61.30981445,-30.70678711,135.8642578,-47.48535156,11.95,193.0856016,,,1.239714465,,,,,,15 mM,-66.64339279,Mitte,temporal,47.0,Rosie +OP201029,20o29018.abf,S2,7,20o29S2c7,D1,TTX,0.0,no,9.434722222,9.222800216,69.51135532,-62.3046875,17,350.0,63.89770508,-31.7199707,148.6816406,-51.7578125,11.65,212.4358375,,,1.170198307,,,,,,15 mM,-62.32721558,Mitte,temporal,47.0,Rosie +OP201027,20o27002.abf,S1,2,20o27S1c2,D1,Ctrl,0.0,yes,7.045277778,10.85912724,61.55433968,-61.4074707,32,150.0,83.78295898,-40.56396484,253.6621094,-68.72558594,15.0,266.695605,,,1.111889773,,,,,,15 mM,-61.38810852,Mitte,temporal,33.0,Rosie +OP201027,20o28003.abf,S1_D2,2,20o27S1c2,D2,Ctrl,21.5,yes,29.13,8.953561606,72.08125103,-69.16503906,24,300.0,80.51147461,-33.33740234,232.5439453,-64.20898438,13.35,238.0047878,8,,1.129516944,,,,,,15 mM,-69.15920654,Mitte,temporal,33.0,Rosie +OP201027,20o27002.abf,S1,4,20o27S1c4,D1,Ctrl,0.0,no,7.045277778,9.230981121,27.55662542,-81.76879883,4,1400.0,59.92431641,-48.91967773,173.7060547,-43.70117188,5.25,363.7040169,2,,,,,,,,15 mM,-81.81085358,Mitte,temporal,33.0,Rosie +OP201027,20o27002.abf,S1,7,20o27S1c7,D1,Ctrl,0.0,no,7.045277778,8.786273202,50.1445404,-53.75976563,24,250.0,73.26660156,-36.56616211,181.7626953,-61.88964844,15.6,417.290449,3,,1.120129222,,,,,,15 mM,-53.73915771,Mitte,temporal,33.0,Rosie +OP201027,20o27017.abf,S2,1,20o27S2c1,D1,TTX,0.0,no,9.108055556,11.57067254,42.07221673,-50.62255859,2,200.0,32.06176758,-17.21801758,45.16601563,-21.36230469,10.75,273.9160187,5,,1.330091432,,,,,,15 mM,-50.61670105,Mitte,temporal,33.0,Rosie +OP211123,2021_11_24_0023.abf,S2,4,2021_11_24_0S2c4,D1,TTX,0.0,no,23.76555556,26.0966228,91.56724082,-71.94213867,34,100.0,92.43774414,-37.90283203,322.3876953,-85.32714844,18.3,269.7500675,,,1.020629271,,,,,,15 mM,-60.05401672,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0023.abf,S2,5,2021_11_24_0S2c5,D1,TTX,0.0,no,23.76555556,10.9142128,59.94672248,-50.34179688,47,300.0,94.34204102,-31.42089844,398.6816406,-76.04980469,9.4,192.6323952,,,0.992225141,,,,,,15 mM,-60.13902908,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0023.abf,S2,7,2021_11_24_0S2c7,D1,TTX,0.0,no,23.76555556,15.32528958,65.20746198,-72.19848633,32,150.0,89.1418457,-35.77880859,350.5859375,-88.98925781,19.45,359.2658399,,,0.850153038,,,,,,15 mM,-61.58568665,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0023.abf,S2,8,2021_11_24_0S2c8,D1,TTX,0.0,no,23.76555556,11.54494517,151.3791249,-63.58642578,34,100.0,88.74511719,-44.23828125,285.5224609,-65.30761719,15.6,170.5072715,,,1.11684723,,,,,,15 mM,-59.82180786,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0031.abf,S3,2,2021_11_24_0S3c2,D1,Ctrl,0.0,no,25.49694444,21.30945627,74.9212993,-67.48657227,39,150.0,83.50219727,-35.29052734,405.0292969,-113.8916016,13.5,239.8958785,,,0.724449682,,,,,,15 mM,-60.35238892,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0031.abf,S3,4,2021_11_24_0S3c4,D1,Ctrl,0.0,no,25.49694444,10.12735137,41.93613648,-71.60644531,25,150.0,94.27490234,-39.41650391,458.984375,-100.2197266,19.35,421.8634731,,,0.793332276,,,,,,15 mM,-61.80375305,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_24_0031.abf,S3,7,2021_11_24_0S3c7,D1,Ctrl,0.0,no,25.49694444,10.98904107,81.54374779,-72.64404297,46,100.0,94.65332031,-39.40429688,436.8896484,-112.1826172,14.3,157.5596503,,,0.789723364,,,,,,15 mM,-60.07406998,Bielefeld,temporal,68.0,Rosie +OP211123,2021_11_25_0069.abf,S3_D2,2,2021_11_25_0S3_D2c3,D2,Ctrl,24.0,no,49.09388889,21.10380646,190.465595,-64.03198242,2,100.0,46.42944336,-26.45263672,43.21289063,-15.13671875,33.5,173.389354,,,2.719383013,,,,,,15 mM,-61.12625565,Bielefeld,temporal,68.0,Rosie +OP210323,2021_03_24_0004.abf,S1,1,2021_03_24_0S1c1,D1,TTX,0.0,yes,16.9575,14.31061635,153.6424644,-71.32568359,32,150.0,74.71313477,-38.67797852,498.2910156,-165.6494141,7.65,86.61893573,manually_corrected,,0.426141583,,,,,,15 mM,-71.3042009,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0002.abf,S1_D2,2,2021_03_24_0S1c1,D2,TTX,22.0,yes,41.045278,6.974139607,35.95676004,-72.3449707,12,600.0,57.80029297,-22.49145508,149.2919922,-44.31152344,7.25,266.3318386,27,,1.235949067,,,,,,15 mM,-71.11264114,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0004.abf,S1,2,2021_03_24_0S1c2,D1,TTX,0.0,yes,16.9575,7.083269346,56.83749983,-72.14355469,17,300.0,89.20288086,-37.37182617,419.7998047,-85.32714844,15.5,383.0346908,1,,0.919767619,,,,,,15 mM,-72.13410156,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0002.abf,S1_D2,4,2021_03_24_0S1c2,D2,TTX,22.0,yes,41.045278,6.044853828,29.11483676,-69.78759766,7,800.0,48.76098633,-20.88012695,93.99414063,-25.75683594,8.75,456.5605096,28,,1.818207352,,,,,,15 mM,-71.02371124,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0004.abf,S1,4,2021_03_24_0S1c4,D1,TTX,0.0,yes,16.9575,6.001432419,44.45456791,-72.09472656,15,500.0,88.07983398,-36.95068359,419.921875,-75.80566406,14.3,458.495499,manually_corrected,,1.112123198,,,,,,15 mM,-72.08970688,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0002.abf,S1_D2,8,2021_03_24_0S1c4,D2,TTX,22.0,yes,41.045278,14.16359973,123.6027845,-65.3503418,7,200.0,51.20849609,-26.06811523,216.9189453,-89.47753906,4.45,65.74283138,29,,0.615566086,,,,,,15 mM,-70.91261093,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0012.abf,S1,5,2021_03_24_0S1c5,D1,TTX,0.0,no,17.50694444,7.609105156,43.09483836,-70.31860352,18,400.0,91.87011719,-41.26586914,375.4882813,-61.64550781,16.5,474.2736842,3,,1.285444107,,,,,,15 mM,-70.30480972,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0012.abf,S1,6,2021_03_24_0S1c6,D1,TTX,0.0,yes,17.50694444,12.48069087,64.80078922,-69.07958984,24,350.0,77.78320313,-33.0078125,274.9023438,-53.34472656,21.4,364.0888889,4; exclude; Rs_end > 30,,1.24616835,,,,,,15 mM,-68.93887619,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0013.abf,S1_D2,6,2021_03_24_0S1c6,D2,TTX,22.0,yes,41.643889,16.57444943,55.42876655,-68.51806641,16,500.0,57.37304688,-22.19848633,146.1181641,-29.90722656,7.25,209.4955908,31,,1.612595512,,,,,,15 mM,-70.25225983,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0012.abf,S1,8,2021_03_24_0S1c8,D1,TTX,0.0,no,17.50694444,7.630186283,78.18487178,-67.08984375,18,250.0,84.81445313,-37.79296875,298.5839844,-75.80566406,19.35,335.304495,5,,1.024783202,,,,,,15 mM,-67.05703369,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0022.abf,S2,7,2021_03_24_0S2c7,D1,Ctrl,0.0,no,18.80583333,8.838272195,67.96920659,-71.6796875,19,250.0,88.23852539,-37.31689453,411.9873047,-72.99804688,16.6,404.2726124,6,,1.028903305,,,,,,15 mM,-71.6670575,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0028.abf,S3,2,2021_03_24_0S3c2,D1,Ctrl,0.0,yes,20.55972222,11.26051255,78.24355071,-72.71118164,22,300.0,93.75610352,-39.20288086,545.8984375,-79.71191406,19.05,506.6805195,8,,0.959049863,,,,,,15 mM,-72.68165649,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0038.abf,S3_D2,7,2021_03_24_0S3c2,D2,Ctrl,21.0,yes,44.139722,6.895863932,47.44795246,-73.83422852,22,400.0,85.08300781,-33.84399414,392.7001953,-76.90429688,13.6,408.8484404,35,,0.991053972,,,,,,15 mM,-71.8719931,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0028.abf,S3,4,2021_03_24_0S3c4,D1,Ctrl,0.0,no,20.55972222,21.03433289,92.00924737,-69.71435547,24,300.0,84.63134766,-40.27709961,374.5117188,-66.65039063,22.65,546.5354934,9,,1.067926945,,,,,,15 mM,-69.64972824,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0035.abf,S3,6,2021_03_24_0S3c6,D1,Ctrl,0.0,yes,21.22833333,18.24590049,57.02961156,-68.46313477,23,700.0,53.93066406,-33.2824707,156.8603516,-43.9453125,10.7,288.8118616,10,,1.182796526,,,,,,15 mM,-68.46290375,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0043.abf,S3_D2,5,2021_03_24_0S3c6,D2,Ctrl,21.0,yes,44.413056,6.657330264,61.5303277,-69.91577148,22,400.0,83.2824707,-34.32006836,345.9472656,-68.96972656,15.65,381.5619048,36,,1.085706043,,,,,,15 mM,-69.85492676,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0035.abf,S3,8,2021_03_24_0S3c8,D1,Ctrl,0.0,yes,21.22833333,17.31978303,73.35879894,-71.66748047,22,400.0,77.75878906,-35.53466797,234.9853516,-66.40625,15.4,419.4739817,11,,1.050808948,,,,,,15 mM,-71.63009842,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0033.abf,S3_D2,8,2021_03_24_0S3c8,D2,Ctrl,21.0,yes,43.934722,9.675620347,49.74803264,-74.84741211,23,450.0,81.26220703,-33.50830078,321.2890625,-64.453125,13.15,375.6749782,34,,1.080005518,,,,,,15 mM,-71.06313156,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,1,2021_03_24_0S4c1,D1,TTX,0.0,no,23.04833333,18.48066084,94.8868367,-70.73364258,14,200.0,78.10058594,-40.46020508,244.5068359,-73.73046875,21.9,380.0949153,12,,0.959393646,,,,,,15 mM,-70.73405838,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,2,2021_03_24_0S4c2,D1,TTX,0.0,no,23.04833333,16.80842457,172.2459493,-73.29711914,27,150.0,87.64648438,-37.67700195,404.0527344,-85.81542969,19.9,245.8835596,13,,0.878334218,,,,,,15 mM,-73.22010208,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,4,2021_03_24_0S4c4,D1,TTX,0.0,no,23.04833333,9.590149102,90.24426951,-72.60742188,21,200.0,88.94042969,-38.57421875,441.0400391,-89.59960938,15.9,325.0225827,manually_corrected,,0.958427538,,,,,,15 mM,-72.60604004,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,5,2021_03_24_0S4c5,D1,TTX,0.0,no,23.04833333,8.956999411,54.53104909,-74.51782227,16,400.0,86.6027832,-38.72070313,380.2490234,-80.32226563,17.25,438.1767442,15,,0.972709883,,,,,,15 mM,-74.52035751,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,6,2021_03_24_0S4c6,D1,TTX,0.0,no,23.04833333,7.138458786,61.59915037,-73.03466797,6,400.0,86.88354492,-38.25073242,404.6630859,-84.10644531,14.6,296.0475248,16,,0.927250601,,,,,,15 mM,-72.99710083,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0042.abf,S4,7,2021_03_24_0S4c7,D1,TTX,0.0,no,23.04833333,8.532421262,102.6540583,-70.08056641,19,150.0,87.16430664,-39.69116211,300.5371094,-81.66503906,16.4,226.9405405,17,,0.950841822,,,,,,15 mM,-70.04043732,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0055.abf,S5,2,2021_03_24_0S5c1,D1,Ctrl,0.0,no,25.06138889,13.23396972,174.7552574,-65.69824219,28,100.0,92.22412109,-40.06347656,487.7929688,-96.55761719,16.35,137.6205497,19,,0.810843979,,,,,,15 mM,-69.88251038,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0082.abf,S6,2,2021_03_24_0S5c1,D1,TTX,0.0,no,26.994722,7.784184231,50.38181172,-63.53149414,3,250.0,29.54711914,-12.13989258,25.390625,-27.34375,12.15,251.8223909,22,,1.606264185,,,,,,15 mM,-69.99474945,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0077.abf,S5,2,2021_03_24_0S5c3,D1,Ctrl,0.0,no,26.126389,8.042211714,64.82375542,-77.39257813,22,200.0,95.59936523,-40.5456543,521.1181641,-88.50097656,22.85,454.3378641,21,,0.894228711,,,,,,15 mM,-70.3273674,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0092.abf,S6,2,2021_03_24_0S6c3,D1,TTX,0.0,no,27.590278,10.86341128,72.95862741,-73.02246094,15,300.0,56.04248047,-29.03442383,125.2441406,-41.25976563,9.5,222.6723891,24,,1.287480605,,,,,,15 mM,-71.70164139,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0097.abf,S6,2,2021_03_24_0S6c4,D1,TTX,0.0,no,27.870556,9.783036107,87.63307009,-49.04174805,20,300.0,72.44873047,-29.67529297,250.2441406,-36.49902344,15.15,288.9611176,25,,1.564747298,,,,,,15 mM,-68.7065889,Virchow,temporal,10.0,Rosie +OP210323,2021_03_24_0103.abf,S6,2,2021_03_24_0S6c5,D1,TTX,0.0,no,28.0475,7.069582217,126.3669356,-61.59667969,36,250.0,77.17285156,-30.7800293,334.4726563,-79.58984375,8.9,86.0534671,26,,0.83597138,,,,,,15 mM,-70.0887645,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0023.abf,S1_D2,1,2021_03_25_0S1_D2c1,D2,TTX,22.0,no,42.038056,19.70660067,82.45608982,-68.48754883,12,300.0,73.96240234,-28.16162109,236.328125,-47.97363281,13.9,207.8846189,32; exclude; Rs_end > 30,,1.276667488,,,,,,15 mM,-70.02277908,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0057.abf,S6_D2,2,2021_03_25_0S6_D2c1,D2,TTX,16.5,no,45.982222,6.111883637,37.90606881,-63.96484375,10,800.0,63.7878418,-26.26342773,182.2509766,-46.50878906,18.5,663.2472648,37,,1.303423394,,,,,,15 mM,-72.16715439,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0084.abf,S4_D2,1,2021_03_25_0S6_D2c1,D2,TTX,24.0,no,48.612778,17.70347943,262.6274035,-54.93164063,6,200.0,46.72851563,-28.07617188,102.0507813,-82.51953125,4.9,35.56217054,42,,0.683458127,,,,,,15 mM,-67.18881363,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0062.abf,S6_D2,2,2021_03_25_0S6_D2c2,D2,TTX,16.5,no,46.235278,7.865393239,98.09996902,-69.03686523,18,300.0,74.95117188,-28.85131836,309.3261719,-53.58886719,18.45,282.5091589,38,,1.214651653,,,,,,15 mM,-69.39026535,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0067.abf,S6_D2,2,2021_03_25_0S6_D2c3,D2,TTX,16.5,no,46.592222,10.29581833,223.0523837,-67.7734375,25,100.0,72.29614258,-29.62036133,244.3847656,-48.58398438,17.05,132.20407,39,,1.305696784,,,,,,15 mM,-67.61321548,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0078.abf,S6_D2,2,2021_03_25_0S6_D2c5,D2,TTX,16.5,no,47.127222,9.878971327,240.1846873,-67.8527832,17,150.0,71.11816406,-28.74755859,265.625,-93.50585938,11.5,67.2674045,41,,0.736362814,,,,,,15 mM,-68.24160522,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0091.abf,S4_D2,2,2021_03_25_0S4_D2c2,D2,TTX,24.0,no,48.896944,15.97549328,309.7782092,-62.41455078,11,100.0,78.47290039,-31.10961914,379.3945313,-58.71582031,11.65,82.23765618,43; exclude; Rs_end > 30,,1.13602231,,,,,,15 mM,-66.21055649,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0098.abf,S4_D2,5,2021_03_25_0S4_D2c5,D2,TTX,24.0,no,49.273056,6.970003936,77.30509513,-81.63452148,17,250.0,76.31835938,-33.48999023,298.2177734,-66.52832031,20.25,384.2223509,45,,1.031087162,,,,,,15 mM,-71.60202118,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0102.abf,S4_D2,8,2021_03_25_0S4_D2c8,D2,TTX,24.0,no,49.516111,14.14597822,482.9881207,-59.95483398,5,100.0,66.33911133,-34.36889648,247.5585938,-82.39746094,4.1,30.15685746,48; exclude; Rs_end > 30,,0.740635802,,,,,,15 mM,-67.00526917,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0107.abf,S5_D2,2,2021_03_25_0S4_D2c1,D2,Ctrl,23.5,no,49.888611,8.062325511,134.2167879,-78.05786133,26,100.0,90.91796875,-37.73803711,512.2070313,-82.76367188,16.8,191.0803193,49,,0.900221319,,,,,,15 mM,-71.26789474,Virchow,temporal,10.0,Rosie +OP210323,2021_03_25_0117.abf,S5_D2,2,2021_03_25_0S5_D2c2,D2,Ctrl,23.5,no,50.3925,14.1468259,48.4656784,-68.58520508,26,450.0,91.28417969,-39.38598633,472.9003906,-73.85253906,15.45,496.3388235,manually_corrected,,0.985966418,,,,,,15 mM,-70.52503922,Virchow,temporal,10.0,Rosie +OP220111,22111003.abf,S1,4,22111S1c4,D1,TTX,0.0,yes,11.38083333,16.88836326,69.73148547,-62.6159668,23,50.0,85.38208008,-41.67480469,348.3886719,-70.3125,28.45,466.357979,0,,0.986559637,,,,,,15 mM,-62.6093895,Bielefeld,temporal,51.0,Rosie +OP220111,22112061.abf,S1_D2,4,22111S1c4,D2,TTX,21.0,yes,32.75444444,8.588633505,71.51729222,-59.98535156,0,,,,,,17.85,532.2191083,13,,,,,,,,15 mM,-59.99144638,Bielefeld,temporal,51.0,Rosie +OP220111,22111003.abf,S1,5,22111S1c5,D1,TTX,0.0,yes,11.38083333,8.865712234,48.01649219,-65.19165039,25,200.0,86.1328125,-39.42871094,361.8164063,-68.84765625,16.95,327.68,1,,1.048150492,,,,,,15 mM,-65.05620407,Bielefeld,temporal,51.0,Rosie +OP220111,22112064.abf,S1_D2,5,22111S1c5,D2,TTX,21.0,yes,32.88027778,12.32981932,57.30539386,-62.17041016,5,250.0,47.8515625,-33.80126953,104.7363281,-33.44726563,20.75,378.794429,14,,1.044122541,,,,,,15 mM,-62.16383575,Bielefeld,temporal,51.0,Rosie +OP220111,22111003.abf,S1,7,22111S1c7,D1,TTX,0.0,yes,11.38083333,10.99482239,35.99698297,-59.55810547,1,800.0,73.92578125,-44.86083984,254.2724609,-46.75292969,12.6,598.3721739,2,,1.454789218,,,,,,15 mM,-59.54016541,Bielefeld,temporal,51.0,Rosie +OP220111,22112069.abf,S1_D2,6,22111S1c7,D2,TTX,21.0,yes,33.08916667,8.52033192,67.21989847,-57.21435547,18,50.0,64.99633789,-32.82470703,247.5585938,-67.13867188,26.05,292.8323842,15,,0.809548455,,,,,,15 mM,-57.30517929,Bielefeld,temporal,51.0,Rosie +OP220111,22112036.abf,S5_D2,3,22112S5_D2c3,D2,Ctrl,23.0,no,29.73638889,6.423372154,154.8296837,-66.51000977,32,100.0,80.3527832,-38.15917969,273.0712891,-63.11035156,9.2,93.13117084,6,,1.069578226,,,,,,15 mM,-66.38698517,Bielefeld,temporal,51.0,Rosie +OP220111,22112039.abf,S5_D2,6,22112S5_D2c6,D2,Ctrl,23.0,no,29.92472222,14.2039051,59.35750619,-62.28637695,36,100.0,93.73168945,-40.20996094,410.6445313,-81.90917969,20.0,388.0165779,7,,0.923648235,,,,,,15 mM,-62.28728912,Bielefeld,temporal,51.0,Rosie +OP220111,22112046.abf,S6_D2,4,22112S6_D2c4,D2,high K,16.5,no,30.92916667,13.09082698,145.6466002,-74.93286133,9,200.0,80.28564453,-40.06958008,292.7246094,-59.81445313,8.75,77.26219348,9,,1.151921611,,,,,,15 mM,-74.72934097,Bielefeld,temporal,51.0,Rosie +OP220111,22112056.abf,S6_D2,7,22112S6_D2c7,D2,high K,16.5,no,31.72083333,21.46716111,412.26701,-59.42993164,35,250.0,67.60864258,-39.36767578,207.3974609,-62.37792969,12.05,215.1795095,12,,1.047212056,,,,,,15 mM,-59.3745256,Bielefeld,temporal,51.0,Rosie +OP220111,22112077.abf,S1_D2,8,22112S1_D2c8,D2,TTX,21.0,no,33.63027778,9.508328482,109.0676843,-60.87036133,30,50.0,82.04345703,-33.80126953,326.4160156,-69.58007813,23.25,220.6359687,17,,0.948149574,,,,,,15 mM,-60.79352325,Bielefeld,temporal,51.0,Rosie +OP220111,22112083.abf,S1_D2,4,22112S1_D2c2,D2,TTX,21.0,no,33.98666667,9.484461788,66.02868537,-69.10400391,26,250.0,77.25830078,-33.88671875,322.5097656,-64.20898438,11.05,188.9803758,19,,0.992485326,,,,,,15 mM,-69.08026917,Bielefeld,temporal,51.0,Rosie +OP220127,22128003.abf,S1,1,22128S1c1,D1,Ctrl,0.0,no,19.20166667,14.05305311,46.17085776,-53.58886719,6,500.0,63.98925781,-37.70141602,125.6103516,-42.96875,6.85,244.3332,manually_adj_inj,,1.380565863,,,,,0.0,15 mM,-55.93905533,Mitte,temporal,45.0,Rosie +OP220127,22128003.abf,S1,2,22128S1c2,D1,Ctrl,0.0,yes,19.20166667,14.2415657,133.988716,-78.52172852,39,150.0,89.75830078,-38.37280273,412.2314453,-84.10644531,14.75,104.8585,manually_adj_inj,,0.866369593,,,,,1.0,15 mM,-55.43099899,Mitte,temporal,45.0,Rosie +OP220127,22129039.abf,S1_D2,4,22128S1c2,D2,Ctrl,24.0,yes,43.83222222,24.31177946,87.45439608,-68.59741211,9,200.0,69.39086914,-38.17749023,213.3789063,-62.74414063,9.2,142.0221,tau and cap from -150,,1.028491636,,,,,25.0,15 mM,-60.5175528,Mitte,temporal,45.0,Rosie +OP220127,22128003.abf,S1,4,22128S1c4,D1,Ctrl,0.0,yes,19.20166667,8.466725682,48.84358909,-75.91552734,36,250.0,84.69848633,-39.24560547,350.0976563,-75.56152344,14.9,331.9124405,2,,0.970145828,,,,,2.0,15 mM,-61.85932907,Mitte,temporal,45.0,Rosie +OP220127,22129044.abf,S1_D2,5,22128S1c4,D2,Ctrl,24.0,yes,44.1275,9.749425824,48.43487491,-69.51904297,40,200.0,89.16015625,-37.73803711,422.3632813,-77.1484375,9.8,227.5878101,26,,0.976986885,,,,,26.0,15 mM,-61.6497551,Mitte,temporal,45.0,Rosie +OP220127,22128003.abf,S1,6,22128S1c6,D1,Ctrl,0.0,no,19.20166667,12.99175467,207.4835583,-79.52880859,42,50.0,85.87646484,-36.99951172,337.890625,-81.42089844,13.15,87.63457393,4,,0.923317588,,,,,4.0,15 mM,-61.53025314,Mitte,temporal,45.0,Rosie +OP220127,22128003.abf,S1,7,22128S1c7,D1,Ctrl,0.0,no,19.20166667,23.01910549,116.2851146,-77.15454102,29,50.0,82.62329102,-36.57836914,313.4765625,-79.71191406,21.6,193.6494665,5,,0.931722013,,,,,5.0,15 mM,-60.60171585,Mitte,temporal,45.0,Rosie +OP220127,22128015.abf,S2,1,22128S2c1,D1,TTX,0.0,no,20.765,7.566834418,37.89253519,-67.8527832,19,800.0,84.55200195,-34.80224609,390.0146484,-67.50488281,10.35,418.0141,manually_adj_inj,,1.019139291,,,,,6.0,15 mM,-68.17939911,Mitte,temporal,45.0,Rosie +OP220127,22128015.abf,S2,5,22128S2c5,D1,TTX,0.0,no,20.765,16.33300364,40.50569934,-60.14404297,5,900.0,74.68261719,-37.21313477,293.7011719,-90.45410156,6.05,353.3804,manually_adj_inj,,0.787689544,,,,,9.0,15 mM,-69.49935913,Mitte,temporal,45.0,Rosie +OP220127,22128015.abf,S2,6,22128S2c6,D1,TTX,0.0,yes,20.765,7.807692818,38.23174925,-75.0,27,350.0,93.76831055,-43.81103516,489.6240234,-126.7089844,10.05,375.0779043,10,,0.634774335,,,,,10.0,15 mM,-70.84277039,Mitte,temporal,45.0,Rosie +OP220127,22129059.abf,S2_D2,6,22128S2c6,D2,TTX,24.0,yes,46.36055556,11.25433813,32.36111316,-66.24145508,21,300.0,76.42211914,-41.60766602,314.3310547,-114.6240234,10.55,636.6526703,29,,0.638589762,,,,,29.0,15 mM,-61.0793013,Mitte,temporal,45.0,Rosie +OP220127,22128015.abf,S2,7,22128S2c7,D1,TTX,0.0,no,20.765,7.587496876,36.40393217,-68.02978516,22,500.0,78.29589844,-37.37792969,305.5419922,-92.7734375,9.6,324.3018557,11,,0.798225082,,,,,11.0,15 mM,-70.07893616,Mitte,temporal,45.0,Rosie +OP220127,22128015.abf,S2,8,22128S2c8,D1,TTX,0.0,no,20.765,13.17042505,56.99402302,-70.04394531,21,450.0,92.16918945,-40.86914063,483.1542969,-85.08300781,15.5,521.9979445,12,,0.959147462,,,,,12.0,15 mM,-71.35955261,Mitte,temporal,45.0,Rosie +OP220127,22128023.abf,S3,2,22128S3c2,D1,high K,0.0,no,22.49333333,10.5057559,54.99366521,-72.69897461,12,700.0,85.42480469,-35.18676758,407.1044922,-85.44921875,11.95,405.6398,manually_adj_inj,,0.88737641,,,,,14.0,15 mM,-69.28528931,Mitte,temporal,45.0,Rosie +OP220127,22128023.abf,S3,6,22128S3c6,D1,high K,0.0,yes,22.49333333,8.215774734,44.58214224,-75.46386719,28,400.0,85.64453125,-36.62719727,359.375,-92.89550781,12.2,361.1288166,17,,0.832365119,,,,,17.0,15 mM,-71.24718185,Mitte,temporal,45.0,Rosie +OP220127,22129084.abf,S3_D2,3,22128S3c6,D2,high K,24.0,yes,48.57888889,11.92603885,46.01566112,-72.58911133,21,200.0,77.734375,-31.39648438,311.7675781,-87.52441406,16.2,346.5023499,35,,0.792883928,,,,,35.0,15 mM,-59.70334335,Mitte,temporal,45.0,Rosie +OP220127,22128023.abf,S3,7,22128S3c7,D1,high K,0.0,no,22.49333333,9.593420684,78.66628856,-74.59106445,31,250.0,87.92114258,-37.12768555,344.3603516,-92.89550781,15.5,294.7788741,18,,0.863457534,,,,,18.0,15 mM,-70.70372269,Mitte,temporal,45.0,Rosie +OP220127,22128034.abf,S4,2,22128S4c2,D1,Ctrl,0.0,no,25.40166667,23.18824373,84.36887609,-73.42529297,27,150.0,80.13305664,-36.4440918,253.0517578,-73.2421875,21.75,305.7941,manually_adj_inj,,0.963487963,,,,,20.0,15 mM,-55.53948975,Mitte,temporal,45.0,Rosie +OP220127,22128034.abf,S4,4,22128S4c4,D1,Ctrl,0.0,yes,25.40166667,9.122283152,23.16715806,-67.68798828,19,500.0,53.13110352,-44.68383789,241.5771484,-64.69726563,0.15,14.93981763,21,,,,,,,21.0,15 mM,-57.97163834,Mitte,temporal,45.0,Rosie +OP220127,22129103.abf,S4_D2,3,22128S4c4,D2,Ctrl,24.0,yes,50.36333333,11.71369939,32.67054046,-69.85473633,12,250.0,78.03344727,-37.07885742,363.7695313,-92.16308594,18.35,496.9361983,manually_corrected,,0.785428949,,,,,6.0,15 mM,-59.20965195,Mitte,temporal,45.0,Rosie +OP220127,22128034.abf,S4,6,22128S4c6,D1,Ctrl,0.0,no,25.40166667,9.014809401,44.57714123,-65.44189453,20,350.0,82.84301758,-36.38916016,322.0214844,-76.171875,12.3,352.3132867,23,,1.008693053,,,,,23.0,15 mM,-60.32395508,Mitte,temporal,45.0,Rosie +OP220127,22128034.abf,S4,8,22128S4c8,D1,Ctrl,0.0,no,25.40166667,8.629636962,60.7298476,-69.59228516,10,500.0,77.1484375,-38.29345703,257.4462891,-68.72558594,5.05,206.0752179,24,,1.034459208,,,,,24.0,15 mM,-59.37089462,Mitte,temporal,45.0,Rosie +OP220127,22129052.abf,S1_D2,8,22129S1_D2c8,D2,Ctrl,24.0,no,44.59944444,29.15487595,244.3463877,-71.60644531,38,50.0,82.00683594,-36.86523438,290.4052734,-84.59472656,12.8,81.71252679,28,,0.92558657,,,,,28.0,15 mM,-59.94002472,Mitte,temporal,45.0,Rosie +OP220127,22129063.abf,S2_D2,4,22129S2_D2c4,D2,TTX,24.0,no,46.64972222,9.341780506,43.28359964,-55.71899414,26,500.0,70.79467773,-34.46655273,316.1621094,-49.19433594,7.15,270.8568786,30,,1.102941,,,,,30.0,15 mM,-60.70385468,Mitte,temporal,45.0,Rosie +OP220127,22129068.abf,S2_D2,5,22129S2_D2c5,D2,TTX,24.0,no,46.79444444,9.807291152,53.63303274,-66.90673828,30,150.0,77.74047852,-35.9375,347.65625,-69.82421875,11.4,227.3616555,31,,0.923104978,,,,,31.0,15 mM,-61.29355057,Mitte,temporal,45.0,Rosie +OP220127,22129073.abf,S2_D2,7,22129S2_D2c7,D2,TTX,24.0,no,47.00861111,20.03880574,102.5905442,-67.35839844,30,100.0,82.51342773,-35.14404297,363.1591797,-75.31738281,13.8,167.3569208,32,,0.889146464,,,,,32.0,15 mM,-61.52571472,Mitte,temporal,45.0,Rosie +OP220127,22129073.abf,S2_D2,8,22129S2_D2c8,D2,TTX,24.0,no,47.00861111,9.003465897,48.65744516,-65.02075195,24,250.0,79.90722656,-32.98339844,360.1074219,-75.07324219,14.1,323.0970629,33,,0.874637044,,,,,33.0,15 mM,-61.22446808,Mitte,temporal,45.0,Rosie +OP220127,22129092.abf,S3_D2,5,22129S3_D2c5,D2,high K,24.0,no,49.07583333,7.44178551,38.08705558,-75.97045898,10,350.0,69.56787109,-28.34472656,245.3613281,-81.54296875,13.4,366.5202003,36,,0.802176132,,,,,36.0,15 mM,-60.42506363,Mitte,temporal,45.0,Rosie +OP220127,22129092.abf,S3_D2,7,22129S3_D2c7,D2,high K,24.0,no,49.07583333,15.41208792,105.7811294,-45.21484375,7,300.0,61.34033203,-35.8581543,314.8193359,-187.1337891,3.75,53.03409581,37,,0.386361075,,,,,37.0,15 mM,-62.37806992,Mitte,temporal,45.0,Rosie +OP220127,22129107.abf,S4_D2,7,22129S4_D2c7,D2,Ctrl,24.0,no,50.68444,14.06382,35.75114,-68.0298,20,600.0,85.9436,-37.5488,422.8516,-71.6553,9.45,452.7158,42,,1.011375398,,,,,41.0,15 mM,-68.00325806,Mitte,temporal,45.0,Rosie +OP220127,22129107.abf,S4_D2,8,22129S4_D2c8,D2,Ctrl,24.0,no,50.68444,9.702294,63.53383,-70.5017,27,300.0,85.02808,-34.5764,428.9551,-80.5664,11.45,247.8161,43,,0.893786474,,,,,42.0,15 mM,-70.48185379,Mitte,temporal,45.0,Rosie +OP220120,22121005.abf,S1,8,22121S1c8,D1,Ctrl,0.0,yes,23.69722222,16.700897,127.932848,-65.31982422,37,150.0,80.71899414,-38.97094727,226.8066406,-87.03613281,18.65,241.5506719,,,0.882391202,,,,,,15 mM,-64.48043945,Bielefeld,temporal,50.0,Rosie +OP220120,22122026.abf,S1_D2,2,22121S1c8,D2,Ctrl,23.0,yes,46.4225,21.56228136,116.147612,-76.62963867,31,100.0,89.47753906,-39.48974609,361.9384766,-96.43554688,31.95,234.7394,,,0.871826381,,,,inj_fix,,15 mM,-52.44422913,Bielefeld,temporal,50.0,Rosie diff --git a/exercises/tabular_split_apply_combine/split_apply_combine.ipynb b/exercises/tabular_split_apply_combine/split_apply_combine.ipynb new file mode 100644 index 0000000..baf6d01 --- /dev/null +++ b/exercises/tabular_split_apply_combine/split_apply_combine.ipynb @@ -0,0 +1,446 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f634238", + "metadata": {}, + "source": [ + "# Exercise: Compute summary statistics for the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "141ca000", + "metadata": {}, + "source": [ + "# Load the processed neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "d2dfebd3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('processed_QC_passed_2024-07-04_collected_v1.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "09554c84", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "df95a10b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
3OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
4OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "4 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 6.000400 31.599917 \n", + "4 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "4 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -61.401367 16.65 575.513924 5 786.927898 \n", + "4 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 1.182830 NaN NaN NaN NaN NaN \n", + "4 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "3 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "4 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "3 Verji \n", + "4 Verji " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "0b4f6091", + "metadata": {}, + "source": [ + "# 1. Does capacitance change with age?\n", + "\n", + "* Compute the capacitance by patient age, and plot it\n", + "* Does it change with age? (eyeballing is enough)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bb796266", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "1940d3fe", + "metadata": {}, + "source": [ + "# 2. Spiking threshold after potassium incubation\n", + "\n", + "1. Does the spiking threshold (TH) change between Day 1 and Day 2?\n", + "2. Does this result depend on the treatment?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dd5023cd", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_split_apply_combine/split_apply_combine_solution.ipynb b/exercises/tabular_split_apply_combine/split_apply_combine_solution.ipynb new file mode 100644 index 0000000..0ccbf53 --- /dev/null +++ b/exercises/tabular_split_apply_combine/split_apply_combine_solution.ipynb @@ -0,0 +1,684 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: Compute summary statistics for the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the processed neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "d2dfebd3", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('processed_QC_passed_2024-07-04_collected_v1.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "09554c84", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(659, 35)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "df95a10b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPfilenameslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_agepatcher
0OP23042023420003.abfS1123420S1c1D1TTX0.0no10.4163896.67564339.025301-74.28588924200.080.749512-35.278320336.181641-60.79101619.40510.6017670753.3801131.151009NaNNaNNaNNaNNaN8 mM-61.828554Bielefeldtemporal13.0Verji
1OP23042023420003.abfS1323420S1c3D1TTX0.0no10.4163897.86717448.728367-69.57397526300.078.448486-32.043457350.097656-67.13867217.30393.3979181585.1028371.006321NaNNaNNaNNaNNaN8 mM-60.460298Bielefeldtemporal13.0Verji
2OP23042023420003.abfS1623420S1c6D1TTX0.0no10.4163898.82013435.971082-54.95605522300.076.660156-29.827881270.629883-52.24609414.85426.0987743173.9157971.266335NaNNaNNaNNaNNaN8 mM-59.615979Bielefeldtemporal13.0Verji
3OP23042023420003.abfS1823420S1c8D1TTX0.0yes10.4163896.00040031.599917-70.55053722350.081.011963-33.068848309.448242-61.40136716.65575.5139245786.9278981.182830NaNNaNNaNNaNNaN8 mM-60.956350Bielefeldtemporal13.0Verji
4OP23042023420061.abfS1_D2823420S1c8D2TTX19.0yes29.6333338.27161430.607259-70.74585011300.048.883057-20.855713100.952148-27.46582013.25864.89243029565.9388651.504127NaNNaNNaNNaNNaN8 mM-61.283967Bielefeldtemporal13.0Verji
\n", + "
" + ], + "text/plain": [ + " OP filename slice cell_ch cell_ID day treatment \\\n", + "0 OP230420 23420003.abf S1 1 23420S1c1 D1 TTX \n", + "1 OP230420 23420003.abf S1 3 23420S1c3 D1 TTX \n", + "2 OP230420 23420003.abf S1 6 23420S1c6 D1 TTX \n", + "3 OP230420 23420003.abf S1 8 23420S1c8 D1 TTX \n", + "4 OP230420 23420061.abf S1_D2 8 23420S1c8 D2 TTX \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 10.416389 6.675643 39.025301 \n", + "1 0.0 no 10.416389 7.867174 48.728367 \n", + "2 0.0 no 10.416389 8.820134 35.971082 \n", + "3 0.0 yes 10.416389 6.000400 31.599917 \n", + "4 19.0 yes 29.633333 8.271614 30.607259 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -74.285889 24 200.0 80.749512 -35.278320 336.181641 \n", + "1 -69.573975 26 300.0 78.448486 -32.043457 350.097656 \n", + "2 -54.956055 22 300.0 76.660156 -29.827881 270.629883 \n", + "3 -70.550537 22 350.0 81.011963 -33.068848 309.448242 \n", + "4 -70.745850 1 1300.0 48.883057 -20.855713 100.952148 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -60.791016 19.40 510.601767 0 753.380113 \n", + "1 -67.138672 17.30 393.397918 1 585.102837 \n", + "2 -52.246094 14.85 426.098774 3 173.915797 \n", + "3 -61.401367 16.65 575.513924 5 786.927898 \n", + "4 -27.465820 13.25 864.892430 29 565.938865 \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 1.151009 NaN NaN NaN NaN NaN \n", + "1 1.006321 NaN NaN NaN NaN NaN \n", + "2 1.266335 NaN NaN NaN NaN NaN \n", + "3 1.182830 NaN NaN NaN NaN NaN \n", + "4 1.504127 NaN NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \\\n", + "0 8 mM -61.828554 Bielefeld temporal 13.0 \n", + "1 8 mM -60.460298 Bielefeld temporal 13.0 \n", + "2 8 mM -59.615979 Bielefeld temporal 13.0 \n", + "3 8 mM -60.956350 Bielefeld temporal 13.0 \n", + "4 8 mM -61.283967 Bielefeld temporal 13.0 \n", + "\n", + " patcher \n", + "0 Verji \n", + "1 Verji \n", + "2 Verji \n", + "3 Verji \n", + "4 Verji " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "id": "0b4f6091", + "metadata": {}, + "source": [ + "# 1. Does capacitance change with age?\n", + "\n", + "* Compute the capacitance by patient age, and plot it\n", + "* Does it change with age? (eyeballing is enough)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "00bb9eb1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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t+ratasSEhLa7LVmzpyp48eP680332yz5wQQOaLDXQEAHUdSUlK4qwCgg2HoB+iERo0apccee0yPPfaYrrzySiUnJ+tf/uVfdKaDdePGjRoyZIgSEhLk9Xp1//33q6KiQpJ05MgRjR49WpLUo0cPOY6jmTNnus979tBPfX29nnjiCV111VWKj4/XsGHDtGPHDvf62rVrdeWVV2rLli268cYb1b17d91+++3y+/2SpLy8PK1bt05//OMf5TiOHMcJ+vvmLFy4UP3791e3bt10zTXX6Omnn9bp06eDyvz6179Wr169lJCQoF/+8pd68skndfPNNweVWbNmjW688UZdccUVuuGGG/Qf//EfIbQygLZAUAE6qXXr1ik6Olp//vOf9fLLL2vFihX6wx/+IOmHgPHcc8/pf/7nf/Tmm2/q8OHDbhhJT0/XG2+8IUk6ePCg/H6/XnrppSZf4xe/+IX+9Kc/qaCgQPv27dO9996r22+/XYcOHXLLnDp1Sv/2b/+mDRs26KOPPtLRo0e1YMECSdKCBQs0depUN7z4/X6NGDHiou8tISFBa9eu1V/+8he99NJLWr16tVasWOFef+211/T888/rN7/5jUpKStS7d2+tWrUq6DlWr16tp556Ss8//7w+++wzLVmyRE8//bTWrVvX8kYGcOkucYdnABFo5MiR5sYbbzSNjY3uuYULF5obb7yxyfIff/yxkWRqamqMMcZ8+OGHRpKpqqo673nnzp1rjDHm888/N47jmL/97W9BZcaOHWsWLVpkjDFmzZo1RpL5/PPP3ev//u//blJTU93HM2bMMHfddVdr36oxxphly5aZwYMHu4+HDRtmZs+eHVTmlltuMTfddJP7OD093bz++utBZZ577jmTnZ19SXUBEBruUQE6qeHDh8txHPdxdna2li9froaGBu3bt095eXnau3evvv32WzU2NkqSjh49qgEDBrTo+T/55BMZY9S/f/+g83V1dUpOTnYfd+vWTddee6372OfzucNMrfVf//VfevHFF/X555/rxIkT+v7775WYmOheP3jwoB599NGgv/mHf/gHbd++XZL0f//3fyorK9OsWbP00EMPuWW+//57eTyeS6obgNAQVAAE+e677zRhwgRNmDBBGzduVM+ePXX06FFNnDhR9fX1LX6exsZGRUVFqaSkRFFRUUHXunfv7v5z165dg645juPeK9Mau3fv1n333adnn31WEydOlMfjUUFBgZYvX37e65zt7Nc8E8xWr16tYcOGBZU7970AuLwIKkAntXv37vMe9+vXT//7v/+ryspKLV26VOnp6ZKkPXv2BJWNiYmRJDU0NDT7/IMGDVJDQ4MqKir04x//uNX1jImJueDrnOtPf/qTMjIy9NRTT7nnvvrqq6Ay119/vT7++GM98MAD7rmz32Nqaqquuuoqffnll5o+fXqr6w7g0hFUgE6qrKxM8+bN08MPP6xPPvlEv/vd77R8+XL17t1bMTEx+t3vfqdHHnlE+/fv13PPPRf0txkZGXIcR//93/+tn/zkJ4qLiwvqJZGk/v37a/r06fr5z3+u5cuXa9CgQaqsrNT27duVlZWln/zkJy2qZ58+fbRlyxYdPHhQycnJ8ng85/XCnO26667T0aNHVVBQoKFDh+qdd95RYWFhUJk5c+booYce0pAhQzRixAht2rRJ+/bt0zXXXOOWycvL0+OPP67ExERNmjRJdXV12rNnj6qqqjRv3rwW1R1AGwjzPTIAwmDkyJHm0UcfNY888ohJTEw0PXr0ME8++aR7c+3rr79u+vTpY2JjY012drZ56623jCTz6aefus/xq1/9yni9XuM4jpkxY4b7vGdupjXGmPr6evOv//qvpk+fPqZr167G6/Wau+++2+zbt88Y88PNtB6PJ6huhYWF5uz/NVVUVJjx48eb7t27G0nmww8/vOj7++d//meTnJxsunfvbqZNm2ZWrFhx3uv86le/MikpKaZ79+7mwQcfNI8//rgZPnx4UJnXXnvN3HzzzSYmJsb06NHD3HbbbWbz5s0XfX0AbYeVaYFOaNSoUbr55pv14osvhrsq1hg/fry8Xq82bNgQ7qoAOAtDPwA6nVOnTun3v/+9Jk6cqKioKP3nf/6ntm3bpq1bt4a7agDOwYJvACLKkiVL1L179yaPSZMmteg5HMfRu+++qx//+McaPHiw3n77bb3xxhsaN27cZa49gFAx9AMgonz77bf69ttvm7wWFxenq666qp1rBOByIqgAAABrMfQDAACsRVABAADWIqgAAABrEVQAAIC1CCoAAMBaBBUAAGAtggoAALAWQQUAAFjr/wG6t+F7pXHoxgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.groupby('patient_age')['capacitance'].mean().plot(ls='', marker='.')" + ] + }, + { + "cell_type": "markdown", + "id": "1940d3fe", + "metadata": {}, + "source": [ + "# 2. Spiking threshold after potassium incubation\n", + "\n", + "1. Does the spiking threshold (TH) change between Day 1 and Day 2?\n", + "2. Does this result depend on the treatment?" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "8175fc1c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "day\n", + "D1 -37.276805\n", + "D2 -33.039838\n", + "Name: TH, dtype: float64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('day')['TH'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "fc34eecb", + "metadata": {}, + "outputs": [], + "source": [ + "th_per_treatment_and_day = df.pivot_table(index='treatment', columns='day', values='TH', aggfunc='mean')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "05761273", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
dayD1D2
treatment
Ctrl-37.865372-35.751658
TTX-36.852170-30.008780
high K-36.926069-33.162092
wash in high KNaN-35.791016
\n", + "
" + ], + "text/plain": [ + "day D1 D2\n", + "treatment \n", + "Ctrl -37.865372 -35.751658\n", + "TTX -36.852170 -30.008780\n", + "high K -36.926069 -33.162092\n", + "wash in high K NaN -35.791016" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "th_per_treatment_and_day" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "95fabcd9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
meanstd
dayD1D2D1D2
treatment
Ctrl-37.865372-35.7516584.2601405.459102
TTX-36.852170-30.0087805.4065696.577182
high K-36.926069-33.1620923.9662944.479648
wash in high KNaN-35.791016NaN1.009906
\n", + "
" + ], + "text/plain": [ + " mean std \n", + "day D1 D2 D1 D2\n", + "treatment \n", + "Ctrl -37.865372 -35.751658 4.260140 5.459102\n", + "TTX -36.852170 -30.008780 5.406569 6.577182\n", + "high K -36.926069 -33.162092 3.966294 4.479648\n", + "wash in high K NaN -35.791016 NaN 1.009906" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "th_per_treatment_and_day = df.pivot_table(index='treatment', columns='day', values='TH', aggfunc=['mean', 'std'])\n", + "th_per_treatment_and_day" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dd5023cd", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/.DS_Store b/exercises/tabular_tidy_data/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/exercises/tabular_tidy_data/.DS_Store differ diff --git a/exercises/tabular_tidy_data/.ipynb_checkpoints/make_tidy-checkpoint.ipynb b/exercises/tabular_tidy_data/.ipynb_checkpoints/make_tidy-checkpoint.ipynb new file mode 100644 index 0000000..8b2fc0b --- /dev/null +++ b/exercises/tabular_tidy_data/.ipynb_checkpoints/make_tidy-checkpoint.ipynb @@ -0,0 +1,10302 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 23, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw=tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
2379France200413.0109.0222.0220.0200.0138.0216.011.096.0116.082.053.034.0171.0
2376France200110.0124.0230.0260.0205.0119.0211.017.0131.0132.0102.063.040.0183.0
1691Cote d'Ivoire2000NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4113Mexico200486.01053.01276.01181.01201.0958.01209.0102.0760.0649.0693.0695.0626.0725.0
270Antigua and Barbuda20110.00.01.01.03.01.01.00.01.00.00.00.00.00.0
2147El Salvador20105.0101.0170.096.077.062.0101.06.063.065.049.058.051.068.0
7197Zambia2004209.01498.03963.02262.0968.0313.0324.0247.01811.02961.01646.0608.0245.0192.0
3737Lithuania20021.024.095.0176.0142.088.059.00.030.059.045.032.018.052.0
3532Lao People's Democratic Republic200110.081.0137.0176.0219.0186.0164.06.051.099.0121.0138.0104.071.0
5830Slovakia20120.02.09.017.020.012.07.00.02.03.04.06.01.013.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 \\\n", + "rownames \n", + "2379 France 2004 13.0 109.0 \n", + "2376 France 2001 10.0 124.0 \n", + "1691 Cote d'Ivoire 2000 NaN NaN \n", + "4113 Mexico 2004 86.0 1053.0 \n", + "270 Antigua and Barbuda 2011 0.0 0.0 \n", + "2147 El Salvador 2010 5.0 101.0 \n", + "7197 Zambia 2004 209.0 1498.0 \n", + "3737 Lithuania 2002 1.0 24.0 \n", + "3532 Lao People's Democratic Republic 2001 10.0 81.0 \n", + "5830 Slovakia 2012 0.0 2.0 \n", + "\n", + " sp_m_2534 sp_m_3544 sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 \\\n", + "rownames \n", + "2379 222.0 220.0 200.0 138.0 216.0 11.0 \n", + "2376 230.0 260.0 205.0 119.0 211.0 17.0 \n", + "1691 NaN NaN NaN NaN NaN NaN \n", + "4113 1276.0 1181.0 1201.0 958.0 1209.0 102.0 \n", + "270 1.0 1.0 3.0 1.0 1.0 0.0 \n", + "2147 170.0 96.0 77.0 62.0 101.0 6.0 \n", + "7197 3963.0 2262.0 968.0 313.0 324.0 247.0 \n", + "3737 95.0 176.0 142.0 88.0 59.0 0.0 \n", + "3532 137.0 176.0 219.0 186.0 164.0 6.0 \n", + "5830 9.0 17.0 20.0 12.0 7.0 0.0 \n", + "\n", + " sp_f_1524 sp_f_2534 sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "2379 96.0 116.0 82.0 53.0 34.0 171.0 \n", + "2376 131.0 132.0 102.0 63.0 40.0 183.0 \n", + "1691 NaN NaN NaN NaN NaN NaN \n", + "4113 760.0 649.0 693.0 695.0 626.0 725.0 \n", + "270 1.0 0.0 0.0 0.0 0.0 0.0 \n", + "2147 63.0 65.0 49.0 58.0 51.0 68.0 \n", + "7197 1811.0 2961.0 1646.0 608.0 245.0 192.0 \n", + "3737 30.0 59.0 45.0 32.0 18.0 52.0 \n", + "3532 51.0 99.0 121.0 138.0 104.0 71.0 \n", + "5830 2.0 3.0 4.0 6.0 1.0 13.0 " + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "116c47ad", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65',\n", + " 'sn_m_014', 'sn_m_1524', 'sn_m_2534', 'sn_m_3544', 'sn_m_4554',\n", + " 'sn_m_5564', 'sn_m_65', 'sn_f_014', 'sn_f_1524', 'sn_f_2534',\n", + " 'sn_f_3544', 'sn_f_4554', 'sn_f_5564', 'sn_f_65', 'ep_m_014',\n", + " 'ep_m_1524', 'ep_m_2534', 'ep_m_3544', 'ep_m_4554', 'ep_m_5564',\n", + " 'ep_m_65', 'ep_f_014', 'ep_f_1524', 'ep_f_2534', 'ep_f_3544',\n", + " 'ep_f_4554', 'ep_f_5564', 'ep_f_65', 'rel_m_014', 'rel_m_1524',\n", + " 'rel_m_2534', 'rel_m_3544', 'rel_m_4554', 'rel_m_5564', 'rel_m_65',\n", + " 'rel_f_014', 'rel_f_1524', 'rel_f_2534', 'rel_f_3544', 'rel_f_4554',\n", + " 'rel_f_5564', 'rel_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "4b249905", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearvariablecases
65Angola2000sp_m_014186.0
66Angola2001sp_m_014230.0
67Angola2002sp_m_014435.0
68Angola2003sp_m_014409.0
69Angola2004sp_m_014554.0
70Angola2005sp_m_014520.0
71Angola2006sp_m_014540.0
72Angola2007sp_m_014484.0
73Angola2008sp_m_014367.0
74Angola2009sp_m_014392.0
75Angola2010sp_m_014448.0
76Angola2011sp_m_014501.0
77Angola2012sp_m_014390.0
2848Angola2000sp_m_1524999.0
2849Angola2001sp_m_1524892.0
2850Angola2002sp_m_15242223.0
2851Angola2003sp_m_15242355.0
2852Angola2004sp_m_15242684.0
2853Angola2005sp_m_15242549.0
2854Angola2006sp_m_15242632.0
2855Angola2007sp_m_15242824.0
2856Angola2008sp_m_15242970.0
2857Angola2009sp_m_15243054.0
2858Angola2010sp_m_15242900.0
2859Angola2011sp_m_15243000.0
2860Angola2012sp_m_15242804.0
5631Angola2000sp_m_25341003.0
5632Angola2001sp_m_2534752.0
5633Angola2002sp_m_25342292.0
5634Angola2003sp_m_25342598.0
5635Angola2004sp_m_25342659.0
5636Angola2005sp_m_25342797.0
5637Angola2006sp_m_25343049.0
5638Angola2007sp_m_25343197.0
5639Angola2008sp_m_25343493.0
5640Angola2009sp_m_25343600.0
5641Angola2010sp_m_25343584.0
5642Angola2011sp_m_25343792.0
5643Angola2012sp_m_25343627.0
8414Angola2000sp_m_3544912.0
8415Angola2001sp_m_3544648.0
8416Angola2002sp_m_35441915.0
8417Angola2003sp_m_35441908.0
8418Angola2004sp_m_35441998.0
8419Angola2005sp_m_35441918.0
8420Angola2006sp_m_35442182.0
8421Angola2007sp_m_35442255.0
8422Angola2008sp_m_35442418.0
8423Angola2009sp_m_35442420.0
8424Angola2010sp_m_35442415.0
8425Angola2011sp_m_35442386.0
8426Angola2012sp_m_35442529.0
11197Angola2000sp_m_4554482.0
11198Angola2001sp_m_4554420.0
11199Angola2002sp_m_45541187.0
11200Angola2003sp_m_45541090.0
11201Angola2004sp_m_45541196.0
11202Angola2005sp_m_45541255.0
11203Angola2006sp_m_45541397.0
11204Angola2007sp_m_45541357.0
11205Angola2008sp_m_45541480.0
11206Angola2009sp_m_45541590.0
11207Angola2010sp_m_45541424.0
11208Angola2011sp_m_45541395.0
11209Angola2012sp_m_45541427.0
13980Angola2000sp_m_5564312.0
13981Angola2001sp_m_5564197.0
13982Angola2002sp_m_5564624.0
13983Angola2003sp_m_5564512.0
13984Angola2004sp_m_5564561.0
13985Angola2005sp_m_5564665.0
13986Angola2006sp_m_5564729.0
13987Angola2007sp_m_5564699.0
13988Angola2008sp_m_5564733.0
13989Angola2009sp_m_5564748.0
13990Angola2010sp_m_5564691.0
13991Angola2011sp_m_5564680.0
13992Angola2012sp_m_5564732.0
16763Angola2000sp_m_65194.0
16764Angola2001sp_m_65173.0
16765Angola2002sp_m_65444.0
16766Angola2003sp_m_65361.0
16767Angola2004sp_m_65321.0
16768Angola2005sp_m_65461.0
16769Angola2006sp_m_65428.0
16770Angola2007sp_m_65465.0
16771Angola2008sp_m_65420.0
16772Angola2009sp_m_65463.0
16773Angola2010sp_m_65355.0
16774Angola2011sp_m_65455.0
16775Angola2012sp_m_65424.0
19546Angola2000sp_f_014247.0
19547Angola2001sp_f_014279.0
19548Angola2002sp_f_014640.0
19549Angola2003sp_f_014591.0
19550Angola2004sp_f_014733.0
19551Angola2005sp_f_014704.0
19552Angola2006sp_f_014689.0
19553Angola2007sp_f_014703.0
19554Angola2008sp_f_014512.0
19555Angola2009sp_f_014568.0
19556Angola2010sp_f_014558.0
19557Angola2011sp_f_014708.0
19558Angola2012sp_f_014592.0
22329Angola2000sp_f_15241142.0
22330Angola2001sp_f_1524993.0
22331Angola2002sp_f_15242610.0
22332Angola2003sp_f_15243078.0
22333Angola2004sp_f_15243198.0
22334Angola2005sp_f_15242926.0
22335Angola2006sp_f_15242851.0
22336Angola2007sp_f_15242943.0
22337Angola2008sp_f_15243199.0
22338Angola2009sp_f_15243152.0
22339Angola2010sp_f_15242763.0
22340Angola2011sp_f_15242731.0
22341Angola2012sp_f_15242501.0
25112Angola2000sp_f_25341091.0
25113Angola2001sp_f_2534869.0
25114Angola2002sp_f_25342208.0
25115Angola2003sp_f_25342641.0
25116Angola2004sp_f_25342772.0
25117Angola2005sp_f_25342682.0
25118Angola2006sp_f_25342892.0
25119Angola2007sp_f_25342721.0
25120Angola2008sp_f_25342786.0
25121Angola2009sp_f_25342798.0
25122Angola2010sp_f_25342594.0
25123Angola2011sp_f_25342563.0
25124Angola2012sp_f_25342540.0
27895Angola2000sp_f_3544844.0
27896Angola2001sp_f_3544647.0
27897Angola2002sp_f_35441600.0
27898Angola2003sp_f_35441747.0
27899Angola2004sp_f_35441854.0
27900Angola2005sp_f_35441797.0
27901Angola2006sp_f_35441990.0
27902Angola2007sp_f_35441812.0
27903Angola2008sp_f_35442082.0
27904Angola2009sp_f_35441790.0
27905Angola2010sp_f_35441688.0
27906Angola2011sp_f_35441683.0
27907Angola2012sp_f_35441617.0
30678Angola2000sp_f_4554417.0
30679Angola2001sp_f_4554323.0
30680Angola2002sp_f_4554972.0
30681Angola2003sp_f_45541157.0
30682Angola2004sp_f_45541029.0
30683Angola2005sp_f_45541138.0
30684Angola2006sp_f_45541223.0
30685Angola2007sp_f_45541041.0
30686Angola2008sp_f_45541209.0
30687Angola2009sp_f_45541069.0
30688Angola2010sp_f_4554958.0
30689Angola2011sp_f_45541006.0
30690Angola2012sp_f_45541028.0
33461Angola2000sp_f_5564200.0
33462Angola2001sp_f_5564200.0
33463Angola2002sp_f_5564533.0
33464Angola2003sp_f_5564395.0
33465Angola2004sp_f_5564505.0
33466Angola2005sp_f_5564581.0
33467Angola2006sp_f_5564583.0
33468Angola2007sp_f_5564554.0
33469Angola2008sp_f_5564556.0
33470Angola2009sp_f_5564572.0
33471Angola2010sp_f_5564482.0
33472Angola2011sp_f_5564457.0
33473Angola2012sp_f_5564529.0
36244Angola2000sp_f_65120.0
36245Angola2001sp_f_65182.0
36246Angola2002sp_f_65305.0
36247Angola2003sp_f_65129.0
36248Angola2004sp_f_65269.0
36249Angola2005sp_f_65417.0
36250Angola2006sp_f_65314.0
36251Angola2007sp_f_65367.0
36252Angola2008sp_f_65337.0
36253Angola2009sp_f_65272.0
36254Angola2010sp_f_65286.0
36255Angola2011sp_f_65346.0
36256Angola2012sp_f_65384.0
\n", + "
" + ], + "text/plain": [ + " country year variable cases\n", + "65 Angola 2000 sp_m_014 186.0\n", + "66 Angola 2001 sp_m_014 230.0\n", + "67 Angola 2002 sp_m_014 435.0\n", + "68 Angola 2003 sp_m_014 409.0\n", + "69 Angola 2004 sp_m_014 554.0\n", + "70 Angola 2005 sp_m_014 520.0\n", + "71 Angola 2006 sp_m_014 540.0\n", + "72 Angola 2007 sp_m_014 484.0\n", + "73 Angola 2008 sp_m_014 367.0\n", + "74 Angola 2009 sp_m_014 392.0\n", + "75 Angola 2010 sp_m_014 448.0\n", + "76 Angola 2011 sp_m_014 501.0\n", + "77 Angola 2012 sp_m_014 390.0\n", + "2848 Angola 2000 sp_m_1524 999.0\n", + "2849 Angola 2001 sp_m_1524 892.0\n", + "2850 Angola 2002 sp_m_1524 2223.0\n", + "2851 Angola 2003 sp_m_1524 2355.0\n", + "2852 Angola 2004 sp_m_1524 2684.0\n", + "2853 Angola 2005 sp_m_1524 2549.0\n", + "2854 Angola 2006 sp_m_1524 2632.0\n", + "2855 Angola 2007 sp_m_1524 2824.0\n", + "2856 Angola 2008 sp_m_1524 2970.0\n", + "2857 Angola 2009 sp_m_1524 3054.0\n", + "2858 Angola 2010 sp_m_1524 2900.0\n", + "2859 Angola 2011 sp_m_1524 3000.0\n", + "2860 Angola 2012 sp_m_1524 2804.0\n", + "5631 Angola 2000 sp_m_2534 1003.0\n", + "5632 Angola 2001 sp_m_2534 752.0\n", + "5633 Angola 2002 sp_m_2534 2292.0\n", + "5634 Angola 2003 sp_m_2534 2598.0\n", + "5635 Angola 2004 sp_m_2534 2659.0\n", + "5636 Angola 2005 sp_m_2534 2797.0\n", + "5637 Angola 2006 sp_m_2534 3049.0\n", + "5638 Angola 2007 sp_m_2534 3197.0\n", + "5639 Angola 2008 sp_m_2534 3493.0\n", + "5640 Angola 2009 sp_m_2534 3600.0\n", + "5641 Angola 2010 sp_m_2534 3584.0\n", + "5642 Angola 2011 sp_m_2534 3792.0\n", + "5643 Angola 2012 sp_m_2534 3627.0\n", + "8414 Angola 2000 sp_m_3544 912.0\n", + "8415 Angola 2001 sp_m_3544 648.0\n", + "8416 Angola 2002 sp_m_3544 1915.0\n", + "8417 Angola 2003 sp_m_3544 1908.0\n", + "8418 Angola 2004 sp_m_3544 1998.0\n", + "8419 Angola 2005 sp_m_3544 1918.0\n", + "8420 Angola 2006 sp_m_3544 2182.0\n", + "8421 Angola 2007 sp_m_3544 2255.0\n", + "8422 Angola 2008 sp_m_3544 2418.0\n", + "8423 Angola 2009 sp_m_3544 2420.0\n", + "8424 Angola 2010 sp_m_3544 2415.0\n", + "8425 Angola 2011 sp_m_3544 2386.0\n", + "8426 Angola 2012 sp_m_3544 2529.0\n", + "11197 Angola 2000 sp_m_4554 482.0\n", + "11198 Angola 2001 sp_m_4554 420.0\n", + "11199 Angola 2002 sp_m_4554 1187.0\n", + "11200 Angola 2003 sp_m_4554 1090.0\n", + "11201 Angola 2004 sp_m_4554 1196.0\n", + "11202 Angola 2005 sp_m_4554 1255.0\n", + "11203 Angola 2006 sp_m_4554 1397.0\n", + "11204 Angola 2007 sp_m_4554 1357.0\n", + "11205 Angola 2008 sp_m_4554 1480.0\n", + "11206 Angola 2009 sp_m_4554 1590.0\n", + "11207 Angola 2010 sp_m_4554 1424.0\n", + "11208 Angola 2011 sp_m_4554 1395.0\n", + "11209 Angola 2012 sp_m_4554 1427.0\n", + "13980 Angola 2000 sp_m_5564 312.0\n", + "13981 Angola 2001 sp_m_5564 197.0\n", + "13982 Angola 2002 sp_m_5564 624.0\n", + "13983 Angola 2003 sp_m_5564 512.0\n", + "13984 Angola 2004 sp_m_5564 561.0\n", + "13985 Angola 2005 sp_m_5564 665.0\n", + "13986 Angola 2006 sp_m_5564 729.0\n", + "13987 Angola 2007 sp_m_5564 699.0\n", + "13988 Angola 2008 sp_m_5564 733.0\n", + "13989 Angola 2009 sp_m_5564 748.0\n", + "13990 Angola 2010 sp_m_5564 691.0\n", + "13991 Angola 2011 sp_m_5564 680.0\n", + "13992 Angola 2012 sp_m_5564 732.0\n", + "16763 Angola 2000 sp_m_65 194.0\n", + "16764 Angola 2001 sp_m_65 173.0\n", + "16765 Angola 2002 sp_m_65 444.0\n", + "16766 Angola 2003 sp_m_65 361.0\n", + "16767 Angola 2004 sp_m_65 321.0\n", + "16768 Angola 2005 sp_m_65 461.0\n", + "16769 Angola 2006 sp_m_65 428.0\n", + "16770 Angola 2007 sp_m_65 465.0\n", + "16771 Angola 2008 sp_m_65 420.0\n", + "16772 Angola 2009 sp_m_65 463.0\n", + "16773 Angola 2010 sp_m_65 355.0\n", + "16774 Angola 2011 sp_m_65 455.0\n", + "16775 Angola 2012 sp_m_65 424.0\n", + "19546 Angola 2000 sp_f_014 247.0\n", + "19547 Angola 2001 sp_f_014 279.0\n", + "19548 Angola 2002 sp_f_014 640.0\n", + "19549 Angola 2003 sp_f_014 591.0\n", + "19550 Angola 2004 sp_f_014 733.0\n", + "19551 Angola 2005 sp_f_014 704.0\n", + "19552 Angola 2006 sp_f_014 689.0\n", + "19553 Angola 2007 sp_f_014 703.0\n", + "19554 Angola 2008 sp_f_014 512.0\n", + "19555 Angola 2009 sp_f_014 568.0\n", + "19556 Angola 2010 sp_f_014 558.0\n", + "19557 Angola 2011 sp_f_014 708.0\n", + "19558 Angola 2012 sp_f_014 592.0\n", + "22329 Angola 2000 sp_f_1524 1142.0\n", + "22330 Angola 2001 sp_f_1524 993.0\n", + "22331 Angola 2002 sp_f_1524 2610.0\n", + "22332 Angola 2003 sp_f_1524 3078.0\n", + "22333 Angola 2004 sp_f_1524 3198.0\n", + "22334 Angola 2005 sp_f_1524 2926.0\n", + "22335 Angola 2006 sp_f_1524 2851.0\n", + "22336 Angola 2007 sp_f_1524 2943.0\n", + "22337 Angola 2008 sp_f_1524 3199.0\n", + "22338 Angola 2009 sp_f_1524 3152.0\n", + "22339 Angola 2010 sp_f_1524 2763.0\n", + "22340 Angola 2011 sp_f_1524 2731.0\n", + "22341 Angola 2012 sp_f_1524 2501.0\n", + "25112 Angola 2000 sp_f_2534 1091.0\n", + "25113 Angola 2001 sp_f_2534 869.0\n", + "25114 Angola 2002 sp_f_2534 2208.0\n", + "25115 Angola 2003 sp_f_2534 2641.0\n", + "25116 Angola 2004 sp_f_2534 2772.0\n", + "25117 Angola 2005 sp_f_2534 2682.0\n", + "25118 Angola 2006 sp_f_2534 2892.0\n", + "25119 Angola 2007 sp_f_2534 2721.0\n", + "25120 Angola 2008 sp_f_2534 2786.0\n", + "25121 Angola 2009 sp_f_2534 2798.0\n", + "25122 Angola 2010 sp_f_2534 2594.0\n", + "25123 Angola 2011 sp_f_2534 2563.0\n", + "25124 Angola 2012 sp_f_2534 2540.0\n", + "27895 Angola 2000 sp_f_3544 844.0\n", + "27896 Angola 2001 sp_f_3544 647.0\n", + "27897 Angola 2002 sp_f_3544 1600.0\n", + "27898 Angola 2003 sp_f_3544 1747.0\n", + "27899 Angola 2004 sp_f_3544 1854.0\n", + "27900 Angola 2005 sp_f_3544 1797.0\n", + "27901 Angola 2006 sp_f_3544 1990.0\n", + "27902 Angola 2007 sp_f_3544 1812.0\n", + "27903 Angola 2008 sp_f_3544 2082.0\n", + "27904 Angola 2009 sp_f_3544 1790.0\n", + "27905 Angola 2010 sp_f_3544 1688.0\n", + "27906 Angola 2011 sp_f_3544 1683.0\n", + "27907 Angola 2012 sp_f_3544 1617.0\n", + "30678 Angola 2000 sp_f_4554 417.0\n", + "30679 Angola 2001 sp_f_4554 323.0\n", + "30680 Angola 2002 sp_f_4554 972.0\n", + "30681 Angola 2003 sp_f_4554 1157.0\n", + "30682 Angola 2004 sp_f_4554 1029.0\n", + "30683 Angola 2005 sp_f_4554 1138.0\n", + "30684 Angola 2006 sp_f_4554 1223.0\n", + "30685 Angola 2007 sp_f_4554 1041.0\n", + "30686 Angola 2008 sp_f_4554 1209.0\n", + "30687 Angola 2009 sp_f_4554 1069.0\n", + "30688 Angola 2010 sp_f_4554 958.0\n", + "30689 Angola 2011 sp_f_4554 1006.0\n", + "30690 Angola 2012 sp_f_4554 1028.0\n", + "33461 Angola 2000 sp_f_5564 200.0\n", + "33462 Angola 2001 sp_f_5564 200.0\n", + "33463 Angola 2002 sp_f_5564 533.0\n", + "33464 Angola 2003 sp_f_5564 395.0\n", + "33465 Angola 2004 sp_f_5564 505.0\n", + "33466 Angola 2005 sp_f_5564 581.0\n", + "33467 Angola 2006 sp_f_5564 583.0\n", + "33468 Angola 2007 sp_f_5564 554.0\n", + "33469 Angola 2008 sp_f_5564 556.0\n", + "33470 Angola 2009 sp_f_5564 572.0\n", + "33471 Angola 2010 sp_f_5564 482.0\n", + "33472 Angola 2011 sp_f_5564 457.0\n", + "33473 Angola 2012 sp_f_5564 529.0\n", + "36244 Angola 2000 sp_f_65 120.0\n", + "36245 Angola 2001 sp_f_65 182.0\n", + "36246 Angola 2002 sp_f_65 305.0\n", + "36247 Angola 2003 sp_f_65 129.0\n", + "36248 Angola 2004 sp_f_65 269.0\n", + "36249 Angola 2005 sp_f_65 417.0\n", + "36250 Angola 2006 sp_f_65 314.0\n", + "36251 Angola 2007 sp_f_65 367.0\n", + "36252 Angola 2008 sp_f_65 337.0\n", + "36253 Angola 2009 sp_f_65 272.0\n", + "36254 Angola 2010 sp_f_65 286.0\n", + "36255 Angola 2011 sp_f_65 346.0\n", + "36256 Angola 2012 sp_f_65 384.0" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_melted = pd.melt(tb_raw, id_vars=['country', 'year'], value_name='cases')\n", + "tb_melted[tb_melted['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "7cab45a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecases
65Angola2000m<=14yo186.0
66Angola2001m<=14yo230.0
67Angola2002m<=14yo435.0
68Angola2003m<=14yo409.0
69Angola2004m<=14yo554.0
70Angola2005m<=14yo520.0
71Angola2006m<=14yo540.0
72Angola2007m<=14yo484.0
73Angola2008m<=14yo367.0
74Angola2009m<=14yo392.0
75Angola2010m<=14yo448.0
76Angola2011m<=14yo501.0
77Angola2012m<=14yo390.0
2848Angola2000m15-24yo999.0
2849Angola2001m15-24yo892.0
2850Angola2002m15-24yo2223.0
2851Angola2003m15-24yo2355.0
2852Angola2004m15-24yo2684.0
2853Angola2005m15-24yo2549.0
2854Angola2006m15-24yo2632.0
2855Angola2007m15-24yo2824.0
2856Angola2008m15-24yo2970.0
2857Angola2009m15-24yo3054.0
2858Angola2010m15-24yo2900.0
2859Angola2011m15-24yo3000.0
2860Angola2012m15-24yo2804.0
5631Angola2000m25-34yo1003.0
5632Angola2001m25-34yo752.0
5633Angola2002m25-34yo2292.0
5634Angola2003m25-34yo2598.0
5635Angola2004m25-34yo2659.0
5636Angola2005m25-34yo2797.0
5637Angola2006m25-34yo3049.0
5638Angola2007m25-34yo3197.0
5639Angola2008m25-34yo3493.0
5640Angola2009m25-34yo3600.0
5641Angola2010m25-34yo3584.0
5642Angola2011m25-34yo3792.0
5643Angola2012m25-34yo3627.0
8414Angola2000m35-44yo912.0
8415Angola2001m35-44yo648.0
8416Angola2002m35-44yo1915.0
8417Angola2003m35-44yo1908.0
8418Angola2004m35-44yo1998.0
8419Angola2005m35-44yo1918.0
8420Angola2006m35-44yo2182.0
8421Angola2007m35-44yo2255.0
8422Angola2008m35-44yo2418.0
8423Angola2009m35-44yo2420.0
8424Angola2010m35-44yo2415.0
8425Angola2011m35-44yo2386.0
8426Angola2012m35-44yo2529.0
11197Angola2000m45-54yo482.0
11198Angola2001m45-54yo420.0
11199Angola2002m45-54yo1187.0
11200Angola2003m45-54yo1090.0
11201Angola2004m45-54yo1196.0
11202Angola2005m45-54yo1255.0
11203Angola2006m45-54yo1397.0
11204Angola2007m45-54yo1357.0
11205Angola2008m45-54yo1480.0
11206Angola2009m45-54yo1590.0
11207Angola2010m45-54yo1424.0
11208Angola2011m45-54yo1395.0
11209Angola2012m45-54yo1427.0
13980Angola2000m55-64yo312.0
13981Angola2001m55-64yo197.0
13982Angola2002m55-64yo624.0
13983Angola2003m55-64yo512.0
13984Angola2004m55-64yo561.0
13985Angola2005m55-64yo665.0
13986Angola2006m55-64yo729.0
13987Angola2007m55-64yo699.0
13988Angola2008m55-64yo733.0
13989Angola2009m55-64yo748.0
13990Angola2010m55-64yo691.0
13991Angola2011m55-64yo680.0
13992Angola2012m55-64yo732.0
16763Angola2000m>=65yo194.0
16764Angola2001m>=65yo173.0
16765Angola2002m>=65yo444.0
16766Angola2003m>=65yo361.0
16767Angola2004m>=65yo321.0
16768Angola2005m>=65yo461.0
16769Angola2006m>=65yo428.0
16770Angola2007m>=65yo465.0
16771Angola2008m>=65yo420.0
16772Angola2009m>=65yo463.0
16773Angola2010m>=65yo355.0
16774Angola2011m>=65yo455.0
16775Angola2012m>=65yo424.0
19546Angola2000f<=14yo247.0
19547Angola2001f<=14yo279.0
19548Angola2002f<=14yo640.0
19549Angola2003f<=14yo591.0
19550Angola2004f<=14yo733.0
19551Angola2005f<=14yo704.0
19552Angola2006f<=14yo689.0
19553Angola2007f<=14yo703.0
19554Angola2008f<=14yo512.0
19555Angola2009f<=14yo568.0
19556Angola2010f<=14yo558.0
19557Angola2011f<=14yo708.0
19558Angola2012f<=14yo592.0
22329Angola2000f15-24yo1142.0
22330Angola2001f15-24yo993.0
22331Angola2002f15-24yo2610.0
22332Angola2003f15-24yo3078.0
22333Angola2004f15-24yo3198.0
22334Angola2005f15-24yo2926.0
22335Angola2006f15-24yo2851.0
22336Angola2007f15-24yo2943.0
22337Angola2008f15-24yo3199.0
22338Angola2009f15-24yo3152.0
22339Angola2010f15-24yo2763.0
22340Angola2011f15-24yo2731.0
22341Angola2012f15-24yo2501.0
25112Angola2000f25-34yo1091.0
25113Angola2001f25-34yo869.0
25114Angola2002f25-34yo2208.0
25115Angola2003f25-34yo2641.0
25116Angola2004f25-34yo2772.0
25117Angola2005f25-34yo2682.0
25118Angola2006f25-34yo2892.0
25119Angola2007f25-34yo2721.0
25120Angola2008f25-34yo2786.0
25121Angola2009f25-34yo2798.0
25122Angola2010f25-34yo2594.0
25123Angola2011f25-34yo2563.0
25124Angola2012f25-34yo2540.0
27895Angola2000f35-44yo844.0
27896Angola2001f35-44yo647.0
27897Angola2002f35-44yo1600.0
27898Angola2003f35-44yo1747.0
27899Angola2004f35-44yo1854.0
27900Angola2005f35-44yo1797.0
27901Angola2006f35-44yo1990.0
27902Angola2007f35-44yo1812.0
27903Angola2008f35-44yo2082.0
27904Angola2009f35-44yo1790.0
27905Angola2010f35-44yo1688.0
27906Angola2011f35-44yo1683.0
27907Angola2012f35-44yo1617.0
30678Angola2000f45-54yo417.0
30679Angola2001f45-54yo323.0
30680Angola2002f45-54yo972.0
30681Angola2003f45-54yo1157.0
30682Angola2004f45-54yo1029.0
30683Angola2005f45-54yo1138.0
30684Angola2006f45-54yo1223.0
30685Angola2007f45-54yo1041.0
30686Angola2008f45-54yo1209.0
30687Angola2009f45-54yo1069.0
30688Angola2010f45-54yo958.0
30689Angola2011f45-54yo1006.0
30690Angola2012f45-54yo1028.0
33461Angola2000f55-64yo200.0
33462Angola2001f55-64yo200.0
33463Angola2002f55-64yo533.0
33464Angola2003f55-64yo395.0
33465Angola2004f55-64yo505.0
33466Angola2005f55-64yo581.0
33467Angola2006f55-64yo583.0
33468Angola2007f55-64yo554.0
33469Angola2008f55-64yo556.0
33470Angola2009f55-64yo572.0
33471Angola2010f55-64yo482.0
33472Angola2011f55-64yo457.0
33473Angola2012f55-64yo529.0
36244Angola2000f>=65yo120.0
36245Angola2001f>=65yo182.0
36246Angola2002f>=65yo305.0
36247Angola2003f>=65yo129.0
36248Angola2004f>=65yo269.0
36249Angola2005f>=65yo417.0
36250Angola2006f>=65yo314.0
36251Angola2007f>=65yo367.0
36252Angola2008f>=65yo337.0
36253Angola2009f>=65yo272.0
36254Angola2010f>=65yo286.0
36255Angola2011f>=65yo346.0
36256Angola2012f>=65yo384.0
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases\n", + "65 Angola 2000 m <=14yo 186.0\n", + "66 Angola 2001 m <=14yo 230.0\n", + "67 Angola 2002 m <=14yo 435.0\n", + "68 Angola 2003 m <=14yo 409.0\n", + "69 Angola 2004 m <=14yo 554.0\n", + "70 Angola 2005 m <=14yo 520.0\n", + "71 Angola 2006 m <=14yo 540.0\n", + "72 Angola 2007 m <=14yo 484.0\n", + "73 Angola 2008 m <=14yo 367.0\n", + "74 Angola 2009 m <=14yo 392.0\n", + "75 Angola 2010 m <=14yo 448.0\n", + "76 Angola 2011 m <=14yo 501.0\n", + "77 Angola 2012 m <=14yo 390.0\n", + "2848 Angola 2000 m 15-24yo 999.0\n", + "2849 Angola 2001 m 15-24yo 892.0\n", + "2850 Angola 2002 m 15-24yo 2223.0\n", + "2851 Angola 2003 m 15-24yo 2355.0\n", + "2852 Angola 2004 m 15-24yo 2684.0\n", + "2853 Angola 2005 m 15-24yo 2549.0\n", + "2854 Angola 2006 m 15-24yo 2632.0\n", + "2855 Angola 2007 m 15-24yo 2824.0\n", + "2856 Angola 2008 m 15-24yo 2970.0\n", + "2857 Angola 2009 m 15-24yo 3054.0\n", + "2858 Angola 2010 m 15-24yo 2900.0\n", + "2859 Angola 2011 m 15-24yo 3000.0\n", + "2860 Angola 2012 m 15-24yo 2804.0\n", + "5631 Angola 2000 m 25-34yo 1003.0\n", + "5632 Angola 2001 m 25-34yo 752.0\n", + "5633 Angola 2002 m 25-34yo 2292.0\n", + "5634 Angola 2003 m 25-34yo 2598.0\n", + "5635 Angola 2004 m 25-34yo 2659.0\n", + "5636 Angola 2005 m 25-34yo 2797.0\n", + "5637 Angola 2006 m 25-34yo 3049.0\n", + "5638 Angola 2007 m 25-34yo 3197.0\n", + "5639 Angola 2008 m 25-34yo 3493.0\n", + "5640 Angola 2009 m 25-34yo 3600.0\n", + "5641 Angola 2010 m 25-34yo 3584.0\n", + "5642 Angola 2011 m 25-34yo 3792.0\n", + "5643 Angola 2012 m 25-34yo 3627.0\n", + "8414 Angola 2000 m 35-44yo 912.0\n", + "8415 Angola 2001 m 35-44yo 648.0\n", + "8416 Angola 2002 m 35-44yo 1915.0\n", + "8417 Angola 2003 m 35-44yo 1908.0\n", + "8418 Angola 2004 m 35-44yo 1998.0\n", + "8419 Angola 2005 m 35-44yo 1918.0\n", + "8420 Angola 2006 m 35-44yo 2182.0\n", + "8421 Angola 2007 m 35-44yo 2255.0\n", + "8422 Angola 2008 m 35-44yo 2418.0\n", + "8423 Angola 2009 m 35-44yo 2420.0\n", + "8424 Angola 2010 m 35-44yo 2415.0\n", + "8425 Angola 2011 m 35-44yo 2386.0\n", + "8426 Angola 2012 m 35-44yo 2529.0\n", + "11197 Angola 2000 m 45-54yo 482.0\n", + "11198 Angola 2001 m 45-54yo 420.0\n", + "11199 Angola 2002 m 45-54yo 1187.0\n", + "11200 Angola 2003 m 45-54yo 1090.0\n", + "11201 Angola 2004 m 45-54yo 1196.0\n", + "11202 Angola 2005 m 45-54yo 1255.0\n", + "11203 Angola 2006 m 45-54yo 1397.0\n", + "11204 Angola 2007 m 45-54yo 1357.0\n", + "11205 Angola 2008 m 45-54yo 1480.0\n", + "11206 Angola 2009 m 45-54yo 1590.0\n", + "11207 Angola 2010 m 45-54yo 1424.0\n", + "11208 Angola 2011 m 45-54yo 1395.0\n", + "11209 Angola 2012 m 45-54yo 1427.0\n", + "13980 Angola 2000 m 55-64yo 312.0\n", + "13981 Angola 2001 m 55-64yo 197.0\n", + "13982 Angola 2002 m 55-64yo 624.0\n", + "13983 Angola 2003 m 55-64yo 512.0\n", + "13984 Angola 2004 m 55-64yo 561.0\n", + "13985 Angola 2005 m 55-64yo 665.0\n", + "13986 Angola 2006 m 55-64yo 729.0\n", + "13987 Angola 2007 m 55-64yo 699.0\n", + "13988 Angola 2008 m 55-64yo 733.0\n", + "13989 Angola 2009 m 55-64yo 748.0\n", + "13990 Angola 2010 m 55-64yo 691.0\n", + "13991 Angola 2011 m 55-64yo 680.0\n", + "13992 Angola 2012 m 55-64yo 732.0\n", + "16763 Angola 2000 m >=65yo 194.0\n", + "16764 Angola 2001 m >=65yo 173.0\n", + "16765 Angola 2002 m >=65yo 444.0\n", + "16766 Angola 2003 m >=65yo 361.0\n", + "16767 Angola 2004 m >=65yo 321.0\n", + "16768 Angola 2005 m >=65yo 461.0\n", + "16769 Angola 2006 m >=65yo 428.0\n", + "16770 Angola 2007 m >=65yo 465.0\n", + "16771 Angola 2008 m >=65yo 420.0\n", + "16772 Angola 2009 m >=65yo 463.0\n", + "16773 Angola 2010 m >=65yo 355.0\n", + "16774 Angola 2011 m >=65yo 455.0\n", + "16775 Angola 2012 m >=65yo 424.0\n", + "19546 Angola 2000 f <=14yo 247.0\n", + "19547 Angola 2001 f <=14yo 279.0\n", + "19548 Angola 2002 f <=14yo 640.0\n", + "19549 Angola 2003 f <=14yo 591.0\n", + "19550 Angola 2004 f <=14yo 733.0\n", + "19551 Angola 2005 f <=14yo 704.0\n", + "19552 Angola 2006 f <=14yo 689.0\n", + "19553 Angola 2007 f <=14yo 703.0\n", + "19554 Angola 2008 f <=14yo 512.0\n", + "19555 Angola 2009 f <=14yo 568.0\n", + "19556 Angola 2010 f <=14yo 558.0\n", + "19557 Angola 2011 f <=14yo 708.0\n", + "19558 Angola 2012 f <=14yo 592.0\n", + "22329 Angola 2000 f 15-24yo 1142.0\n", + "22330 Angola 2001 f 15-24yo 993.0\n", + "22331 Angola 2002 f 15-24yo 2610.0\n", + "22332 Angola 2003 f 15-24yo 3078.0\n", + "22333 Angola 2004 f 15-24yo 3198.0\n", + "22334 Angola 2005 f 15-24yo 2926.0\n", + "22335 Angola 2006 f 15-24yo 2851.0\n", + "22336 Angola 2007 f 15-24yo 2943.0\n", + "22337 Angola 2008 f 15-24yo 3199.0\n", + "22338 Angola 2009 f 15-24yo 3152.0\n", + "22339 Angola 2010 f 15-24yo 2763.0\n", + "22340 Angola 2011 f 15-24yo 2731.0\n", + "22341 Angola 2012 f 15-24yo 2501.0\n", + "25112 Angola 2000 f 25-34yo 1091.0\n", + "25113 Angola 2001 f 25-34yo 869.0\n", + "25114 Angola 2002 f 25-34yo 2208.0\n", + "25115 Angola 2003 f 25-34yo 2641.0\n", + "25116 Angola 2004 f 25-34yo 2772.0\n", + "25117 Angola 2005 f 25-34yo 2682.0\n", + "25118 Angola 2006 f 25-34yo 2892.0\n", + "25119 Angola 2007 f 25-34yo 2721.0\n", + "25120 Angola 2008 f 25-34yo 2786.0\n", + "25121 Angola 2009 f 25-34yo 2798.0\n", + "25122 Angola 2010 f 25-34yo 2594.0\n", + "25123 Angola 2011 f 25-34yo 2563.0\n", + "25124 Angola 2012 f 25-34yo 2540.0\n", + "27895 Angola 2000 f 35-44yo 844.0\n", + "27896 Angola 2001 f 35-44yo 647.0\n", + "27897 Angola 2002 f 35-44yo 1600.0\n", + "27898 Angola 2003 f 35-44yo 1747.0\n", + "27899 Angola 2004 f 35-44yo 1854.0\n", + "27900 Angola 2005 f 35-44yo 1797.0\n", + "27901 Angola 2006 f 35-44yo 1990.0\n", + "27902 Angola 2007 f 35-44yo 1812.0\n", + "27903 Angola 2008 f 35-44yo 2082.0\n", + "27904 Angola 2009 f 35-44yo 1790.0\n", + "27905 Angola 2010 f 35-44yo 1688.0\n", + "27906 Angola 2011 f 35-44yo 1683.0\n", + "27907 Angola 2012 f 35-44yo 1617.0\n", + "30678 Angola 2000 f 45-54yo 417.0\n", + "30679 Angola 2001 f 45-54yo 323.0\n", + "30680 Angola 2002 f 45-54yo 972.0\n", + "30681 Angola 2003 f 45-54yo 1157.0\n", + "30682 Angola 2004 f 45-54yo 1029.0\n", + "30683 Angola 2005 f 45-54yo 1138.0\n", + "30684 Angola 2006 f 45-54yo 1223.0\n", + "30685 Angola 2007 f 45-54yo 1041.0\n", + "30686 Angola 2008 f 45-54yo 1209.0\n", + "30687 Angola 2009 f 45-54yo 1069.0\n", + "30688 Angola 2010 f 45-54yo 958.0\n", + "30689 Angola 2011 f 45-54yo 1006.0\n", + "30690 Angola 2012 f 45-54yo 1028.0\n", + "33461 Angola 2000 f 55-64yo 200.0\n", + "33462 Angola 2001 f 55-64yo 200.0\n", + "33463 Angola 2002 f 55-64yo 533.0\n", + "33464 Angola 2003 f 55-64yo 395.0\n", + "33465 Angola 2004 f 55-64yo 505.0\n", + "33466 Angola 2005 f 55-64yo 581.0\n", + "33467 Angola 2006 f 55-64yo 583.0\n", + "33468 Angola 2007 f 55-64yo 554.0\n", + "33469 Angola 2008 f 55-64yo 556.0\n", + "33470 Angola 2009 f 55-64yo 572.0\n", + "33471 Angola 2010 f 55-64yo 482.0\n", + "33472 Angola 2011 f 55-64yo 457.0\n", + "33473 Angola 2012 f 55-64yo 529.0\n", + "36244 Angola 2000 f >=65yo 120.0\n", + "36245 Angola 2001 f >=65yo 182.0\n", + "36246 Angola 2002 f >=65yo 305.0\n", + "36247 Angola 2003 f >=65yo 129.0\n", + "36248 Angola 2004 f >=65yo 269.0\n", + "36249 Angola 2005 f >=65yo 417.0\n", + "36250 Angola 2006 f >=65yo 314.0\n", + "36251 Angola 2007 f >=65yo 367.0\n", + "36252 Angola 2008 f >=65yo 337.0\n", + "36253 Angola 2009 f >=65yo 272.0\n", + "36254 Angola 2010 f >=65yo 286.0\n", + "36255 Angola 2011 f >=65yo 346.0\n", + "36256 Angola 2012 f >=65yo 384.0" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "age_range_map = {\n", + " '014': '<=14yo',\n", + " '1524': '15-24yo',\n", + " '2534': '25-34yo',\n", + " '3544': '35-44yo',\n", + " '4554': '45-54yo',\n", + " '5564': '55-64yo',\n", + " '65': '>=65yo'\n", + "}\n", + "\n", + "\n", + "tb_melted['gender'] = tb_melted['variable'].str[3]\n", + "tb_melted['age_range'] = tb_melted['variable'].str[5:].map(age_range_map)\n", + "tb = tb_melted[['country', 'year', 'gender', 'age_range', 'cases']]\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "75cc0463", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
country
Afghanistan67.832.2
Albania32.467.6
Algeria41.158.9
American Samoa64.735.3
Andorra35.764.3
Angola50.249.8
Anguilla100.00.0
Antigua and Barbuda68.831.2
Argentina42.957.1
Armenia17.582.5
ArubaNaNNaN
Australia37.462.6
Austria27.872.2
Azerbaijan20.979.1
Bahamas41.158.9
Bahrain31.069.0
Bangladesh31.268.8
Barbados31.668.4
Belarus19.580.5
Belgium30.469.6
Belize36.663.4
Benin36.263.8
Bermuda50.050.0
Bhutan43.456.6
Bolivia (Plurinational State of)40.659.4
Bosnia and Herzegovina42.657.4
Botswana43.756.3
Brazil34.965.1
British Virgin Islands50.050.0
Brunei Darussalam38.661.4
Bulgaria31.468.6
Burkina Faso32.367.7
Burundi38.561.5
Cabo Verde39.660.4
Cambodia48.851.2
Cameroon40.159.9
Canada42.657.4
Cayman Islands14.385.7
Central African Republic43.856.2
Chad39.460.6
Chile32.767.3
China31.368.7
China, Hong Kong SAR30.969.1
China, Macao SAR28.971.1
Colombia40.060.0
Comoros43.156.9
Congo46.353.7
Cook Islands0.0100.0
Costa Rica35.164.9
Cote d'Ivoire41.158.9
Croatia33.266.8
Cuba24.076.0
Cyprus27.172.9
Czech Republic27.172.9
Democratic People's Republic of Korea38.561.5
Democratic Republic of the Congo46.953.1
Denmark38.161.9
Djibouti32.467.6
Dominica50.050.0
Dominican Republic39.660.4
Ecuador40.759.3
Egypt34.066.0
El Salvador39.660.4
Equatorial Guinea39.760.3
Eritrea53.546.5
Estonia26.673.4
Ethiopia45.354.7
Fiji38.561.5
Finland34.965.1
France34.265.8
French Polynesia45.554.5
Gabon40.259.8
Gambia29.870.2
Georgia24.076.0
Germany34.565.5
Ghana34.965.1
Greece29.170.9
GreenlandNaNNaN
Grenada50.050.0
Guam35.164.9
Guatemala46.153.9
Guinea34.066.0
Guinea-Bissau39.860.2
Guyana31.868.2
Haiti49.950.1
Honduras44.655.4
Hungary26.373.7
Iceland40.060.0
India30.969.1
Indonesia41.858.2
Iran (Islamic Republic of)49.850.2
Iraq34.565.5
Ireland35.864.2
Israel38.761.3
Italy34.765.3
Jamaica28.471.6
Japan30.469.6
Jordan34.265.8
Kazakhstan37.862.2
Kenya42.157.9
Kiribati47.053.0
Kuwait35.464.6
Kyrgyzstan39.160.9
Lao People's Democratic Republic38.761.3
Latvia26.273.8
Lebanon41.258.8
Lesotho44.255.8
Liberia43.057.0
Libya21.578.5
Lithuania26.773.3
Luxembourg39.360.7
Madagascar40.859.2
Malawi49.550.5
Malaysia31.368.7
Maldives38.761.3
Mali32.267.8
Malta16.084.0
Marshall Islands51.148.9
Mauritania28.771.3
Mauritius29.470.6
Mexico38.461.6
Micronesia (Federated States of)55.544.5
MonacoNaNNaN
Mongolia46.453.6
Montenegro34.465.6
Montserrat0.0100.0
Morocco34.165.9
MozambiqueNaNNaN
Myanmar34.165.9
Namibia42.957.1
Nauru50.050.0
Nepal32.967.1
Netherlands32.068.0
Netherlands Antilles23.176.9
New Caledonia42.357.7
New Zealand46.853.2
Nicaragua44.455.6
Niger28.271.8
Nigeria41.858.2
Niue100.00.0
Northern Mariana Islands46.453.6
Norway42.457.6
Oman39.660.4
Pakistan48.751.3
Palau32.467.6
Panama36.263.8
Papua New Guinea48.451.6
Paraguay35.764.3
Peru42.757.3
Philippines30.969.1
Poland30.469.6
Portugal25.974.1
Puerto Rico32.167.9
Qatar22.277.8
Republic of Korea36.963.1
Republic of Moldova23.876.2
Romania28.671.4
Russian Federation23.876.2
Rwanda36.263.8
Saint Kitts and Nevis75.025.0
Saint Lucia37.762.3
Saint Vincent and the Grenadines24.475.6
Samoa50.050.0
San Marino0.0100.0
Sao Tome and Principe47.552.5
Saudi Arabia39.360.7
Senegal31.468.6
Serbia38.961.1
Serbia & Montenegro39.860.2
Seychelles28.871.2
Sierra Leone38.461.6
Singapore25.974.1
Slovakia32.867.2
Slovenia34.665.4
Solomon Islands53.446.6
Somalia35.564.5
South Africa43.756.3
Spain32.068.0
Sri Lanka27.272.8
Sudan40.159.9
Suriname28.471.6
Swaziland48.851.2
Sweden43.956.1
Switzerland37.063.0
Syrian Arab Republic35.164.9
Tajikistan40.859.2
Thailand29.770.3
The Former Yugoslav Republic of Macedonia36.963.1
Timor-Leste42.557.5
Togo38.861.2
TokelauNaNNaN
Tonga40.259.8
Trinidad and Tobago29.670.4
Tunisia26.873.2
Turkey27.073.0
Turkmenistan34.965.1
Turks and Caicos Islands66.733.3
Tuvalu38.561.5
US Virgin IslandsNaNNaN
Uganda41.558.5
Ukraine23.176.9
United Arab Emirates45.754.3
United Kingdom of Great Britain and Northern Ireland40.259.8
United Republic of Tanzania37.762.3
United States of America31.968.1
Uruguay30.769.3
Uzbekistan42.257.8
Vanuatu45.354.7
Venezuela (Bolivarian Republic of)39.460.6
Viet Nam28.871.2
Wallis and Futuna Islands41.258.8
West Bank and Gaza Strip33.366.7
Yemen45.154.9
Zambia43.656.4
Zimbabwe46.453.6
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country \n", + "Afghanistan 67.8 32.2\n", + "Albania 32.4 67.6\n", + "Algeria 41.1 58.9\n", + "American Samoa 64.7 35.3\n", + "Andorra 35.7 64.3\n", + "Angola 50.2 49.8\n", + "Anguilla 100.0 0.0\n", + "Antigua and Barbuda 68.8 31.2\n", + "Argentina 42.9 57.1\n", + "Armenia 17.5 82.5\n", + "Aruba NaN NaN\n", + "Australia 37.4 62.6\n", + "Austria 27.8 72.2\n", + "Azerbaijan 20.9 79.1\n", + "Bahamas 41.1 58.9\n", + "Bahrain 31.0 69.0\n", + "Bangladesh 31.2 68.8\n", + "Barbados 31.6 68.4\n", + "Belarus 19.5 80.5\n", + "Belgium 30.4 69.6\n", + "Belize 36.6 63.4\n", + "Benin 36.2 63.8\n", + "Bermuda 50.0 50.0\n", + "Bhutan 43.4 56.6\n", + "Bolivia (Plurinational State of) 40.6 59.4\n", + "Bosnia and Herzegovina 42.6 57.4\n", + "Botswana 43.7 56.3\n", + "Brazil 34.9 65.1\n", + "British Virgin Islands 50.0 50.0\n", + "Brunei Darussalam 38.6 61.4\n", + "Bulgaria 31.4 68.6\n", + "Burkina Faso 32.3 67.7\n", + "Burundi 38.5 61.5\n", + "Cabo Verde 39.6 60.4\n", + "Cambodia 48.8 51.2\n", + "Cameroon 40.1 59.9\n", + "Canada 42.6 57.4\n", + "Cayman Islands 14.3 85.7\n", + "Central African Republic 43.8 56.2\n", + "Chad 39.4 60.6\n", + "Chile 32.7 67.3\n", + "China 31.3 68.7\n", + "China, Hong Kong SAR 30.9 69.1\n", + "China, Macao SAR 28.9 71.1\n", + "Colombia 40.0 60.0\n", + "Comoros 43.1 56.9\n", + "Congo 46.3 53.7\n", + "Cook Islands 0.0 100.0\n", + "Costa Rica 35.1 64.9\n", + "Cote d'Ivoire 41.1 58.9\n", + "Croatia 33.2 66.8\n", + "Cuba 24.0 76.0\n", + "Cyprus 27.1 72.9\n", + "Czech Republic 27.1 72.9\n", + "Democratic People's Republic of Korea 38.5 61.5\n", + "Democratic Republic of the Congo 46.9 53.1\n", + "Denmark 38.1 61.9\n", + "Djibouti 32.4 67.6\n", + "Dominica 50.0 50.0\n", + "Dominican Republic 39.6 60.4\n", + "Ecuador 40.7 59.3\n", + "Egypt 34.0 66.0\n", + "El Salvador 39.6 60.4\n", + "Equatorial Guinea 39.7 60.3\n", + "Eritrea 53.5 46.5\n", + "Estonia 26.6 73.4\n", + "Ethiopia 45.3 54.7\n", + "Fiji 38.5 61.5\n", + "Finland 34.9 65.1\n", + "France 34.2 65.8\n", + "French Polynesia 45.5 54.5\n", + "Gabon 40.2 59.8\n", + "Gambia 29.8 70.2\n", + "Georgia 24.0 76.0\n", + "Germany 34.5 65.5\n", + "Ghana 34.9 65.1\n", + "Greece 29.1 70.9\n", + "Greenland NaN NaN\n", + "Grenada 50.0 50.0\n", + "Guam 35.1 64.9\n", + "Guatemala 46.1 53.9\n", + "Guinea 34.0 66.0\n", + "Guinea-Bissau 39.8 60.2\n", + "Guyana 31.8 68.2\n", + "Haiti 49.9 50.1\n", + "Honduras 44.6 55.4\n", + "Hungary 26.3 73.7\n", + "Iceland 40.0 60.0\n", + "India 30.9 69.1\n", + "Indonesia 41.8 58.2\n", + "Iran (Islamic Republic of) 49.8 50.2\n", + "Iraq 34.5 65.5\n", + "Ireland 35.8 64.2\n", + "Israel 38.7 61.3\n", + "Italy 34.7 65.3\n", + "Jamaica 28.4 71.6\n", + "Japan 30.4 69.6\n", + "Jordan 34.2 65.8\n", + "Kazakhstan 37.8 62.2\n", + "Kenya 42.1 57.9\n", + "Kiribati 47.0 53.0\n", + "Kuwait 35.4 64.6\n", + "Kyrgyzstan 39.1 60.9\n", + "Lao People's Democratic Republic 38.7 61.3\n", + "Latvia 26.2 73.8\n", + "Lebanon 41.2 58.8\n", + "Lesotho 44.2 55.8\n", + "Liberia 43.0 57.0\n", + "Libya 21.5 78.5\n", + "Lithuania 26.7 73.3\n", + "Luxembourg 39.3 60.7\n", + "Madagascar 40.8 59.2\n", + "Malawi 49.5 50.5\n", + "Malaysia 31.3 68.7\n", + "Maldives 38.7 61.3\n", + "Mali 32.2 67.8\n", + "Malta 16.0 84.0\n", + "Marshall Islands 51.1 48.9\n", + "Mauritania 28.7 71.3\n", + "Mauritius 29.4 70.6\n", + "Mexico 38.4 61.6\n", + "Micronesia (Federated States of) 55.5 44.5\n", + "Monaco NaN NaN\n", + "Mongolia 46.4 53.6\n", + "Montenegro 34.4 65.6\n", + "Montserrat 0.0 100.0\n", + "Morocco 34.1 65.9\n", + "Mozambique NaN NaN\n", + "Myanmar 34.1 65.9\n", + "Namibia 42.9 57.1\n", + "Nauru 50.0 50.0\n", + "Nepal 32.9 67.1\n", + "Netherlands 32.0 68.0\n", + "Netherlands Antilles 23.1 76.9\n", + "New Caledonia 42.3 57.7\n", + "New Zealand 46.8 53.2\n", + "Nicaragua 44.4 55.6\n", + "Niger 28.2 71.8\n", + "Nigeria 41.8 58.2\n", + "Niue 100.0 0.0\n", + "Northern Mariana Islands 46.4 53.6\n", + "Norway 42.4 57.6\n", + "Oman 39.6 60.4\n", + "Pakistan 48.7 51.3\n", + "Palau 32.4 67.6\n", + "Panama 36.2 63.8\n", + "Papua New Guinea 48.4 51.6\n", + "Paraguay 35.7 64.3\n", + "Peru 42.7 57.3\n", + "Philippines 30.9 69.1\n", + "Poland 30.4 69.6\n", + "Portugal 25.9 74.1\n", + "Puerto Rico 32.1 67.9\n", + "Qatar 22.2 77.8\n", + "Republic of Korea 36.9 63.1\n", + "Republic of Moldova 23.8 76.2\n", + "Romania 28.6 71.4\n", + "Russian Federation 23.8 76.2\n", + "Rwanda 36.2 63.8\n", + "Saint Kitts and Nevis 75.0 25.0\n", + "Saint Lucia 37.7 62.3\n", + "Saint Vincent and the Grenadines 24.4 75.6\n", + "Samoa 50.0 50.0\n", + "San Marino 0.0 100.0\n", + "Sao Tome and Principe 47.5 52.5\n", + "Saudi Arabia 39.3 60.7\n", + "Senegal 31.4 68.6\n", + "Serbia 38.9 61.1\n", + "Serbia & Montenegro 39.8 60.2\n", + "Seychelles 28.8 71.2\n", + "Sierra Leone 38.4 61.6\n", + "Singapore 25.9 74.1\n", + "Slovakia 32.8 67.2\n", + "Slovenia 34.6 65.4\n", + "Solomon Islands 53.4 46.6\n", + "Somalia 35.5 64.5\n", + "South Africa 43.7 56.3\n", + "Spain 32.0 68.0\n", + "Sri Lanka 27.2 72.8\n", + "Sudan 40.1 59.9\n", + "Suriname 28.4 71.6\n", + "Swaziland 48.8 51.2\n", + "Sweden 43.9 56.1\n", + "Switzerland 37.0 63.0\n", + "Syrian Arab Republic 35.1 64.9\n", + "Tajikistan 40.8 59.2\n", + "Thailand 29.7 70.3\n", + "The Former Yugoslav Republic of Macedonia 36.9 63.1\n", + "Timor-Leste 42.5 57.5\n", + "Togo 38.8 61.2\n", + "Tokelau NaN NaN\n", + "Tonga 40.2 59.8\n", + "Trinidad and Tobago 29.6 70.4\n", + "Tunisia 26.8 73.2\n", + "Turkey 27.0 73.0\n", + "Turkmenistan 34.9 65.1\n", + "Turks and Caicos Islands 66.7 33.3\n", + "Tuvalu 38.5 61.5\n", + "US Virgin Islands NaN NaN\n", + "Uganda 41.5 58.5\n", + "Ukraine 23.1 76.9\n", + "United Arab Emirates 45.7 54.3\n", + "United Kingdom of Great Britain and Northern Ireland 40.2 59.8\n", + "United Republic of Tanzania 37.7 62.3\n", + "United States of America 31.9 68.1\n", + "Uruguay 30.7 69.3\n", + "Uzbekistan 42.2 57.8\n", + "Vanuatu 45.3 54.7\n", + "Venezuela (Bolivarian Republic of) 39.4 60.6\n", + "Viet Nam 28.8 71.2\n", + "Wallis and Futuna Islands 41.2 58.8\n", + "West Bank and Gaza Strip 33.3 66.7\n", + "Yemen 45.1 54.9\n", + "Zambia 43.6 56.4\n", + "Zimbabwe 46.4 53.6" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender_2000 = (\n", + " tb[tb['year'].between(2000, 2006)]\n", + " .pivot_table(index='country', columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "\n", + "total_cases_2000 = tb_cases_per_gender_2000.sum(axis=1)\n", + "\n", + "tb_rate_per_gender_2000 = tb_cases_per_gender_2000.div(total_cases_2000, axis=0)\n", + "tb_rate_per_gender_2000.round(3) * 100" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "id": "a2491a2c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecasesyear_classyear_range
65Angola2000m<=14yo186.02000-20062000-2006
66Angola2001m<=14yo230.02000-20062000-2006
67Angola2002m<=14yo435.02000-20062000-2006
68Angola2003m<=14yo409.02000-20062000-2006
69Angola2004m<=14yo554.02000-20062000-2006
70Angola2005m<=14yo520.02000-20062000-2006
71Angola2006m<=14yo540.02000-20062000-2006
72Angola2007m<=14yo484.02007-20122007-2012
73Angola2008m<=14yo367.02007-20122007-2012
74Angola2009m<=14yo392.02007-20122007-2012
75Angola2010m<=14yo448.02007-20122007-2012
76Angola2011m<=14yo501.02007-20122007-2012
77Angola2012m<=14yo390.02007-20122007-2012
2848Angola2000m15-24yo999.02000-20062000-2006
2849Angola2001m15-24yo892.02000-20062000-2006
2850Angola2002m15-24yo2223.02000-20062000-2006
2851Angola2003m15-24yo2355.02000-20062000-2006
2852Angola2004m15-24yo2684.02000-20062000-2006
2853Angola2005m15-24yo2549.02000-20062000-2006
2854Angola2006m15-24yo2632.02000-20062000-2006
2855Angola2007m15-24yo2824.02007-20122007-2012
2856Angola2008m15-24yo2970.02007-20122007-2012
2857Angola2009m15-24yo3054.02007-20122007-2012
2858Angola2010m15-24yo2900.02007-20122007-2012
2859Angola2011m15-24yo3000.02007-20122007-2012
2860Angola2012m15-24yo2804.02007-20122007-2012
5631Angola2000m25-34yo1003.02000-20062000-2006
5632Angola2001m25-34yo752.02000-20062000-2006
5633Angola2002m25-34yo2292.02000-20062000-2006
5634Angola2003m25-34yo2598.02000-20062000-2006
5635Angola2004m25-34yo2659.02000-20062000-2006
5636Angola2005m25-34yo2797.02000-20062000-2006
5637Angola2006m25-34yo3049.02000-20062000-2006
5638Angola2007m25-34yo3197.02007-20122007-2012
5639Angola2008m25-34yo3493.02007-20122007-2012
5640Angola2009m25-34yo3600.02007-20122007-2012
5641Angola2010m25-34yo3584.02007-20122007-2012
5642Angola2011m25-34yo3792.02007-20122007-2012
5643Angola2012m25-34yo3627.02007-20122007-2012
8414Angola2000m35-44yo912.02000-20062000-2006
8415Angola2001m35-44yo648.02000-20062000-2006
8416Angola2002m35-44yo1915.02000-20062000-2006
8417Angola2003m35-44yo1908.02000-20062000-2006
8418Angola2004m35-44yo1998.02000-20062000-2006
8419Angola2005m35-44yo1918.02000-20062000-2006
8420Angola2006m35-44yo2182.02000-20062000-2006
8421Angola2007m35-44yo2255.02007-20122007-2012
8422Angola2008m35-44yo2418.02007-20122007-2012
8423Angola2009m35-44yo2420.02007-20122007-2012
8424Angola2010m35-44yo2415.02007-20122007-2012
8425Angola2011m35-44yo2386.02007-20122007-2012
8426Angola2012m35-44yo2529.02007-20122007-2012
11197Angola2000m45-54yo482.02000-20062000-2006
11198Angola2001m45-54yo420.02000-20062000-2006
11199Angola2002m45-54yo1187.02000-20062000-2006
11200Angola2003m45-54yo1090.02000-20062000-2006
11201Angola2004m45-54yo1196.02000-20062000-2006
11202Angola2005m45-54yo1255.02000-20062000-2006
11203Angola2006m45-54yo1397.02000-20062000-2006
11204Angola2007m45-54yo1357.02007-20122007-2012
11205Angola2008m45-54yo1480.02007-20122007-2012
11206Angola2009m45-54yo1590.02007-20122007-2012
11207Angola2010m45-54yo1424.02007-20122007-2012
11208Angola2011m45-54yo1395.02007-20122007-2012
11209Angola2012m45-54yo1427.02007-20122007-2012
13980Angola2000m55-64yo312.02000-20062000-2006
13981Angola2001m55-64yo197.02000-20062000-2006
13982Angola2002m55-64yo624.02000-20062000-2006
13983Angola2003m55-64yo512.02000-20062000-2006
13984Angola2004m55-64yo561.02000-20062000-2006
13985Angola2005m55-64yo665.02000-20062000-2006
13986Angola2006m55-64yo729.02000-20062000-2006
13987Angola2007m55-64yo699.02007-20122007-2012
13988Angola2008m55-64yo733.02007-20122007-2012
13989Angola2009m55-64yo748.02007-20122007-2012
13990Angola2010m55-64yo691.02007-20122007-2012
13991Angola2011m55-64yo680.02007-20122007-2012
13992Angola2012m55-64yo732.02007-20122007-2012
16763Angola2000m>=65yo194.02000-20062000-2006
16764Angola2001m>=65yo173.02000-20062000-2006
16765Angola2002m>=65yo444.02000-20062000-2006
16766Angola2003m>=65yo361.02000-20062000-2006
16767Angola2004m>=65yo321.02000-20062000-2006
16768Angola2005m>=65yo461.02000-20062000-2006
16769Angola2006m>=65yo428.02000-20062000-2006
16770Angola2007m>=65yo465.02007-20122007-2012
16771Angola2008m>=65yo420.02007-20122007-2012
16772Angola2009m>=65yo463.02007-20122007-2012
16773Angola2010m>=65yo355.02007-20122007-2012
16774Angola2011m>=65yo455.02007-20122007-2012
16775Angola2012m>=65yo424.02007-20122007-2012
19546Angola2000f<=14yo247.02000-20062000-2006
19547Angola2001f<=14yo279.02000-20062000-2006
19548Angola2002f<=14yo640.02000-20062000-2006
19549Angola2003f<=14yo591.02000-20062000-2006
19550Angola2004f<=14yo733.02000-20062000-2006
19551Angola2005f<=14yo704.02000-20062000-2006
19552Angola2006f<=14yo689.02000-20062000-2006
19553Angola2007f<=14yo703.02007-20122007-2012
19554Angola2008f<=14yo512.02007-20122007-2012
19555Angola2009f<=14yo568.02007-20122007-2012
19556Angola2010f<=14yo558.02007-20122007-2012
19557Angola2011f<=14yo708.02007-20122007-2012
19558Angola2012f<=14yo592.02007-20122007-2012
22329Angola2000f15-24yo1142.02000-20062000-2006
22330Angola2001f15-24yo993.02000-20062000-2006
22331Angola2002f15-24yo2610.02000-20062000-2006
22332Angola2003f15-24yo3078.02000-20062000-2006
22333Angola2004f15-24yo3198.02000-20062000-2006
22334Angola2005f15-24yo2926.02000-20062000-2006
22335Angola2006f15-24yo2851.02000-20062000-2006
22336Angola2007f15-24yo2943.02007-20122007-2012
22337Angola2008f15-24yo3199.02007-20122007-2012
22338Angola2009f15-24yo3152.02007-20122007-2012
22339Angola2010f15-24yo2763.02007-20122007-2012
22340Angola2011f15-24yo2731.02007-20122007-2012
22341Angola2012f15-24yo2501.02007-20122007-2012
25112Angola2000f25-34yo1091.02000-20062000-2006
25113Angola2001f25-34yo869.02000-20062000-2006
25114Angola2002f25-34yo2208.02000-20062000-2006
25115Angola2003f25-34yo2641.02000-20062000-2006
25116Angola2004f25-34yo2772.02000-20062000-2006
25117Angola2005f25-34yo2682.02000-20062000-2006
25118Angola2006f25-34yo2892.02000-20062000-2006
25119Angola2007f25-34yo2721.02007-20122007-2012
25120Angola2008f25-34yo2786.02007-20122007-2012
25121Angola2009f25-34yo2798.02007-20122007-2012
25122Angola2010f25-34yo2594.02007-20122007-2012
25123Angola2011f25-34yo2563.02007-20122007-2012
25124Angola2012f25-34yo2540.02007-20122007-2012
27895Angola2000f35-44yo844.02000-20062000-2006
27896Angola2001f35-44yo647.02000-20062000-2006
27897Angola2002f35-44yo1600.02000-20062000-2006
27898Angola2003f35-44yo1747.02000-20062000-2006
27899Angola2004f35-44yo1854.02000-20062000-2006
27900Angola2005f35-44yo1797.02000-20062000-2006
27901Angola2006f35-44yo1990.02000-20062000-2006
27902Angola2007f35-44yo1812.02007-20122007-2012
27903Angola2008f35-44yo2082.02007-20122007-2012
27904Angola2009f35-44yo1790.02007-20122007-2012
27905Angola2010f35-44yo1688.02007-20122007-2012
27906Angola2011f35-44yo1683.02007-20122007-2012
27907Angola2012f35-44yo1617.02007-20122007-2012
30678Angola2000f45-54yo417.02000-20062000-2006
30679Angola2001f45-54yo323.02000-20062000-2006
30680Angola2002f45-54yo972.02000-20062000-2006
30681Angola2003f45-54yo1157.02000-20062000-2006
30682Angola2004f45-54yo1029.02000-20062000-2006
30683Angola2005f45-54yo1138.02000-20062000-2006
30684Angola2006f45-54yo1223.02000-20062000-2006
30685Angola2007f45-54yo1041.02007-20122007-2012
30686Angola2008f45-54yo1209.02007-20122007-2012
30687Angola2009f45-54yo1069.02007-20122007-2012
30688Angola2010f45-54yo958.02007-20122007-2012
30689Angola2011f45-54yo1006.02007-20122007-2012
30690Angola2012f45-54yo1028.02007-20122007-2012
33461Angola2000f55-64yo200.02000-20062000-2006
33462Angola2001f55-64yo200.02000-20062000-2006
33463Angola2002f55-64yo533.02000-20062000-2006
33464Angola2003f55-64yo395.02000-20062000-2006
33465Angola2004f55-64yo505.02000-20062000-2006
33466Angola2005f55-64yo581.02000-20062000-2006
33467Angola2006f55-64yo583.02000-20062000-2006
33468Angola2007f55-64yo554.02007-20122007-2012
33469Angola2008f55-64yo556.02007-20122007-2012
33470Angola2009f55-64yo572.02007-20122007-2012
33471Angola2010f55-64yo482.02007-20122007-2012
33472Angola2011f55-64yo457.02007-20122007-2012
33473Angola2012f55-64yo529.02007-20122007-2012
36244Angola2000f>=65yo120.02000-20062000-2006
36245Angola2001f>=65yo182.02000-20062000-2006
36246Angola2002f>=65yo305.02000-20062000-2006
36247Angola2003f>=65yo129.02000-20062000-2006
36248Angola2004f>=65yo269.02000-20062000-2006
36249Angola2005f>=65yo417.02000-20062000-2006
36250Angola2006f>=65yo314.02000-20062000-2006
36251Angola2007f>=65yo367.02007-20122007-2012
36252Angola2008f>=65yo337.02007-20122007-2012
36253Angola2009f>=65yo272.02007-20122007-2012
36254Angola2010f>=65yo286.02007-20122007-2012
36255Angola2011f>=65yo346.02007-20122007-2012
36256Angola2012f>=65yo384.02007-20122007-2012
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases year_class year_range\n", + "65 Angola 2000 m <=14yo 186.0 2000-2006 2000-2006\n", + "66 Angola 2001 m <=14yo 230.0 2000-2006 2000-2006\n", + "67 Angola 2002 m <=14yo 435.0 2000-2006 2000-2006\n", + "68 Angola 2003 m <=14yo 409.0 2000-2006 2000-2006\n", + "69 Angola 2004 m <=14yo 554.0 2000-2006 2000-2006\n", + "70 Angola 2005 m <=14yo 520.0 2000-2006 2000-2006\n", + "71 Angola 2006 m <=14yo 540.0 2000-2006 2000-2006\n", + "72 Angola 2007 m <=14yo 484.0 2007-2012 2007-2012\n", + "73 Angola 2008 m <=14yo 367.0 2007-2012 2007-2012\n", + "74 Angola 2009 m <=14yo 392.0 2007-2012 2007-2012\n", + "75 Angola 2010 m <=14yo 448.0 2007-2012 2007-2012\n", + "76 Angola 2011 m <=14yo 501.0 2007-2012 2007-2012\n", + "77 Angola 2012 m <=14yo 390.0 2007-2012 2007-2012\n", + "2848 Angola 2000 m 15-24yo 999.0 2000-2006 2000-2006\n", + "2849 Angola 2001 m 15-24yo 892.0 2000-2006 2000-2006\n", + "2850 Angola 2002 m 15-24yo 2223.0 2000-2006 2000-2006\n", + "2851 Angola 2003 m 15-24yo 2355.0 2000-2006 2000-2006\n", + "2852 Angola 2004 m 15-24yo 2684.0 2000-2006 2000-2006\n", + "2853 Angola 2005 m 15-24yo 2549.0 2000-2006 2000-2006\n", + "2854 Angola 2006 m 15-24yo 2632.0 2000-2006 2000-2006\n", + "2855 Angola 2007 m 15-24yo 2824.0 2007-2012 2007-2012\n", + "2856 Angola 2008 m 15-24yo 2970.0 2007-2012 2007-2012\n", + "2857 Angola 2009 m 15-24yo 3054.0 2007-2012 2007-2012\n", + "2858 Angola 2010 m 15-24yo 2900.0 2007-2012 2007-2012\n", + "2859 Angola 2011 m 15-24yo 3000.0 2007-2012 2007-2012\n", + "2860 Angola 2012 m 15-24yo 2804.0 2007-2012 2007-2012\n", + "5631 Angola 2000 m 25-34yo 1003.0 2000-2006 2000-2006\n", + "5632 Angola 2001 m 25-34yo 752.0 2000-2006 2000-2006\n", + "5633 Angola 2002 m 25-34yo 2292.0 2000-2006 2000-2006\n", + "5634 Angola 2003 m 25-34yo 2598.0 2000-2006 2000-2006\n", + "5635 Angola 2004 m 25-34yo 2659.0 2000-2006 2000-2006\n", + "5636 Angola 2005 m 25-34yo 2797.0 2000-2006 2000-2006\n", + "5637 Angola 2006 m 25-34yo 3049.0 2000-2006 2000-2006\n", + "5638 Angola 2007 m 25-34yo 3197.0 2007-2012 2007-2012\n", + "5639 Angola 2008 m 25-34yo 3493.0 2007-2012 2007-2012\n", + "5640 Angola 2009 m 25-34yo 3600.0 2007-2012 2007-2012\n", + "5641 Angola 2010 m 25-34yo 3584.0 2007-2012 2007-2012\n", + "5642 Angola 2011 m 25-34yo 3792.0 2007-2012 2007-2012\n", + "5643 Angola 2012 m 25-34yo 3627.0 2007-2012 2007-2012\n", + "8414 Angola 2000 m 35-44yo 912.0 2000-2006 2000-2006\n", + "8415 Angola 2001 m 35-44yo 648.0 2000-2006 2000-2006\n", + "8416 Angola 2002 m 35-44yo 1915.0 2000-2006 2000-2006\n", + "8417 Angola 2003 m 35-44yo 1908.0 2000-2006 2000-2006\n", + "8418 Angola 2004 m 35-44yo 1998.0 2000-2006 2000-2006\n", + "8419 Angola 2005 m 35-44yo 1918.0 2000-2006 2000-2006\n", + "8420 Angola 2006 m 35-44yo 2182.0 2000-2006 2000-2006\n", + "8421 Angola 2007 m 35-44yo 2255.0 2007-2012 2007-2012\n", + "8422 Angola 2008 m 35-44yo 2418.0 2007-2012 2007-2012\n", + "8423 Angola 2009 m 35-44yo 2420.0 2007-2012 2007-2012\n", + "8424 Angola 2010 m 35-44yo 2415.0 2007-2012 2007-2012\n", + "8425 Angola 2011 m 35-44yo 2386.0 2007-2012 2007-2012\n", + "8426 Angola 2012 m 35-44yo 2529.0 2007-2012 2007-2012\n", + "11197 Angola 2000 m 45-54yo 482.0 2000-2006 2000-2006\n", + "11198 Angola 2001 m 45-54yo 420.0 2000-2006 2000-2006\n", + "11199 Angola 2002 m 45-54yo 1187.0 2000-2006 2000-2006\n", + "11200 Angola 2003 m 45-54yo 1090.0 2000-2006 2000-2006\n", + "11201 Angola 2004 m 45-54yo 1196.0 2000-2006 2000-2006\n", + "11202 Angola 2005 m 45-54yo 1255.0 2000-2006 2000-2006\n", + "11203 Angola 2006 m 45-54yo 1397.0 2000-2006 2000-2006\n", + "11204 Angola 2007 m 45-54yo 1357.0 2007-2012 2007-2012\n", + "11205 Angola 2008 m 45-54yo 1480.0 2007-2012 2007-2012\n", + "11206 Angola 2009 m 45-54yo 1590.0 2007-2012 2007-2012\n", + "11207 Angola 2010 m 45-54yo 1424.0 2007-2012 2007-2012\n", + "11208 Angola 2011 m 45-54yo 1395.0 2007-2012 2007-2012\n", + "11209 Angola 2012 m 45-54yo 1427.0 2007-2012 2007-2012\n", + "13980 Angola 2000 m 55-64yo 312.0 2000-2006 2000-2006\n", + "13981 Angola 2001 m 55-64yo 197.0 2000-2006 2000-2006\n", + "13982 Angola 2002 m 55-64yo 624.0 2000-2006 2000-2006\n", + "13983 Angola 2003 m 55-64yo 512.0 2000-2006 2000-2006\n", + "13984 Angola 2004 m 55-64yo 561.0 2000-2006 2000-2006\n", + "13985 Angola 2005 m 55-64yo 665.0 2000-2006 2000-2006\n", + "13986 Angola 2006 m 55-64yo 729.0 2000-2006 2000-2006\n", + "13987 Angola 2007 m 55-64yo 699.0 2007-2012 2007-2012\n", + "13988 Angola 2008 m 55-64yo 733.0 2007-2012 2007-2012\n", + "13989 Angola 2009 m 55-64yo 748.0 2007-2012 2007-2012\n", + "13990 Angola 2010 m 55-64yo 691.0 2007-2012 2007-2012\n", + "13991 Angola 2011 m 55-64yo 680.0 2007-2012 2007-2012\n", + "13992 Angola 2012 m 55-64yo 732.0 2007-2012 2007-2012\n", + "16763 Angola 2000 m >=65yo 194.0 2000-2006 2000-2006\n", + "16764 Angola 2001 m >=65yo 173.0 2000-2006 2000-2006\n", + "16765 Angola 2002 m >=65yo 444.0 2000-2006 2000-2006\n", + "16766 Angola 2003 m >=65yo 361.0 2000-2006 2000-2006\n", + "16767 Angola 2004 m >=65yo 321.0 2000-2006 2000-2006\n", + "16768 Angola 2005 m >=65yo 461.0 2000-2006 2000-2006\n", + "16769 Angola 2006 m >=65yo 428.0 2000-2006 2000-2006\n", + "16770 Angola 2007 m >=65yo 465.0 2007-2012 2007-2012\n", + "16771 Angola 2008 m >=65yo 420.0 2007-2012 2007-2012\n", + "16772 Angola 2009 m >=65yo 463.0 2007-2012 2007-2012\n", + "16773 Angola 2010 m >=65yo 355.0 2007-2012 2007-2012\n", + "16774 Angola 2011 m >=65yo 455.0 2007-2012 2007-2012\n", + "16775 Angola 2012 m >=65yo 424.0 2007-2012 2007-2012\n", + "19546 Angola 2000 f <=14yo 247.0 2000-2006 2000-2006\n", + "19547 Angola 2001 f <=14yo 279.0 2000-2006 2000-2006\n", + "19548 Angola 2002 f <=14yo 640.0 2000-2006 2000-2006\n", + "19549 Angola 2003 f <=14yo 591.0 2000-2006 2000-2006\n", + "19550 Angola 2004 f <=14yo 733.0 2000-2006 2000-2006\n", + "19551 Angola 2005 f <=14yo 704.0 2000-2006 2000-2006\n", + "19552 Angola 2006 f <=14yo 689.0 2000-2006 2000-2006\n", + "19553 Angola 2007 f <=14yo 703.0 2007-2012 2007-2012\n", + "19554 Angola 2008 f <=14yo 512.0 2007-2012 2007-2012\n", + "19555 Angola 2009 f <=14yo 568.0 2007-2012 2007-2012\n", + "19556 Angola 2010 f <=14yo 558.0 2007-2012 2007-2012\n", + "19557 Angola 2011 f <=14yo 708.0 2007-2012 2007-2012\n", + "19558 Angola 2012 f <=14yo 592.0 2007-2012 2007-2012\n", + "22329 Angola 2000 f 15-24yo 1142.0 2000-2006 2000-2006\n", + "22330 Angola 2001 f 15-24yo 993.0 2000-2006 2000-2006\n", + "22331 Angola 2002 f 15-24yo 2610.0 2000-2006 2000-2006\n", + "22332 Angola 2003 f 15-24yo 3078.0 2000-2006 2000-2006\n", + "22333 Angola 2004 f 15-24yo 3198.0 2000-2006 2000-2006\n", + "22334 Angola 2005 f 15-24yo 2926.0 2000-2006 2000-2006\n", + "22335 Angola 2006 f 15-24yo 2851.0 2000-2006 2000-2006\n", + "22336 Angola 2007 f 15-24yo 2943.0 2007-2012 2007-2012\n", + "22337 Angola 2008 f 15-24yo 3199.0 2007-2012 2007-2012\n", + "22338 Angola 2009 f 15-24yo 3152.0 2007-2012 2007-2012\n", + "22339 Angola 2010 f 15-24yo 2763.0 2007-2012 2007-2012\n", + "22340 Angola 2011 f 15-24yo 2731.0 2007-2012 2007-2012\n", + "22341 Angola 2012 f 15-24yo 2501.0 2007-2012 2007-2012\n", + "25112 Angola 2000 f 25-34yo 1091.0 2000-2006 2000-2006\n", + "25113 Angola 2001 f 25-34yo 869.0 2000-2006 2000-2006\n", + "25114 Angola 2002 f 25-34yo 2208.0 2000-2006 2000-2006\n", + "25115 Angola 2003 f 25-34yo 2641.0 2000-2006 2000-2006\n", + "25116 Angola 2004 f 25-34yo 2772.0 2000-2006 2000-2006\n", + "25117 Angola 2005 f 25-34yo 2682.0 2000-2006 2000-2006\n", + "25118 Angola 2006 f 25-34yo 2892.0 2000-2006 2000-2006\n", + "25119 Angola 2007 f 25-34yo 2721.0 2007-2012 2007-2012\n", + "25120 Angola 2008 f 25-34yo 2786.0 2007-2012 2007-2012\n", + "25121 Angola 2009 f 25-34yo 2798.0 2007-2012 2007-2012\n", + "25122 Angola 2010 f 25-34yo 2594.0 2007-2012 2007-2012\n", + "25123 Angola 2011 f 25-34yo 2563.0 2007-2012 2007-2012\n", + "25124 Angola 2012 f 25-34yo 2540.0 2007-2012 2007-2012\n", + "27895 Angola 2000 f 35-44yo 844.0 2000-2006 2000-2006\n", + "27896 Angola 2001 f 35-44yo 647.0 2000-2006 2000-2006\n", + "27897 Angola 2002 f 35-44yo 1600.0 2000-2006 2000-2006\n", + "27898 Angola 2003 f 35-44yo 1747.0 2000-2006 2000-2006\n", + "27899 Angola 2004 f 35-44yo 1854.0 2000-2006 2000-2006\n", + "27900 Angola 2005 f 35-44yo 1797.0 2000-2006 2000-2006\n", + "27901 Angola 2006 f 35-44yo 1990.0 2000-2006 2000-2006\n", + "27902 Angola 2007 f 35-44yo 1812.0 2007-2012 2007-2012\n", + "27903 Angola 2008 f 35-44yo 2082.0 2007-2012 2007-2012\n", + "27904 Angola 2009 f 35-44yo 1790.0 2007-2012 2007-2012\n", + "27905 Angola 2010 f 35-44yo 1688.0 2007-2012 2007-2012\n", + "27906 Angola 2011 f 35-44yo 1683.0 2007-2012 2007-2012\n", + "27907 Angola 2012 f 35-44yo 1617.0 2007-2012 2007-2012\n", + "30678 Angola 2000 f 45-54yo 417.0 2000-2006 2000-2006\n", + "30679 Angola 2001 f 45-54yo 323.0 2000-2006 2000-2006\n", + "30680 Angola 2002 f 45-54yo 972.0 2000-2006 2000-2006\n", + "30681 Angola 2003 f 45-54yo 1157.0 2000-2006 2000-2006\n", + "30682 Angola 2004 f 45-54yo 1029.0 2000-2006 2000-2006\n", + "30683 Angola 2005 f 45-54yo 1138.0 2000-2006 2000-2006\n", + "30684 Angola 2006 f 45-54yo 1223.0 2000-2006 2000-2006\n", + "30685 Angola 2007 f 45-54yo 1041.0 2007-2012 2007-2012\n", + "30686 Angola 2008 f 45-54yo 1209.0 2007-2012 2007-2012\n", + "30687 Angola 2009 f 45-54yo 1069.0 2007-2012 2007-2012\n", + "30688 Angola 2010 f 45-54yo 958.0 2007-2012 2007-2012\n", + "30689 Angola 2011 f 45-54yo 1006.0 2007-2012 2007-2012\n", + "30690 Angola 2012 f 45-54yo 1028.0 2007-2012 2007-2012\n", + "33461 Angola 2000 f 55-64yo 200.0 2000-2006 2000-2006\n", + "33462 Angola 2001 f 55-64yo 200.0 2000-2006 2000-2006\n", + "33463 Angola 2002 f 55-64yo 533.0 2000-2006 2000-2006\n", + "33464 Angola 2003 f 55-64yo 395.0 2000-2006 2000-2006\n", + "33465 Angola 2004 f 55-64yo 505.0 2000-2006 2000-2006\n", + "33466 Angola 2005 f 55-64yo 581.0 2000-2006 2000-2006\n", + "33467 Angola 2006 f 55-64yo 583.0 2000-2006 2000-2006\n", + "33468 Angola 2007 f 55-64yo 554.0 2007-2012 2007-2012\n", + "33469 Angola 2008 f 55-64yo 556.0 2007-2012 2007-2012\n", + "33470 Angola 2009 f 55-64yo 572.0 2007-2012 2007-2012\n", + "33471 Angola 2010 f 55-64yo 482.0 2007-2012 2007-2012\n", + "33472 Angola 2011 f 55-64yo 457.0 2007-2012 2007-2012\n", + "33473 Angola 2012 f 55-64yo 529.0 2007-2012 2007-2012\n", + "36244 Angola 2000 f >=65yo 120.0 2000-2006 2000-2006\n", + "36245 Angola 2001 f >=65yo 182.0 2000-2006 2000-2006\n", + "36246 Angola 2002 f >=65yo 305.0 2000-2006 2000-2006\n", + "36247 Angola 2003 f >=65yo 129.0 2000-2006 2000-2006\n", + "36248 Angola 2004 f >=65yo 269.0 2000-2006 2000-2006\n", + "36249 Angola 2005 f >=65yo 417.0 2000-2006 2000-2006\n", + "36250 Angola 2006 f >=65yo 314.0 2000-2006 2000-2006\n", + "36251 Angola 2007 f >=65yo 367.0 2007-2012 2007-2012\n", + "36252 Angola 2008 f >=65yo 337.0 2007-2012 2007-2012\n", + "36253 Angola 2009 f >=65yo 272.0 2007-2012 2007-2012\n", + "36254 Angola 2010 f >=65yo 286.0 2007-2012 2007-2012\n", + "36255 Angola 2011 f >=65yo 346.0 2007-2012 2007-2012\n", + "36256 Angola 2012 f >=65yo 384.0 2007-2012 2007-2012" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb['year_range'] = tb['year'].between(2000, 2006).map({True: '2000-2006', False: '2007-2012'})\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "id": "e987b783", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
countryyear_range
Afghanistan2000-200667.832.2
2007-201267.432.6
Albania2000-200632.467.6
2007-201230.569.5
Algeria2000-200641.158.9
2007-201238.561.5
American Samoa2000-200664.735.3
2007-2012NaNNaN
Andorra2000-200635.764.3
2007-201250.050.0
Angola2000-200650.249.8
2007-201245.354.7
Anguilla2000-2006100.00.0
2007-20120.0100.0
Antigua and Barbuda2000-200668.831.2
2007-201210.090.0
Argentina2000-200642.957.1
2007-201244.255.8
Armenia2000-200617.582.5
2007-201220.479.6
Aruba2000-2006NaNNaN
2007-201252.447.6
Australia2000-200637.462.6
2007-201241.358.7
Austria2000-200627.872.2
2007-201233.566.5
Azerbaijan2000-200620.979.1
2007-201225.974.1
Bahamas2000-200641.158.9
2007-201232.967.1
Bahrain2000-200631.069.0
2007-201230.469.6
Bangladesh2000-200631.268.8
2007-201233.766.3
Barbados2000-200631.668.4
2007-201235.364.7
Belarus2000-200619.580.5
2007-201223.376.7
Belgium2000-200630.469.6
2007-201232.867.2
Belize2000-200636.663.4
2007-201231.268.8
Benin2000-200636.263.8
2007-201234.865.2
Bermuda2000-200650.050.0
2007-201250.050.0
Bhutan2000-200643.456.6
2007-201250.949.1
Bolivia (Plurinational State of)2000-200640.659.4
2007-201239.460.6
Bonaire, Saint Eustatius and Saba2007-2012NaNNaN
Bosnia and Herzegovina2000-200642.657.4
2007-201240.259.8
Botswana2000-200643.756.3
2007-201243.956.1
Brazil2000-200634.965.1
2007-201231.768.3
British Virgin Islands2000-200650.050.0
2007-20120.0100.0
Brunei Darussalam2000-200638.661.4
2007-201238.062.0
Bulgaria2000-200631.468.6
2007-201228.571.5
Burkina Faso2000-200632.367.7
2007-201231.268.8
Burundi2000-200638.561.5
2007-201234.365.7
Cabo Verde2000-200639.660.4
2007-201229.870.2
Cambodia2000-200648.851.2
2007-201247.053.0
Cameroon2000-200640.159.9
2007-201240.060.0
Canada2000-200642.657.4
2007-201239.260.8
Cayman Islands2000-200614.385.7
2007-201211.188.9
Central African Republic2000-200643.856.2
2007-201245.154.9
Chad2000-200639.460.6
2007-201233.067.0
Chile2000-200632.767.3
2007-201231.568.5
China2000-200631.368.7
2007-201228.771.3
China, Hong Kong SAR2000-200630.969.1
2007-201231.668.4
China, Macao SAR2000-200628.971.1
2007-201231.968.1
Colombia2000-200640.060.0
2007-201239.660.4
Comoros2000-200643.156.9
2007-201232.567.5
Congo2000-200646.353.7
2007-201244.855.2
Cook Islands2000-20060.0100.0
2007-201225.075.0
Costa Rica2000-200635.164.9
2007-201234.765.3
Cote d'Ivoire2000-200641.158.9
2007-201239.960.1
Croatia2000-200633.266.8
2007-201232.068.0
Cuba2000-200624.076.0
2007-201222.677.4
Curacao2007-201250.050.0
Cyprus2000-200627.172.9
2007-201246.753.3
Czech Republic2000-200627.172.9
2007-201224.076.0
Democratic People's Republic of Korea2000-200638.561.5
2007-201236.963.1
Democratic Republic of the Congo2000-200646.953.1
2007-201245.754.3
Denmark2000-200638.161.9
2007-201233.067.0
Djibouti2000-200632.467.6
2007-201234.965.1
Dominica2000-200650.050.0
2007-201224.076.0
Dominican Republic2000-200639.660.4
2007-201238.161.9
Ecuador2000-200640.759.3
2007-201236.863.2
Egypt2000-200634.066.0
2007-201232.967.1
El Salvador2000-200639.660.4
2007-201236.363.7
Equatorial Guinea2000-200639.760.3
2007-201242.157.9
Eritrea2000-200653.546.5
2007-201244.855.2
Estonia2000-200626.673.4
2007-201225.874.2
Ethiopia2000-200645.354.7
2007-201244.555.5
Fiji2000-200638.561.5
2007-201245.954.1
Finland2000-200634.965.1
2007-201233.466.6
France2000-200634.265.8
2007-201236.763.3
French Polynesia2000-200645.554.5
2007-201245.654.4
Gabon2000-200640.259.8
2007-201239.760.3
Gambia2000-200629.870.2
2007-201232.367.7
Georgia2000-200624.076.0
2007-201223.476.6
Germany2000-200634.565.5
2007-201234.165.9
Ghana2000-200634.965.1
2007-201233.466.6
Greece2000-200629.170.9
2007-201228.571.5
Greenland2000-2006NaNNaN
2007-201239.560.5
Grenada2000-200650.050.0
2007-201222.277.8
Guam2000-200635.164.9
2007-201231.268.8
Guatemala2000-200646.153.9
2007-201246.553.5
Guinea2000-200634.066.0
2007-201234.965.1
Guinea-Bissau2000-200639.860.2
2007-201239.160.9
Guyana2000-200631.868.2
2007-201228.072.0
Haiti2000-200649.950.1
2007-201248.751.3
Honduras2000-200644.655.4
2007-201240.159.9
Hungary2000-200626.373.7
2007-201228.571.5
Iceland2000-200640.060.0
2007-201250.050.0
India2000-200630.969.1
2007-201230.669.4
Indonesia2000-200641.858.2
2007-201240.859.2
Iran (Islamic Republic of)2000-200649.850.2
2007-201249.750.3
Iraq2000-200634.565.5
2007-201242.757.3
Ireland2000-200635.864.2
2007-201233.067.0
Israel2000-200638.761.3
2007-201236.163.9
Italy2000-200634.765.3
2007-201236.963.1
Jamaica2000-200628.471.6
2007-201232.367.7
Japan2000-200630.469.6
2007-201233.366.7
Jordan2000-200634.265.8
2007-201246.653.4
Kazakhstan2000-200637.862.2
2007-201237.862.2
Kenya2000-200642.157.9
2007-201239.360.7
Kiribati2000-200647.053.0
2007-201248.251.8
Kuwait2000-200635.464.6
2007-201242.757.3
Kyrgyzstan2000-200639.160.9
2007-201240.859.2
Lao People's Democratic Republic2000-200638.761.3
2007-201238.961.1
Latvia2000-200626.273.8
2007-201225.374.7
Lebanon2000-200641.258.8
2007-201258.241.8
Lesotho2000-200644.255.8
2007-201243.756.3
Liberia2000-200643.057.0
2007-201244.355.7
Libya2000-200621.578.5
2007-201223.476.6
Lithuania2000-200626.773.3
2007-201225.274.8
Luxembourg2000-200639.360.7
2007-20120.0100.0
Madagascar2000-200640.859.2
2007-201241.059.0
Malawi2000-200649.550.5
2007-201244.355.7
Malaysia2000-200631.368.7
2007-201233.166.9
Maldives2000-200638.761.3
2007-201232.767.3
Mali2000-200632.267.8
2007-201233.666.4
Malta2000-200616.084.0
2007-201220.080.0
Marshall Islands2000-200651.148.9
2007-201251.448.6
Mauritania2000-200628.771.3
2007-201229.170.9
Mauritius2000-200629.470.6
2007-201230.669.4
Mexico2000-200638.461.6
2007-201237.962.1
Micronesia (Federated States of)2000-200655.544.5
2007-201252.647.4
Monaco2000-2006NaNNaN
2007-2012NaNNaN
Mongolia2000-200646.453.6
2007-201243.456.6
Montenegro2000-200634.465.6
2007-201242.157.9
Montserrat2000-20060.0100.0
2007-2012100.00.0
Morocco2000-200634.165.9
2007-201229.970.1
Mozambique2000-2006NaNNaN
2007-2012NaNNaN
Myanmar2000-200634.165.9
2007-201234.265.8
Namibia2000-200642.957.1
2007-201243.256.8
Nauru2000-200650.050.0
2007-201230.070.0
Nepal2000-200632.967.1
2007-201232.167.9
Netherlands2000-200632.068.0
2007-201235.364.7
Netherlands Antilles2000-200623.176.9
2007-2012NaNNaN
New Caledonia2000-200642.357.7
2007-201232.567.5
New Zealand2000-200646.853.2
2007-201246.153.9
Nicaragua2000-200644.455.6
2007-201242.657.4
Niger2000-200628.271.8
2007-201226.074.0
Nigeria2000-200641.858.2
2007-201239.860.2
Niue2000-2006100.00.0
2007-2012NaNNaN
Northern Mariana Islands2000-200646.453.6
2007-201237.262.8
Norway2000-200642.457.6
2007-201237.262.8
Oman2000-200639.660.4
2007-201238.161.9
Pakistan2000-200648.751.3
2007-201248.751.3
Palau2000-200632.467.6
2007-201239.360.7
Panama2000-200636.263.8
2007-201236.463.6
Papua New Guinea2000-200648.451.6
2007-201248.451.6
Paraguay2000-200635.764.3
2007-201230.669.4
Peru2000-200642.757.3
2007-201242.957.1
Philippines2000-200630.969.1
2007-201229.770.3
Poland2000-200630.469.6
2007-201228.671.4
Portugal2000-200625.974.1
2007-201226.373.7
Puerto Rico2000-200632.167.9
2007-201229.470.6
Qatar2000-200622.277.8
2007-201214.885.2
Republic of Korea2000-200636.963.1
2007-201240.359.7
Republic of Moldova2000-200623.876.2
2007-201222.177.9
Romania2000-200628.671.4
2007-201229.170.9
Russian Federation2000-200623.876.2
2007-201226.373.7
Rwanda2000-200636.263.8
2007-201235.864.2
Saint Kitts and Nevis2000-200675.025.0
2007-201227.872.2
Saint Lucia2000-200637.762.3
2007-201225.774.3
Saint Vincent and the Grenadines2000-200624.475.6
2007-201223.576.5
Samoa2000-200650.050.0
2007-201282.817.2
San Marino2000-20060.0100.0
2007-2012NaNNaN
Sao Tome and Principe2000-200647.552.5
2007-201238.961.1
Saudi Arabia2000-200639.360.7
2007-201238.561.5
Senegal2000-200631.468.6
2007-201230.969.1
Serbia2000-200638.961.1
2007-201240.060.0
Serbia & Montenegro2000-200639.860.2
Seychelles2000-200628.871.2
2007-201225.774.3
Sierra Leone2000-200638.461.6
2007-201237.462.6
Singapore2000-200625.974.1
2007-201225.574.5
Sint Maarten (Dutch part)2007-201266.733.3
Slovakia2000-200632.867.2
2007-201228.571.5
Slovenia2000-200634.665.4
2007-201234.165.9
Solomon Islands2000-200653.446.6
2007-201251.448.6
Somalia2000-200635.564.5
2007-201235.564.5
South Africa2000-200643.756.3
2007-201245.754.3
South Sudan2007-201235.065.0
Spain2000-200632.068.0
2007-201234.066.0
Sri Lanka2000-200627.272.8
2007-201226.573.5
Sudan2000-200640.159.9
2007-201237.662.4
Suriname2000-200628.471.6
2007-201230.369.7
Swaziland2000-200648.851.2
2007-201251.049.0
Sweden2000-200643.956.1
2007-201240.759.3
Switzerland2000-200637.063.0
2007-201240.559.5
Syrian Arab Republic2000-200635.164.9
2007-201237.162.9
Tajikistan2000-200640.859.2
2007-201243.956.1
Thailand2000-200629.770.3
2007-201230.070.0
The Former Yugoslav Republic of Macedonia2000-200636.963.1
2007-201234.365.7
Timor-Leste2000-200642.557.5
2007-201244.955.1
Togo2000-200638.861.2
2007-201239.061.0
Tokelau2000-2006NaNNaN
2007-2012NaNNaN
Tonga2000-200640.259.8
2007-201242.357.7
Trinidad and Tobago2000-200629.670.4
2007-201226.673.4
Tunisia2000-200626.873.2
2007-201228.771.3
Turkey2000-200627.073.0
2007-201228.271.8
Turkmenistan2000-200634.965.1
2007-201236.563.5
Turks and Caicos Islands2000-200666.733.3
2007-201231.268.8
Tuvalu2000-200638.561.5
2007-201251.049.0
US Virgin Islands2000-2006NaNNaN
2007-2012NaNNaN
Uganda2000-200641.558.5
2007-201236.763.3
Ukraine2000-200623.176.9
2007-201224.875.2
United Arab Emirates2000-200645.754.3
2007-201241.558.5
United Kingdom of Great Britain and Northern Ireland2000-200640.259.8
2007-201239.160.9
United Republic of Tanzania2000-200637.762.3
2007-201236.563.5
United States of America2000-200631.968.1
2007-201232.467.6
Uruguay2000-200630.769.3
2007-201229.071.0
Uzbekistan2000-200642.257.8
2007-201242.657.4
Vanuatu2000-200645.354.7
2007-201254.545.5
Venezuela (Bolivarian Republic of)2000-200639.460.6
2007-201239.560.5
Viet Nam2000-200628.871.2
2007-201225.874.2
Wallis and Futuna Islands2000-200641.258.8
2007-201216.783.3
West Bank and Gaza Strip2000-200633.366.7
2007-201229.670.4
Yemen2000-200645.154.9
2007-201244.855.2
Zambia2000-200643.656.4
2007-201239.760.3
Zimbabwe2000-200646.453.6
2007-201246.453.6
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country year_range \n", + "Afghanistan 2000-2006 67.8 32.2\n", + " 2007-2012 67.4 32.6\n", + "Albania 2000-2006 32.4 67.6\n", + " 2007-2012 30.5 69.5\n", + "Algeria 2000-2006 41.1 58.9\n", + " 2007-2012 38.5 61.5\n", + "American Samoa 2000-2006 64.7 35.3\n", + " 2007-2012 NaN NaN\n", + "Andorra 2000-2006 35.7 64.3\n", + " 2007-2012 50.0 50.0\n", + "Angola 2000-2006 50.2 49.8\n", + " 2007-2012 45.3 54.7\n", + "Anguilla 2000-2006 100.0 0.0\n", + " 2007-2012 0.0 100.0\n", + "Antigua and Barbuda 2000-2006 68.8 31.2\n", + " 2007-2012 10.0 90.0\n", + "Argentina 2000-2006 42.9 57.1\n", + " 2007-2012 44.2 55.8\n", + "Armenia 2000-2006 17.5 82.5\n", + " 2007-2012 20.4 79.6\n", + "Aruba 2000-2006 NaN NaN\n", + " 2007-2012 52.4 47.6\n", + "Australia 2000-2006 37.4 62.6\n", + " 2007-2012 41.3 58.7\n", + "Austria 2000-2006 27.8 72.2\n", + " 2007-2012 33.5 66.5\n", + "Azerbaijan 2000-2006 20.9 79.1\n", + " 2007-2012 25.9 74.1\n", + "Bahamas 2000-2006 41.1 58.9\n", + " 2007-2012 32.9 67.1\n", + "Bahrain 2000-2006 31.0 69.0\n", + " 2007-2012 30.4 69.6\n", + "Bangladesh 2000-2006 31.2 68.8\n", + " 2007-2012 33.7 66.3\n", + "Barbados 2000-2006 31.6 68.4\n", + " 2007-2012 35.3 64.7\n", + "Belarus 2000-2006 19.5 80.5\n", + " 2007-2012 23.3 76.7\n", + "Belgium 2000-2006 30.4 69.6\n", + " 2007-2012 32.8 67.2\n", + "Belize 2000-2006 36.6 63.4\n", + " 2007-2012 31.2 68.8\n", + "Benin 2000-2006 36.2 63.8\n", + " 2007-2012 34.8 65.2\n", + "Bermuda 2000-2006 50.0 50.0\n", + " 2007-2012 50.0 50.0\n", + "Bhutan 2000-2006 43.4 56.6\n", + " 2007-2012 50.9 49.1\n", + "Bolivia (Plurinational State of) 2000-2006 40.6 59.4\n", + " 2007-2012 39.4 60.6\n", + "Bonaire, Saint Eustatius and Saba 2007-2012 NaN NaN\n", + "Bosnia and Herzegovina 2000-2006 42.6 57.4\n", + " 2007-2012 40.2 59.8\n", + "Botswana 2000-2006 43.7 56.3\n", + " 2007-2012 43.9 56.1\n", + "Brazil 2000-2006 34.9 65.1\n", + " 2007-2012 31.7 68.3\n", + "British Virgin Islands 2000-2006 50.0 50.0\n", + " 2007-2012 0.0 100.0\n", + "Brunei Darussalam 2000-2006 38.6 61.4\n", + " 2007-2012 38.0 62.0\n", + "Bulgaria 2000-2006 31.4 68.6\n", + " 2007-2012 28.5 71.5\n", + "Burkina Faso 2000-2006 32.3 67.7\n", + " 2007-2012 31.2 68.8\n", + "Burundi 2000-2006 38.5 61.5\n", + " 2007-2012 34.3 65.7\n", + "Cabo Verde 2000-2006 39.6 60.4\n", + " 2007-2012 29.8 70.2\n", + "Cambodia 2000-2006 48.8 51.2\n", + " 2007-2012 47.0 53.0\n", + "Cameroon 2000-2006 40.1 59.9\n", + " 2007-2012 40.0 60.0\n", + "Canada 2000-2006 42.6 57.4\n", + " 2007-2012 39.2 60.8\n", + "Cayman Islands 2000-2006 14.3 85.7\n", + " 2007-2012 11.1 88.9\n", + "Central African Republic 2000-2006 43.8 56.2\n", + " 2007-2012 45.1 54.9\n", + "Chad 2000-2006 39.4 60.6\n", + " 2007-2012 33.0 67.0\n", + "Chile 2000-2006 32.7 67.3\n", + " 2007-2012 31.5 68.5\n", + "China 2000-2006 31.3 68.7\n", + " 2007-2012 28.7 71.3\n", + "China, Hong Kong SAR 2000-2006 30.9 69.1\n", + " 2007-2012 31.6 68.4\n", + "China, Macao SAR 2000-2006 28.9 71.1\n", + " 2007-2012 31.9 68.1\n", + "Colombia 2000-2006 40.0 60.0\n", + " 2007-2012 39.6 60.4\n", + "Comoros 2000-2006 43.1 56.9\n", + " 2007-2012 32.5 67.5\n", + "Congo 2000-2006 46.3 53.7\n", + " 2007-2012 44.8 55.2\n", + "Cook Islands 2000-2006 0.0 100.0\n", + " 2007-2012 25.0 75.0\n", + "Costa Rica 2000-2006 35.1 64.9\n", + " 2007-2012 34.7 65.3\n", + "Cote d'Ivoire 2000-2006 41.1 58.9\n", + " 2007-2012 39.9 60.1\n", + "Croatia 2000-2006 33.2 66.8\n", + " 2007-2012 32.0 68.0\n", + "Cuba 2000-2006 24.0 76.0\n", + " 2007-2012 22.6 77.4\n", + "Curacao 2007-2012 50.0 50.0\n", + "Cyprus 2000-2006 27.1 72.9\n", + " 2007-2012 46.7 53.3\n", + "Czech Republic 2000-2006 27.1 72.9\n", + " 2007-2012 24.0 76.0\n", + "Democratic People's Republic of Korea 2000-2006 38.5 61.5\n", + " 2007-2012 36.9 63.1\n", + "Democratic Republic of the Congo 2000-2006 46.9 53.1\n", + " 2007-2012 45.7 54.3\n", + "Denmark 2000-2006 38.1 61.9\n", + " 2007-2012 33.0 67.0\n", + "Djibouti 2000-2006 32.4 67.6\n", + " 2007-2012 34.9 65.1\n", + "Dominica 2000-2006 50.0 50.0\n", + " 2007-2012 24.0 76.0\n", + "Dominican Republic 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Ecuador 2000-2006 40.7 59.3\n", + " 2007-2012 36.8 63.2\n", + "Egypt 2000-2006 34.0 66.0\n", + " 2007-2012 32.9 67.1\n", + "El Salvador 2000-2006 39.6 60.4\n", + " 2007-2012 36.3 63.7\n", + "Equatorial Guinea 2000-2006 39.7 60.3\n", + " 2007-2012 42.1 57.9\n", + "Eritrea 2000-2006 53.5 46.5\n", + " 2007-2012 44.8 55.2\n", + "Estonia 2000-2006 26.6 73.4\n", + " 2007-2012 25.8 74.2\n", + "Ethiopia 2000-2006 45.3 54.7\n", + " 2007-2012 44.5 55.5\n", + "Fiji 2000-2006 38.5 61.5\n", + " 2007-2012 45.9 54.1\n", + "Finland 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "France 2000-2006 34.2 65.8\n", + " 2007-2012 36.7 63.3\n", + "French Polynesia 2000-2006 45.5 54.5\n", + " 2007-2012 45.6 54.4\n", + "Gabon 2000-2006 40.2 59.8\n", + " 2007-2012 39.7 60.3\n", + "Gambia 2000-2006 29.8 70.2\n", + " 2007-2012 32.3 67.7\n", + "Georgia 2000-2006 24.0 76.0\n", + " 2007-2012 23.4 76.6\n", + "Germany 2000-2006 34.5 65.5\n", + " 2007-2012 34.1 65.9\n", + "Ghana 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "Greece 2000-2006 29.1 70.9\n", + " 2007-2012 28.5 71.5\n", + "Greenland 2000-2006 NaN NaN\n", + " 2007-2012 39.5 60.5\n", + "Grenada 2000-2006 50.0 50.0\n", + " 2007-2012 22.2 77.8\n", + "Guam 2000-2006 35.1 64.9\n", + " 2007-2012 31.2 68.8\n", + "Guatemala 2000-2006 46.1 53.9\n", + " 2007-2012 46.5 53.5\n", + "Guinea 2000-2006 34.0 66.0\n", + " 2007-2012 34.9 65.1\n", + "Guinea-Bissau 2000-2006 39.8 60.2\n", + " 2007-2012 39.1 60.9\n", + "Guyana 2000-2006 31.8 68.2\n", + " 2007-2012 28.0 72.0\n", + "Haiti 2000-2006 49.9 50.1\n", + " 2007-2012 48.7 51.3\n", + "Honduras 2000-2006 44.6 55.4\n", + " 2007-2012 40.1 59.9\n", + "Hungary 2000-2006 26.3 73.7\n", + " 2007-2012 28.5 71.5\n", + "Iceland 2000-2006 40.0 60.0\n", + " 2007-2012 50.0 50.0\n", + "India 2000-2006 30.9 69.1\n", + " 2007-2012 30.6 69.4\n", + "Indonesia 2000-2006 41.8 58.2\n", + " 2007-2012 40.8 59.2\n", + "Iran (Islamic Republic of) 2000-2006 49.8 50.2\n", + " 2007-2012 49.7 50.3\n", + "Iraq 2000-2006 34.5 65.5\n", + " 2007-2012 42.7 57.3\n", + "Ireland 2000-2006 35.8 64.2\n", + " 2007-2012 33.0 67.0\n", + "Israel 2000-2006 38.7 61.3\n", + " 2007-2012 36.1 63.9\n", + "Italy 2000-2006 34.7 65.3\n", + " 2007-2012 36.9 63.1\n", + "Jamaica 2000-2006 28.4 71.6\n", + " 2007-2012 32.3 67.7\n", + "Japan 2000-2006 30.4 69.6\n", + " 2007-2012 33.3 66.7\n", + "Jordan 2000-2006 34.2 65.8\n", + " 2007-2012 46.6 53.4\n", + "Kazakhstan 2000-2006 37.8 62.2\n", + " 2007-2012 37.8 62.2\n", + "Kenya 2000-2006 42.1 57.9\n", + " 2007-2012 39.3 60.7\n", + "Kiribati 2000-2006 47.0 53.0\n", + " 2007-2012 48.2 51.8\n", + "Kuwait 2000-2006 35.4 64.6\n", + " 2007-2012 42.7 57.3\n", + "Kyrgyzstan 2000-2006 39.1 60.9\n", + " 2007-2012 40.8 59.2\n", + "Lao People's Democratic Republic 2000-2006 38.7 61.3\n", + " 2007-2012 38.9 61.1\n", + "Latvia 2000-2006 26.2 73.8\n", + " 2007-2012 25.3 74.7\n", + "Lebanon 2000-2006 41.2 58.8\n", + " 2007-2012 58.2 41.8\n", + "Lesotho 2000-2006 44.2 55.8\n", + " 2007-2012 43.7 56.3\n", + "Liberia 2000-2006 43.0 57.0\n", + " 2007-2012 44.3 55.7\n", + "Libya 2000-2006 21.5 78.5\n", + " 2007-2012 23.4 76.6\n", + "Lithuania 2000-2006 26.7 73.3\n", + " 2007-2012 25.2 74.8\n", + "Luxembourg 2000-2006 39.3 60.7\n", + " 2007-2012 0.0 100.0\n", + "Madagascar 2000-2006 40.8 59.2\n", + " 2007-2012 41.0 59.0\n", + "Malawi 2000-2006 49.5 50.5\n", + " 2007-2012 44.3 55.7\n", + "Malaysia 2000-2006 31.3 68.7\n", + " 2007-2012 33.1 66.9\n", + "Maldives 2000-2006 38.7 61.3\n", + " 2007-2012 32.7 67.3\n", + "Mali 2000-2006 32.2 67.8\n", + " 2007-2012 33.6 66.4\n", + "Malta 2000-2006 16.0 84.0\n", + " 2007-2012 20.0 80.0\n", + "Marshall Islands 2000-2006 51.1 48.9\n", + " 2007-2012 51.4 48.6\n", + "Mauritania 2000-2006 28.7 71.3\n", + " 2007-2012 29.1 70.9\n", + "Mauritius 2000-2006 29.4 70.6\n", + " 2007-2012 30.6 69.4\n", + "Mexico 2000-2006 38.4 61.6\n", + " 2007-2012 37.9 62.1\n", + "Micronesia (Federated States of) 2000-2006 55.5 44.5\n", + " 2007-2012 52.6 47.4\n", + "Monaco 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Mongolia 2000-2006 46.4 53.6\n", + " 2007-2012 43.4 56.6\n", + "Montenegro 2000-2006 34.4 65.6\n", + " 2007-2012 42.1 57.9\n", + "Montserrat 2000-2006 0.0 100.0\n", + " 2007-2012 100.0 0.0\n", + "Morocco 2000-2006 34.1 65.9\n", + " 2007-2012 29.9 70.1\n", + "Mozambique 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Myanmar 2000-2006 34.1 65.9\n", + " 2007-2012 34.2 65.8\n", + "Namibia 2000-2006 42.9 57.1\n", + " 2007-2012 43.2 56.8\n", + "Nauru 2000-2006 50.0 50.0\n", + " 2007-2012 30.0 70.0\n", + "Nepal 2000-2006 32.9 67.1\n", + " 2007-2012 32.1 67.9\n", + "Netherlands 2000-2006 32.0 68.0\n", + " 2007-2012 35.3 64.7\n", + "Netherlands Antilles 2000-2006 23.1 76.9\n", + " 2007-2012 NaN NaN\n", + "New Caledonia 2000-2006 42.3 57.7\n", + " 2007-2012 32.5 67.5\n", + "New Zealand 2000-2006 46.8 53.2\n", + " 2007-2012 46.1 53.9\n", + "Nicaragua 2000-2006 44.4 55.6\n", + " 2007-2012 42.6 57.4\n", + "Niger 2000-2006 28.2 71.8\n", + " 2007-2012 26.0 74.0\n", + "Nigeria 2000-2006 41.8 58.2\n", + " 2007-2012 39.8 60.2\n", + "Niue 2000-2006 100.0 0.0\n", + " 2007-2012 NaN NaN\n", + "Northern Mariana Islands 2000-2006 46.4 53.6\n", + " 2007-2012 37.2 62.8\n", + "Norway 2000-2006 42.4 57.6\n", + " 2007-2012 37.2 62.8\n", + "Oman 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Pakistan 2000-2006 48.7 51.3\n", + " 2007-2012 48.7 51.3\n", + "Palau 2000-2006 32.4 67.6\n", + " 2007-2012 39.3 60.7\n", + "Panama 2000-2006 36.2 63.8\n", + " 2007-2012 36.4 63.6\n", + "Papua New Guinea 2000-2006 48.4 51.6\n", + " 2007-2012 48.4 51.6\n", + "Paraguay 2000-2006 35.7 64.3\n", + " 2007-2012 30.6 69.4\n", + "Peru 2000-2006 42.7 57.3\n", + " 2007-2012 42.9 57.1\n", + "Philippines 2000-2006 30.9 69.1\n", + " 2007-2012 29.7 70.3\n", + "Poland 2000-2006 30.4 69.6\n", + " 2007-2012 28.6 71.4\n", + "Portugal 2000-2006 25.9 74.1\n", + " 2007-2012 26.3 73.7\n", + "Puerto Rico 2000-2006 32.1 67.9\n", + " 2007-2012 29.4 70.6\n", + "Qatar 2000-2006 22.2 77.8\n", + " 2007-2012 14.8 85.2\n", + "Republic of Korea 2000-2006 36.9 63.1\n", + " 2007-2012 40.3 59.7\n", + "Republic of Moldova 2000-2006 23.8 76.2\n", + " 2007-2012 22.1 77.9\n", + "Romania 2000-2006 28.6 71.4\n", + " 2007-2012 29.1 70.9\n", + "Russian Federation 2000-2006 23.8 76.2\n", + " 2007-2012 26.3 73.7\n", + "Rwanda 2000-2006 36.2 63.8\n", + " 2007-2012 35.8 64.2\n", + "Saint Kitts and Nevis 2000-2006 75.0 25.0\n", + " 2007-2012 27.8 72.2\n", + "Saint Lucia 2000-2006 37.7 62.3\n", + " 2007-2012 25.7 74.3\n", + "Saint Vincent and the Grenadines 2000-2006 24.4 75.6\n", + " 2007-2012 23.5 76.5\n", + "Samoa 2000-2006 50.0 50.0\n", + " 2007-2012 82.8 17.2\n", + "San Marino 2000-2006 0.0 100.0\n", + " 2007-2012 NaN NaN\n", + "Sao Tome and Principe 2000-2006 47.5 52.5\n", + " 2007-2012 38.9 61.1\n", + "Saudi Arabia 2000-2006 39.3 60.7\n", + " 2007-2012 38.5 61.5\n", + "Senegal 2000-2006 31.4 68.6\n", + " 2007-2012 30.9 69.1\n", + "Serbia 2000-2006 38.9 61.1\n", + " 2007-2012 40.0 60.0\n", + "Serbia & Montenegro 2000-2006 39.8 60.2\n", + "Seychelles 2000-2006 28.8 71.2\n", + " 2007-2012 25.7 74.3\n", + "Sierra Leone 2000-2006 38.4 61.6\n", + " 2007-2012 37.4 62.6\n", + "Singapore 2000-2006 25.9 74.1\n", + " 2007-2012 25.5 74.5\n", + "Sint Maarten (Dutch part) 2007-2012 66.7 33.3\n", + "Slovakia 2000-2006 32.8 67.2\n", + " 2007-2012 28.5 71.5\n", + "Slovenia 2000-2006 34.6 65.4\n", + " 2007-2012 34.1 65.9\n", + "Solomon Islands 2000-2006 53.4 46.6\n", + " 2007-2012 51.4 48.6\n", + "Somalia 2000-2006 35.5 64.5\n", + " 2007-2012 35.5 64.5\n", + "South Africa 2000-2006 43.7 56.3\n", + " 2007-2012 45.7 54.3\n", + "South Sudan 2007-2012 35.0 65.0\n", + "Spain 2000-2006 32.0 68.0\n", + " 2007-2012 34.0 66.0\n", + "Sri Lanka 2000-2006 27.2 72.8\n", + " 2007-2012 26.5 73.5\n", + "Sudan 2000-2006 40.1 59.9\n", + " 2007-2012 37.6 62.4\n", + "Suriname 2000-2006 28.4 71.6\n", + " 2007-2012 30.3 69.7\n", + "Swaziland 2000-2006 48.8 51.2\n", + " 2007-2012 51.0 49.0\n", + "Sweden 2000-2006 43.9 56.1\n", + " 2007-2012 40.7 59.3\n", + "Switzerland 2000-2006 37.0 63.0\n", + " 2007-2012 40.5 59.5\n", + "Syrian Arab Republic 2000-2006 35.1 64.9\n", + " 2007-2012 37.1 62.9\n", + "Tajikistan 2000-2006 40.8 59.2\n", + " 2007-2012 43.9 56.1\n", + "Thailand 2000-2006 29.7 70.3\n", + " 2007-2012 30.0 70.0\n", + "The Former Yugoslav Republic of Macedonia 2000-2006 36.9 63.1\n", + " 2007-2012 34.3 65.7\n", + "Timor-Leste 2000-2006 42.5 57.5\n", + " 2007-2012 44.9 55.1\n", + "Togo 2000-2006 38.8 61.2\n", + " 2007-2012 39.0 61.0\n", + "Tokelau 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Tonga 2000-2006 40.2 59.8\n", + " 2007-2012 42.3 57.7\n", + "Trinidad and Tobago 2000-2006 29.6 70.4\n", + " 2007-2012 26.6 73.4\n", + "Tunisia 2000-2006 26.8 73.2\n", + " 2007-2012 28.7 71.3\n", + "Turkey 2000-2006 27.0 73.0\n", + " 2007-2012 28.2 71.8\n", + "Turkmenistan 2000-2006 34.9 65.1\n", + " 2007-2012 36.5 63.5\n", + "Turks and Caicos Islands 2000-2006 66.7 33.3\n", + " 2007-2012 31.2 68.8\n", + "Tuvalu 2000-2006 38.5 61.5\n", + " 2007-2012 51.0 49.0\n", + "US Virgin Islands 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Uganda 2000-2006 41.5 58.5\n", + " 2007-2012 36.7 63.3\n", + "Ukraine 2000-2006 23.1 76.9\n", + " 2007-2012 24.8 75.2\n", + "United Arab Emirates 2000-2006 45.7 54.3\n", + " 2007-2012 41.5 58.5\n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 40.2 59.8\n", + " 2007-2012 39.1 60.9\n", + "United Republic of Tanzania 2000-2006 37.7 62.3\n", + " 2007-2012 36.5 63.5\n", + "United States of America 2000-2006 31.9 68.1\n", + " 2007-2012 32.4 67.6\n", + "Uruguay 2000-2006 30.7 69.3\n", + " 2007-2012 29.0 71.0\n", + "Uzbekistan 2000-2006 42.2 57.8\n", + " 2007-2012 42.6 57.4\n", + "Vanuatu 2000-2006 45.3 54.7\n", + " 2007-2012 54.5 45.5\n", + "Venezuela (Bolivarian Republic of) 2000-2006 39.4 60.6\n", + " 2007-2012 39.5 60.5\n", + "Viet Nam 2000-2006 28.8 71.2\n", + " 2007-2012 25.8 74.2\n", + "Wallis and Futuna Islands 2000-2006 41.2 58.8\n", + " 2007-2012 16.7 83.3\n", + "West Bank and Gaza Strip 2000-2006 33.3 66.7\n", + " 2007-2012 29.6 70.4\n", + "Yemen 2000-2006 45.1 54.9\n", + " 2007-2012 44.8 55.2\n", + "Zambia 2000-2006 43.6 56.4\n", + " 2007-2012 39.7 60.3\n", + "Zimbabwe 2000-2006 46.4 53.6\n", + " 2007-2012 46.4 53.6" + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender = (\n", + " tb.pivot_table(index=['country', 'year_range'], columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "\n", + "\n", + "total_cases = tb_cases_per_gender.sum(axis=1)\n", + "\n", + "tb_cases_per_gender = tb_cases_per_gender.div(total_cases, axis=0)\n", + "(tb_cases_per_gender.round(3) * 100)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data-checkpoint.ipynb b/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data-checkpoint.ipynb new file mode 100644 index 0000000..89c8f35 --- /dev/null +++ b/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data-checkpoint.ipynb @@ -0,0 +1,787 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "062ed46a", + "metadata": {}, + "source": [ + "# 1. Make data tidy\n", + "\n", + "The final table should have these columns: `country`, `year`, `gender`, `age_range`, `cases`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "568c8440", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# 2. Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender, for data between 2000 and 2006 (included)\n", + "2. Compute the number of cases per country and year range (2000-2006, 2007-2012) on rows, and gender on columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data_solution-checkpoint.ipynb b/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data_solution-checkpoint.ipynb new file mode 100644 index 0000000..a3055b8 --- /dev/null +++ b/exercises/tabular_tidy_data/.ipynb_checkpoints/tidy_data_solution-checkpoint.ipynb @@ -0,0 +1,13410 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "062ed46a", + "metadata": {}, + "source": [ + "# 1. Make data tidy\n", + "\n", + "The final table should have these columns: `country`, `year`, `gender`, `age_range`, `cases`" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "4b249905", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearvariablecases
65Angola2000sp_m_014186.0
66Angola2001sp_m_014230.0
67Angola2002sp_m_014435.0
68Angola2003sp_m_014409.0
69Angola2004sp_m_014554.0
70Angola2005sp_m_014520.0
71Angola2006sp_m_014540.0
72Angola2007sp_m_014484.0
73Angola2008sp_m_014367.0
74Angola2009sp_m_014392.0
75Angola2010sp_m_014448.0
76Angola2011sp_m_014501.0
77Angola2012sp_m_014390.0
2848Angola2000sp_m_1524999.0
2849Angola2001sp_m_1524892.0
2850Angola2002sp_m_15242223.0
2851Angola2003sp_m_15242355.0
2852Angola2004sp_m_15242684.0
2853Angola2005sp_m_15242549.0
2854Angola2006sp_m_15242632.0
2855Angola2007sp_m_15242824.0
2856Angola2008sp_m_15242970.0
2857Angola2009sp_m_15243054.0
2858Angola2010sp_m_15242900.0
2859Angola2011sp_m_15243000.0
2860Angola2012sp_m_15242804.0
5631Angola2000sp_m_25341003.0
5632Angola2001sp_m_2534752.0
5633Angola2002sp_m_25342292.0
5634Angola2003sp_m_25342598.0
5635Angola2004sp_m_25342659.0
5636Angola2005sp_m_25342797.0
5637Angola2006sp_m_25343049.0
5638Angola2007sp_m_25343197.0
5639Angola2008sp_m_25343493.0
5640Angola2009sp_m_25343600.0
5641Angola2010sp_m_25343584.0
5642Angola2011sp_m_25343792.0
5643Angola2012sp_m_25343627.0
8414Angola2000sp_m_3544912.0
8415Angola2001sp_m_3544648.0
8416Angola2002sp_m_35441915.0
8417Angola2003sp_m_35441908.0
8418Angola2004sp_m_35441998.0
8419Angola2005sp_m_35441918.0
8420Angola2006sp_m_35442182.0
8421Angola2007sp_m_35442255.0
8422Angola2008sp_m_35442418.0
8423Angola2009sp_m_35442420.0
8424Angola2010sp_m_35442415.0
8425Angola2011sp_m_35442386.0
8426Angola2012sp_m_35442529.0
11197Angola2000sp_m_4554482.0
11198Angola2001sp_m_4554420.0
11199Angola2002sp_m_45541187.0
11200Angola2003sp_m_45541090.0
11201Angola2004sp_m_45541196.0
11202Angola2005sp_m_45541255.0
11203Angola2006sp_m_45541397.0
11204Angola2007sp_m_45541357.0
11205Angola2008sp_m_45541480.0
11206Angola2009sp_m_45541590.0
11207Angola2010sp_m_45541424.0
11208Angola2011sp_m_45541395.0
11209Angola2012sp_m_45541427.0
13980Angola2000sp_m_5564312.0
13981Angola2001sp_m_5564197.0
13982Angola2002sp_m_5564624.0
13983Angola2003sp_m_5564512.0
13984Angola2004sp_m_5564561.0
13985Angola2005sp_m_5564665.0
13986Angola2006sp_m_5564729.0
13987Angola2007sp_m_5564699.0
13988Angola2008sp_m_5564733.0
13989Angola2009sp_m_5564748.0
13990Angola2010sp_m_5564691.0
13991Angola2011sp_m_5564680.0
13992Angola2012sp_m_5564732.0
16763Angola2000sp_m_65194.0
16764Angola2001sp_m_65173.0
16765Angola2002sp_m_65444.0
16766Angola2003sp_m_65361.0
16767Angola2004sp_m_65321.0
16768Angola2005sp_m_65461.0
16769Angola2006sp_m_65428.0
16770Angola2007sp_m_65465.0
16771Angola2008sp_m_65420.0
16772Angola2009sp_m_65463.0
16773Angola2010sp_m_65355.0
16774Angola2011sp_m_65455.0
16775Angola2012sp_m_65424.0
19546Angola2000sp_f_014247.0
19547Angola2001sp_f_014279.0
19548Angola2002sp_f_014640.0
19549Angola2003sp_f_014591.0
19550Angola2004sp_f_014733.0
19551Angola2005sp_f_014704.0
19552Angola2006sp_f_014689.0
19553Angola2007sp_f_014703.0
19554Angola2008sp_f_014512.0
19555Angola2009sp_f_014568.0
19556Angola2010sp_f_014558.0
19557Angola2011sp_f_014708.0
19558Angola2012sp_f_014592.0
22329Angola2000sp_f_15241142.0
22330Angola2001sp_f_1524993.0
22331Angola2002sp_f_15242610.0
22332Angola2003sp_f_15243078.0
22333Angola2004sp_f_15243198.0
22334Angola2005sp_f_15242926.0
22335Angola2006sp_f_15242851.0
22336Angola2007sp_f_15242943.0
22337Angola2008sp_f_15243199.0
22338Angola2009sp_f_15243152.0
22339Angola2010sp_f_15242763.0
22340Angola2011sp_f_15242731.0
22341Angola2012sp_f_15242501.0
25112Angola2000sp_f_25341091.0
25113Angola2001sp_f_2534869.0
25114Angola2002sp_f_25342208.0
25115Angola2003sp_f_25342641.0
25116Angola2004sp_f_25342772.0
25117Angola2005sp_f_25342682.0
25118Angola2006sp_f_25342892.0
25119Angola2007sp_f_25342721.0
25120Angola2008sp_f_25342786.0
25121Angola2009sp_f_25342798.0
25122Angola2010sp_f_25342594.0
25123Angola2011sp_f_25342563.0
25124Angola2012sp_f_25342540.0
27895Angola2000sp_f_3544844.0
27896Angola2001sp_f_3544647.0
27897Angola2002sp_f_35441600.0
27898Angola2003sp_f_35441747.0
27899Angola2004sp_f_35441854.0
27900Angola2005sp_f_35441797.0
27901Angola2006sp_f_35441990.0
27902Angola2007sp_f_35441812.0
27903Angola2008sp_f_35442082.0
27904Angola2009sp_f_35441790.0
27905Angola2010sp_f_35441688.0
27906Angola2011sp_f_35441683.0
27907Angola2012sp_f_35441617.0
30678Angola2000sp_f_4554417.0
30679Angola2001sp_f_4554323.0
30680Angola2002sp_f_4554972.0
30681Angola2003sp_f_45541157.0
30682Angola2004sp_f_45541029.0
30683Angola2005sp_f_45541138.0
30684Angola2006sp_f_45541223.0
30685Angola2007sp_f_45541041.0
30686Angola2008sp_f_45541209.0
30687Angola2009sp_f_45541069.0
30688Angola2010sp_f_4554958.0
30689Angola2011sp_f_45541006.0
30690Angola2012sp_f_45541028.0
33461Angola2000sp_f_5564200.0
33462Angola2001sp_f_5564200.0
33463Angola2002sp_f_5564533.0
33464Angola2003sp_f_5564395.0
33465Angola2004sp_f_5564505.0
33466Angola2005sp_f_5564581.0
33467Angola2006sp_f_5564583.0
33468Angola2007sp_f_5564554.0
33469Angola2008sp_f_5564556.0
33470Angola2009sp_f_5564572.0
33471Angola2010sp_f_5564482.0
33472Angola2011sp_f_5564457.0
33473Angola2012sp_f_5564529.0
36244Angola2000sp_f_65120.0
36245Angola2001sp_f_65182.0
36246Angola2002sp_f_65305.0
36247Angola2003sp_f_65129.0
36248Angola2004sp_f_65269.0
36249Angola2005sp_f_65417.0
36250Angola2006sp_f_65314.0
36251Angola2007sp_f_65367.0
36252Angola2008sp_f_65337.0
36253Angola2009sp_f_65272.0
36254Angola2010sp_f_65286.0
36255Angola2011sp_f_65346.0
36256Angola2012sp_f_65384.0
\n", + "
" + ], + "text/plain": [ + " country year variable cases\n", + "65 Angola 2000 sp_m_014 186.0\n", + "66 Angola 2001 sp_m_014 230.0\n", + "67 Angola 2002 sp_m_014 435.0\n", + "68 Angola 2003 sp_m_014 409.0\n", + "69 Angola 2004 sp_m_014 554.0\n", + "70 Angola 2005 sp_m_014 520.0\n", + "71 Angola 2006 sp_m_014 540.0\n", + "72 Angola 2007 sp_m_014 484.0\n", + "73 Angola 2008 sp_m_014 367.0\n", + "74 Angola 2009 sp_m_014 392.0\n", + "75 Angola 2010 sp_m_014 448.0\n", + "76 Angola 2011 sp_m_014 501.0\n", + "77 Angola 2012 sp_m_014 390.0\n", + "2848 Angola 2000 sp_m_1524 999.0\n", + "2849 Angola 2001 sp_m_1524 892.0\n", + "2850 Angola 2002 sp_m_1524 2223.0\n", + "2851 Angola 2003 sp_m_1524 2355.0\n", + "2852 Angola 2004 sp_m_1524 2684.0\n", + "2853 Angola 2005 sp_m_1524 2549.0\n", + "2854 Angola 2006 sp_m_1524 2632.0\n", + "2855 Angola 2007 sp_m_1524 2824.0\n", + "2856 Angola 2008 sp_m_1524 2970.0\n", + "2857 Angola 2009 sp_m_1524 3054.0\n", + "2858 Angola 2010 sp_m_1524 2900.0\n", + "2859 Angola 2011 sp_m_1524 3000.0\n", + "2860 Angola 2012 sp_m_1524 2804.0\n", + "5631 Angola 2000 sp_m_2534 1003.0\n", + "5632 Angola 2001 sp_m_2534 752.0\n", + "5633 Angola 2002 sp_m_2534 2292.0\n", + "5634 Angola 2003 sp_m_2534 2598.0\n", + "5635 Angola 2004 sp_m_2534 2659.0\n", + "5636 Angola 2005 sp_m_2534 2797.0\n", + "5637 Angola 2006 sp_m_2534 3049.0\n", + "5638 Angola 2007 sp_m_2534 3197.0\n", + "5639 Angola 2008 sp_m_2534 3493.0\n", + "5640 Angola 2009 sp_m_2534 3600.0\n", + "5641 Angola 2010 sp_m_2534 3584.0\n", + "5642 Angola 2011 sp_m_2534 3792.0\n", + "5643 Angola 2012 sp_m_2534 3627.0\n", + "8414 Angola 2000 sp_m_3544 912.0\n", + "8415 Angola 2001 sp_m_3544 648.0\n", + "8416 Angola 2002 sp_m_3544 1915.0\n", + "8417 Angola 2003 sp_m_3544 1908.0\n", + "8418 Angola 2004 sp_m_3544 1998.0\n", + "8419 Angola 2005 sp_m_3544 1918.0\n", + "8420 Angola 2006 sp_m_3544 2182.0\n", + "8421 Angola 2007 sp_m_3544 2255.0\n", + "8422 Angola 2008 sp_m_3544 2418.0\n", + "8423 Angola 2009 sp_m_3544 2420.0\n", + "8424 Angola 2010 sp_m_3544 2415.0\n", + "8425 Angola 2011 sp_m_3544 2386.0\n", + "8426 Angola 2012 sp_m_3544 2529.0\n", + "11197 Angola 2000 sp_m_4554 482.0\n", + "11198 Angola 2001 sp_m_4554 420.0\n", + "11199 Angola 2002 sp_m_4554 1187.0\n", + "11200 Angola 2003 sp_m_4554 1090.0\n", + "11201 Angola 2004 sp_m_4554 1196.0\n", + "11202 Angola 2005 sp_m_4554 1255.0\n", + "11203 Angola 2006 sp_m_4554 1397.0\n", + "11204 Angola 2007 sp_m_4554 1357.0\n", + "11205 Angola 2008 sp_m_4554 1480.0\n", + "11206 Angola 2009 sp_m_4554 1590.0\n", + "11207 Angola 2010 sp_m_4554 1424.0\n", + "11208 Angola 2011 sp_m_4554 1395.0\n", + "11209 Angola 2012 sp_m_4554 1427.0\n", + "13980 Angola 2000 sp_m_5564 312.0\n", + "13981 Angola 2001 sp_m_5564 197.0\n", + "13982 Angola 2002 sp_m_5564 624.0\n", + "13983 Angola 2003 sp_m_5564 512.0\n", + "13984 Angola 2004 sp_m_5564 561.0\n", + "13985 Angola 2005 sp_m_5564 665.0\n", + "13986 Angola 2006 sp_m_5564 729.0\n", + "13987 Angola 2007 sp_m_5564 699.0\n", + "13988 Angola 2008 sp_m_5564 733.0\n", + "13989 Angola 2009 sp_m_5564 748.0\n", + "13990 Angola 2010 sp_m_5564 691.0\n", + "13991 Angola 2011 sp_m_5564 680.0\n", + "13992 Angola 2012 sp_m_5564 732.0\n", + "16763 Angola 2000 sp_m_65 194.0\n", + "16764 Angola 2001 sp_m_65 173.0\n", + "16765 Angola 2002 sp_m_65 444.0\n", + "16766 Angola 2003 sp_m_65 361.0\n", + "16767 Angola 2004 sp_m_65 321.0\n", + "16768 Angola 2005 sp_m_65 461.0\n", + "16769 Angola 2006 sp_m_65 428.0\n", + "16770 Angola 2007 sp_m_65 465.0\n", + "16771 Angola 2008 sp_m_65 420.0\n", + "16772 Angola 2009 sp_m_65 463.0\n", + "16773 Angola 2010 sp_m_65 355.0\n", + "16774 Angola 2011 sp_m_65 455.0\n", + "16775 Angola 2012 sp_m_65 424.0\n", + "19546 Angola 2000 sp_f_014 247.0\n", + "19547 Angola 2001 sp_f_014 279.0\n", + "19548 Angola 2002 sp_f_014 640.0\n", + "19549 Angola 2003 sp_f_014 591.0\n", + "19550 Angola 2004 sp_f_014 733.0\n", + "19551 Angola 2005 sp_f_014 704.0\n", + "19552 Angola 2006 sp_f_014 689.0\n", + "19553 Angola 2007 sp_f_014 703.0\n", + "19554 Angola 2008 sp_f_014 512.0\n", + "19555 Angola 2009 sp_f_014 568.0\n", + "19556 Angola 2010 sp_f_014 558.0\n", + "19557 Angola 2011 sp_f_014 708.0\n", + "19558 Angola 2012 sp_f_014 592.0\n", + "22329 Angola 2000 sp_f_1524 1142.0\n", + "22330 Angola 2001 sp_f_1524 993.0\n", + "22331 Angola 2002 sp_f_1524 2610.0\n", + "22332 Angola 2003 sp_f_1524 3078.0\n", + "22333 Angola 2004 sp_f_1524 3198.0\n", + "22334 Angola 2005 sp_f_1524 2926.0\n", + "22335 Angola 2006 sp_f_1524 2851.0\n", + "22336 Angola 2007 sp_f_1524 2943.0\n", + "22337 Angola 2008 sp_f_1524 3199.0\n", + "22338 Angola 2009 sp_f_1524 3152.0\n", + "22339 Angola 2010 sp_f_1524 2763.0\n", + "22340 Angola 2011 sp_f_1524 2731.0\n", + "22341 Angola 2012 sp_f_1524 2501.0\n", + "25112 Angola 2000 sp_f_2534 1091.0\n", + "25113 Angola 2001 sp_f_2534 869.0\n", + "25114 Angola 2002 sp_f_2534 2208.0\n", + "25115 Angola 2003 sp_f_2534 2641.0\n", + "25116 Angola 2004 sp_f_2534 2772.0\n", + "25117 Angola 2005 sp_f_2534 2682.0\n", + "25118 Angola 2006 sp_f_2534 2892.0\n", + "25119 Angola 2007 sp_f_2534 2721.0\n", + "25120 Angola 2008 sp_f_2534 2786.0\n", + "25121 Angola 2009 sp_f_2534 2798.0\n", + "25122 Angola 2010 sp_f_2534 2594.0\n", + "25123 Angola 2011 sp_f_2534 2563.0\n", + "25124 Angola 2012 sp_f_2534 2540.0\n", + "27895 Angola 2000 sp_f_3544 844.0\n", + "27896 Angola 2001 sp_f_3544 647.0\n", + "27897 Angola 2002 sp_f_3544 1600.0\n", + "27898 Angola 2003 sp_f_3544 1747.0\n", + "27899 Angola 2004 sp_f_3544 1854.0\n", + "27900 Angola 2005 sp_f_3544 1797.0\n", + "27901 Angola 2006 sp_f_3544 1990.0\n", + "27902 Angola 2007 sp_f_3544 1812.0\n", + "27903 Angola 2008 sp_f_3544 2082.0\n", + "27904 Angola 2009 sp_f_3544 1790.0\n", + "27905 Angola 2010 sp_f_3544 1688.0\n", + "27906 Angola 2011 sp_f_3544 1683.0\n", + "27907 Angola 2012 sp_f_3544 1617.0\n", + "30678 Angola 2000 sp_f_4554 417.0\n", + "30679 Angola 2001 sp_f_4554 323.0\n", + "30680 Angola 2002 sp_f_4554 972.0\n", + "30681 Angola 2003 sp_f_4554 1157.0\n", + "30682 Angola 2004 sp_f_4554 1029.0\n", + "30683 Angola 2005 sp_f_4554 1138.0\n", + "30684 Angola 2006 sp_f_4554 1223.0\n", + "30685 Angola 2007 sp_f_4554 1041.0\n", + "30686 Angola 2008 sp_f_4554 1209.0\n", + "30687 Angola 2009 sp_f_4554 1069.0\n", + "30688 Angola 2010 sp_f_4554 958.0\n", + "30689 Angola 2011 sp_f_4554 1006.0\n", + "30690 Angola 2012 sp_f_4554 1028.0\n", + "33461 Angola 2000 sp_f_5564 200.0\n", + "33462 Angola 2001 sp_f_5564 200.0\n", + "33463 Angola 2002 sp_f_5564 533.0\n", + "33464 Angola 2003 sp_f_5564 395.0\n", + "33465 Angola 2004 sp_f_5564 505.0\n", + "33466 Angola 2005 sp_f_5564 581.0\n", + "33467 Angola 2006 sp_f_5564 583.0\n", + "33468 Angola 2007 sp_f_5564 554.0\n", + "33469 Angola 2008 sp_f_5564 556.0\n", + "33470 Angola 2009 sp_f_5564 572.0\n", + "33471 Angola 2010 sp_f_5564 482.0\n", + "33472 Angola 2011 sp_f_5564 457.0\n", + "33473 Angola 2012 sp_f_5564 529.0\n", + "36244 Angola 2000 sp_f_65 120.0\n", + "36245 Angola 2001 sp_f_65 182.0\n", + "36246 Angola 2002 sp_f_65 305.0\n", + "36247 Angola 2003 sp_f_65 129.0\n", + "36248 Angola 2004 sp_f_65 269.0\n", + "36249 Angola 2005 sp_f_65 417.0\n", + "36250 Angola 2006 sp_f_65 314.0\n", + "36251 Angola 2007 sp_f_65 367.0\n", + "36252 Angola 2008 sp_f_65 337.0\n", + "36253 Angola 2009 sp_f_65 272.0\n", + "36254 Angola 2010 sp_f_65 286.0\n", + "36255 Angola 2011 sp_f_65 346.0\n", + "36256 Angola 2012 sp_f_65 384.0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_melted = pd.melt(tb_raw, id_vars=['country', 'year'], value_name='cases')\n", + "tb_melted[tb_melted['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "7cab45a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecases
65Angola2000m<=14yo186.0
66Angola2001m<=14yo230.0
67Angola2002m<=14yo435.0
68Angola2003m<=14yo409.0
69Angola2004m<=14yo554.0
70Angola2005m<=14yo520.0
71Angola2006m<=14yo540.0
72Angola2007m<=14yo484.0
73Angola2008m<=14yo367.0
74Angola2009m<=14yo392.0
75Angola2010m<=14yo448.0
76Angola2011m<=14yo501.0
77Angola2012m<=14yo390.0
2848Angola2000m15-24yo999.0
2849Angola2001m15-24yo892.0
2850Angola2002m15-24yo2223.0
2851Angola2003m15-24yo2355.0
2852Angola2004m15-24yo2684.0
2853Angola2005m15-24yo2549.0
2854Angola2006m15-24yo2632.0
2855Angola2007m15-24yo2824.0
2856Angola2008m15-24yo2970.0
2857Angola2009m15-24yo3054.0
2858Angola2010m15-24yo2900.0
2859Angola2011m15-24yo3000.0
2860Angola2012m15-24yo2804.0
5631Angola2000m25-34yo1003.0
5632Angola2001m25-34yo752.0
5633Angola2002m25-34yo2292.0
5634Angola2003m25-34yo2598.0
5635Angola2004m25-34yo2659.0
5636Angola2005m25-34yo2797.0
5637Angola2006m25-34yo3049.0
5638Angola2007m25-34yo3197.0
5639Angola2008m25-34yo3493.0
5640Angola2009m25-34yo3600.0
5641Angola2010m25-34yo3584.0
5642Angola2011m25-34yo3792.0
5643Angola2012m25-34yo3627.0
8414Angola2000m35-44yo912.0
8415Angola2001m35-44yo648.0
8416Angola2002m35-44yo1915.0
8417Angola2003m35-44yo1908.0
8418Angola2004m35-44yo1998.0
8419Angola2005m35-44yo1918.0
8420Angola2006m35-44yo2182.0
8421Angola2007m35-44yo2255.0
8422Angola2008m35-44yo2418.0
8423Angola2009m35-44yo2420.0
8424Angola2010m35-44yo2415.0
8425Angola2011m35-44yo2386.0
8426Angola2012m35-44yo2529.0
11197Angola2000m45-54yo482.0
11198Angola2001m45-54yo420.0
11199Angola2002m45-54yo1187.0
11200Angola2003m45-54yo1090.0
11201Angola2004m45-54yo1196.0
11202Angola2005m45-54yo1255.0
11203Angola2006m45-54yo1397.0
11204Angola2007m45-54yo1357.0
11205Angola2008m45-54yo1480.0
11206Angola2009m45-54yo1590.0
11207Angola2010m45-54yo1424.0
11208Angola2011m45-54yo1395.0
11209Angola2012m45-54yo1427.0
13980Angola2000m55-64yo312.0
13981Angola2001m55-64yo197.0
13982Angola2002m55-64yo624.0
13983Angola2003m55-64yo512.0
13984Angola2004m55-64yo561.0
13985Angola2005m55-64yo665.0
13986Angola2006m55-64yo729.0
13987Angola2007m55-64yo699.0
13988Angola2008m55-64yo733.0
13989Angola2009m55-64yo748.0
13990Angola2010m55-64yo691.0
13991Angola2011m55-64yo680.0
13992Angola2012m55-64yo732.0
16763Angola2000m>=65yo194.0
16764Angola2001m>=65yo173.0
16765Angola2002m>=65yo444.0
16766Angola2003m>=65yo361.0
16767Angola2004m>=65yo321.0
16768Angola2005m>=65yo461.0
16769Angola2006m>=65yo428.0
16770Angola2007m>=65yo465.0
16771Angola2008m>=65yo420.0
16772Angola2009m>=65yo463.0
16773Angola2010m>=65yo355.0
16774Angola2011m>=65yo455.0
16775Angola2012m>=65yo424.0
19546Angola2000f<=14yo247.0
19547Angola2001f<=14yo279.0
19548Angola2002f<=14yo640.0
19549Angola2003f<=14yo591.0
19550Angola2004f<=14yo733.0
19551Angola2005f<=14yo704.0
19552Angola2006f<=14yo689.0
19553Angola2007f<=14yo703.0
19554Angola2008f<=14yo512.0
19555Angola2009f<=14yo568.0
19556Angola2010f<=14yo558.0
19557Angola2011f<=14yo708.0
19558Angola2012f<=14yo592.0
22329Angola2000f15-24yo1142.0
22330Angola2001f15-24yo993.0
22331Angola2002f15-24yo2610.0
22332Angola2003f15-24yo3078.0
22333Angola2004f15-24yo3198.0
22334Angola2005f15-24yo2926.0
22335Angola2006f15-24yo2851.0
22336Angola2007f15-24yo2943.0
22337Angola2008f15-24yo3199.0
22338Angola2009f15-24yo3152.0
22339Angola2010f15-24yo2763.0
22340Angola2011f15-24yo2731.0
22341Angola2012f15-24yo2501.0
25112Angola2000f25-34yo1091.0
25113Angola2001f25-34yo869.0
25114Angola2002f25-34yo2208.0
25115Angola2003f25-34yo2641.0
25116Angola2004f25-34yo2772.0
25117Angola2005f25-34yo2682.0
25118Angola2006f25-34yo2892.0
25119Angola2007f25-34yo2721.0
25120Angola2008f25-34yo2786.0
25121Angola2009f25-34yo2798.0
25122Angola2010f25-34yo2594.0
25123Angola2011f25-34yo2563.0
25124Angola2012f25-34yo2540.0
27895Angola2000f35-44yo844.0
27896Angola2001f35-44yo647.0
27897Angola2002f35-44yo1600.0
27898Angola2003f35-44yo1747.0
27899Angola2004f35-44yo1854.0
27900Angola2005f35-44yo1797.0
27901Angola2006f35-44yo1990.0
27902Angola2007f35-44yo1812.0
27903Angola2008f35-44yo2082.0
27904Angola2009f35-44yo1790.0
27905Angola2010f35-44yo1688.0
27906Angola2011f35-44yo1683.0
27907Angola2012f35-44yo1617.0
30678Angola2000f45-54yo417.0
30679Angola2001f45-54yo323.0
30680Angola2002f45-54yo972.0
30681Angola2003f45-54yo1157.0
30682Angola2004f45-54yo1029.0
30683Angola2005f45-54yo1138.0
30684Angola2006f45-54yo1223.0
30685Angola2007f45-54yo1041.0
30686Angola2008f45-54yo1209.0
30687Angola2009f45-54yo1069.0
30688Angola2010f45-54yo958.0
30689Angola2011f45-54yo1006.0
30690Angola2012f45-54yo1028.0
33461Angola2000f55-64yo200.0
33462Angola2001f55-64yo200.0
33463Angola2002f55-64yo533.0
33464Angola2003f55-64yo395.0
33465Angola2004f55-64yo505.0
33466Angola2005f55-64yo581.0
33467Angola2006f55-64yo583.0
33468Angola2007f55-64yo554.0
33469Angola2008f55-64yo556.0
33470Angola2009f55-64yo572.0
33471Angola2010f55-64yo482.0
33472Angola2011f55-64yo457.0
33473Angola2012f55-64yo529.0
36244Angola2000f>=65yo120.0
36245Angola2001f>=65yo182.0
36246Angola2002f>=65yo305.0
36247Angola2003f>=65yo129.0
36248Angola2004f>=65yo269.0
36249Angola2005f>=65yo417.0
36250Angola2006f>=65yo314.0
36251Angola2007f>=65yo367.0
36252Angola2008f>=65yo337.0
36253Angola2009f>=65yo272.0
36254Angola2010f>=65yo286.0
36255Angola2011f>=65yo346.0
36256Angola2012f>=65yo384.0
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases\n", + "65 Angola 2000 m <=14yo 186.0\n", + "66 Angola 2001 m <=14yo 230.0\n", + "67 Angola 2002 m <=14yo 435.0\n", + "68 Angola 2003 m <=14yo 409.0\n", + "69 Angola 2004 m <=14yo 554.0\n", + "70 Angola 2005 m <=14yo 520.0\n", + "71 Angola 2006 m <=14yo 540.0\n", + "72 Angola 2007 m <=14yo 484.0\n", + "73 Angola 2008 m <=14yo 367.0\n", + "74 Angola 2009 m <=14yo 392.0\n", + "75 Angola 2010 m <=14yo 448.0\n", + "76 Angola 2011 m <=14yo 501.0\n", + "77 Angola 2012 m <=14yo 390.0\n", + "2848 Angola 2000 m 15-24yo 999.0\n", + "2849 Angola 2001 m 15-24yo 892.0\n", + "2850 Angola 2002 m 15-24yo 2223.0\n", + "2851 Angola 2003 m 15-24yo 2355.0\n", + "2852 Angola 2004 m 15-24yo 2684.0\n", + "2853 Angola 2005 m 15-24yo 2549.0\n", + "2854 Angola 2006 m 15-24yo 2632.0\n", + "2855 Angola 2007 m 15-24yo 2824.0\n", + "2856 Angola 2008 m 15-24yo 2970.0\n", + "2857 Angola 2009 m 15-24yo 3054.0\n", + "2858 Angola 2010 m 15-24yo 2900.0\n", + "2859 Angola 2011 m 15-24yo 3000.0\n", + "2860 Angola 2012 m 15-24yo 2804.0\n", + "5631 Angola 2000 m 25-34yo 1003.0\n", + "5632 Angola 2001 m 25-34yo 752.0\n", + "5633 Angola 2002 m 25-34yo 2292.0\n", + "5634 Angola 2003 m 25-34yo 2598.0\n", + "5635 Angola 2004 m 25-34yo 2659.0\n", + "5636 Angola 2005 m 25-34yo 2797.0\n", + "5637 Angola 2006 m 25-34yo 3049.0\n", + "5638 Angola 2007 m 25-34yo 3197.0\n", + "5639 Angola 2008 m 25-34yo 3493.0\n", + "5640 Angola 2009 m 25-34yo 3600.0\n", + "5641 Angola 2010 m 25-34yo 3584.0\n", + "5642 Angola 2011 m 25-34yo 3792.0\n", + "5643 Angola 2012 m 25-34yo 3627.0\n", + "8414 Angola 2000 m 35-44yo 912.0\n", + "8415 Angola 2001 m 35-44yo 648.0\n", + "8416 Angola 2002 m 35-44yo 1915.0\n", + "8417 Angola 2003 m 35-44yo 1908.0\n", + "8418 Angola 2004 m 35-44yo 1998.0\n", + "8419 Angola 2005 m 35-44yo 1918.0\n", + "8420 Angola 2006 m 35-44yo 2182.0\n", + "8421 Angola 2007 m 35-44yo 2255.0\n", + "8422 Angola 2008 m 35-44yo 2418.0\n", + "8423 Angola 2009 m 35-44yo 2420.0\n", + "8424 Angola 2010 m 35-44yo 2415.0\n", + "8425 Angola 2011 m 35-44yo 2386.0\n", + "8426 Angola 2012 m 35-44yo 2529.0\n", + "11197 Angola 2000 m 45-54yo 482.0\n", + "11198 Angola 2001 m 45-54yo 420.0\n", + "11199 Angola 2002 m 45-54yo 1187.0\n", + "11200 Angola 2003 m 45-54yo 1090.0\n", + "11201 Angola 2004 m 45-54yo 1196.0\n", + "11202 Angola 2005 m 45-54yo 1255.0\n", + "11203 Angola 2006 m 45-54yo 1397.0\n", + "11204 Angola 2007 m 45-54yo 1357.0\n", + "11205 Angola 2008 m 45-54yo 1480.0\n", + "11206 Angola 2009 m 45-54yo 1590.0\n", + "11207 Angola 2010 m 45-54yo 1424.0\n", + "11208 Angola 2011 m 45-54yo 1395.0\n", + "11209 Angola 2012 m 45-54yo 1427.0\n", + "13980 Angola 2000 m 55-64yo 312.0\n", + "13981 Angola 2001 m 55-64yo 197.0\n", + "13982 Angola 2002 m 55-64yo 624.0\n", + "13983 Angola 2003 m 55-64yo 512.0\n", + "13984 Angola 2004 m 55-64yo 561.0\n", + "13985 Angola 2005 m 55-64yo 665.0\n", + "13986 Angola 2006 m 55-64yo 729.0\n", + "13987 Angola 2007 m 55-64yo 699.0\n", + "13988 Angola 2008 m 55-64yo 733.0\n", + "13989 Angola 2009 m 55-64yo 748.0\n", + "13990 Angola 2010 m 55-64yo 691.0\n", + "13991 Angola 2011 m 55-64yo 680.0\n", + "13992 Angola 2012 m 55-64yo 732.0\n", + "16763 Angola 2000 m >=65yo 194.0\n", + "16764 Angola 2001 m >=65yo 173.0\n", + "16765 Angola 2002 m >=65yo 444.0\n", + "16766 Angola 2003 m >=65yo 361.0\n", + "16767 Angola 2004 m >=65yo 321.0\n", + "16768 Angola 2005 m >=65yo 461.0\n", + "16769 Angola 2006 m >=65yo 428.0\n", + "16770 Angola 2007 m >=65yo 465.0\n", + "16771 Angola 2008 m >=65yo 420.0\n", + "16772 Angola 2009 m >=65yo 463.0\n", + "16773 Angola 2010 m >=65yo 355.0\n", + "16774 Angola 2011 m >=65yo 455.0\n", + "16775 Angola 2012 m >=65yo 424.0\n", + "19546 Angola 2000 f <=14yo 247.0\n", + "19547 Angola 2001 f <=14yo 279.0\n", + "19548 Angola 2002 f <=14yo 640.0\n", + "19549 Angola 2003 f <=14yo 591.0\n", + "19550 Angola 2004 f <=14yo 733.0\n", + "19551 Angola 2005 f <=14yo 704.0\n", + "19552 Angola 2006 f <=14yo 689.0\n", + "19553 Angola 2007 f <=14yo 703.0\n", + "19554 Angola 2008 f <=14yo 512.0\n", + "19555 Angola 2009 f <=14yo 568.0\n", + "19556 Angola 2010 f <=14yo 558.0\n", + "19557 Angola 2011 f <=14yo 708.0\n", + "19558 Angola 2012 f <=14yo 592.0\n", + "22329 Angola 2000 f 15-24yo 1142.0\n", + "22330 Angola 2001 f 15-24yo 993.0\n", + "22331 Angola 2002 f 15-24yo 2610.0\n", + "22332 Angola 2003 f 15-24yo 3078.0\n", + "22333 Angola 2004 f 15-24yo 3198.0\n", + "22334 Angola 2005 f 15-24yo 2926.0\n", + "22335 Angola 2006 f 15-24yo 2851.0\n", + "22336 Angola 2007 f 15-24yo 2943.0\n", + "22337 Angola 2008 f 15-24yo 3199.0\n", + "22338 Angola 2009 f 15-24yo 3152.0\n", + "22339 Angola 2010 f 15-24yo 2763.0\n", + "22340 Angola 2011 f 15-24yo 2731.0\n", + "22341 Angola 2012 f 15-24yo 2501.0\n", + "25112 Angola 2000 f 25-34yo 1091.0\n", + "25113 Angola 2001 f 25-34yo 869.0\n", + "25114 Angola 2002 f 25-34yo 2208.0\n", + "25115 Angola 2003 f 25-34yo 2641.0\n", + "25116 Angola 2004 f 25-34yo 2772.0\n", + "25117 Angola 2005 f 25-34yo 2682.0\n", + "25118 Angola 2006 f 25-34yo 2892.0\n", + "25119 Angola 2007 f 25-34yo 2721.0\n", + "25120 Angola 2008 f 25-34yo 2786.0\n", + "25121 Angola 2009 f 25-34yo 2798.0\n", + "25122 Angola 2010 f 25-34yo 2594.0\n", + "25123 Angola 2011 f 25-34yo 2563.0\n", + "25124 Angola 2012 f 25-34yo 2540.0\n", + "27895 Angola 2000 f 35-44yo 844.0\n", + "27896 Angola 2001 f 35-44yo 647.0\n", + "27897 Angola 2002 f 35-44yo 1600.0\n", + "27898 Angola 2003 f 35-44yo 1747.0\n", + "27899 Angola 2004 f 35-44yo 1854.0\n", + "27900 Angola 2005 f 35-44yo 1797.0\n", + "27901 Angola 2006 f 35-44yo 1990.0\n", + "27902 Angola 2007 f 35-44yo 1812.0\n", + "27903 Angola 2008 f 35-44yo 2082.0\n", + "27904 Angola 2009 f 35-44yo 1790.0\n", + "27905 Angola 2010 f 35-44yo 1688.0\n", + "27906 Angola 2011 f 35-44yo 1683.0\n", + "27907 Angola 2012 f 35-44yo 1617.0\n", + "30678 Angola 2000 f 45-54yo 417.0\n", + "30679 Angola 2001 f 45-54yo 323.0\n", + "30680 Angola 2002 f 45-54yo 972.0\n", + "30681 Angola 2003 f 45-54yo 1157.0\n", + "30682 Angola 2004 f 45-54yo 1029.0\n", + "30683 Angola 2005 f 45-54yo 1138.0\n", + "30684 Angola 2006 f 45-54yo 1223.0\n", + "30685 Angola 2007 f 45-54yo 1041.0\n", + "30686 Angola 2008 f 45-54yo 1209.0\n", + "30687 Angola 2009 f 45-54yo 1069.0\n", + "30688 Angola 2010 f 45-54yo 958.0\n", + "30689 Angola 2011 f 45-54yo 1006.0\n", + "30690 Angola 2012 f 45-54yo 1028.0\n", + "33461 Angola 2000 f 55-64yo 200.0\n", + "33462 Angola 2001 f 55-64yo 200.0\n", + "33463 Angola 2002 f 55-64yo 533.0\n", + "33464 Angola 2003 f 55-64yo 395.0\n", + "33465 Angola 2004 f 55-64yo 505.0\n", + "33466 Angola 2005 f 55-64yo 581.0\n", + "33467 Angola 2006 f 55-64yo 583.0\n", + "33468 Angola 2007 f 55-64yo 554.0\n", + "33469 Angola 2008 f 55-64yo 556.0\n", + "33470 Angola 2009 f 55-64yo 572.0\n", + "33471 Angola 2010 f 55-64yo 482.0\n", + "33472 Angola 2011 f 55-64yo 457.0\n", + "33473 Angola 2012 f 55-64yo 529.0\n", + "36244 Angola 2000 f >=65yo 120.0\n", + "36245 Angola 2001 f >=65yo 182.0\n", + "36246 Angola 2002 f >=65yo 305.0\n", + "36247 Angola 2003 f >=65yo 129.0\n", + "36248 Angola 2004 f >=65yo 269.0\n", + "36249 Angola 2005 f >=65yo 417.0\n", + "36250 Angola 2006 f >=65yo 314.0\n", + "36251 Angola 2007 f >=65yo 367.0\n", + "36252 Angola 2008 f >=65yo 337.0\n", + "36253 Angola 2009 f >=65yo 272.0\n", + "36254 Angola 2010 f >=65yo 286.0\n", + "36255 Angola 2011 f >=65yo 346.0\n", + "36256 Angola 2012 f >=65yo 384.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "age_range_map = {\n", + " '014': '<=14yo',\n", + " '1524': '15-24yo',\n", + " '2534': '25-34yo',\n", + " '3544': '35-44yo',\n", + " '4554': '45-54yo',\n", + " '5564': '55-64yo',\n", + " '65': '>=65yo'\n", + "}\n", + "\n", + "\n", + "tb_melted['gender'] = tb_melted['variable'].str[3]\n", + "tb_melted['age_range'] = tb_melted['variable'].str[5:].map(age_range_map)\n", + "tb = tb_melted[['country', 'year', 'gender', 'age_range', 'cases']]\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# 2. Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender, for data between 2000 and 2006 (included)\n", + "2. Compute the number of cases per country and year range (2000-2006, 2007-2012) on rows, and gender on columns" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "75cc0463", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
country
Afghanistan34579.016426.0
Albania441.0920.0
Algeria22993.032926.0
American Samoa11.06.0
Andorra10.018.0
Angola57307.056848.0
Anguilla1.00.0
Antigua and Barbuda11.05.0
Argentina14527.019357.0
Armenia681.03220.0
Aruba0.00.0
Australia547.0915.0
Austria456.01186.0
Azerbaijan1559.05913.0
Bahamas76.0109.0
Bahrain63.0140.0
Bangladesh133757.0294417.0
Barbados12.026.0
Belarus1031.04247.0
Belgium692.01588.0
Belize140.0243.0
Benin6405.011283.0
Bermuda1.01.0
Bhutan1040.01356.0
Bolivia (Plurinational State of)18089.026493.0
Bosnia and Herzegovina1982.02669.0
Botswana9650.012441.0
Brazil113354.0211322.0
British Virgin Islands2.02.0
Brunei Darussalam251.0400.0
Bulgaria1937.04233.0
Burkina Faso4170.08743.0
Burundi7043.011273.0
Cabo Verde309.0471.0
Cambodia60829.063809.0
Cameroon25588.038214.0
Canada1265.01702.0
Cayman Islands1.06.0
Central African Republic5980.07685.0
Chad4694.07208.0
Chile3058.06281.0
China692350.01522330.0
China, Hong Kong SAR3792.08483.0
China, Macao SAR284.0699.0
Colombia21225.031804.0
Comoros192.0253.0
Congo5314.06160.0
Cook Islands0.05.0
Costa Rica886.01641.0
Cote d'Ivoire28598.040932.0
Croatia960.01931.0
Cuba872.02762.0
Cyprus13.035.0
Czech Republic632.01703.0
Democratic People's Republic of Korea46809.074757.0
Democratic Republic of the Congo170192.0192935.0
Denmark370.0601.0
Djibouti2755.05755.0
Dominica5.05.0
Dominican Republic6419.09800.0
Ecuador6807.09901.0
Egypt10845.021086.0
El Salvador2677.04082.0
Equatorial Guinea161.0245.0
Eritrea2608.02270.0
Estonia368.01015.0
Ethiopia116094.0140312.0
Fiji209.0334.0
Finland312.0583.0
France4243.08166.0
French Polynesia90.0108.0
Gabon2776.04131.0
Gambia1613.03805.0
Georgia1971.06242.0
Germany2266.04311.0
Ghana18497.034527.0
Greece379.0923.0
Greenland0.00.0
Grenada2.02.0
Guam97.0179.0
Guatemala5596.06544.0
Guinea11207.021725.0
Guinea-Bissau2285.03451.0
Guyana916.01962.0
Haiti23235.023307.0
Honduras7230.08965.0
Hungary897.02514.0
Iceland6.09.0
India828474.01848348.0
Indonesia286538.0399164.0
Iran (Islamic Republic of)17795.017946.0
Iraq7994.015159.0
Ireland246.0441.0
Israel466.0738.0
Italy2360.04445.0
Jamaica139.0350.0
Japan23230.053242.0
Jordan227.0436.0
Kazakhstan18320.030157.0
Kenya106531.0146717.0
Kiribati324.0366.0
Kuwait524.0956.0
Kyrgyzstan4503.07007.0
Lao People's Democratic Republic5757.09100.0
Latvia1097.03094.0
Lebanon430.0613.0
Lesotho9791.012371.0
Liberia5500.07301.0
Libya847.03092.0
Lithuania1677.04595.0
Luxembourg44.068.0
Madagascar29552.042855.0
Malawi24471.024994.0
Malaysia23938.052440.0
Maldives169.0268.0
Mali6028.012665.0
Malta4.021.0
Marshall Islands159.0152.0
Mauritania902.02246.0
Mauritius180.0432.0
Mexico33134.053218.0
Micronesia (Federated States of)116.093.0
Monaco0.00.0
Mongolia5583.06454.0
Montenegro42.080.0
Montserrat0.03.0
Morocco30252.058497.0
Mozambique0.00.0
Myanmar67403.0130337.0
Namibia14772.019685.0
Nauru5.05.0
Nepal32414.066254.0
Netherlands593.01258.0
Netherlands Antilles12.040.0
New Caledonia63.086.0
New Zealand295.0335.0
Nicaragua4244.05319.0
Niger4789.012190.0
Nigeria80330.0111660.0
Niue1.00.0
Northern Mariana Islands96.0111.0
Norway129.0175.0
Oman453.0692.0
Pakistan94064.099216.0
Palau11.023.0
Panama1902.03346.0
Papua New Guinea3225.03434.0
Paraguay2815.05061.0
Peru46298.062229.0
Philippines96966.0216914.0
Poland6560.015001.0
Portugal2962.08464.0
Puerto Rico157.0332.0
Qatar114.0399.0
Republic of Korea28390.048574.0
Republic of Moldova2053.06568.0
Romania21126.052827.0
Russian Federation35450.0113330.0
Rwanda7350.012980.0
Saint Kitts and Nevis3.01.0
Saint Lucia29.048.0
Saint Vincent and the Grenadines10.031.0
Samoa41.041.0
San Marino0.01.0
Sao Tome and Principe193.0213.0
Saudi Arabia4572.07073.0
Senegal13910.030431.0
Serbia868.01364.0
Serbia & Montenegro1078.01632.0
Seychelles17.042.0
Sierra Leone9201.014748.0
Singapore862.02466.0
Slovakia437.0897.0
Slovenia281.0530.0
Solomon Islands427.0373.0
Somalia13763.024980.0
South Africa264248.0341088.0
Spain4180.08889.0
Sri Lanka8386.022441.0
Sudan32121.048022.0
Suriname93.0235.0
Swaziland6696.07019.0
Sweden352.0449.0
Switzerland227.0386.0
Syrian Arab Republic3582.06609.0
Tajikistan1521.02208.0
Thailand55379.0130832.0
The Former Yugoslav Republic of Macedonia474.0812.0
Timor-Leste2150.02903.0
Togo3449.05429.0
Tokelau0.00.0
Tonga33.049.0
Trinidad and Tobago244.0579.0
Tunisia1803.04931.0
Turkey4219.011395.0
Turkmenistan2777.05187.0
Turks and Caicos Islands10.05.0
Tuvalu10.016.0
US Virgin Islands0.00.0
Uganda56500.079555.0
Ukraine11481.038200.0
United Arab Emirates143.0170.0
United Kingdom of Great Britain and Northern Ireland3546.05285.0
United Republic of Tanzania65505.0108065.0
United States of America12047.025716.0
Uruguay727.01641.0
Uzbekistan13706.018760.0
Vanuatu154.0186.0
Venezuela (Bolivarian Republic of)7215.011087.0
Viet Nam112399.0278116.0
Wallis and Futuna Islands7.010.0
West Bank and Gaza Strip14.028.0
Yemen12969.015771.0
Zambia41179.053162.0
Zimbabwe30699.035504.0
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country \n", + "Afghanistan 34579.0 16426.0\n", + "Albania 441.0 920.0\n", + "Algeria 22993.0 32926.0\n", + "American Samoa 11.0 6.0\n", + "Andorra 10.0 18.0\n", + "Angola 57307.0 56848.0\n", + "Anguilla 1.0 0.0\n", + "Antigua and Barbuda 11.0 5.0\n", + "Argentina 14527.0 19357.0\n", + "Armenia 681.0 3220.0\n", + "Aruba 0.0 0.0\n", + "Australia 547.0 915.0\n", + "Austria 456.0 1186.0\n", + "Azerbaijan 1559.0 5913.0\n", + "Bahamas 76.0 109.0\n", + "Bahrain 63.0 140.0\n", + "Bangladesh 133757.0 294417.0\n", + "Barbados 12.0 26.0\n", + "Belarus 1031.0 4247.0\n", + "Belgium 692.0 1588.0\n", + "Belize 140.0 243.0\n", + "Benin 6405.0 11283.0\n", + "Bermuda 1.0 1.0\n", + "Bhutan 1040.0 1356.0\n", + "Bolivia (Plurinational State of) 18089.0 26493.0\n", + "Bosnia and Herzegovina 1982.0 2669.0\n", + "Botswana 9650.0 12441.0\n", + "Brazil 113354.0 211322.0\n", + "British Virgin Islands 2.0 2.0\n", + "Brunei Darussalam 251.0 400.0\n", + "Bulgaria 1937.0 4233.0\n", + "Burkina Faso 4170.0 8743.0\n", + "Burundi 7043.0 11273.0\n", + "Cabo Verde 309.0 471.0\n", + "Cambodia 60829.0 63809.0\n", + "Cameroon 25588.0 38214.0\n", + "Canada 1265.0 1702.0\n", + "Cayman Islands 1.0 6.0\n", + "Central African Republic 5980.0 7685.0\n", + "Chad 4694.0 7208.0\n", + "Chile 3058.0 6281.0\n", + "China 692350.0 1522330.0\n", + "China, Hong Kong SAR 3792.0 8483.0\n", + "China, Macao SAR 284.0 699.0\n", + "Colombia 21225.0 31804.0\n", + "Comoros 192.0 253.0\n", + "Congo 5314.0 6160.0\n", + "Cook Islands 0.0 5.0\n", + "Costa Rica 886.0 1641.0\n", + "Cote d'Ivoire 28598.0 40932.0\n", + "Croatia 960.0 1931.0\n", + "Cuba 872.0 2762.0\n", + "Cyprus 13.0 35.0\n", + "Czech Republic 632.0 1703.0\n", + "Democratic People's Republic of Korea 46809.0 74757.0\n", + "Democratic Republic of the Congo 170192.0 192935.0\n", + "Denmark 370.0 601.0\n", + "Djibouti 2755.0 5755.0\n", + "Dominica 5.0 5.0\n", + "Dominican Republic 6419.0 9800.0\n", + "Ecuador 6807.0 9901.0\n", + "Egypt 10845.0 21086.0\n", + "El Salvador 2677.0 4082.0\n", + "Equatorial Guinea 161.0 245.0\n", + "Eritrea 2608.0 2270.0\n", + "Estonia 368.0 1015.0\n", + "Ethiopia 116094.0 140312.0\n", + "Fiji 209.0 334.0\n", + "Finland 312.0 583.0\n", + "France 4243.0 8166.0\n", + "French Polynesia 90.0 108.0\n", + "Gabon 2776.0 4131.0\n", + "Gambia 1613.0 3805.0\n", + "Georgia 1971.0 6242.0\n", + "Germany 2266.0 4311.0\n", + "Ghana 18497.0 34527.0\n", + "Greece 379.0 923.0\n", + "Greenland 0.0 0.0\n", + "Grenada 2.0 2.0\n", + "Guam 97.0 179.0\n", + "Guatemala 5596.0 6544.0\n", + "Guinea 11207.0 21725.0\n", + "Guinea-Bissau 2285.0 3451.0\n", + "Guyana 916.0 1962.0\n", + "Haiti 23235.0 23307.0\n", + "Honduras 7230.0 8965.0\n", + "Hungary 897.0 2514.0\n", + "Iceland 6.0 9.0\n", + "India 828474.0 1848348.0\n", + "Indonesia 286538.0 399164.0\n", + "Iran (Islamic Republic of) 17795.0 17946.0\n", + "Iraq 7994.0 15159.0\n", + "Ireland 246.0 441.0\n", + "Israel 466.0 738.0\n", + "Italy 2360.0 4445.0\n", + "Jamaica 139.0 350.0\n", + "Japan 23230.0 53242.0\n", + "Jordan 227.0 436.0\n", + "Kazakhstan 18320.0 30157.0\n", + "Kenya 106531.0 146717.0\n", + "Kiribati 324.0 366.0\n", + "Kuwait 524.0 956.0\n", + "Kyrgyzstan 4503.0 7007.0\n", + "Lao People's Democratic Republic 5757.0 9100.0\n", + "Latvia 1097.0 3094.0\n", + "Lebanon 430.0 613.0\n", + "Lesotho 9791.0 12371.0\n", + "Liberia 5500.0 7301.0\n", + "Libya 847.0 3092.0\n", + "Lithuania 1677.0 4595.0\n", + "Luxembourg 44.0 68.0\n", + "Madagascar 29552.0 42855.0\n", + "Malawi 24471.0 24994.0\n", + "Malaysia 23938.0 52440.0\n", + "Maldives 169.0 268.0\n", + "Mali 6028.0 12665.0\n", + "Malta 4.0 21.0\n", + "Marshall Islands 159.0 152.0\n", + "Mauritania 902.0 2246.0\n", + "Mauritius 180.0 432.0\n", + "Mexico 33134.0 53218.0\n", + "Micronesia (Federated States of) 116.0 93.0\n", + "Monaco 0.0 0.0\n", + "Mongolia 5583.0 6454.0\n", + "Montenegro 42.0 80.0\n", + "Montserrat 0.0 3.0\n", + "Morocco 30252.0 58497.0\n", + "Mozambique 0.0 0.0\n", + "Myanmar 67403.0 130337.0\n", + "Namibia 14772.0 19685.0\n", + "Nauru 5.0 5.0\n", + "Nepal 32414.0 66254.0\n", + "Netherlands 593.0 1258.0\n", + "Netherlands Antilles 12.0 40.0\n", + "New Caledonia 63.0 86.0\n", + "New Zealand 295.0 335.0\n", + "Nicaragua 4244.0 5319.0\n", + "Niger 4789.0 12190.0\n", + "Nigeria 80330.0 111660.0\n", + "Niue 1.0 0.0\n", + "Northern Mariana Islands 96.0 111.0\n", + "Norway 129.0 175.0\n", + "Oman 453.0 692.0\n", + "Pakistan 94064.0 99216.0\n", + "Palau 11.0 23.0\n", + "Panama 1902.0 3346.0\n", + "Papua New Guinea 3225.0 3434.0\n", + "Paraguay 2815.0 5061.0\n", + "Peru 46298.0 62229.0\n", + "Philippines 96966.0 216914.0\n", + "Poland 6560.0 15001.0\n", + "Portugal 2962.0 8464.0\n", + "Puerto Rico 157.0 332.0\n", + "Qatar 114.0 399.0\n", + "Republic of Korea 28390.0 48574.0\n", + "Republic of Moldova 2053.0 6568.0\n", + "Romania 21126.0 52827.0\n", + "Russian Federation 35450.0 113330.0\n", + "Rwanda 7350.0 12980.0\n", + "Saint Kitts and Nevis 3.0 1.0\n", + "Saint Lucia 29.0 48.0\n", + "Saint Vincent and the Grenadines 10.0 31.0\n", + "Samoa 41.0 41.0\n", + "San Marino 0.0 1.0\n", + "Sao Tome and Principe 193.0 213.0\n", + "Saudi Arabia 4572.0 7073.0\n", + "Senegal 13910.0 30431.0\n", + "Serbia 868.0 1364.0\n", + "Serbia & Montenegro 1078.0 1632.0\n", + "Seychelles 17.0 42.0\n", + "Sierra Leone 9201.0 14748.0\n", + "Singapore 862.0 2466.0\n", + "Slovakia 437.0 897.0\n", + "Slovenia 281.0 530.0\n", + "Solomon Islands 427.0 373.0\n", + "Somalia 13763.0 24980.0\n", + "South Africa 264248.0 341088.0\n", + "Spain 4180.0 8889.0\n", + "Sri Lanka 8386.0 22441.0\n", + "Sudan 32121.0 48022.0\n", + "Suriname 93.0 235.0\n", + "Swaziland 6696.0 7019.0\n", + "Sweden 352.0 449.0\n", + "Switzerland 227.0 386.0\n", + "Syrian Arab Republic 3582.0 6609.0\n", + "Tajikistan 1521.0 2208.0\n", + "Thailand 55379.0 130832.0\n", + "The Former Yugoslav Republic of Macedonia 474.0 812.0\n", + "Timor-Leste 2150.0 2903.0\n", + "Togo 3449.0 5429.0\n", + "Tokelau 0.0 0.0\n", + "Tonga 33.0 49.0\n", + "Trinidad and Tobago 244.0 579.0\n", + "Tunisia 1803.0 4931.0\n", + "Turkey 4219.0 11395.0\n", + "Turkmenistan 2777.0 5187.0\n", + "Turks and Caicos Islands 10.0 5.0\n", + "Tuvalu 10.0 16.0\n", + "US Virgin Islands 0.0 0.0\n", + "Uganda 56500.0 79555.0\n", + "Ukraine 11481.0 38200.0\n", + "United Arab Emirates 143.0 170.0\n", + "United Kingdom of Great Britain and Northern Ireland 3546.0 5285.0\n", + "United Republic of Tanzania 65505.0 108065.0\n", + "United States of America 12047.0 25716.0\n", + "Uruguay 727.0 1641.0\n", + "Uzbekistan 13706.0 18760.0\n", + "Vanuatu 154.0 186.0\n", + "Venezuela (Bolivarian Republic of) 7215.0 11087.0\n", + "Viet Nam 112399.0 278116.0\n", + "Wallis and Futuna Islands 7.0 10.0\n", + "West Bank and Gaza Strip 14.0 28.0\n", + "Yemen 12969.0 15771.0\n", + "Zambia 41179.0 53162.0\n", + "Zimbabwe 30699.0 35504.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender_2000 = (\n", + " tb[tb['year'].between(2000, 2006)]\n", + " .pivot_table(index='country', columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "tb_cases_per_gender_2000" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "a2491a2c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecasesyear_range
65Angola2000m<=14yo186.02000-2006
66Angola2001m<=14yo230.02000-2006
67Angola2002m<=14yo435.02000-2006
68Angola2003m<=14yo409.02000-2006
69Angola2004m<=14yo554.02000-2006
70Angola2005m<=14yo520.02000-2006
71Angola2006m<=14yo540.02000-2006
72Angola2007m<=14yo484.02007-2012
73Angola2008m<=14yo367.02007-2012
74Angola2009m<=14yo392.02007-2012
75Angola2010m<=14yo448.02007-2012
76Angola2011m<=14yo501.02007-2012
77Angola2012m<=14yo390.02007-2012
2848Angola2000m15-24yo999.02000-2006
2849Angola2001m15-24yo892.02000-2006
2850Angola2002m15-24yo2223.02000-2006
2851Angola2003m15-24yo2355.02000-2006
2852Angola2004m15-24yo2684.02000-2006
2853Angola2005m15-24yo2549.02000-2006
2854Angola2006m15-24yo2632.02000-2006
2855Angola2007m15-24yo2824.02007-2012
2856Angola2008m15-24yo2970.02007-2012
2857Angola2009m15-24yo3054.02007-2012
2858Angola2010m15-24yo2900.02007-2012
2859Angola2011m15-24yo3000.02007-2012
2860Angola2012m15-24yo2804.02007-2012
5631Angola2000m25-34yo1003.02000-2006
5632Angola2001m25-34yo752.02000-2006
5633Angola2002m25-34yo2292.02000-2006
5634Angola2003m25-34yo2598.02000-2006
5635Angola2004m25-34yo2659.02000-2006
5636Angola2005m25-34yo2797.02000-2006
5637Angola2006m25-34yo3049.02000-2006
5638Angola2007m25-34yo3197.02007-2012
5639Angola2008m25-34yo3493.02007-2012
5640Angola2009m25-34yo3600.02007-2012
5641Angola2010m25-34yo3584.02007-2012
5642Angola2011m25-34yo3792.02007-2012
5643Angola2012m25-34yo3627.02007-2012
8414Angola2000m35-44yo912.02000-2006
8415Angola2001m35-44yo648.02000-2006
8416Angola2002m35-44yo1915.02000-2006
8417Angola2003m35-44yo1908.02000-2006
8418Angola2004m35-44yo1998.02000-2006
8419Angola2005m35-44yo1918.02000-2006
8420Angola2006m35-44yo2182.02000-2006
8421Angola2007m35-44yo2255.02007-2012
8422Angola2008m35-44yo2418.02007-2012
8423Angola2009m35-44yo2420.02007-2012
8424Angola2010m35-44yo2415.02007-2012
8425Angola2011m35-44yo2386.02007-2012
8426Angola2012m35-44yo2529.02007-2012
11197Angola2000m45-54yo482.02000-2006
11198Angola2001m45-54yo420.02000-2006
11199Angola2002m45-54yo1187.02000-2006
11200Angola2003m45-54yo1090.02000-2006
11201Angola2004m45-54yo1196.02000-2006
11202Angola2005m45-54yo1255.02000-2006
11203Angola2006m45-54yo1397.02000-2006
11204Angola2007m45-54yo1357.02007-2012
11205Angola2008m45-54yo1480.02007-2012
11206Angola2009m45-54yo1590.02007-2012
11207Angola2010m45-54yo1424.02007-2012
11208Angola2011m45-54yo1395.02007-2012
11209Angola2012m45-54yo1427.02007-2012
13980Angola2000m55-64yo312.02000-2006
13981Angola2001m55-64yo197.02000-2006
13982Angola2002m55-64yo624.02000-2006
13983Angola2003m55-64yo512.02000-2006
13984Angola2004m55-64yo561.02000-2006
13985Angola2005m55-64yo665.02000-2006
13986Angola2006m55-64yo729.02000-2006
13987Angola2007m55-64yo699.02007-2012
13988Angola2008m55-64yo733.02007-2012
13989Angola2009m55-64yo748.02007-2012
13990Angola2010m55-64yo691.02007-2012
13991Angola2011m55-64yo680.02007-2012
13992Angola2012m55-64yo732.02007-2012
16763Angola2000m>=65yo194.02000-2006
16764Angola2001m>=65yo173.02000-2006
16765Angola2002m>=65yo444.02000-2006
16766Angola2003m>=65yo361.02000-2006
16767Angola2004m>=65yo321.02000-2006
16768Angola2005m>=65yo461.02000-2006
16769Angola2006m>=65yo428.02000-2006
16770Angola2007m>=65yo465.02007-2012
16771Angola2008m>=65yo420.02007-2012
16772Angola2009m>=65yo463.02007-2012
16773Angola2010m>=65yo355.02007-2012
16774Angola2011m>=65yo455.02007-2012
16775Angola2012m>=65yo424.02007-2012
19546Angola2000f<=14yo247.02000-2006
19547Angola2001f<=14yo279.02000-2006
19548Angola2002f<=14yo640.02000-2006
19549Angola2003f<=14yo591.02000-2006
19550Angola2004f<=14yo733.02000-2006
19551Angola2005f<=14yo704.02000-2006
19552Angola2006f<=14yo689.02000-2006
19553Angola2007f<=14yo703.02007-2012
19554Angola2008f<=14yo512.02007-2012
19555Angola2009f<=14yo568.02007-2012
19556Angola2010f<=14yo558.02007-2012
19557Angola2011f<=14yo708.02007-2012
19558Angola2012f<=14yo592.02007-2012
22329Angola2000f15-24yo1142.02000-2006
22330Angola2001f15-24yo993.02000-2006
22331Angola2002f15-24yo2610.02000-2006
22332Angola2003f15-24yo3078.02000-2006
22333Angola2004f15-24yo3198.02000-2006
22334Angola2005f15-24yo2926.02000-2006
22335Angola2006f15-24yo2851.02000-2006
22336Angola2007f15-24yo2943.02007-2012
22337Angola2008f15-24yo3199.02007-2012
22338Angola2009f15-24yo3152.02007-2012
22339Angola2010f15-24yo2763.02007-2012
22340Angola2011f15-24yo2731.02007-2012
22341Angola2012f15-24yo2501.02007-2012
25112Angola2000f25-34yo1091.02000-2006
25113Angola2001f25-34yo869.02000-2006
25114Angola2002f25-34yo2208.02000-2006
25115Angola2003f25-34yo2641.02000-2006
25116Angola2004f25-34yo2772.02000-2006
25117Angola2005f25-34yo2682.02000-2006
25118Angola2006f25-34yo2892.02000-2006
25119Angola2007f25-34yo2721.02007-2012
25120Angola2008f25-34yo2786.02007-2012
25121Angola2009f25-34yo2798.02007-2012
25122Angola2010f25-34yo2594.02007-2012
25123Angola2011f25-34yo2563.02007-2012
25124Angola2012f25-34yo2540.02007-2012
27895Angola2000f35-44yo844.02000-2006
27896Angola2001f35-44yo647.02000-2006
27897Angola2002f35-44yo1600.02000-2006
27898Angola2003f35-44yo1747.02000-2006
27899Angola2004f35-44yo1854.02000-2006
27900Angola2005f35-44yo1797.02000-2006
27901Angola2006f35-44yo1990.02000-2006
27902Angola2007f35-44yo1812.02007-2012
27903Angola2008f35-44yo2082.02007-2012
27904Angola2009f35-44yo1790.02007-2012
27905Angola2010f35-44yo1688.02007-2012
27906Angola2011f35-44yo1683.02007-2012
27907Angola2012f35-44yo1617.02007-2012
30678Angola2000f45-54yo417.02000-2006
30679Angola2001f45-54yo323.02000-2006
30680Angola2002f45-54yo972.02000-2006
30681Angola2003f45-54yo1157.02000-2006
30682Angola2004f45-54yo1029.02000-2006
30683Angola2005f45-54yo1138.02000-2006
30684Angola2006f45-54yo1223.02000-2006
30685Angola2007f45-54yo1041.02007-2012
30686Angola2008f45-54yo1209.02007-2012
30687Angola2009f45-54yo1069.02007-2012
30688Angola2010f45-54yo958.02007-2012
30689Angola2011f45-54yo1006.02007-2012
30690Angola2012f45-54yo1028.02007-2012
33461Angola2000f55-64yo200.02000-2006
33462Angola2001f55-64yo200.02000-2006
33463Angola2002f55-64yo533.02000-2006
33464Angola2003f55-64yo395.02000-2006
33465Angola2004f55-64yo505.02000-2006
33466Angola2005f55-64yo581.02000-2006
33467Angola2006f55-64yo583.02000-2006
33468Angola2007f55-64yo554.02007-2012
33469Angola2008f55-64yo556.02007-2012
33470Angola2009f55-64yo572.02007-2012
33471Angola2010f55-64yo482.02007-2012
33472Angola2011f55-64yo457.02007-2012
33473Angola2012f55-64yo529.02007-2012
36244Angola2000f>=65yo120.02000-2006
36245Angola2001f>=65yo182.02000-2006
36246Angola2002f>=65yo305.02000-2006
36247Angola2003f>=65yo129.02000-2006
36248Angola2004f>=65yo269.02000-2006
36249Angola2005f>=65yo417.02000-2006
36250Angola2006f>=65yo314.02000-2006
36251Angola2007f>=65yo367.02007-2012
36252Angola2008f>=65yo337.02007-2012
36253Angola2009f>=65yo272.02007-2012
36254Angola2010f>=65yo286.02007-2012
36255Angola2011f>=65yo346.02007-2012
36256Angola2012f>=65yo384.02007-2012
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases year_range\n", + "65 Angola 2000 m <=14yo 186.0 2000-2006\n", + "66 Angola 2001 m <=14yo 230.0 2000-2006\n", + "67 Angola 2002 m <=14yo 435.0 2000-2006\n", + "68 Angola 2003 m <=14yo 409.0 2000-2006\n", + "69 Angola 2004 m <=14yo 554.0 2000-2006\n", + "70 Angola 2005 m <=14yo 520.0 2000-2006\n", + "71 Angola 2006 m <=14yo 540.0 2000-2006\n", + "72 Angola 2007 m <=14yo 484.0 2007-2012\n", + "73 Angola 2008 m <=14yo 367.0 2007-2012\n", + "74 Angola 2009 m <=14yo 392.0 2007-2012\n", + "75 Angola 2010 m <=14yo 448.0 2007-2012\n", + "76 Angola 2011 m <=14yo 501.0 2007-2012\n", + "77 Angola 2012 m <=14yo 390.0 2007-2012\n", + "2848 Angola 2000 m 15-24yo 999.0 2000-2006\n", + "2849 Angola 2001 m 15-24yo 892.0 2000-2006\n", + "2850 Angola 2002 m 15-24yo 2223.0 2000-2006\n", + "2851 Angola 2003 m 15-24yo 2355.0 2000-2006\n", + "2852 Angola 2004 m 15-24yo 2684.0 2000-2006\n", + "2853 Angola 2005 m 15-24yo 2549.0 2000-2006\n", + "2854 Angola 2006 m 15-24yo 2632.0 2000-2006\n", + "2855 Angola 2007 m 15-24yo 2824.0 2007-2012\n", + "2856 Angola 2008 m 15-24yo 2970.0 2007-2012\n", + "2857 Angola 2009 m 15-24yo 3054.0 2007-2012\n", + "2858 Angola 2010 m 15-24yo 2900.0 2007-2012\n", + "2859 Angola 2011 m 15-24yo 3000.0 2007-2012\n", + "2860 Angola 2012 m 15-24yo 2804.0 2007-2012\n", + "5631 Angola 2000 m 25-34yo 1003.0 2000-2006\n", + "5632 Angola 2001 m 25-34yo 752.0 2000-2006\n", + "5633 Angola 2002 m 25-34yo 2292.0 2000-2006\n", + "5634 Angola 2003 m 25-34yo 2598.0 2000-2006\n", + "5635 Angola 2004 m 25-34yo 2659.0 2000-2006\n", + "5636 Angola 2005 m 25-34yo 2797.0 2000-2006\n", + "5637 Angola 2006 m 25-34yo 3049.0 2000-2006\n", + "5638 Angola 2007 m 25-34yo 3197.0 2007-2012\n", + "5639 Angola 2008 m 25-34yo 3493.0 2007-2012\n", + "5640 Angola 2009 m 25-34yo 3600.0 2007-2012\n", + "5641 Angola 2010 m 25-34yo 3584.0 2007-2012\n", + "5642 Angola 2011 m 25-34yo 3792.0 2007-2012\n", + "5643 Angola 2012 m 25-34yo 3627.0 2007-2012\n", + "8414 Angola 2000 m 35-44yo 912.0 2000-2006\n", + "8415 Angola 2001 m 35-44yo 648.0 2000-2006\n", + "8416 Angola 2002 m 35-44yo 1915.0 2000-2006\n", + "8417 Angola 2003 m 35-44yo 1908.0 2000-2006\n", + "8418 Angola 2004 m 35-44yo 1998.0 2000-2006\n", + "8419 Angola 2005 m 35-44yo 1918.0 2000-2006\n", + "8420 Angola 2006 m 35-44yo 2182.0 2000-2006\n", + "8421 Angola 2007 m 35-44yo 2255.0 2007-2012\n", + "8422 Angola 2008 m 35-44yo 2418.0 2007-2012\n", + "8423 Angola 2009 m 35-44yo 2420.0 2007-2012\n", + "8424 Angola 2010 m 35-44yo 2415.0 2007-2012\n", + "8425 Angola 2011 m 35-44yo 2386.0 2007-2012\n", + "8426 Angola 2012 m 35-44yo 2529.0 2007-2012\n", + "11197 Angola 2000 m 45-54yo 482.0 2000-2006\n", + "11198 Angola 2001 m 45-54yo 420.0 2000-2006\n", + "11199 Angola 2002 m 45-54yo 1187.0 2000-2006\n", + "11200 Angola 2003 m 45-54yo 1090.0 2000-2006\n", + "11201 Angola 2004 m 45-54yo 1196.0 2000-2006\n", + "11202 Angola 2005 m 45-54yo 1255.0 2000-2006\n", + "11203 Angola 2006 m 45-54yo 1397.0 2000-2006\n", + "11204 Angola 2007 m 45-54yo 1357.0 2007-2012\n", + "11205 Angola 2008 m 45-54yo 1480.0 2007-2012\n", + "11206 Angola 2009 m 45-54yo 1590.0 2007-2012\n", + "11207 Angola 2010 m 45-54yo 1424.0 2007-2012\n", + "11208 Angola 2011 m 45-54yo 1395.0 2007-2012\n", + "11209 Angola 2012 m 45-54yo 1427.0 2007-2012\n", + "13980 Angola 2000 m 55-64yo 312.0 2000-2006\n", + "13981 Angola 2001 m 55-64yo 197.0 2000-2006\n", + "13982 Angola 2002 m 55-64yo 624.0 2000-2006\n", + "13983 Angola 2003 m 55-64yo 512.0 2000-2006\n", + "13984 Angola 2004 m 55-64yo 561.0 2000-2006\n", + "13985 Angola 2005 m 55-64yo 665.0 2000-2006\n", + "13986 Angola 2006 m 55-64yo 729.0 2000-2006\n", + "13987 Angola 2007 m 55-64yo 699.0 2007-2012\n", + "13988 Angola 2008 m 55-64yo 733.0 2007-2012\n", + "13989 Angola 2009 m 55-64yo 748.0 2007-2012\n", + "13990 Angola 2010 m 55-64yo 691.0 2007-2012\n", + "13991 Angola 2011 m 55-64yo 680.0 2007-2012\n", + "13992 Angola 2012 m 55-64yo 732.0 2007-2012\n", + "16763 Angola 2000 m >=65yo 194.0 2000-2006\n", + "16764 Angola 2001 m >=65yo 173.0 2000-2006\n", + "16765 Angola 2002 m >=65yo 444.0 2000-2006\n", + "16766 Angola 2003 m >=65yo 361.0 2000-2006\n", + "16767 Angola 2004 m >=65yo 321.0 2000-2006\n", + "16768 Angola 2005 m >=65yo 461.0 2000-2006\n", + "16769 Angola 2006 m >=65yo 428.0 2000-2006\n", + "16770 Angola 2007 m >=65yo 465.0 2007-2012\n", + "16771 Angola 2008 m >=65yo 420.0 2007-2012\n", + "16772 Angola 2009 m >=65yo 463.0 2007-2012\n", + "16773 Angola 2010 m >=65yo 355.0 2007-2012\n", + "16774 Angola 2011 m >=65yo 455.0 2007-2012\n", + "16775 Angola 2012 m >=65yo 424.0 2007-2012\n", + "19546 Angola 2000 f <=14yo 247.0 2000-2006\n", + "19547 Angola 2001 f <=14yo 279.0 2000-2006\n", + "19548 Angola 2002 f <=14yo 640.0 2000-2006\n", + "19549 Angola 2003 f <=14yo 591.0 2000-2006\n", + "19550 Angola 2004 f <=14yo 733.0 2000-2006\n", + "19551 Angola 2005 f <=14yo 704.0 2000-2006\n", + "19552 Angola 2006 f <=14yo 689.0 2000-2006\n", + "19553 Angola 2007 f <=14yo 703.0 2007-2012\n", + "19554 Angola 2008 f <=14yo 512.0 2007-2012\n", + "19555 Angola 2009 f <=14yo 568.0 2007-2012\n", + "19556 Angola 2010 f <=14yo 558.0 2007-2012\n", + "19557 Angola 2011 f <=14yo 708.0 2007-2012\n", + "19558 Angola 2012 f <=14yo 592.0 2007-2012\n", + "22329 Angola 2000 f 15-24yo 1142.0 2000-2006\n", + "22330 Angola 2001 f 15-24yo 993.0 2000-2006\n", + "22331 Angola 2002 f 15-24yo 2610.0 2000-2006\n", + "22332 Angola 2003 f 15-24yo 3078.0 2000-2006\n", + "22333 Angola 2004 f 15-24yo 3198.0 2000-2006\n", + "22334 Angola 2005 f 15-24yo 2926.0 2000-2006\n", + "22335 Angola 2006 f 15-24yo 2851.0 2000-2006\n", + "22336 Angola 2007 f 15-24yo 2943.0 2007-2012\n", + "22337 Angola 2008 f 15-24yo 3199.0 2007-2012\n", + "22338 Angola 2009 f 15-24yo 3152.0 2007-2012\n", + "22339 Angola 2010 f 15-24yo 2763.0 2007-2012\n", + "22340 Angola 2011 f 15-24yo 2731.0 2007-2012\n", + "22341 Angola 2012 f 15-24yo 2501.0 2007-2012\n", + "25112 Angola 2000 f 25-34yo 1091.0 2000-2006\n", + "25113 Angola 2001 f 25-34yo 869.0 2000-2006\n", + "25114 Angola 2002 f 25-34yo 2208.0 2000-2006\n", + "25115 Angola 2003 f 25-34yo 2641.0 2000-2006\n", + "25116 Angola 2004 f 25-34yo 2772.0 2000-2006\n", + "25117 Angola 2005 f 25-34yo 2682.0 2000-2006\n", + "25118 Angola 2006 f 25-34yo 2892.0 2000-2006\n", + "25119 Angola 2007 f 25-34yo 2721.0 2007-2012\n", + "25120 Angola 2008 f 25-34yo 2786.0 2007-2012\n", + "25121 Angola 2009 f 25-34yo 2798.0 2007-2012\n", + "25122 Angola 2010 f 25-34yo 2594.0 2007-2012\n", + "25123 Angola 2011 f 25-34yo 2563.0 2007-2012\n", + "25124 Angola 2012 f 25-34yo 2540.0 2007-2012\n", + "27895 Angola 2000 f 35-44yo 844.0 2000-2006\n", + "27896 Angola 2001 f 35-44yo 647.0 2000-2006\n", + "27897 Angola 2002 f 35-44yo 1600.0 2000-2006\n", + "27898 Angola 2003 f 35-44yo 1747.0 2000-2006\n", + "27899 Angola 2004 f 35-44yo 1854.0 2000-2006\n", + "27900 Angola 2005 f 35-44yo 1797.0 2000-2006\n", + "27901 Angola 2006 f 35-44yo 1990.0 2000-2006\n", + "27902 Angola 2007 f 35-44yo 1812.0 2007-2012\n", + "27903 Angola 2008 f 35-44yo 2082.0 2007-2012\n", + "27904 Angola 2009 f 35-44yo 1790.0 2007-2012\n", + "27905 Angola 2010 f 35-44yo 1688.0 2007-2012\n", + "27906 Angola 2011 f 35-44yo 1683.0 2007-2012\n", + "27907 Angola 2012 f 35-44yo 1617.0 2007-2012\n", + "30678 Angola 2000 f 45-54yo 417.0 2000-2006\n", + "30679 Angola 2001 f 45-54yo 323.0 2000-2006\n", + "30680 Angola 2002 f 45-54yo 972.0 2000-2006\n", + "30681 Angola 2003 f 45-54yo 1157.0 2000-2006\n", + "30682 Angola 2004 f 45-54yo 1029.0 2000-2006\n", + "30683 Angola 2005 f 45-54yo 1138.0 2000-2006\n", + "30684 Angola 2006 f 45-54yo 1223.0 2000-2006\n", + "30685 Angola 2007 f 45-54yo 1041.0 2007-2012\n", + "30686 Angola 2008 f 45-54yo 1209.0 2007-2012\n", + "30687 Angola 2009 f 45-54yo 1069.0 2007-2012\n", + "30688 Angola 2010 f 45-54yo 958.0 2007-2012\n", + "30689 Angola 2011 f 45-54yo 1006.0 2007-2012\n", + "30690 Angola 2012 f 45-54yo 1028.0 2007-2012\n", + "33461 Angola 2000 f 55-64yo 200.0 2000-2006\n", + "33462 Angola 2001 f 55-64yo 200.0 2000-2006\n", + "33463 Angola 2002 f 55-64yo 533.0 2000-2006\n", + "33464 Angola 2003 f 55-64yo 395.0 2000-2006\n", + "33465 Angola 2004 f 55-64yo 505.0 2000-2006\n", + "33466 Angola 2005 f 55-64yo 581.0 2000-2006\n", + "33467 Angola 2006 f 55-64yo 583.0 2000-2006\n", + "33468 Angola 2007 f 55-64yo 554.0 2007-2012\n", + "33469 Angola 2008 f 55-64yo 556.0 2007-2012\n", + "33470 Angola 2009 f 55-64yo 572.0 2007-2012\n", + "33471 Angola 2010 f 55-64yo 482.0 2007-2012\n", + "33472 Angola 2011 f 55-64yo 457.0 2007-2012\n", + "33473 Angola 2012 f 55-64yo 529.0 2007-2012\n", + "36244 Angola 2000 f >=65yo 120.0 2000-2006\n", + "36245 Angola 2001 f >=65yo 182.0 2000-2006\n", + "36246 Angola 2002 f >=65yo 305.0 2000-2006\n", + "36247 Angola 2003 f >=65yo 129.0 2000-2006\n", + "36248 Angola 2004 f >=65yo 269.0 2000-2006\n", + "36249 Angola 2005 f >=65yo 417.0 2000-2006\n", + "36250 Angola 2006 f >=65yo 314.0 2000-2006\n", + "36251 Angola 2007 f >=65yo 367.0 2007-2012\n", + "36252 Angola 2008 f >=65yo 337.0 2007-2012\n", + "36253 Angola 2009 f >=65yo 272.0 2007-2012\n", + "36254 Angola 2010 f >=65yo 286.0 2007-2012\n", + "36255 Angola 2011 f >=65yo 346.0 2007-2012\n", + "36256 Angola 2012 f >=65yo 384.0 2007-2012" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add a new column, containing the year range\n", + "tb['year_range'] = (\n", + " tb['year']\n", + " .between(2000, 2006)\n", + " .map({True: '2000-2006', False: '2007-2012'})\n", + ")\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "e987b783", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
countryyear_range
Afghanistan2000-200634579.016426.0
2007-201253159.025748.0
Albania2000-2006441.0920.0
2007-2012310.0706.0
Algeria2000-200622993.032926.0
2007-201218904.030182.0
American Samoa2000-200611.06.0
2007-20120.00.0
Andorra2000-200610.018.0
2007-20125.05.0
Angola2000-200657307.056848.0
2007-201259057.071388.0
Anguilla2000-20061.00.0
2007-20120.01.0
Antigua and Barbuda2000-200611.05.0
2007-20122.018.0
Argentina2000-200614527.019357.0
2007-201212051.015187.0
Armenia2000-2006681.03220.0
2007-2012491.01916.0
Aruba2000-20060.00.0
2007-201211.010.0
Australia2000-2006547.0915.0
2007-2012706.01003.0
Austria2000-2006456.01186.0
2007-2012182.0361.0
Azerbaijan2000-20061559.05913.0
2007-20121078.03082.0
Bahamas2000-200676.0109.0
2007-201250.0102.0
Bahrain2000-200663.0140.0
2007-2012198.0454.0
Bangladesh2000-2006133757.0294417.0
2007-2012175795.0346381.0
Barbados2000-200612.026.0
2007-20126.011.0
Belarus2000-20061031.04247.0
2007-20121648.05427.0
Belgium2000-2006692.01588.0
2007-2012533.01092.0
Belize2000-2006140.0243.0
2007-2012148.0326.0
Benin2000-20066405.011283.0
2007-20126316.011855.0
Bermuda2000-20061.01.0
2007-20121.01.0
Bhutan2000-20061040.01356.0
2007-20121301.01257.0
Bolivia (Plurinational State of)2000-200618089.026493.0
2007-201213521.020791.0
Bonaire, Saint Eustatius and Saba2007-20120.00.0
Bosnia and Herzegovina2000-20061982.02669.0
2007-20121076.01603.0
Botswana2000-20069650.012441.0
2007-20127660.09792.0
Brazil2000-2006113354.0211322.0
2007-201273972.0159616.0
British Virgin Islands2000-20062.02.0
2007-20120.01.0
Brunei Darussalam2000-2006251.0400.0
2007-2012294.0480.0
Bulgaria2000-20061937.04233.0
2007-20121501.03758.0
Burkina Faso2000-20064170.08743.0
2007-20125765.012740.0
Burundi2000-20067043.011273.0
2007-20128205.015699.0
Cabo Verde2000-2006309.0471.0
2007-2012268.0630.0
Cambodia2000-200660829.063809.0
2007-201249450.055865.0
Cameroon2000-200625588.038214.0
2007-201234545.051806.0
Canada2000-20061265.01702.0
2007-20121041.01615.0
Cayman Islands2000-20061.06.0
2007-20121.08.0
Central African Republic2000-20065980.07685.0
2007-20129510.011593.0
Chad2000-20064694.07208.0
2007-20126377.012948.0
Chile2000-20063058.06281.0
2007-20122186.04761.0
China2000-2006692350.01522330.0
2007-2012716717.01784144.0
China, Hong Kong SAR2000-20063792.08483.0
2007-20122754.05968.0
China, Macao SAR2000-2006284.0699.0
2007-2012302.0644.0
Colombia2000-200621225.031804.0
2007-201216508.025150.0
Comoros2000-2006192.0253.0
2007-201293.0193.0
Congo2000-20065314.06160.0
2007-20129625.011880.0
Cook Islands2000-20060.05.0
2007-20121.03.0
Costa Rica2000-2006886.01641.0
2007-2012583.01099.0
Cote d'Ivoire2000-200628598.040932.0
2007-201234650.052222.0
Croatia2000-2006960.01931.0
2007-2012369.0785.0
Cuba2000-2006872.02762.0
2007-2012495.01694.0
Curacao2007-20123.03.0
Cyprus2000-200613.035.0
2007-201228.032.0
Czech Republic2000-2006632.01703.0
2007-2012319.01010.0
Democratic People's Republic of Korea2000-200646809.074757.0
2007-201264750.0110640.0
Democratic Republic of the Congo2000-2006170192.0192935.0
2007-2012193001.0229162.0
Denmark2000-2006370.0601.0
2007-2012228.0463.0
Djibouti2000-20062755.05755.0
2007-20122672.04975.0
Dominica2000-20065.05.0
2007-20126.019.0
Dominican Republic2000-20066419.09800.0
2007-20125481.08887.0
Ecuador2000-20066807.09901.0
2007-20127696.013212.0
Egypt2000-200610845.021086.0
2007-20129385.019162.0
El Salvador2000-20062677.04082.0
2007-20122230.03915.0
Equatorial Guinea2000-2006161.0245.0
2007-2012908.01251.0
Eritrea2000-20062608.02270.0
2007-20121392.01715.0
Estonia2000-2006368.01015.0
2007-2012200.0575.0
Ethiopia2000-2006116094.0140312.0
2007-201297671.0121887.0
Fiji2000-2006209.0334.0
2007-2012245.0289.0
Finland2000-2006312.0583.0
2007-2012173.0345.0
France2000-20064243.08166.0
2007-20122523.04343.0
French Polynesia2000-200690.0108.0
2007-201252.062.0
Gabon2000-20062776.04131.0
2007-20123096.04693.0
Gambia2000-20061613.03805.0
2007-20122186.04578.0
Georgia2000-20061971.06242.0
2007-20122709.08892.0
Germany2000-20062266.04311.0
2007-20122466.04756.0
Ghana2000-200618497.034527.0
2007-201212728.025325.0
Greece2000-2006379.0923.0
2007-2012329.0827.0
Greenland2000-20060.00.0
2007-201251.078.0
Grenada2000-20062.02.0
2007-20124.014.0
Guam2000-200697.0179.0
2007-201249.0108.0
Guatemala2000-20065596.06544.0
2007-20124701.05408.0
Guinea2000-200611207.021725.0
2007-201212965.024187.0
Guinea-Bissau2000-20062285.03451.0
2007-20122537.03945.0
Guyana2000-2006916.01962.0
2007-2012514.01324.0
Haiti2000-200623235.023307.0
2007-201220461.021527.0
Honduras2000-20067230.08965.0
2007-20124653.06958.0
Hungary2000-2006897.02514.0
2007-2012538.01349.0
Iceland2000-20066.09.0
2007-20129.09.0
India2000-2006828474.01848348.0
2007-20121143930.02590830.0
Indonesia2000-2006286538.0399164.0
2007-2012440227.0639461.0
Iran (Islamic Republic of)2000-200617795.017946.0
2007-201215264.015447.0
Iraq2000-20067994.015159.0
2007-20127963.010697.0
Ireland2000-2006246.0441.0
2007-2012247.0501.0
Israel2000-2006466.0738.0
2007-2012260.0460.0
Italy2000-20062360.04445.0
2007-20121789.03054.0
Jamaica2000-2006139.0350.0
2007-2012125.0262.0
Japan2000-200623230.053242.0
2007-201217028.034090.0
Jordan2000-2006227.0436.0
2007-2012292.0335.0
Kazakhstan2000-200618320.030157.0
2007-201211542.019017.0
Kenya2000-2006106531.0146717.0
2007-201287519.0135336.0
Kiribati2000-2006324.0366.0
2007-2012379.0408.0
Kuwait2000-2006524.0956.0
2007-2012829.01111.0
Kyrgyzstan2000-20064503.07007.0
2007-20124020.05823.0
Lao People's Democratic Republic2000-20065757.09100.0
2007-20127258.011391.0
Latvia2000-20061097.03094.0
2007-2012561.01658.0
Lebanon2000-2006430.0613.0
2007-2012641.0461.0
Lesotho2000-20069791.012371.0
2007-20128313.010721.0
Liberia2000-20065500.07301.0
2007-20128517.010714.0
Libya2000-2006847.03092.0
2007-2012842.02754.0
Lithuania2000-20061677.04595.0
2007-20121181.03497.0
Luxembourg2000-200644.068.0
2007-20120.01.0
Madagascar2000-200629552.042855.0
2007-201239949.057554.0
Malawi2000-200624471.024994.0
2007-201219560.024546.0
Malaysia2000-200623938.052440.0
2007-201222941.046467.0
Maldives2000-2006169.0268.0
2007-201297.0200.0
Mali2000-20066028.012665.0
2007-20128393.016587.0
Malta2000-20064.021.0
2007-201211.044.0
Marshall Islands2000-2006159.0152.0
2007-2012133.0126.0
Mauritania2000-2006902.02246.0
2007-20122577.06288.0
Mauritius2000-2006180.0432.0
2007-2012181.0411.0
Mexico2000-200633134.053218.0
2007-201228000.045866.0
Micronesia (Federated States of)2000-2006116.093.0
2007-2012150.0135.0
Monaco2000-20060.00.0
2007-20120.00.0
Mongolia2000-20065583.06454.0
2007-20124674.06105.0
Montenegro2000-200642.080.0
2007-2012122.0168.0
Montserrat2000-20060.03.0
2007-20121.00.0
Morocco2000-200630252.058497.0
2007-201221326.049976.0
Mozambique2000-20060.00.0
2007-20120.00.0
Myanmar2000-200667403.0130337.0
2007-201286520.0166258.0
Namibia2000-200614772.019685.0
2007-201212062.015865.0
Nauru2000-20065.05.0
2007-20123.07.0
Nepal2000-200632414.066254.0
2007-201227740.058736.0
Netherlands2000-2006593.01258.0
2007-2012388.0712.0
Netherlands Antilles2000-200612.040.0
2007-20120.00.0
New Caledonia2000-200663.086.0
2007-201226.054.0
New Zealand2000-2006295.0335.0
2007-2012237.0277.0
Nicaragua2000-20064244.05319.0
2007-20122493.03354.0
Niger2000-20064789.012190.0
2007-20129799.027912.0
Nigeria2000-200680330.0111660.0
2007-2012111620.0169039.0
Niue2000-20061.00.0
2007-20120.00.0
Northern Mariana Islands2000-200696.0111.0
2007-201232.054.0
Norway2000-2006129.0175.0
2007-2012107.0181.0
Oman2000-2006453.0692.0
2007-2012404.0655.0
Pakistan2000-200694064.099216.0
2007-2012297873.0313604.0
Palau2000-200611.023.0
2007-201211.017.0
Panama2000-20061902.03346.0
2007-20121760.03080.0
Papua New Guinea2000-20063225.03434.0
2007-20124573.04870.0
Paraguay2000-20062815.05061.0
2007-20122488.05652.0
Peru2000-200646298.062229.0
2007-201215103.020100.0
Philippines2000-200696966.0216914.0
2007-2012159419.0377739.0
Poland2000-20066560.015001.0
2007-20124465.011174.0
Portugal2000-20062962.08464.0
2007-20121607.04513.0
Puerto Rico2000-2006157.0332.0
2007-201272.0173.0
Qatar2000-2006114.0399.0
2007-2012168.0967.0
Republic of Korea2000-200628390.048574.0
2007-201227674.041026.0
Republic of Moldova2000-20062053.06568.0
2007-20121847.06499.0
Romania2000-200621126.052827.0
2007-201214688.035758.0
Russian Federation2000-200635450.0113330.0
2007-201249652.0138825.0
Rwanda2000-20067350.012980.0
2007-20128444.015133.0
Saint Kitts and Nevis2000-20063.01.0
2007-20125.013.0
Saint Lucia2000-200629.048.0
2007-201218.052.0
Saint Vincent and the Grenadines2000-200610.031.0
2007-201212.039.0
Samoa2000-200641.041.0
2007-20121151.0239.0
San Marino2000-20060.01.0
2007-20120.00.0
Sao Tome and Principe2000-2006193.0213.0
2007-2012125.0196.0
Saudi Arabia2000-20064572.07073.0
2007-20124883.07795.0
Senegal2000-200613910.030431.0
2007-201214339.032003.0
Serbia2000-2006868.01364.0
2007-20122308.03456.0
Serbia & Montenegro2000-20061078.01632.0
Seychelles2000-200617.042.0
2007-20129.026.0
Sierra Leone2000-20069201.014748.0
2007-201214769.024760.0
Singapore2000-2006862.02466.0
2007-2012861.02520.0
Sint Maarten (Dutch part)2007-20124.02.0
Slovakia2000-2006437.0897.0
2007-2012207.0520.0
Slovenia2000-2006281.0530.0
2007-2012153.0296.0
Solomon Islands2000-2006427.0373.0
2007-2012447.0422.0
Somalia2000-200613763.024980.0
2007-201212759.023174.0
South Africa2000-2006264248.0341088.0
2007-2012363623.0432029.0
South Sudan2007-20122073.03844.0
Spain2000-20064180.08889.0
2007-20123834.07440.0
Sri Lanka2000-20068386.022441.0
2007-20127215.020056.0
Sudan2000-200632121.048022.0
2007-201221751.036028.0
Suriname2000-200693.0235.0
2007-2012129.0297.0
Swaziland2000-20066696.07019.0
2007-20128801.08455.0
Sweden2000-2006352.0449.0
2007-2012251.0366.0
Switzerland2000-2006227.0386.0
2007-2012190.0279.0
Syrian Arab Republic2000-20063582.06609.0
2007-20122361.04011.0
Tajikistan2000-20061521.02208.0
2007-20125599.07163.0
Thailand2000-200655379.0130832.0
2007-201256286.0131516.0
The Former Yugoslav Republic of Macedonia2000-2006474.0812.0
2007-2012345.0661.0
Timor-Leste2000-20062150.02903.0
2007-20122807.03442.0
Togo2000-20063449.05429.0
2007-20124884.07644.0
Tokelau2000-20060.00.0
2007-20120.00.0
Tonga2000-200633.049.0
2007-201222.030.0
Trinidad and Tobago2000-2006244.0579.0
2007-2012233.0644.0
Tunisia2000-20061803.04931.0
2007-20121730.04290.0
Turkey2000-20064219.011395.0
2007-201210003.025411.0
Turkmenistan2000-20062777.05187.0
2007-20122744.04772.0
Turks and Caicos Islands2000-200610.05.0
2007-20125.011.0
Tuvalu2000-200610.016.0
2007-201225.024.0
US Virgin Islands2000-20060.00.0
2007-20120.00.0
Uganda2000-200656500.079555.0
2007-201251566.088857.0
Ukraine2000-200611481.038200.0
2007-201218694.056689.0
United Arab Emirates2000-2006143.0170.0
2007-2012131.0185.0
United Kingdom of Great Britain and Northern Ireland2000-20063546.05285.0
2007-20123176.04947.0
United Republic of Tanzania2000-200665505.0108065.0
2007-201253863.093848.0
United States of America2000-200612047.025716.0
2007-20127909.016479.0
Uruguay2000-2006727.01641.0
2007-2012718.01762.0
Uzbekistan2000-200613706.018760.0
2007-201212143.016336.0
Vanuatu2000-2006154.0186.0
2007-2012145.0121.0
Venezuela (Bolivarian Republic of)2000-20067215.011087.0
2007-20127934.012160.0
Viet Nam2000-2006112399.0278116.0
2007-201280950.0232357.0
Wallis and Futuna Islands2000-20067.010.0
2007-20121.05.0
West Bank and Gaza Strip2000-200614.028.0
2007-201224.057.0
Yemen2000-200612969.015771.0
2007-20129279.011414.0
Zambia2000-200641179.053162.0
2007-201225435.038711.0
Zimbabwe2000-200630699.035504.0
2007-201231121.035900.0
\n", + "
" + ], + "text/plain": [ + "gender f \\\n", + "country year_range \n", + "Afghanistan 2000-2006 34579.0 \n", + " 2007-2012 53159.0 \n", + "Albania 2000-2006 441.0 \n", + " 2007-2012 310.0 \n", + "Algeria 2000-2006 22993.0 \n", + " 2007-2012 18904.0 \n", + "American Samoa 2000-2006 11.0 \n", + " 2007-2012 0.0 \n", + "Andorra 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "Angola 2000-2006 57307.0 \n", + " 2007-2012 59057.0 \n", + "Anguilla 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Antigua and Barbuda 2000-2006 11.0 \n", + " 2007-2012 2.0 \n", + "Argentina 2000-2006 14527.0 \n", + " 2007-2012 12051.0 \n", + "Armenia 2000-2006 681.0 \n", + " 2007-2012 491.0 \n", + "Aruba 2000-2006 0.0 \n", + " 2007-2012 11.0 \n", + "Australia 2000-2006 547.0 \n", + " 2007-2012 706.0 \n", + "Austria 2000-2006 456.0 \n", + " 2007-2012 182.0 \n", + "Azerbaijan 2000-2006 1559.0 \n", + " 2007-2012 1078.0 \n", + "Bahamas 2000-2006 76.0 \n", + " 2007-2012 50.0 \n", + "Bahrain 2000-2006 63.0 \n", + " 2007-2012 198.0 \n", + "Bangladesh 2000-2006 133757.0 \n", + " 2007-2012 175795.0 \n", + "Barbados 2000-2006 12.0 \n", + " 2007-2012 6.0 \n", + "Belarus 2000-2006 1031.0 \n", + " 2007-2012 1648.0 \n", + "Belgium 2000-2006 692.0 \n", + " 2007-2012 533.0 \n", + "Belize 2000-2006 140.0 \n", + " 2007-2012 148.0 \n", + "Benin 2000-2006 6405.0 \n", + " 2007-2012 6316.0 \n", + "Bermuda 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Bhutan 2000-2006 1040.0 \n", + " 2007-2012 1301.0 \n", + "Bolivia (Plurinational State of) 2000-2006 18089.0 \n", + " 2007-2012 13521.0 \n", + "Bonaire, Saint Eustatius and Saba 2007-2012 0.0 \n", + "Bosnia and Herzegovina 2000-2006 1982.0 \n", + " 2007-2012 1076.0 \n", + "Botswana 2000-2006 9650.0 \n", + " 2007-2012 7660.0 \n", + "Brazil 2000-2006 113354.0 \n", + " 2007-2012 73972.0 \n", + "British Virgin Islands 2000-2006 2.0 \n", + " 2007-2012 0.0 \n", + "Brunei Darussalam 2000-2006 251.0 \n", + " 2007-2012 294.0 \n", + "Bulgaria 2000-2006 1937.0 \n", + " 2007-2012 1501.0 \n", + "Burkina Faso 2000-2006 4170.0 \n", + " 2007-2012 5765.0 \n", + "Burundi 2000-2006 7043.0 \n", + " 2007-2012 8205.0 \n", + "Cabo Verde 2000-2006 309.0 \n", + " 2007-2012 268.0 \n", + "Cambodia 2000-2006 60829.0 \n", + " 2007-2012 49450.0 \n", + "Cameroon 2000-2006 25588.0 \n", + " 2007-2012 34545.0 \n", + "Canada 2000-2006 1265.0 \n", + " 2007-2012 1041.0 \n", + "Cayman Islands 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Central African Republic 2000-2006 5980.0 \n", + " 2007-2012 9510.0 \n", + "Chad 2000-2006 4694.0 \n", + " 2007-2012 6377.0 \n", + "Chile 2000-2006 3058.0 \n", + " 2007-2012 2186.0 \n", + "China 2000-2006 692350.0 \n", + " 2007-2012 716717.0 \n", + "China, Hong Kong SAR 2000-2006 3792.0 \n", + " 2007-2012 2754.0 \n", + "China, Macao SAR 2000-2006 284.0 \n", + " 2007-2012 302.0 \n", + "Colombia 2000-2006 21225.0 \n", + " 2007-2012 16508.0 \n", + "Comoros 2000-2006 192.0 \n", + " 2007-2012 93.0 \n", + "Congo 2000-2006 5314.0 \n", + " 2007-2012 9625.0 \n", + "Cook Islands 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Costa Rica 2000-2006 886.0 \n", + " 2007-2012 583.0 \n", + "Cote d'Ivoire 2000-2006 28598.0 \n", + " 2007-2012 34650.0 \n", + "Croatia 2000-2006 960.0 \n", + " 2007-2012 369.0 \n", + "Cuba 2000-2006 872.0 \n", + " 2007-2012 495.0 \n", + "Curacao 2007-2012 3.0 \n", + "Cyprus 2000-2006 13.0 \n", + " 2007-2012 28.0 \n", + "Czech Republic 2000-2006 632.0 \n", + " 2007-2012 319.0 \n", + "Democratic People's Republic of Korea 2000-2006 46809.0 \n", + " 2007-2012 64750.0 \n", + "Democratic Republic of the Congo 2000-2006 170192.0 \n", + " 2007-2012 193001.0 \n", + "Denmark 2000-2006 370.0 \n", + " 2007-2012 228.0 \n", + "Djibouti 2000-2006 2755.0 \n", + " 2007-2012 2672.0 \n", + "Dominica 2000-2006 5.0 \n", + " 2007-2012 6.0 \n", + "Dominican Republic 2000-2006 6419.0 \n", + " 2007-2012 5481.0 \n", + "Ecuador 2000-2006 6807.0 \n", + " 2007-2012 7696.0 \n", + "Egypt 2000-2006 10845.0 \n", + " 2007-2012 9385.0 \n", + "El Salvador 2000-2006 2677.0 \n", + " 2007-2012 2230.0 \n", + "Equatorial Guinea 2000-2006 161.0 \n", + " 2007-2012 908.0 \n", + "Eritrea 2000-2006 2608.0 \n", + " 2007-2012 1392.0 \n", + "Estonia 2000-2006 368.0 \n", + " 2007-2012 200.0 \n", + "Ethiopia 2000-2006 116094.0 \n", + " 2007-2012 97671.0 \n", + "Fiji 2000-2006 209.0 \n", + " 2007-2012 245.0 \n", + "Finland 2000-2006 312.0 \n", + " 2007-2012 173.0 \n", + "France 2000-2006 4243.0 \n", + " 2007-2012 2523.0 \n", + "French Polynesia 2000-2006 90.0 \n", + " 2007-2012 52.0 \n", + "Gabon 2000-2006 2776.0 \n", + " 2007-2012 3096.0 \n", + "Gambia 2000-2006 1613.0 \n", + " 2007-2012 2186.0 \n", + "Georgia 2000-2006 1971.0 \n", + " 2007-2012 2709.0 \n", + "Germany 2000-2006 2266.0 \n", + " 2007-2012 2466.0 \n", + "Ghana 2000-2006 18497.0 \n", + " 2007-2012 12728.0 \n", + "Greece 2000-2006 379.0 \n", + " 2007-2012 329.0 \n", + "Greenland 2000-2006 0.0 \n", + " 2007-2012 51.0 \n", + "Grenada 2000-2006 2.0 \n", + " 2007-2012 4.0 \n", + "Guam 2000-2006 97.0 \n", + " 2007-2012 49.0 \n", + "Guatemala 2000-2006 5596.0 \n", + " 2007-2012 4701.0 \n", + "Guinea 2000-2006 11207.0 \n", + " 2007-2012 12965.0 \n", + "Guinea-Bissau 2000-2006 2285.0 \n", + " 2007-2012 2537.0 \n", + "Guyana 2000-2006 916.0 \n", + " 2007-2012 514.0 \n", + "Haiti 2000-2006 23235.0 \n", + " 2007-2012 20461.0 \n", + "Honduras 2000-2006 7230.0 \n", + " 2007-2012 4653.0 \n", + "Hungary 2000-2006 897.0 \n", + " 2007-2012 538.0 \n", + "Iceland 2000-2006 6.0 \n", + " 2007-2012 9.0 \n", + "India 2000-2006 828474.0 \n", + " 2007-2012 1143930.0 \n", + "Indonesia 2000-2006 286538.0 \n", + " 2007-2012 440227.0 \n", + "Iran (Islamic Republic of) 2000-2006 17795.0 \n", + " 2007-2012 15264.0 \n", + "Iraq 2000-2006 7994.0 \n", + " 2007-2012 7963.0 \n", + "Ireland 2000-2006 246.0 \n", + " 2007-2012 247.0 \n", + "Israel 2000-2006 466.0 \n", + " 2007-2012 260.0 \n", + "Italy 2000-2006 2360.0 \n", + " 2007-2012 1789.0 \n", + "Jamaica 2000-2006 139.0 \n", + " 2007-2012 125.0 \n", + "Japan 2000-2006 23230.0 \n", + " 2007-2012 17028.0 \n", + "Jordan 2000-2006 227.0 \n", + " 2007-2012 292.0 \n", + "Kazakhstan 2000-2006 18320.0 \n", + " 2007-2012 11542.0 \n", + "Kenya 2000-2006 106531.0 \n", + " 2007-2012 87519.0 \n", + "Kiribati 2000-2006 324.0 \n", + " 2007-2012 379.0 \n", + "Kuwait 2000-2006 524.0 \n", + " 2007-2012 829.0 \n", + "Kyrgyzstan 2000-2006 4503.0 \n", + " 2007-2012 4020.0 \n", + "Lao People's Democratic Republic 2000-2006 5757.0 \n", + " 2007-2012 7258.0 \n", + "Latvia 2000-2006 1097.0 \n", + " 2007-2012 561.0 \n", + "Lebanon 2000-2006 430.0 \n", + " 2007-2012 641.0 \n", + "Lesotho 2000-2006 9791.0 \n", + " 2007-2012 8313.0 \n", + "Liberia 2000-2006 5500.0 \n", + " 2007-2012 8517.0 \n", + "Libya 2000-2006 847.0 \n", + " 2007-2012 842.0 \n", + "Lithuania 2000-2006 1677.0 \n", + " 2007-2012 1181.0 \n", + "Luxembourg 2000-2006 44.0 \n", + " 2007-2012 0.0 \n", + "Madagascar 2000-2006 29552.0 \n", + " 2007-2012 39949.0 \n", + "Malawi 2000-2006 24471.0 \n", + " 2007-2012 19560.0 \n", + "Malaysia 2000-2006 23938.0 \n", + " 2007-2012 22941.0 \n", + "Maldives 2000-2006 169.0 \n", + " 2007-2012 97.0 \n", + "Mali 2000-2006 6028.0 \n", + " 2007-2012 8393.0 \n", + "Malta 2000-2006 4.0 \n", + " 2007-2012 11.0 \n", + "Marshall Islands 2000-2006 159.0 \n", + " 2007-2012 133.0 \n", + "Mauritania 2000-2006 902.0 \n", + " 2007-2012 2577.0 \n", + "Mauritius 2000-2006 180.0 \n", + " 2007-2012 181.0 \n", + "Mexico 2000-2006 33134.0 \n", + " 2007-2012 28000.0 \n", + "Micronesia (Federated States of) 2000-2006 116.0 \n", + " 2007-2012 150.0 \n", + "Monaco 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Mongolia 2000-2006 5583.0 \n", + " 2007-2012 4674.0 \n", + "Montenegro 2000-2006 42.0 \n", + " 2007-2012 122.0 \n", + "Montserrat 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Morocco 2000-2006 30252.0 \n", + " 2007-2012 21326.0 \n", + "Mozambique 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Myanmar 2000-2006 67403.0 \n", + " 2007-2012 86520.0 \n", + "Namibia 2000-2006 14772.0 \n", + " 2007-2012 12062.0 \n", + "Nauru 2000-2006 5.0 \n", + " 2007-2012 3.0 \n", + "Nepal 2000-2006 32414.0 \n", + " 2007-2012 27740.0 \n", + "Netherlands 2000-2006 593.0 \n", + " 2007-2012 388.0 \n", + "Netherlands Antilles 2000-2006 12.0 \n", + " 2007-2012 0.0 \n", + "New Caledonia 2000-2006 63.0 \n", + " 2007-2012 26.0 \n", + "New Zealand 2000-2006 295.0 \n", + " 2007-2012 237.0 \n", + "Nicaragua 2000-2006 4244.0 \n", + " 2007-2012 2493.0 \n", + "Niger 2000-2006 4789.0 \n", + " 2007-2012 9799.0 \n", + "Nigeria 2000-2006 80330.0 \n", + " 2007-2012 111620.0 \n", + "Niue 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Northern Mariana Islands 2000-2006 96.0 \n", + " 2007-2012 32.0 \n", + "Norway 2000-2006 129.0 \n", + " 2007-2012 107.0 \n", + "Oman 2000-2006 453.0 \n", + " 2007-2012 404.0 \n", + "Pakistan 2000-2006 94064.0 \n", + " 2007-2012 297873.0 \n", + "Palau 2000-2006 11.0 \n", + " 2007-2012 11.0 \n", + "Panama 2000-2006 1902.0 \n", + " 2007-2012 1760.0 \n", + "Papua New Guinea 2000-2006 3225.0 \n", + " 2007-2012 4573.0 \n", + "Paraguay 2000-2006 2815.0 \n", + " 2007-2012 2488.0 \n", + "Peru 2000-2006 46298.0 \n", + " 2007-2012 15103.0 \n", + "Philippines 2000-2006 96966.0 \n", + " 2007-2012 159419.0 \n", + "Poland 2000-2006 6560.0 \n", + " 2007-2012 4465.0 \n", + "Portugal 2000-2006 2962.0 \n", + " 2007-2012 1607.0 \n", + "Puerto Rico 2000-2006 157.0 \n", + " 2007-2012 72.0 \n", + "Qatar 2000-2006 114.0 \n", + " 2007-2012 168.0 \n", + "Republic of Korea 2000-2006 28390.0 \n", + " 2007-2012 27674.0 \n", + "Republic of Moldova 2000-2006 2053.0 \n", + " 2007-2012 1847.0 \n", + "Romania 2000-2006 21126.0 \n", + " 2007-2012 14688.0 \n", + "Russian Federation 2000-2006 35450.0 \n", + " 2007-2012 49652.0 \n", + "Rwanda 2000-2006 7350.0 \n", + " 2007-2012 8444.0 \n", + "Saint Kitts and Nevis 2000-2006 3.0 \n", + " 2007-2012 5.0 \n", + "Saint Lucia 2000-2006 29.0 \n", + " 2007-2012 18.0 \n", + "Saint Vincent and the Grenadines 2000-2006 10.0 \n", + " 2007-2012 12.0 \n", + "Samoa 2000-2006 41.0 \n", + " 2007-2012 1151.0 \n", + "San Marino 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Sao Tome and Principe 2000-2006 193.0 \n", + " 2007-2012 125.0 \n", + "Saudi Arabia 2000-2006 4572.0 \n", + " 2007-2012 4883.0 \n", + "Senegal 2000-2006 13910.0 \n", + " 2007-2012 14339.0 \n", + "Serbia 2000-2006 868.0 \n", + " 2007-2012 2308.0 \n", + "Serbia & Montenegro 2000-2006 1078.0 \n", + "Seychelles 2000-2006 17.0 \n", + " 2007-2012 9.0 \n", + "Sierra Leone 2000-2006 9201.0 \n", + " 2007-2012 14769.0 \n", + "Singapore 2000-2006 862.0 \n", + " 2007-2012 861.0 \n", + "Sint Maarten (Dutch part) 2007-2012 4.0 \n", + "Slovakia 2000-2006 437.0 \n", + " 2007-2012 207.0 \n", + "Slovenia 2000-2006 281.0 \n", + " 2007-2012 153.0 \n", + "Solomon Islands 2000-2006 427.0 \n", + " 2007-2012 447.0 \n", + "Somalia 2000-2006 13763.0 \n", + " 2007-2012 12759.0 \n", + "South Africa 2000-2006 264248.0 \n", + " 2007-2012 363623.0 \n", + "South Sudan 2007-2012 2073.0 \n", + "Spain 2000-2006 4180.0 \n", + " 2007-2012 3834.0 \n", + "Sri Lanka 2000-2006 8386.0 \n", + " 2007-2012 7215.0 \n", + "Sudan 2000-2006 32121.0 \n", + " 2007-2012 21751.0 \n", + "Suriname 2000-2006 93.0 \n", + " 2007-2012 129.0 \n", + "Swaziland 2000-2006 6696.0 \n", + " 2007-2012 8801.0 \n", + "Sweden 2000-2006 352.0 \n", + " 2007-2012 251.0 \n", + "Switzerland 2000-2006 227.0 \n", + " 2007-2012 190.0 \n", + "Syrian Arab Republic 2000-2006 3582.0 \n", + " 2007-2012 2361.0 \n", + "Tajikistan 2000-2006 1521.0 \n", + " 2007-2012 5599.0 \n", + "Thailand 2000-2006 55379.0 \n", + " 2007-2012 56286.0 \n", + "The Former Yugoslav Republic of Macedonia 2000-2006 474.0 \n", + " 2007-2012 345.0 \n", + "Timor-Leste 2000-2006 2150.0 \n", + " 2007-2012 2807.0 \n", + "Togo 2000-2006 3449.0 \n", + " 2007-2012 4884.0 \n", + "Tokelau 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Tonga 2000-2006 33.0 \n", + " 2007-2012 22.0 \n", + "Trinidad and Tobago 2000-2006 244.0 \n", + " 2007-2012 233.0 \n", + "Tunisia 2000-2006 1803.0 \n", + " 2007-2012 1730.0 \n", + "Turkey 2000-2006 4219.0 \n", + " 2007-2012 10003.0 \n", + "Turkmenistan 2000-2006 2777.0 \n", + " 2007-2012 2744.0 \n", + "Turks and Caicos Islands 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "Tuvalu 2000-2006 10.0 \n", + " 2007-2012 25.0 \n", + "US Virgin Islands 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Uganda 2000-2006 56500.0 \n", + " 2007-2012 51566.0 \n", + "Ukraine 2000-2006 11481.0 \n", + " 2007-2012 18694.0 \n", + "United Arab Emirates 2000-2006 143.0 \n", + " 2007-2012 131.0 \n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 3546.0 \n", + " 2007-2012 3176.0 \n", + "United Republic of Tanzania 2000-2006 65505.0 \n", + " 2007-2012 53863.0 \n", + "United States of America 2000-2006 12047.0 \n", + " 2007-2012 7909.0 \n", + "Uruguay 2000-2006 727.0 \n", + " 2007-2012 718.0 \n", + "Uzbekistan 2000-2006 13706.0 \n", + " 2007-2012 12143.0 \n", + "Vanuatu 2000-2006 154.0 \n", + " 2007-2012 145.0 \n", + "Venezuela (Bolivarian Republic of) 2000-2006 7215.0 \n", + " 2007-2012 7934.0 \n", + "Viet Nam 2000-2006 112399.0 \n", + " 2007-2012 80950.0 \n", + "Wallis and Futuna Islands 2000-2006 7.0 \n", + " 2007-2012 1.0 \n", + "West Bank and Gaza Strip 2000-2006 14.0 \n", + " 2007-2012 24.0 \n", + "Yemen 2000-2006 12969.0 \n", + " 2007-2012 9279.0 \n", + "Zambia 2000-2006 41179.0 \n", + " 2007-2012 25435.0 \n", + "Zimbabwe 2000-2006 30699.0 \n", + " 2007-2012 31121.0 \n", + "\n", + "gender m \n", + "country year_range \n", + "Afghanistan 2000-2006 16426.0 \n", + " 2007-2012 25748.0 \n", + "Albania 2000-2006 920.0 \n", + " 2007-2012 706.0 \n", + "Algeria 2000-2006 32926.0 \n", + " 2007-2012 30182.0 \n", + "American Samoa 2000-2006 6.0 \n", + " 2007-2012 0.0 \n", + "Andorra 2000-2006 18.0 \n", + " 2007-2012 5.0 \n", + "Angola 2000-2006 56848.0 \n", + " 2007-2012 71388.0 \n", + "Anguilla 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Antigua and Barbuda 2000-2006 5.0 \n", + " 2007-2012 18.0 \n", + "Argentina 2000-2006 19357.0 \n", + " 2007-2012 15187.0 \n", + "Armenia 2000-2006 3220.0 \n", + " 2007-2012 1916.0 \n", + "Aruba 2000-2006 0.0 \n", + " 2007-2012 10.0 \n", + "Australia 2000-2006 915.0 \n", + " 2007-2012 1003.0 \n", + "Austria 2000-2006 1186.0 \n", + " 2007-2012 361.0 \n", + "Azerbaijan 2000-2006 5913.0 \n", + " 2007-2012 3082.0 \n", + "Bahamas 2000-2006 109.0 \n", + " 2007-2012 102.0 \n", + "Bahrain 2000-2006 140.0 \n", + " 2007-2012 454.0 \n", + "Bangladesh 2000-2006 294417.0 \n", + " 2007-2012 346381.0 \n", + "Barbados 2000-2006 26.0 \n", + " 2007-2012 11.0 \n", + "Belarus 2000-2006 4247.0 \n", + " 2007-2012 5427.0 \n", + "Belgium 2000-2006 1588.0 \n", + " 2007-2012 1092.0 \n", + "Belize 2000-2006 243.0 \n", + " 2007-2012 326.0 \n", + "Benin 2000-2006 11283.0 \n", + " 2007-2012 11855.0 \n", + "Bermuda 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Bhutan 2000-2006 1356.0 \n", + " 2007-2012 1257.0 \n", + "Bolivia (Plurinational State of) 2000-2006 26493.0 \n", + " 2007-2012 20791.0 \n", + "Bonaire, Saint Eustatius and Saba 2007-2012 0.0 \n", + "Bosnia and Herzegovina 2000-2006 2669.0 \n", + " 2007-2012 1603.0 \n", + "Botswana 2000-2006 12441.0 \n", + " 2007-2012 9792.0 \n", + "Brazil 2000-2006 211322.0 \n", + " 2007-2012 159616.0 \n", + "British Virgin Islands 2000-2006 2.0 \n", + " 2007-2012 1.0 \n", + "Brunei Darussalam 2000-2006 400.0 \n", + " 2007-2012 480.0 \n", + "Bulgaria 2000-2006 4233.0 \n", + " 2007-2012 3758.0 \n", + "Burkina Faso 2000-2006 8743.0 \n", + " 2007-2012 12740.0 \n", + "Burundi 2000-2006 11273.0 \n", + " 2007-2012 15699.0 \n", + "Cabo Verde 2000-2006 471.0 \n", + " 2007-2012 630.0 \n", + "Cambodia 2000-2006 63809.0 \n", + " 2007-2012 55865.0 \n", + "Cameroon 2000-2006 38214.0 \n", + " 2007-2012 51806.0 \n", + "Canada 2000-2006 1702.0 \n", + " 2007-2012 1615.0 \n", + "Cayman Islands 2000-2006 6.0 \n", + " 2007-2012 8.0 \n", + "Central African Republic 2000-2006 7685.0 \n", + " 2007-2012 11593.0 \n", + "Chad 2000-2006 7208.0 \n", + " 2007-2012 12948.0 \n", + "Chile 2000-2006 6281.0 \n", + " 2007-2012 4761.0 \n", + "China 2000-2006 1522330.0 \n", + " 2007-2012 1784144.0 \n", + "China, Hong Kong SAR 2000-2006 8483.0 \n", + " 2007-2012 5968.0 \n", + "China, Macao SAR 2000-2006 699.0 \n", + " 2007-2012 644.0 \n", + "Colombia 2000-2006 31804.0 \n", + " 2007-2012 25150.0 \n", + "Comoros 2000-2006 253.0 \n", + " 2007-2012 193.0 \n", + "Congo 2000-2006 6160.0 \n", + " 2007-2012 11880.0 \n", + "Cook Islands 2000-2006 5.0 \n", + " 2007-2012 3.0 \n", + "Costa Rica 2000-2006 1641.0 \n", + " 2007-2012 1099.0 \n", + "Cote d'Ivoire 2000-2006 40932.0 \n", + " 2007-2012 52222.0 \n", + "Croatia 2000-2006 1931.0 \n", + " 2007-2012 785.0 \n", + "Cuba 2000-2006 2762.0 \n", + " 2007-2012 1694.0 \n", + "Curacao 2007-2012 3.0 \n", + "Cyprus 2000-2006 35.0 \n", + " 2007-2012 32.0 \n", + "Czech Republic 2000-2006 1703.0 \n", + " 2007-2012 1010.0 \n", + "Democratic People's Republic of Korea 2000-2006 74757.0 \n", + " 2007-2012 110640.0 \n", + "Democratic Republic of the Congo 2000-2006 192935.0 \n", + " 2007-2012 229162.0 \n", + "Denmark 2000-2006 601.0 \n", + " 2007-2012 463.0 \n", + "Djibouti 2000-2006 5755.0 \n", + " 2007-2012 4975.0 \n", + "Dominica 2000-2006 5.0 \n", + " 2007-2012 19.0 \n", + "Dominican Republic 2000-2006 9800.0 \n", + " 2007-2012 8887.0 \n", + "Ecuador 2000-2006 9901.0 \n", + " 2007-2012 13212.0 \n", + "Egypt 2000-2006 21086.0 \n", + " 2007-2012 19162.0 \n", + "El Salvador 2000-2006 4082.0 \n", + " 2007-2012 3915.0 \n", + "Equatorial Guinea 2000-2006 245.0 \n", + " 2007-2012 1251.0 \n", + "Eritrea 2000-2006 2270.0 \n", + " 2007-2012 1715.0 \n", + "Estonia 2000-2006 1015.0 \n", + " 2007-2012 575.0 \n", + "Ethiopia 2000-2006 140312.0 \n", + " 2007-2012 121887.0 \n", + "Fiji 2000-2006 334.0 \n", + " 2007-2012 289.0 \n", + "Finland 2000-2006 583.0 \n", + " 2007-2012 345.0 \n", + "France 2000-2006 8166.0 \n", + " 2007-2012 4343.0 \n", + "French Polynesia 2000-2006 108.0 \n", + " 2007-2012 62.0 \n", + "Gabon 2000-2006 4131.0 \n", + " 2007-2012 4693.0 \n", + "Gambia 2000-2006 3805.0 \n", + " 2007-2012 4578.0 \n", + "Georgia 2000-2006 6242.0 \n", + " 2007-2012 8892.0 \n", + "Germany 2000-2006 4311.0 \n", + " 2007-2012 4756.0 \n", + "Ghana 2000-2006 34527.0 \n", + " 2007-2012 25325.0 \n", + "Greece 2000-2006 923.0 \n", + " 2007-2012 827.0 \n", + "Greenland 2000-2006 0.0 \n", + " 2007-2012 78.0 \n", + "Grenada 2000-2006 2.0 \n", + " 2007-2012 14.0 \n", + "Guam 2000-2006 179.0 \n", + " 2007-2012 108.0 \n", + "Guatemala 2000-2006 6544.0 \n", + " 2007-2012 5408.0 \n", + "Guinea 2000-2006 21725.0 \n", + " 2007-2012 24187.0 \n", + "Guinea-Bissau 2000-2006 3451.0 \n", + " 2007-2012 3945.0 \n", + "Guyana 2000-2006 1962.0 \n", + " 2007-2012 1324.0 \n", + "Haiti 2000-2006 23307.0 \n", + " 2007-2012 21527.0 \n", + "Honduras 2000-2006 8965.0 \n", + " 2007-2012 6958.0 \n", + "Hungary 2000-2006 2514.0 \n", + " 2007-2012 1349.0 \n", + "Iceland 2000-2006 9.0 \n", + " 2007-2012 9.0 \n", + "India 2000-2006 1848348.0 \n", + " 2007-2012 2590830.0 \n", + "Indonesia 2000-2006 399164.0 \n", + " 2007-2012 639461.0 \n", + "Iran (Islamic Republic of) 2000-2006 17946.0 \n", + " 2007-2012 15447.0 \n", + "Iraq 2000-2006 15159.0 \n", + " 2007-2012 10697.0 \n", + "Ireland 2000-2006 441.0 \n", + " 2007-2012 501.0 \n", + "Israel 2000-2006 738.0 \n", + " 2007-2012 460.0 \n", + "Italy 2000-2006 4445.0 \n", + " 2007-2012 3054.0 \n", + "Jamaica 2000-2006 350.0 \n", + " 2007-2012 262.0 \n", + "Japan 2000-2006 53242.0 \n", + " 2007-2012 34090.0 \n", + "Jordan 2000-2006 436.0 \n", + " 2007-2012 335.0 \n", + "Kazakhstan 2000-2006 30157.0 \n", + " 2007-2012 19017.0 \n", + "Kenya 2000-2006 146717.0 \n", + " 2007-2012 135336.0 \n", + "Kiribati 2000-2006 366.0 \n", + " 2007-2012 408.0 \n", + "Kuwait 2000-2006 956.0 \n", + " 2007-2012 1111.0 \n", + "Kyrgyzstan 2000-2006 7007.0 \n", + " 2007-2012 5823.0 \n", + "Lao People's Democratic Republic 2000-2006 9100.0 \n", + " 2007-2012 11391.0 \n", + "Latvia 2000-2006 3094.0 \n", + " 2007-2012 1658.0 \n", + "Lebanon 2000-2006 613.0 \n", + " 2007-2012 461.0 \n", + "Lesotho 2000-2006 12371.0 \n", + " 2007-2012 10721.0 \n", + "Liberia 2000-2006 7301.0 \n", + " 2007-2012 10714.0 \n", + "Libya 2000-2006 3092.0 \n", + " 2007-2012 2754.0 \n", + "Lithuania 2000-2006 4595.0 \n", + " 2007-2012 3497.0 \n", + "Luxembourg 2000-2006 68.0 \n", + " 2007-2012 1.0 \n", + "Madagascar 2000-2006 42855.0 \n", + " 2007-2012 57554.0 \n", + "Malawi 2000-2006 24994.0 \n", + " 2007-2012 24546.0 \n", + "Malaysia 2000-2006 52440.0 \n", + " 2007-2012 46467.0 \n", + "Maldives 2000-2006 268.0 \n", + " 2007-2012 200.0 \n", + "Mali 2000-2006 12665.0 \n", + " 2007-2012 16587.0 \n", + "Malta 2000-2006 21.0 \n", + " 2007-2012 44.0 \n", + "Marshall Islands 2000-2006 152.0 \n", + " 2007-2012 126.0 \n", + "Mauritania 2000-2006 2246.0 \n", + " 2007-2012 6288.0 \n", + "Mauritius 2000-2006 432.0 \n", + " 2007-2012 411.0 \n", + "Mexico 2000-2006 53218.0 \n", + " 2007-2012 45866.0 \n", + "Micronesia (Federated States of) 2000-2006 93.0 \n", + " 2007-2012 135.0 \n", + "Monaco 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Mongolia 2000-2006 6454.0 \n", + " 2007-2012 6105.0 \n", + "Montenegro 2000-2006 80.0 \n", + " 2007-2012 168.0 \n", + "Montserrat 2000-2006 3.0 \n", + " 2007-2012 0.0 \n", + "Morocco 2000-2006 58497.0 \n", + " 2007-2012 49976.0 \n", + "Mozambique 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Myanmar 2000-2006 130337.0 \n", + " 2007-2012 166258.0 \n", + "Namibia 2000-2006 19685.0 \n", + " 2007-2012 15865.0 \n", + "Nauru 2000-2006 5.0 \n", + " 2007-2012 7.0 \n", + "Nepal 2000-2006 66254.0 \n", + " 2007-2012 58736.0 \n", + "Netherlands 2000-2006 1258.0 \n", + " 2007-2012 712.0 \n", + "Netherlands Antilles 2000-2006 40.0 \n", + " 2007-2012 0.0 \n", + "New Caledonia 2000-2006 86.0 \n", + " 2007-2012 54.0 \n", + "New Zealand 2000-2006 335.0 \n", + " 2007-2012 277.0 \n", + "Nicaragua 2000-2006 5319.0 \n", + " 2007-2012 3354.0 \n", + "Niger 2000-2006 12190.0 \n", + " 2007-2012 27912.0 \n", + "Nigeria 2000-2006 111660.0 \n", + " 2007-2012 169039.0 \n", + "Niue 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Northern Mariana Islands 2000-2006 111.0 \n", + " 2007-2012 54.0 \n", + "Norway 2000-2006 175.0 \n", + " 2007-2012 181.0 \n", + "Oman 2000-2006 692.0 \n", + " 2007-2012 655.0 \n", + "Pakistan 2000-2006 99216.0 \n", + " 2007-2012 313604.0 \n", + "Palau 2000-2006 23.0 \n", + " 2007-2012 17.0 \n", + "Panama 2000-2006 3346.0 \n", + " 2007-2012 3080.0 \n", + "Papua New Guinea 2000-2006 3434.0 \n", + " 2007-2012 4870.0 \n", + "Paraguay 2000-2006 5061.0 \n", + " 2007-2012 5652.0 \n", + "Peru 2000-2006 62229.0 \n", + " 2007-2012 20100.0 \n", + "Philippines 2000-2006 216914.0 \n", + " 2007-2012 377739.0 \n", + "Poland 2000-2006 15001.0 \n", + " 2007-2012 11174.0 \n", + "Portugal 2000-2006 8464.0 \n", + " 2007-2012 4513.0 \n", + "Puerto Rico 2000-2006 332.0 \n", + " 2007-2012 173.0 \n", + "Qatar 2000-2006 399.0 \n", + " 2007-2012 967.0 \n", + "Republic of Korea 2000-2006 48574.0 \n", + " 2007-2012 41026.0 \n", + "Republic of Moldova 2000-2006 6568.0 \n", + " 2007-2012 6499.0 \n", + "Romania 2000-2006 52827.0 \n", + " 2007-2012 35758.0 \n", + "Russian Federation 2000-2006 113330.0 \n", + " 2007-2012 138825.0 \n", + "Rwanda 2000-2006 12980.0 \n", + " 2007-2012 15133.0 \n", + "Saint Kitts and Nevis 2000-2006 1.0 \n", + " 2007-2012 13.0 \n", + "Saint Lucia 2000-2006 48.0 \n", + " 2007-2012 52.0 \n", + "Saint Vincent and the Grenadines 2000-2006 31.0 \n", + " 2007-2012 39.0 \n", + "Samoa 2000-2006 41.0 \n", + " 2007-2012 239.0 \n", + "San Marino 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Sao Tome and Principe 2000-2006 213.0 \n", + " 2007-2012 196.0 \n", + "Saudi Arabia 2000-2006 7073.0 \n", + " 2007-2012 7795.0 \n", + "Senegal 2000-2006 30431.0 \n", + " 2007-2012 32003.0 \n", + "Serbia 2000-2006 1364.0 \n", + " 2007-2012 3456.0 \n", + "Serbia & Montenegro 2000-2006 1632.0 \n", + "Seychelles 2000-2006 42.0 \n", + " 2007-2012 26.0 \n", + "Sierra Leone 2000-2006 14748.0 \n", + " 2007-2012 24760.0 \n", + "Singapore 2000-2006 2466.0 \n", + " 2007-2012 2520.0 \n", + "Sint Maarten (Dutch part) 2007-2012 2.0 \n", + "Slovakia 2000-2006 897.0 \n", + " 2007-2012 520.0 \n", + "Slovenia 2000-2006 530.0 \n", + " 2007-2012 296.0 \n", + "Solomon Islands 2000-2006 373.0 \n", + " 2007-2012 422.0 \n", + "Somalia 2000-2006 24980.0 \n", + " 2007-2012 23174.0 \n", + "South Africa 2000-2006 341088.0 \n", + " 2007-2012 432029.0 \n", + "South Sudan 2007-2012 3844.0 \n", + "Spain 2000-2006 8889.0 \n", + " 2007-2012 7440.0 \n", + "Sri Lanka 2000-2006 22441.0 \n", + " 2007-2012 20056.0 \n", + "Sudan 2000-2006 48022.0 \n", + " 2007-2012 36028.0 \n", + "Suriname 2000-2006 235.0 \n", + " 2007-2012 297.0 \n", + "Swaziland 2000-2006 7019.0 \n", + " 2007-2012 8455.0 \n", + "Sweden 2000-2006 449.0 \n", + " 2007-2012 366.0 \n", + "Switzerland 2000-2006 386.0 \n", + " 2007-2012 279.0 \n", + "Syrian Arab Republic 2000-2006 6609.0 \n", + " 2007-2012 4011.0 \n", + "Tajikistan 2000-2006 2208.0 \n", + " 2007-2012 7163.0 \n", + "Thailand 2000-2006 130832.0 \n", + " 2007-2012 131516.0 \n", + "The Former Yugoslav Republic of Macedonia 2000-2006 812.0 \n", + " 2007-2012 661.0 \n", + "Timor-Leste 2000-2006 2903.0 \n", + " 2007-2012 3442.0 \n", + "Togo 2000-2006 5429.0 \n", + " 2007-2012 7644.0 \n", + "Tokelau 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Tonga 2000-2006 49.0 \n", + " 2007-2012 30.0 \n", + "Trinidad and Tobago 2000-2006 579.0 \n", + " 2007-2012 644.0 \n", + "Tunisia 2000-2006 4931.0 \n", + " 2007-2012 4290.0 \n", + "Turkey 2000-2006 11395.0 \n", + " 2007-2012 25411.0 \n", + "Turkmenistan 2000-2006 5187.0 \n", + " 2007-2012 4772.0 \n", + "Turks and Caicos Islands 2000-2006 5.0 \n", + " 2007-2012 11.0 \n", + "Tuvalu 2000-2006 16.0 \n", + " 2007-2012 24.0 \n", + "US Virgin Islands 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Uganda 2000-2006 79555.0 \n", + " 2007-2012 88857.0 \n", + "Ukraine 2000-2006 38200.0 \n", + " 2007-2012 56689.0 \n", + "United Arab Emirates 2000-2006 170.0 \n", + " 2007-2012 185.0 \n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 5285.0 \n", + " 2007-2012 4947.0 \n", + "United Republic of Tanzania 2000-2006 108065.0 \n", + " 2007-2012 93848.0 \n", + "United States of America 2000-2006 25716.0 \n", + " 2007-2012 16479.0 \n", + "Uruguay 2000-2006 1641.0 \n", + " 2007-2012 1762.0 \n", + "Uzbekistan 2000-2006 18760.0 \n", + " 2007-2012 16336.0 \n", + "Vanuatu 2000-2006 186.0 \n", + " 2007-2012 121.0 \n", + "Venezuela (Bolivarian Republic of) 2000-2006 11087.0 \n", + " 2007-2012 12160.0 \n", + "Viet Nam 2000-2006 278116.0 \n", + " 2007-2012 232357.0 \n", + "Wallis and Futuna Islands 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "West Bank and Gaza Strip 2000-2006 28.0 \n", + " 2007-2012 57.0 \n", + "Yemen 2000-2006 15771.0 \n", + " 2007-2012 11414.0 \n", + "Zambia 2000-2006 53162.0 \n", + " 2007-2012 38711.0 \n", + "Zimbabwe 2000-2006 35504.0 \n", + " 2007-2012 35900.0 " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender = (\n", + " tb.pivot_table(index=['country', 'year_range'], columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "\n", + "tb_cases_per_gender" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
countryyear_range
Afghanistan2000-200667.832.2
2007-201267.432.6
Albania2000-200632.467.6
2007-201230.569.5
Algeria2000-200641.158.9
2007-201238.561.5
American Samoa2000-200664.735.3
2007-2012NaNNaN
Andorra2000-200635.764.3
2007-201250.050.0
Angola2000-200650.249.8
2007-201245.354.7
Anguilla2000-2006100.00.0
2007-20120.0100.0
Antigua and Barbuda2000-200668.831.2
2007-201210.090.0
Argentina2000-200642.957.1
2007-201244.255.8
Armenia2000-200617.582.5
2007-201220.479.6
Aruba2000-2006NaNNaN
2007-201252.447.6
Australia2000-200637.462.6
2007-201241.358.7
Austria2000-200627.872.2
2007-201233.566.5
Azerbaijan2000-200620.979.1
2007-201225.974.1
Bahamas2000-200641.158.9
2007-201232.967.1
Bahrain2000-200631.069.0
2007-201230.469.6
Bangladesh2000-200631.268.8
2007-201233.766.3
Barbados2000-200631.668.4
2007-201235.364.7
Belarus2000-200619.580.5
2007-201223.376.7
Belgium2000-200630.469.6
2007-201232.867.2
Belize2000-200636.663.4
2007-201231.268.8
Benin2000-200636.263.8
2007-201234.865.2
Bermuda2000-200650.050.0
2007-201250.050.0
Bhutan2000-200643.456.6
2007-201250.949.1
Bolivia (Plurinational State of)2000-200640.659.4
2007-201239.460.6
Bonaire, Saint Eustatius and Saba2007-2012NaNNaN
Bosnia and Herzegovina2000-200642.657.4
2007-201240.259.8
Botswana2000-200643.756.3
2007-201243.956.1
Brazil2000-200634.965.1
2007-201231.768.3
British Virgin Islands2000-200650.050.0
2007-20120.0100.0
Brunei Darussalam2000-200638.661.4
2007-201238.062.0
Bulgaria2000-200631.468.6
2007-201228.571.5
Burkina Faso2000-200632.367.7
2007-201231.268.8
Burundi2000-200638.561.5
2007-201234.365.7
Cabo Verde2000-200639.660.4
2007-201229.870.2
Cambodia2000-200648.851.2
2007-201247.053.0
Cameroon2000-200640.159.9
2007-201240.060.0
Canada2000-200642.657.4
2007-201239.260.8
Cayman Islands2000-200614.385.7
2007-201211.188.9
Central African Republic2000-200643.856.2
2007-201245.154.9
Chad2000-200639.460.6
2007-201233.067.0
Chile2000-200632.767.3
2007-201231.568.5
China2000-200631.368.7
2007-201228.771.3
China, Hong Kong SAR2000-200630.969.1
2007-201231.668.4
China, Macao SAR2000-200628.971.1
2007-201231.968.1
Colombia2000-200640.060.0
2007-201239.660.4
Comoros2000-200643.156.9
2007-201232.567.5
Congo2000-200646.353.7
2007-201244.855.2
Cook Islands2000-20060.0100.0
2007-201225.075.0
Costa Rica2000-200635.164.9
2007-201234.765.3
Cote d'Ivoire2000-200641.158.9
2007-201239.960.1
Croatia2000-200633.266.8
2007-201232.068.0
Cuba2000-200624.076.0
2007-201222.677.4
Curacao2007-201250.050.0
Cyprus2000-200627.172.9
2007-201246.753.3
Czech Republic2000-200627.172.9
2007-201224.076.0
Democratic People's Republic of Korea2000-200638.561.5
2007-201236.963.1
Democratic Republic of the Congo2000-200646.953.1
2007-201245.754.3
Denmark2000-200638.161.9
2007-201233.067.0
Djibouti2000-200632.467.6
2007-201234.965.1
Dominica2000-200650.050.0
2007-201224.076.0
Dominican Republic2000-200639.660.4
2007-201238.161.9
Ecuador2000-200640.759.3
2007-201236.863.2
Egypt2000-200634.066.0
2007-201232.967.1
El Salvador2000-200639.660.4
2007-201236.363.7
Equatorial Guinea2000-200639.760.3
2007-201242.157.9
Eritrea2000-200653.546.5
2007-201244.855.2
Estonia2000-200626.673.4
2007-201225.874.2
Ethiopia2000-200645.354.7
2007-201244.555.5
Fiji2000-200638.561.5
2007-201245.954.1
Finland2000-200634.965.1
2007-201233.466.6
France2000-200634.265.8
2007-201236.763.3
French Polynesia2000-200645.554.5
2007-201245.654.4
Gabon2000-200640.259.8
2007-201239.760.3
Gambia2000-200629.870.2
2007-201232.367.7
Georgia2000-200624.076.0
2007-201223.476.6
Germany2000-200634.565.5
2007-201234.165.9
Ghana2000-200634.965.1
2007-201233.466.6
Greece2000-200629.170.9
2007-201228.571.5
Greenland2000-2006NaNNaN
2007-201239.560.5
Grenada2000-200650.050.0
2007-201222.277.8
Guam2000-200635.164.9
2007-201231.268.8
Guatemala2000-200646.153.9
2007-201246.553.5
Guinea2000-200634.066.0
2007-201234.965.1
Guinea-Bissau2000-200639.860.2
2007-201239.160.9
Guyana2000-200631.868.2
2007-201228.072.0
Haiti2000-200649.950.1
2007-201248.751.3
Honduras2000-200644.655.4
2007-201240.159.9
Hungary2000-200626.373.7
2007-201228.571.5
Iceland2000-200640.060.0
2007-201250.050.0
India2000-200630.969.1
2007-201230.669.4
Indonesia2000-200641.858.2
2007-201240.859.2
Iran (Islamic Republic of)2000-200649.850.2
2007-201249.750.3
Iraq2000-200634.565.5
2007-201242.757.3
Ireland2000-200635.864.2
2007-201233.067.0
Israel2000-200638.761.3
2007-201236.163.9
Italy2000-200634.765.3
2007-201236.963.1
Jamaica2000-200628.471.6
2007-201232.367.7
Japan2000-200630.469.6
2007-201233.366.7
Jordan2000-200634.265.8
2007-201246.653.4
Kazakhstan2000-200637.862.2
2007-201237.862.2
Kenya2000-200642.157.9
2007-201239.360.7
Kiribati2000-200647.053.0
2007-201248.251.8
Kuwait2000-200635.464.6
2007-201242.757.3
Kyrgyzstan2000-200639.160.9
2007-201240.859.2
Lao People's Democratic Republic2000-200638.761.3
2007-201238.961.1
Latvia2000-200626.273.8
2007-201225.374.7
Lebanon2000-200641.258.8
2007-201258.241.8
Lesotho2000-200644.255.8
2007-201243.756.3
Liberia2000-200643.057.0
2007-201244.355.7
Libya2000-200621.578.5
2007-201223.476.6
Lithuania2000-200626.773.3
2007-201225.274.8
Luxembourg2000-200639.360.7
2007-20120.0100.0
Madagascar2000-200640.859.2
2007-201241.059.0
Malawi2000-200649.550.5
2007-201244.355.7
Malaysia2000-200631.368.7
2007-201233.166.9
Maldives2000-200638.761.3
2007-201232.767.3
Mali2000-200632.267.8
2007-201233.666.4
Malta2000-200616.084.0
2007-201220.080.0
Marshall Islands2000-200651.148.9
2007-201251.448.6
Mauritania2000-200628.771.3
2007-201229.170.9
Mauritius2000-200629.470.6
2007-201230.669.4
Mexico2000-200638.461.6
2007-201237.962.1
Micronesia (Federated States of)2000-200655.544.5
2007-201252.647.4
Monaco2000-2006NaNNaN
2007-2012NaNNaN
Mongolia2000-200646.453.6
2007-201243.456.6
Montenegro2000-200634.465.6
2007-201242.157.9
Montserrat2000-20060.0100.0
2007-2012100.00.0
Morocco2000-200634.165.9
2007-201229.970.1
Mozambique2000-2006NaNNaN
2007-2012NaNNaN
Myanmar2000-200634.165.9
2007-201234.265.8
Namibia2000-200642.957.1
2007-201243.256.8
Nauru2000-200650.050.0
2007-201230.070.0
Nepal2000-200632.967.1
2007-201232.167.9
Netherlands2000-200632.068.0
2007-201235.364.7
Netherlands Antilles2000-200623.176.9
2007-2012NaNNaN
New Caledonia2000-200642.357.7
2007-201232.567.5
New Zealand2000-200646.853.2
2007-201246.153.9
Nicaragua2000-200644.455.6
2007-201242.657.4
Niger2000-200628.271.8
2007-201226.074.0
Nigeria2000-200641.858.2
2007-201239.860.2
Niue2000-2006100.00.0
2007-2012NaNNaN
Northern Mariana Islands2000-200646.453.6
2007-201237.262.8
Norway2000-200642.457.6
2007-201237.262.8
Oman2000-200639.660.4
2007-201238.161.9
Pakistan2000-200648.751.3
2007-201248.751.3
Palau2000-200632.467.6
2007-201239.360.7
Panama2000-200636.263.8
2007-201236.463.6
Papua New Guinea2000-200648.451.6
2007-201248.451.6
Paraguay2000-200635.764.3
2007-201230.669.4
Peru2000-200642.757.3
2007-201242.957.1
Philippines2000-200630.969.1
2007-201229.770.3
Poland2000-200630.469.6
2007-201228.671.4
Portugal2000-200625.974.1
2007-201226.373.7
Puerto Rico2000-200632.167.9
2007-201229.470.6
Qatar2000-200622.277.8
2007-201214.885.2
Republic of Korea2000-200636.963.1
2007-201240.359.7
Republic of Moldova2000-200623.876.2
2007-201222.177.9
Romania2000-200628.671.4
2007-201229.170.9
Russian Federation2000-200623.876.2
2007-201226.373.7
Rwanda2000-200636.263.8
2007-201235.864.2
Saint Kitts and Nevis2000-200675.025.0
2007-201227.872.2
Saint Lucia2000-200637.762.3
2007-201225.774.3
Saint Vincent and the Grenadines2000-200624.475.6
2007-201223.576.5
Samoa2000-200650.050.0
2007-201282.817.2
San Marino2000-20060.0100.0
2007-2012NaNNaN
Sao Tome and Principe2000-200647.552.5
2007-201238.961.1
Saudi Arabia2000-200639.360.7
2007-201238.561.5
Senegal2000-200631.468.6
2007-201230.969.1
Serbia2000-200638.961.1
2007-201240.060.0
Serbia & Montenegro2000-200639.860.2
Seychelles2000-200628.871.2
2007-201225.774.3
Sierra Leone2000-200638.461.6
2007-201237.462.6
Singapore2000-200625.974.1
2007-201225.574.5
Sint Maarten (Dutch part)2007-201266.733.3
Slovakia2000-200632.867.2
2007-201228.571.5
Slovenia2000-200634.665.4
2007-201234.165.9
Solomon Islands2000-200653.446.6
2007-201251.448.6
Somalia2000-200635.564.5
2007-201235.564.5
South Africa2000-200643.756.3
2007-201245.754.3
South Sudan2007-201235.065.0
Spain2000-200632.068.0
2007-201234.066.0
Sri Lanka2000-200627.272.8
2007-201226.573.5
Sudan2000-200640.159.9
2007-201237.662.4
Suriname2000-200628.471.6
2007-201230.369.7
Swaziland2000-200648.851.2
2007-201251.049.0
Sweden2000-200643.956.1
2007-201240.759.3
Switzerland2000-200637.063.0
2007-201240.559.5
Syrian Arab Republic2000-200635.164.9
2007-201237.162.9
Tajikistan2000-200640.859.2
2007-201243.956.1
Thailand2000-200629.770.3
2007-201230.070.0
The Former Yugoslav Republic of Macedonia2000-200636.963.1
2007-201234.365.7
Timor-Leste2000-200642.557.5
2007-201244.955.1
Togo2000-200638.861.2
2007-201239.061.0
Tokelau2000-2006NaNNaN
2007-2012NaNNaN
Tonga2000-200640.259.8
2007-201242.357.7
Trinidad and Tobago2000-200629.670.4
2007-201226.673.4
Tunisia2000-200626.873.2
2007-201228.771.3
Turkey2000-200627.073.0
2007-201228.271.8
Turkmenistan2000-200634.965.1
2007-201236.563.5
Turks and Caicos Islands2000-200666.733.3
2007-201231.268.8
Tuvalu2000-200638.561.5
2007-201251.049.0
US Virgin Islands2000-2006NaNNaN
2007-2012NaNNaN
Uganda2000-200641.558.5
2007-201236.763.3
Ukraine2000-200623.176.9
2007-201224.875.2
United Arab Emirates2000-200645.754.3
2007-201241.558.5
United Kingdom of Great Britain and Northern Ireland2000-200640.259.8
2007-201239.160.9
United Republic of Tanzania2000-200637.762.3
2007-201236.563.5
United States of America2000-200631.968.1
2007-201232.467.6
Uruguay2000-200630.769.3
2007-201229.071.0
Uzbekistan2000-200642.257.8
2007-201242.657.4
Vanuatu2000-200645.354.7
2007-201254.545.5
Venezuela (Bolivarian Republic of)2000-200639.460.6
2007-201239.560.5
Viet Nam2000-200628.871.2
2007-201225.874.2
Wallis and Futuna Islands2000-200641.258.8
2007-201216.783.3
West Bank and Gaza Strip2000-200633.366.7
2007-201229.670.4
Yemen2000-200645.154.9
2007-201244.855.2
Zambia2000-200643.656.4
2007-201239.760.3
Zimbabwe2000-200646.453.6
2007-201246.453.6
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country year_range \n", + "Afghanistan 2000-2006 67.8 32.2\n", + " 2007-2012 67.4 32.6\n", + "Albania 2000-2006 32.4 67.6\n", + " 2007-2012 30.5 69.5\n", + "Algeria 2000-2006 41.1 58.9\n", + " 2007-2012 38.5 61.5\n", + "American Samoa 2000-2006 64.7 35.3\n", + " 2007-2012 NaN NaN\n", + "Andorra 2000-2006 35.7 64.3\n", + " 2007-2012 50.0 50.0\n", + "Angola 2000-2006 50.2 49.8\n", + " 2007-2012 45.3 54.7\n", + "Anguilla 2000-2006 100.0 0.0\n", + " 2007-2012 0.0 100.0\n", + "Antigua and Barbuda 2000-2006 68.8 31.2\n", + " 2007-2012 10.0 90.0\n", + "Argentina 2000-2006 42.9 57.1\n", + " 2007-2012 44.2 55.8\n", + "Armenia 2000-2006 17.5 82.5\n", + " 2007-2012 20.4 79.6\n", + "Aruba 2000-2006 NaN NaN\n", + " 2007-2012 52.4 47.6\n", + "Australia 2000-2006 37.4 62.6\n", + " 2007-2012 41.3 58.7\n", + "Austria 2000-2006 27.8 72.2\n", + " 2007-2012 33.5 66.5\n", + "Azerbaijan 2000-2006 20.9 79.1\n", + " 2007-2012 25.9 74.1\n", + "Bahamas 2000-2006 41.1 58.9\n", + " 2007-2012 32.9 67.1\n", + "Bahrain 2000-2006 31.0 69.0\n", + " 2007-2012 30.4 69.6\n", + "Bangladesh 2000-2006 31.2 68.8\n", + " 2007-2012 33.7 66.3\n", + "Barbados 2000-2006 31.6 68.4\n", + " 2007-2012 35.3 64.7\n", + "Belarus 2000-2006 19.5 80.5\n", + " 2007-2012 23.3 76.7\n", + "Belgium 2000-2006 30.4 69.6\n", + " 2007-2012 32.8 67.2\n", + "Belize 2000-2006 36.6 63.4\n", + " 2007-2012 31.2 68.8\n", + "Benin 2000-2006 36.2 63.8\n", + " 2007-2012 34.8 65.2\n", + "Bermuda 2000-2006 50.0 50.0\n", + " 2007-2012 50.0 50.0\n", + "Bhutan 2000-2006 43.4 56.6\n", + " 2007-2012 50.9 49.1\n", + "Bolivia (Plurinational State of) 2000-2006 40.6 59.4\n", + " 2007-2012 39.4 60.6\n", + "Bonaire, Saint Eustatius and Saba 2007-2012 NaN NaN\n", + "Bosnia and Herzegovina 2000-2006 42.6 57.4\n", + " 2007-2012 40.2 59.8\n", + "Botswana 2000-2006 43.7 56.3\n", + " 2007-2012 43.9 56.1\n", + "Brazil 2000-2006 34.9 65.1\n", + " 2007-2012 31.7 68.3\n", + "British Virgin Islands 2000-2006 50.0 50.0\n", + " 2007-2012 0.0 100.0\n", + "Brunei Darussalam 2000-2006 38.6 61.4\n", + " 2007-2012 38.0 62.0\n", + "Bulgaria 2000-2006 31.4 68.6\n", + " 2007-2012 28.5 71.5\n", + "Burkina Faso 2000-2006 32.3 67.7\n", + " 2007-2012 31.2 68.8\n", + "Burundi 2000-2006 38.5 61.5\n", + " 2007-2012 34.3 65.7\n", + "Cabo Verde 2000-2006 39.6 60.4\n", + " 2007-2012 29.8 70.2\n", + "Cambodia 2000-2006 48.8 51.2\n", + " 2007-2012 47.0 53.0\n", + "Cameroon 2000-2006 40.1 59.9\n", + " 2007-2012 40.0 60.0\n", + "Canada 2000-2006 42.6 57.4\n", + " 2007-2012 39.2 60.8\n", + "Cayman Islands 2000-2006 14.3 85.7\n", + " 2007-2012 11.1 88.9\n", + "Central African Republic 2000-2006 43.8 56.2\n", + " 2007-2012 45.1 54.9\n", + "Chad 2000-2006 39.4 60.6\n", + " 2007-2012 33.0 67.0\n", + "Chile 2000-2006 32.7 67.3\n", + " 2007-2012 31.5 68.5\n", + "China 2000-2006 31.3 68.7\n", + " 2007-2012 28.7 71.3\n", + "China, Hong Kong SAR 2000-2006 30.9 69.1\n", + " 2007-2012 31.6 68.4\n", + "China, Macao SAR 2000-2006 28.9 71.1\n", + " 2007-2012 31.9 68.1\n", + "Colombia 2000-2006 40.0 60.0\n", + " 2007-2012 39.6 60.4\n", + "Comoros 2000-2006 43.1 56.9\n", + " 2007-2012 32.5 67.5\n", + "Congo 2000-2006 46.3 53.7\n", + " 2007-2012 44.8 55.2\n", + "Cook Islands 2000-2006 0.0 100.0\n", + " 2007-2012 25.0 75.0\n", + "Costa Rica 2000-2006 35.1 64.9\n", + " 2007-2012 34.7 65.3\n", + "Cote d'Ivoire 2000-2006 41.1 58.9\n", + " 2007-2012 39.9 60.1\n", + "Croatia 2000-2006 33.2 66.8\n", + " 2007-2012 32.0 68.0\n", + "Cuba 2000-2006 24.0 76.0\n", + " 2007-2012 22.6 77.4\n", + "Curacao 2007-2012 50.0 50.0\n", + "Cyprus 2000-2006 27.1 72.9\n", + " 2007-2012 46.7 53.3\n", + "Czech Republic 2000-2006 27.1 72.9\n", + " 2007-2012 24.0 76.0\n", + "Democratic People's Republic of Korea 2000-2006 38.5 61.5\n", + " 2007-2012 36.9 63.1\n", + "Democratic Republic of the Congo 2000-2006 46.9 53.1\n", + " 2007-2012 45.7 54.3\n", + "Denmark 2000-2006 38.1 61.9\n", + " 2007-2012 33.0 67.0\n", + "Djibouti 2000-2006 32.4 67.6\n", + " 2007-2012 34.9 65.1\n", + "Dominica 2000-2006 50.0 50.0\n", + " 2007-2012 24.0 76.0\n", + "Dominican Republic 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Ecuador 2000-2006 40.7 59.3\n", + " 2007-2012 36.8 63.2\n", + "Egypt 2000-2006 34.0 66.0\n", + " 2007-2012 32.9 67.1\n", + "El Salvador 2000-2006 39.6 60.4\n", + " 2007-2012 36.3 63.7\n", + "Equatorial Guinea 2000-2006 39.7 60.3\n", + " 2007-2012 42.1 57.9\n", + "Eritrea 2000-2006 53.5 46.5\n", + " 2007-2012 44.8 55.2\n", + "Estonia 2000-2006 26.6 73.4\n", + " 2007-2012 25.8 74.2\n", + "Ethiopia 2000-2006 45.3 54.7\n", + " 2007-2012 44.5 55.5\n", + "Fiji 2000-2006 38.5 61.5\n", + " 2007-2012 45.9 54.1\n", + "Finland 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "France 2000-2006 34.2 65.8\n", + " 2007-2012 36.7 63.3\n", + "French Polynesia 2000-2006 45.5 54.5\n", + " 2007-2012 45.6 54.4\n", + "Gabon 2000-2006 40.2 59.8\n", + " 2007-2012 39.7 60.3\n", + "Gambia 2000-2006 29.8 70.2\n", + " 2007-2012 32.3 67.7\n", + "Georgia 2000-2006 24.0 76.0\n", + " 2007-2012 23.4 76.6\n", + "Germany 2000-2006 34.5 65.5\n", + " 2007-2012 34.1 65.9\n", + "Ghana 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "Greece 2000-2006 29.1 70.9\n", + " 2007-2012 28.5 71.5\n", + "Greenland 2000-2006 NaN NaN\n", + " 2007-2012 39.5 60.5\n", + "Grenada 2000-2006 50.0 50.0\n", + " 2007-2012 22.2 77.8\n", + "Guam 2000-2006 35.1 64.9\n", + " 2007-2012 31.2 68.8\n", + "Guatemala 2000-2006 46.1 53.9\n", + " 2007-2012 46.5 53.5\n", + "Guinea 2000-2006 34.0 66.0\n", + " 2007-2012 34.9 65.1\n", + "Guinea-Bissau 2000-2006 39.8 60.2\n", + " 2007-2012 39.1 60.9\n", + "Guyana 2000-2006 31.8 68.2\n", + " 2007-2012 28.0 72.0\n", + "Haiti 2000-2006 49.9 50.1\n", + " 2007-2012 48.7 51.3\n", + "Honduras 2000-2006 44.6 55.4\n", + " 2007-2012 40.1 59.9\n", + "Hungary 2000-2006 26.3 73.7\n", + " 2007-2012 28.5 71.5\n", + "Iceland 2000-2006 40.0 60.0\n", + " 2007-2012 50.0 50.0\n", + "India 2000-2006 30.9 69.1\n", + " 2007-2012 30.6 69.4\n", + "Indonesia 2000-2006 41.8 58.2\n", + " 2007-2012 40.8 59.2\n", + "Iran (Islamic Republic of) 2000-2006 49.8 50.2\n", + " 2007-2012 49.7 50.3\n", + "Iraq 2000-2006 34.5 65.5\n", + " 2007-2012 42.7 57.3\n", + "Ireland 2000-2006 35.8 64.2\n", + " 2007-2012 33.0 67.0\n", + "Israel 2000-2006 38.7 61.3\n", + " 2007-2012 36.1 63.9\n", + "Italy 2000-2006 34.7 65.3\n", + " 2007-2012 36.9 63.1\n", + "Jamaica 2000-2006 28.4 71.6\n", + " 2007-2012 32.3 67.7\n", + "Japan 2000-2006 30.4 69.6\n", + " 2007-2012 33.3 66.7\n", + "Jordan 2000-2006 34.2 65.8\n", + " 2007-2012 46.6 53.4\n", + "Kazakhstan 2000-2006 37.8 62.2\n", + " 2007-2012 37.8 62.2\n", + "Kenya 2000-2006 42.1 57.9\n", + " 2007-2012 39.3 60.7\n", + "Kiribati 2000-2006 47.0 53.0\n", + " 2007-2012 48.2 51.8\n", + "Kuwait 2000-2006 35.4 64.6\n", + " 2007-2012 42.7 57.3\n", + "Kyrgyzstan 2000-2006 39.1 60.9\n", + " 2007-2012 40.8 59.2\n", + "Lao People's Democratic Republic 2000-2006 38.7 61.3\n", + " 2007-2012 38.9 61.1\n", + "Latvia 2000-2006 26.2 73.8\n", + " 2007-2012 25.3 74.7\n", + "Lebanon 2000-2006 41.2 58.8\n", + " 2007-2012 58.2 41.8\n", + "Lesotho 2000-2006 44.2 55.8\n", + " 2007-2012 43.7 56.3\n", + "Liberia 2000-2006 43.0 57.0\n", + " 2007-2012 44.3 55.7\n", + "Libya 2000-2006 21.5 78.5\n", + " 2007-2012 23.4 76.6\n", + "Lithuania 2000-2006 26.7 73.3\n", + " 2007-2012 25.2 74.8\n", + "Luxembourg 2000-2006 39.3 60.7\n", + " 2007-2012 0.0 100.0\n", + "Madagascar 2000-2006 40.8 59.2\n", + " 2007-2012 41.0 59.0\n", + "Malawi 2000-2006 49.5 50.5\n", + " 2007-2012 44.3 55.7\n", + "Malaysia 2000-2006 31.3 68.7\n", + " 2007-2012 33.1 66.9\n", + "Maldives 2000-2006 38.7 61.3\n", + " 2007-2012 32.7 67.3\n", + "Mali 2000-2006 32.2 67.8\n", + " 2007-2012 33.6 66.4\n", + "Malta 2000-2006 16.0 84.0\n", + " 2007-2012 20.0 80.0\n", + "Marshall Islands 2000-2006 51.1 48.9\n", + " 2007-2012 51.4 48.6\n", + "Mauritania 2000-2006 28.7 71.3\n", + " 2007-2012 29.1 70.9\n", + "Mauritius 2000-2006 29.4 70.6\n", + " 2007-2012 30.6 69.4\n", + "Mexico 2000-2006 38.4 61.6\n", + " 2007-2012 37.9 62.1\n", + "Micronesia (Federated States of) 2000-2006 55.5 44.5\n", + " 2007-2012 52.6 47.4\n", + "Monaco 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Mongolia 2000-2006 46.4 53.6\n", + " 2007-2012 43.4 56.6\n", + "Montenegro 2000-2006 34.4 65.6\n", + " 2007-2012 42.1 57.9\n", + "Montserrat 2000-2006 0.0 100.0\n", + " 2007-2012 100.0 0.0\n", + "Morocco 2000-2006 34.1 65.9\n", + " 2007-2012 29.9 70.1\n", + "Mozambique 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Myanmar 2000-2006 34.1 65.9\n", + " 2007-2012 34.2 65.8\n", + "Namibia 2000-2006 42.9 57.1\n", + " 2007-2012 43.2 56.8\n", + "Nauru 2000-2006 50.0 50.0\n", + " 2007-2012 30.0 70.0\n", + "Nepal 2000-2006 32.9 67.1\n", + " 2007-2012 32.1 67.9\n", + "Netherlands 2000-2006 32.0 68.0\n", + " 2007-2012 35.3 64.7\n", + "Netherlands Antilles 2000-2006 23.1 76.9\n", + " 2007-2012 NaN NaN\n", + "New Caledonia 2000-2006 42.3 57.7\n", + " 2007-2012 32.5 67.5\n", + "New Zealand 2000-2006 46.8 53.2\n", + " 2007-2012 46.1 53.9\n", + "Nicaragua 2000-2006 44.4 55.6\n", + " 2007-2012 42.6 57.4\n", + "Niger 2000-2006 28.2 71.8\n", + " 2007-2012 26.0 74.0\n", + "Nigeria 2000-2006 41.8 58.2\n", + " 2007-2012 39.8 60.2\n", + "Niue 2000-2006 100.0 0.0\n", + " 2007-2012 NaN NaN\n", + "Northern Mariana Islands 2000-2006 46.4 53.6\n", + " 2007-2012 37.2 62.8\n", + "Norway 2000-2006 42.4 57.6\n", + " 2007-2012 37.2 62.8\n", + "Oman 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Pakistan 2000-2006 48.7 51.3\n", + " 2007-2012 48.7 51.3\n", + "Palau 2000-2006 32.4 67.6\n", + " 2007-2012 39.3 60.7\n", + "Panama 2000-2006 36.2 63.8\n", + " 2007-2012 36.4 63.6\n", + "Papua New Guinea 2000-2006 48.4 51.6\n", + " 2007-2012 48.4 51.6\n", + "Paraguay 2000-2006 35.7 64.3\n", + " 2007-2012 30.6 69.4\n", + "Peru 2000-2006 42.7 57.3\n", + " 2007-2012 42.9 57.1\n", + "Philippines 2000-2006 30.9 69.1\n", + " 2007-2012 29.7 70.3\n", + "Poland 2000-2006 30.4 69.6\n", + " 2007-2012 28.6 71.4\n", + "Portugal 2000-2006 25.9 74.1\n", + " 2007-2012 26.3 73.7\n", + "Puerto Rico 2000-2006 32.1 67.9\n", + " 2007-2012 29.4 70.6\n", + "Qatar 2000-2006 22.2 77.8\n", + " 2007-2012 14.8 85.2\n", + "Republic of Korea 2000-2006 36.9 63.1\n", + " 2007-2012 40.3 59.7\n", + "Republic of Moldova 2000-2006 23.8 76.2\n", + " 2007-2012 22.1 77.9\n", + "Romania 2000-2006 28.6 71.4\n", + " 2007-2012 29.1 70.9\n", + "Russian Federation 2000-2006 23.8 76.2\n", + " 2007-2012 26.3 73.7\n", + "Rwanda 2000-2006 36.2 63.8\n", + " 2007-2012 35.8 64.2\n", + "Saint Kitts and Nevis 2000-2006 75.0 25.0\n", + " 2007-2012 27.8 72.2\n", + "Saint Lucia 2000-2006 37.7 62.3\n", + " 2007-2012 25.7 74.3\n", + "Saint Vincent and the Grenadines 2000-2006 24.4 75.6\n", + " 2007-2012 23.5 76.5\n", + "Samoa 2000-2006 50.0 50.0\n", + " 2007-2012 82.8 17.2\n", + "San Marino 2000-2006 0.0 100.0\n", + " 2007-2012 NaN NaN\n", + "Sao Tome and Principe 2000-2006 47.5 52.5\n", + " 2007-2012 38.9 61.1\n", + "Saudi Arabia 2000-2006 39.3 60.7\n", + " 2007-2012 38.5 61.5\n", + "Senegal 2000-2006 31.4 68.6\n", + " 2007-2012 30.9 69.1\n", + "Serbia 2000-2006 38.9 61.1\n", + " 2007-2012 40.0 60.0\n", + "Serbia & Montenegro 2000-2006 39.8 60.2\n", + "Seychelles 2000-2006 28.8 71.2\n", + " 2007-2012 25.7 74.3\n", + "Sierra Leone 2000-2006 38.4 61.6\n", + " 2007-2012 37.4 62.6\n", + "Singapore 2000-2006 25.9 74.1\n", + " 2007-2012 25.5 74.5\n", + "Sint Maarten (Dutch part) 2007-2012 66.7 33.3\n", + "Slovakia 2000-2006 32.8 67.2\n", + " 2007-2012 28.5 71.5\n", + "Slovenia 2000-2006 34.6 65.4\n", + " 2007-2012 34.1 65.9\n", + "Solomon Islands 2000-2006 53.4 46.6\n", + " 2007-2012 51.4 48.6\n", + "Somalia 2000-2006 35.5 64.5\n", + " 2007-2012 35.5 64.5\n", + "South Africa 2000-2006 43.7 56.3\n", + " 2007-2012 45.7 54.3\n", + "South Sudan 2007-2012 35.0 65.0\n", + "Spain 2000-2006 32.0 68.0\n", + " 2007-2012 34.0 66.0\n", + "Sri Lanka 2000-2006 27.2 72.8\n", + " 2007-2012 26.5 73.5\n", + "Sudan 2000-2006 40.1 59.9\n", + " 2007-2012 37.6 62.4\n", + "Suriname 2000-2006 28.4 71.6\n", + " 2007-2012 30.3 69.7\n", + "Swaziland 2000-2006 48.8 51.2\n", + " 2007-2012 51.0 49.0\n", + "Sweden 2000-2006 43.9 56.1\n", + " 2007-2012 40.7 59.3\n", + "Switzerland 2000-2006 37.0 63.0\n", + " 2007-2012 40.5 59.5\n", + "Syrian Arab Republic 2000-2006 35.1 64.9\n", + " 2007-2012 37.1 62.9\n", + "Tajikistan 2000-2006 40.8 59.2\n", + " 2007-2012 43.9 56.1\n", + "Thailand 2000-2006 29.7 70.3\n", + " 2007-2012 30.0 70.0\n", + "The Former Yugoslav Republic of Macedonia 2000-2006 36.9 63.1\n", + " 2007-2012 34.3 65.7\n", + "Timor-Leste 2000-2006 42.5 57.5\n", + " 2007-2012 44.9 55.1\n", + "Togo 2000-2006 38.8 61.2\n", + " 2007-2012 39.0 61.0\n", + "Tokelau 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Tonga 2000-2006 40.2 59.8\n", + " 2007-2012 42.3 57.7\n", + "Trinidad and Tobago 2000-2006 29.6 70.4\n", + " 2007-2012 26.6 73.4\n", + "Tunisia 2000-2006 26.8 73.2\n", + " 2007-2012 28.7 71.3\n", + "Turkey 2000-2006 27.0 73.0\n", + " 2007-2012 28.2 71.8\n", + "Turkmenistan 2000-2006 34.9 65.1\n", + " 2007-2012 36.5 63.5\n", + "Turks and Caicos Islands 2000-2006 66.7 33.3\n", + " 2007-2012 31.2 68.8\n", + "Tuvalu 2000-2006 38.5 61.5\n", + " 2007-2012 51.0 49.0\n", + "US Virgin Islands 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Uganda 2000-2006 41.5 58.5\n", + " 2007-2012 36.7 63.3\n", + "Ukraine 2000-2006 23.1 76.9\n", + " 2007-2012 24.8 75.2\n", + "United Arab Emirates 2000-2006 45.7 54.3\n", + " 2007-2012 41.5 58.5\n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 40.2 59.8\n", + " 2007-2012 39.1 60.9\n", + "United Republic of Tanzania 2000-2006 37.7 62.3\n", + " 2007-2012 36.5 63.5\n", + "United States of America 2000-2006 31.9 68.1\n", + " 2007-2012 32.4 67.6\n", + "Uruguay 2000-2006 30.7 69.3\n", + " 2007-2012 29.0 71.0\n", + "Uzbekistan 2000-2006 42.2 57.8\n", + " 2007-2012 42.6 57.4\n", + "Vanuatu 2000-2006 45.3 54.7\n", + " 2007-2012 54.5 45.5\n", + "Venezuela (Bolivarian Republic of) 2000-2006 39.4 60.6\n", + " 2007-2012 39.5 60.5\n", + "Viet Nam 2000-2006 28.8 71.2\n", + " 2007-2012 25.8 74.2\n", + "Wallis and Futuna Islands 2000-2006 41.2 58.8\n", + " 2007-2012 16.7 83.3\n", + "West Bank and Gaza Strip 2000-2006 33.3 66.7\n", + " 2007-2012 29.6 70.4\n", + "Yemen 2000-2006 45.1 54.9\n", + " 2007-2012 44.8 55.2\n", + "Zambia 2000-2006 43.6 56.4\n", + " 2007-2012 39.7 60.3\n", + "Zimbabwe 2000-2006 46.4 53.6\n", + " 2007-2012 46.4 53.6" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "total_cases = tb_cases_per_gender.sum(axis=1)\n", + "\n", + "tb_cases_per_gender = tb_cases_per_gender.div(total_cases, axis=0)\n", + "(tb_cases_per_gender.round(3) * 100)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cf39e5dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/tidy_data.ipynb b/exercises/tabular_tidy_data/tidy_data.ipynb new file mode 100644 index 0000000..89c8f35 --- /dev/null +++ b/exercises/tabular_tidy_data/tidy_data.ipynb @@ -0,0 +1,787 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "062ed46a", + "metadata": {}, + "source": [ + "# 1. Make data tidy\n", + "\n", + "The final table should have these columns: `country`, `year`, `gender`, `age_range`, `cases`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "568c8440", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# 2. Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender, for data between 2000 and 2006 (included)\n", + "2. Compute the number of cases per country and year range (2000-2006, 2007-2012) on rows, and gender on columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/tidy_data_solution.ipynb b/exercises/tabular_tidy_data/tidy_data_solution.ipynb new file mode 100644 index 0000000..a3055b8 --- /dev/null +++ b/exercises/tabular_tidy_data/tidy_data_solution.ipynb @@ -0,0 +1,13410 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "062ed46a", + "metadata": {}, + "source": [ + "# 1. Make data tidy\n", + "\n", + "The final table should have these columns: `country`, `year`, `gender`, `age_range`, `cases`" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "4b249905", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearvariablecases
65Angola2000sp_m_014186.0
66Angola2001sp_m_014230.0
67Angola2002sp_m_014435.0
68Angola2003sp_m_014409.0
69Angola2004sp_m_014554.0
70Angola2005sp_m_014520.0
71Angola2006sp_m_014540.0
72Angola2007sp_m_014484.0
73Angola2008sp_m_014367.0
74Angola2009sp_m_014392.0
75Angola2010sp_m_014448.0
76Angola2011sp_m_014501.0
77Angola2012sp_m_014390.0
2848Angola2000sp_m_1524999.0
2849Angola2001sp_m_1524892.0
2850Angola2002sp_m_15242223.0
2851Angola2003sp_m_15242355.0
2852Angola2004sp_m_15242684.0
2853Angola2005sp_m_15242549.0
2854Angola2006sp_m_15242632.0
2855Angola2007sp_m_15242824.0
2856Angola2008sp_m_15242970.0
2857Angola2009sp_m_15243054.0
2858Angola2010sp_m_15242900.0
2859Angola2011sp_m_15243000.0
2860Angola2012sp_m_15242804.0
5631Angola2000sp_m_25341003.0
5632Angola2001sp_m_2534752.0
5633Angola2002sp_m_25342292.0
5634Angola2003sp_m_25342598.0
5635Angola2004sp_m_25342659.0
5636Angola2005sp_m_25342797.0
5637Angola2006sp_m_25343049.0
5638Angola2007sp_m_25343197.0
5639Angola2008sp_m_25343493.0
5640Angola2009sp_m_25343600.0
5641Angola2010sp_m_25343584.0
5642Angola2011sp_m_25343792.0
5643Angola2012sp_m_25343627.0
8414Angola2000sp_m_3544912.0
8415Angola2001sp_m_3544648.0
8416Angola2002sp_m_35441915.0
8417Angola2003sp_m_35441908.0
8418Angola2004sp_m_35441998.0
8419Angola2005sp_m_35441918.0
8420Angola2006sp_m_35442182.0
8421Angola2007sp_m_35442255.0
8422Angola2008sp_m_35442418.0
8423Angola2009sp_m_35442420.0
8424Angola2010sp_m_35442415.0
8425Angola2011sp_m_35442386.0
8426Angola2012sp_m_35442529.0
11197Angola2000sp_m_4554482.0
11198Angola2001sp_m_4554420.0
11199Angola2002sp_m_45541187.0
11200Angola2003sp_m_45541090.0
11201Angola2004sp_m_45541196.0
11202Angola2005sp_m_45541255.0
11203Angola2006sp_m_45541397.0
11204Angola2007sp_m_45541357.0
11205Angola2008sp_m_45541480.0
11206Angola2009sp_m_45541590.0
11207Angola2010sp_m_45541424.0
11208Angola2011sp_m_45541395.0
11209Angola2012sp_m_45541427.0
13980Angola2000sp_m_5564312.0
13981Angola2001sp_m_5564197.0
13982Angola2002sp_m_5564624.0
13983Angola2003sp_m_5564512.0
13984Angola2004sp_m_5564561.0
13985Angola2005sp_m_5564665.0
13986Angola2006sp_m_5564729.0
13987Angola2007sp_m_5564699.0
13988Angola2008sp_m_5564733.0
13989Angola2009sp_m_5564748.0
13990Angola2010sp_m_5564691.0
13991Angola2011sp_m_5564680.0
13992Angola2012sp_m_5564732.0
16763Angola2000sp_m_65194.0
16764Angola2001sp_m_65173.0
16765Angola2002sp_m_65444.0
16766Angola2003sp_m_65361.0
16767Angola2004sp_m_65321.0
16768Angola2005sp_m_65461.0
16769Angola2006sp_m_65428.0
16770Angola2007sp_m_65465.0
16771Angola2008sp_m_65420.0
16772Angola2009sp_m_65463.0
16773Angola2010sp_m_65355.0
16774Angola2011sp_m_65455.0
16775Angola2012sp_m_65424.0
19546Angola2000sp_f_014247.0
19547Angola2001sp_f_014279.0
19548Angola2002sp_f_014640.0
19549Angola2003sp_f_014591.0
19550Angola2004sp_f_014733.0
19551Angola2005sp_f_014704.0
19552Angola2006sp_f_014689.0
19553Angola2007sp_f_014703.0
19554Angola2008sp_f_014512.0
19555Angola2009sp_f_014568.0
19556Angola2010sp_f_014558.0
19557Angola2011sp_f_014708.0
19558Angola2012sp_f_014592.0
22329Angola2000sp_f_15241142.0
22330Angola2001sp_f_1524993.0
22331Angola2002sp_f_15242610.0
22332Angola2003sp_f_15243078.0
22333Angola2004sp_f_15243198.0
22334Angola2005sp_f_15242926.0
22335Angola2006sp_f_15242851.0
22336Angola2007sp_f_15242943.0
22337Angola2008sp_f_15243199.0
22338Angola2009sp_f_15243152.0
22339Angola2010sp_f_15242763.0
22340Angola2011sp_f_15242731.0
22341Angola2012sp_f_15242501.0
25112Angola2000sp_f_25341091.0
25113Angola2001sp_f_2534869.0
25114Angola2002sp_f_25342208.0
25115Angola2003sp_f_25342641.0
25116Angola2004sp_f_25342772.0
25117Angola2005sp_f_25342682.0
25118Angola2006sp_f_25342892.0
25119Angola2007sp_f_25342721.0
25120Angola2008sp_f_25342786.0
25121Angola2009sp_f_25342798.0
25122Angola2010sp_f_25342594.0
25123Angola2011sp_f_25342563.0
25124Angola2012sp_f_25342540.0
27895Angola2000sp_f_3544844.0
27896Angola2001sp_f_3544647.0
27897Angola2002sp_f_35441600.0
27898Angola2003sp_f_35441747.0
27899Angola2004sp_f_35441854.0
27900Angola2005sp_f_35441797.0
27901Angola2006sp_f_35441990.0
27902Angola2007sp_f_35441812.0
27903Angola2008sp_f_35442082.0
27904Angola2009sp_f_35441790.0
27905Angola2010sp_f_35441688.0
27906Angola2011sp_f_35441683.0
27907Angola2012sp_f_35441617.0
30678Angola2000sp_f_4554417.0
30679Angola2001sp_f_4554323.0
30680Angola2002sp_f_4554972.0
30681Angola2003sp_f_45541157.0
30682Angola2004sp_f_45541029.0
30683Angola2005sp_f_45541138.0
30684Angola2006sp_f_45541223.0
30685Angola2007sp_f_45541041.0
30686Angola2008sp_f_45541209.0
30687Angola2009sp_f_45541069.0
30688Angola2010sp_f_4554958.0
30689Angola2011sp_f_45541006.0
30690Angola2012sp_f_45541028.0
33461Angola2000sp_f_5564200.0
33462Angola2001sp_f_5564200.0
33463Angola2002sp_f_5564533.0
33464Angola2003sp_f_5564395.0
33465Angola2004sp_f_5564505.0
33466Angola2005sp_f_5564581.0
33467Angola2006sp_f_5564583.0
33468Angola2007sp_f_5564554.0
33469Angola2008sp_f_5564556.0
33470Angola2009sp_f_5564572.0
33471Angola2010sp_f_5564482.0
33472Angola2011sp_f_5564457.0
33473Angola2012sp_f_5564529.0
36244Angola2000sp_f_65120.0
36245Angola2001sp_f_65182.0
36246Angola2002sp_f_65305.0
36247Angola2003sp_f_65129.0
36248Angola2004sp_f_65269.0
36249Angola2005sp_f_65417.0
36250Angola2006sp_f_65314.0
36251Angola2007sp_f_65367.0
36252Angola2008sp_f_65337.0
36253Angola2009sp_f_65272.0
36254Angola2010sp_f_65286.0
36255Angola2011sp_f_65346.0
36256Angola2012sp_f_65384.0
\n", + "
" + ], + "text/plain": [ + " country year variable cases\n", + "65 Angola 2000 sp_m_014 186.0\n", + "66 Angola 2001 sp_m_014 230.0\n", + "67 Angola 2002 sp_m_014 435.0\n", + "68 Angola 2003 sp_m_014 409.0\n", + "69 Angola 2004 sp_m_014 554.0\n", + "70 Angola 2005 sp_m_014 520.0\n", + "71 Angola 2006 sp_m_014 540.0\n", + "72 Angola 2007 sp_m_014 484.0\n", + "73 Angola 2008 sp_m_014 367.0\n", + "74 Angola 2009 sp_m_014 392.0\n", + "75 Angola 2010 sp_m_014 448.0\n", + "76 Angola 2011 sp_m_014 501.0\n", + "77 Angola 2012 sp_m_014 390.0\n", + "2848 Angola 2000 sp_m_1524 999.0\n", + "2849 Angola 2001 sp_m_1524 892.0\n", + "2850 Angola 2002 sp_m_1524 2223.0\n", + "2851 Angola 2003 sp_m_1524 2355.0\n", + "2852 Angola 2004 sp_m_1524 2684.0\n", + "2853 Angola 2005 sp_m_1524 2549.0\n", + "2854 Angola 2006 sp_m_1524 2632.0\n", + "2855 Angola 2007 sp_m_1524 2824.0\n", + "2856 Angola 2008 sp_m_1524 2970.0\n", + "2857 Angola 2009 sp_m_1524 3054.0\n", + "2858 Angola 2010 sp_m_1524 2900.0\n", + "2859 Angola 2011 sp_m_1524 3000.0\n", + "2860 Angola 2012 sp_m_1524 2804.0\n", + "5631 Angola 2000 sp_m_2534 1003.0\n", + "5632 Angola 2001 sp_m_2534 752.0\n", + "5633 Angola 2002 sp_m_2534 2292.0\n", + "5634 Angola 2003 sp_m_2534 2598.0\n", + "5635 Angola 2004 sp_m_2534 2659.0\n", + "5636 Angola 2005 sp_m_2534 2797.0\n", + "5637 Angola 2006 sp_m_2534 3049.0\n", + "5638 Angola 2007 sp_m_2534 3197.0\n", + "5639 Angola 2008 sp_m_2534 3493.0\n", + "5640 Angola 2009 sp_m_2534 3600.0\n", + "5641 Angola 2010 sp_m_2534 3584.0\n", + "5642 Angola 2011 sp_m_2534 3792.0\n", + "5643 Angola 2012 sp_m_2534 3627.0\n", + "8414 Angola 2000 sp_m_3544 912.0\n", + "8415 Angola 2001 sp_m_3544 648.0\n", + "8416 Angola 2002 sp_m_3544 1915.0\n", + "8417 Angola 2003 sp_m_3544 1908.0\n", + "8418 Angola 2004 sp_m_3544 1998.0\n", + "8419 Angola 2005 sp_m_3544 1918.0\n", + "8420 Angola 2006 sp_m_3544 2182.0\n", + "8421 Angola 2007 sp_m_3544 2255.0\n", + "8422 Angola 2008 sp_m_3544 2418.0\n", + "8423 Angola 2009 sp_m_3544 2420.0\n", + "8424 Angola 2010 sp_m_3544 2415.0\n", + "8425 Angola 2011 sp_m_3544 2386.0\n", + "8426 Angola 2012 sp_m_3544 2529.0\n", + "11197 Angola 2000 sp_m_4554 482.0\n", + "11198 Angola 2001 sp_m_4554 420.0\n", + "11199 Angola 2002 sp_m_4554 1187.0\n", + "11200 Angola 2003 sp_m_4554 1090.0\n", + "11201 Angola 2004 sp_m_4554 1196.0\n", + "11202 Angola 2005 sp_m_4554 1255.0\n", + "11203 Angola 2006 sp_m_4554 1397.0\n", + "11204 Angola 2007 sp_m_4554 1357.0\n", + "11205 Angola 2008 sp_m_4554 1480.0\n", + "11206 Angola 2009 sp_m_4554 1590.0\n", + "11207 Angola 2010 sp_m_4554 1424.0\n", + "11208 Angola 2011 sp_m_4554 1395.0\n", + "11209 Angola 2012 sp_m_4554 1427.0\n", + "13980 Angola 2000 sp_m_5564 312.0\n", + "13981 Angola 2001 sp_m_5564 197.0\n", + "13982 Angola 2002 sp_m_5564 624.0\n", + "13983 Angola 2003 sp_m_5564 512.0\n", + "13984 Angola 2004 sp_m_5564 561.0\n", + "13985 Angola 2005 sp_m_5564 665.0\n", + "13986 Angola 2006 sp_m_5564 729.0\n", + "13987 Angola 2007 sp_m_5564 699.0\n", + "13988 Angola 2008 sp_m_5564 733.0\n", + "13989 Angola 2009 sp_m_5564 748.0\n", + "13990 Angola 2010 sp_m_5564 691.0\n", + "13991 Angola 2011 sp_m_5564 680.0\n", + "13992 Angola 2012 sp_m_5564 732.0\n", + "16763 Angola 2000 sp_m_65 194.0\n", + "16764 Angola 2001 sp_m_65 173.0\n", + "16765 Angola 2002 sp_m_65 444.0\n", + "16766 Angola 2003 sp_m_65 361.0\n", + "16767 Angola 2004 sp_m_65 321.0\n", + "16768 Angola 2005 sp_m_65 461.0\n", + "16769 Angola 2006 sp_m_65 428.0\n", + "16770 Angola 2007 sp_m_65 465.0\n", + "16771 Angola 2008 sp_m_65 420.0\n", + "16772 Angola 2009 sp_m_65 463.0\n", + "16773 Angola 2010 sp_m_65 355.0\n", + "16774 Angola 2011 sp_m_65 455.0\n", + "16775 Angola 2012 sp_m_65 424.0\n", + "19546 Angola 2000 sp_f_014 247.0\n", + "19547 Angola 2001 sp_f_014 279.0\n", + "19548 Angola 2002 sp_f_014 640.0\n", + "19549 Angola 2003 sp_f_014 591.0\n", + "19550 Angola 2004 sp_f_014 733.0\n", + "19551 Angola 2005 sp_f_014 704.0\n", + "19552 Angola 2006 sp_f_014 689.0\n", + "19553 Angola 2007 sp_f_014 703.0\n", + "19554 Angola 2008 sp_f_014 512.0\n", + "19555 Angola 2009 sp_f_014 568.0\n", + "19556 Angola 2010 sp_f_014 558.0\n", + "19557 Angola 2011 sp_f_014 708.0\n", + "19558 Angola 2012 sp_f_014 592.0\n", + "22329 Angola 2000 sp_f_1524 1142.0\n", + "22330 Angola 2001 sp_f_1524 993.0\n", + "22331 Angola 2002 sp_f_1524 2610.0\n", + "22332 Angola 2003 sp_f_1524 3078.0\n", + "22333 Angola 2004 sp_f_1524 3198.0\n", + "22334 Angola 2005 sp_f_1524 2926.0\n", + "22335 Angola 2006 sp_f_1524 2851.0\n", + "22336 Angola 2007 sp_f_1524 2943.0\n", + "22337 Angola 2008 sp_f_1524 3199.0\n", + "22338 Angola 2009 sp_f_1524 3152.0\n", + "22339 Angola 2010 sp_f_1524 2763.0\n", + "22340 Angola 2011 sp_f_1524 2731.0\n", + "22341 Angola 2012 sp_f_1524 2501.0\n", + "25112 Angola 2000 sp_f_2534 1091.0\n", + "25113 Angola 2001 sp_f_2534 869.0\n", + "25114 Angola 2002 sp_f_2534 2208.0\n", + "25115 Angola 2003 sp_f_2534 2641.0\n", + "25116 Angola 2004 sp_f_2534 2772.0\n", + "25117 Angola 2005 sp_f_2534 2682.0\n", + "25118 Angola 2006 sp_f_2534 2892.0\n", + "25119 Angola 2007 sp_f_2534 2721.0\n", + "25120 Angola 2008 sp_f_2534 2786.0\n", + "25121 Angola 2009 sp_f_2534 2798.0\n", + "25122 Angola 2010 sp_f_2534 2594.0\n", + "25123 Angola 2011 sp_f_2534 2563.0\n", + "25124 Angola 2012 sp_f_2534 2540.0\n", + "27895 Angola 2000 sp_f_3544 844.0\n", + "27896 Angola 2001 sp_f_3544 647.0\n", + "27897 Angola 2002 sp_f_3544 1600.0\n", + "27898 Angola 2003 sp_f_3544 1747.0\n", + "27899 Angola 2004 sp_f_3544 1854.0\n", + "27900 Angola 2005 sp_f_3544 1797.0\n", + "27901 Angola 2006 sp_f_3544 1990.0\n", + "27902 Angola 2007 sp_f_3544 1812.0\n", + "27903 Angola 2008 sp_f_3544 2082.0\n", + "27904 Angola 2009 sp_f_3544 1790.0\n", + "27905 Angola 2010 sp_f_3544 1688.0\n", + "27906 Angola 2011 sp_f_3544 1683.0\n", + "27907 Angola 2012 sp_f_3544 1617.0\n", + "30678 Angola 2000 sp_f_4554 417.0\n", + "30679 Angola 2001 sp_f_4554 323.0\n", + "30680 Angola 2002 sp_f_4554 972.0\n", + "30681 Angola 2003 sp_f_4554 1157.0\n", + "30682 Angola 2004 sp_f_4554 1029.0\n", + "30683 Angola 2005 sp_f_4554 1138.0\n", + "30684 Angola 2006 sp_f_4554 1223.0\n", + "30685 Angola 2007 sp_f_4554 1041.0\n", + "30686 Angola 2008 sp_f_4554 1209.0\n", + "30687 Angola 2009 sp_f_4554 1069.0\n", + "30688 Angola 2010 sp_f_4554 958.0\n", + "30689 Angola 2011 sp_f_4554 1006.0\n", + "30690 Angola 2012 sp_f_4554 1028.0\n", + "33461 Angola 2000 sp_f_5564 200.0\n", + "33462 Angola 2001 sp_f_5564 200.0\n", + "33463 Angola 2002 sp_f_5564 533.0\n", + "33464 Angola 2003 sp_f_5564 395.0\n", + "33465 Angola 2004 sp_f_5564 505.0\n", + "33466 Angola 2005 sp_f_5564 581.0\n", + "33467 Angola 2006 sp_f_5564 583.0\n", + "33468 Angola 2007 sp_f_5564 554.0\n", + "33469 Angola 2008 sp_f_5564 556.0\n", + "33470 Angola 2009 sp_f_5564 572.0\n", + "33471 Angola 2010 sp_f_5564 482.0\n", + "33472 Angola 2011 sp_f_5564 457.0\n", + "33473 Angola 2012 sp_f_5564 529.0\n", + "36244 Angola 2000 sp_f_65 120.0\n", + "36245 Angola 2001 sp_f_65 182.0\n", + "36246 Angola 2002 sp_f_65 305.0\n", + "36247 Angola 2003 sp_f_65 129.0\n", + "36248 Angola 2004 sp_f_65 269.0\n", + "36249 Angola 2005 sp_f_65 417.0\n", + "36250 Angola 2006 sp_f_65 314.0\n", + "36251 Angola 2007 sp_f_65 367.0\n", + "36252 Angola 2008 sp_f_65 337.0\n", + "36253 Angola 2009 sp_f_65 272.0\n", + "36254 Angola 2010 sp_f_65 286.0\n", + "36255 Angola 2011 sp_f_65 346.0\n", + "36256 Angola 2012 sp_f_65 384.0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_melted = pd.melt(tb_raw, id_vars=['country', 'year'], value_name='cases')\n", + "tb_melted[tb_melted['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "7cab45a3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecases
65Angola2000m<=14yo186.0
66Angola2001m<=14yo230.0
67Angola2002m<=14yo435.0
68Angola2003m<=14yo409.0
69Angola2004m<=14yo554.0
70Angola2005m<=14yo520.0
71Angola2006m<=14yo540.0
72Angola2007m<=14yo484.0
73Angola2008m<=14yo367.0
74Angola2009m<=14yo392.0
75Angola2010m<=14yo448.0
76Angola2011m<=14yo501.0
77Angola2012m<=14yo390.0
2848Angola2000m15-24yo999.0
2849Angola2001m15-24yo892.0
2850Angola2002m15-24yo2223.0
2851Angola2003m15-24yo2355.0
2852Angola2004m15-24yo2684.0
2853Angola2005m15-24yo2549.0
2854Angola2006m15-24yo2632.0
2855Angola2007m15-24yo2824.0
2856Angola2008m15-24yo2970.0
2857Angola2009m15-24yo3054.0
2858Angola2010m15-24yo2900.0
2859Angola2011m15-24yo3000.0
2860Angola2012m15-24yo2804.0
5631Angola2000m25-34yo1003.0
5632Angola2001m25-34yo752.0
5633Angola2002m25-34yo2292.0
5634Angola2003m25-34yo2598.0
5635Angola2004m25-34yo2659.0
5636Angola2005m25-34yo2797.0
5637Angola2006m25-34yo3049.0
5638Angola2007m25-34yo3197.0
5639Angola2008m25-34yo3493.0
5640Angola2009m25-34yo3600.0
5641Angola2010m25-34yo3584.0
5642Angola2011m25-34yo3792.0
5643Angola2012m25-34yo3627.0
8414Angola2000m35-44yo912.0
8415Angola2001m35-44yo648.0
8416Angola2002m35-44yo1915.0
8417Angola2003m35-44yo1908.0
8418Angola2004m35-44yo1998.0
8419Angola2005m35-44yo1918.0
8420Angola2006m35-44yo2182.0
8421Angola2007m35-44yo2255.0
8422Angola2008m35-44yo2418.0
8423Angola2009m35-44yo2420.0
8424Angola2010m35-44yo2415.0
8425Angola2011m35-44yo2386.0
8426Angola2012m35-44yo2529.0
11197Angola2000m45-54yo482.0
11198Angola2001m45-54yo420.0
11199Angola2002m45-54yo1187.0
11200Angola2003m45-54yo1090.0
11201Angola2004m45-54yo1196.0
11202Angola2005m45-54yo1255.0
11203Angola2006m45-54yo1397.0
11204Angola2007m45-54yo1357.0
11205Angola2008m45-54yo1480.0
11206Angola2009m45-54yo1590.0
11207Angola2010m45-54yo1424.0
11208Angola2011m45-54yo1395.0
11209Angola2012m45-54yo1427.0
13980Angola2000m55-64yo312.0
13981Angola2001m55-64yo197.0
13982Angola2002m55-64yo624.0
13983Angola2003m55-64yo512.0
13984Angola2004m55-64yo561.0
13985Angola2005m55-64yo665.0
13986Angola2006m55-64yo729.0
13987Angola2007m55-64yo699.0
13988Angola2008m55-64yo733.0
13989Angola2009m55-64yo748.0
13990Angola2010m55-64yo691.0
13991Angola2011m55-64yo680.0
13992Angola2012m55-64yo732.0
16763Angola2000m>=65yo194.0
16764Angola2001m>=65yo173.0
16765Angola2002m>=65yo444.0
16766Angola2003m>=65yo361.0
16767Angola2004m>=65yo321.0
16768Angola2005m>=65yo461.0
16769Angola2006m>=65yo428.0
16770Angola2007m>=65yo465.0
16771Angola2008m>=65yo420.0
16772Angola2009m>=65yo463.0
16773Angola2010m>=65yo355.0
16774Angola2011m>=65yo455.0
16775Angola2012m>=65yo424.0
19546Angola2000f<=14yo247.0
19547Angola2001f<=14yo279.0
19548Angola2002f<=14yo640.0
19549Angola2003f<=14yo591.0
19550Angola2004f<=14yo733.0
19551Angola2005f<=14yo704.0
19552Angola2006f<=14yo689.0
19553Angola2007f<=14yo703.0
19554Angola2008f<=14yo512.0
19555Angola2009f<=14yo568.0
19556Angola2010f<=14yo558.0
19557Angola2011f<=14yo708.0
19558Angola2012f<=14yo592.0
22329Angola2000f15-24yo1142.0
22330Angola2001f15-24yo993.0
22331Angola2002f15-24yo2610.0
22332Angola2003f15-24yo3078.0
22333Angola2004f15-24yo3198.0
22334Angola2005f15-24yo2926.0
22335Angola2006f15-24yo2851.0
22336Angola2007f15-24yo2943.0
22337Angola2008f15-24yo3199.0
22338Angola2009f15-24yo3152.0
22339Angola2010f15-24yo2763.0
22340Angola2011f15-24yo2731.0
22341Angola2012f15-24yo2501.0
25112Angola2000f25-34yo1091.0
25113Angola2001f25-34yo869.0
25114Angola2002f25-34yo2208.0
25115Angola2003f25-34yo2641.0
25116Angola2004f25-34yo2772.0
25117Angola2005f25-34yo2682.0
25118Angola2006f25-34yo2892.0
25119Angola2007f25-34yo2721.0
25120Angola2008f25-34yo2786.0
25121Angola2009f25-34yo2798.0
25122Angola2010f25-34yo2594.0
25123Angola2011f25-34yo2563.0
25124Angola2012f25-34yo2540.0
27895Angola2000f35-44yo844.0
27896Angola2001f35-44yo647.0
27897Angola2002f35-44yo1600.0
27898Angola2003f35-44yo1747.0
27899Angola2004f35-44yo1854.0
27900Angola2005f35-44yo1797.0
27901Angola2006f35-44yo1990.0
27902Angola2007f35-44yo1812.0
27903Angola2008f35-44yo2082.0
27904Angola2009f35-44yo1790.0
27905Angola2010f35-44yo1688.0
27906Angola2011f35-44yo1683.0
27907Angola2012f35-44yo1617.0
30678Angola2000f45-54yo417.0
30679Angola2001f45-54yo323.0
30680Angola2002f45-54yo972.0
30681Angola2003f45-54yo1157.0
30682Angola2004f45-54yo1029.0
30683Angola2005f45-54yo1138.0
30684Angola2006f45-54yo1223.0
30685Angola2007f45-54yo1041.0
30686Angola2008f45-54yo1209.0
30687Angola2009f45-54yo1069.0
30688Angola2010f45-54yo958.0
30689Angola2011f45-54yo1006.0
30690Angola2012f45-54yo1028.0
33461Angola2000f55-64yo200.0
33462Angola2001f55-64yo200.0
33463Angola2002f55-64yo533.0
33464Angola2003f55-64yo395.0
33465Angola2004f55-64yo505.0
33466Angola2005f55-64yo581.0
33467Angola2006f55-64yo583.0
33468Angola2007f55-64yo554.0
33469Angola2008f55-64yo556.0
33470Angola2009f55-64yo572.0
33471Angola2010f55-64yo482.0
33472Angola2011f55-64yo457.0
33473Angola2012f55-64yo529.0
36244Angola2000f>=65yo120.0
36245Angola2001f>=65yo182.0
36246Angola2002f>=65yo305.0
36247Angola2003f>=65yo129.0
36248Angola2004f>=65yo269.0
36249Angola2005f>=65yo417.0
36250Angola2006f>=65yo314.0
36251Angola2007f>=65yo367.0
36252Angola2008f>=65yo337.0
36253Angola2009f>=65yo272.0
36254Angola2010f>=65yo286.0
36255Angola2011f>=65yo346.0
36256Angola2012f>=65yo384.0
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases\n", + "65 Angola 2000 m <=14yo 186.0\n", + "66 Angola 2001 m <=14yo 230.0\n", + "67 Angola 2002 m <=14yo 435.0\n", + "68 Angola 2003 m <=14yo 409.0\n", + "69 Angola 2004 m <=14yo 554.0\n", + "70 Angola 2005 m <=14yo 520.0\n", + "71 Angola 2006 m <=14yo 540.0\n", + "72 Angola 2007 m <=14yo 484.0\n", + "73 Angola 2008 m <=14yo 367.0\n", + "74 Angola 2009 m <=14yo 392.0\n", + "75 Angola 2010 m <=14yo 448.0\n", + "76 Angola 2011 m <=14yo 501.0\n", + "77 Angola 2012 m <=14yo 390.0\n", + "2848 Angola 2000 m 15-24yo 999.0\n", + "2849 Angola 2001 m 15-24yo 892.0\n", + "2850 Angola 2002 m 15-24yo 2223.0\n", + "2851 Angola 2003 m 15-24yo 2355.0\n", + "2852 Angola 2004 m 15-24yo 2684.0\n", + "2853 Angola 2005 m 15-24yo 2549.0\n", + "2854 Angola 2006 m 15-24yo 2632.0\n", + "2855 Angola 2007 m 15-24yo 2824.0\n", + "2856 Angola 2008 m 15-24yo 2970.0\n", + "2857 Angola 2009 m 15-24yo 3054.0\n", + "2858 Angola 2010 m 15-24yo 2900.0\n", + "2859 Angola 2011 m 15-24yo 3000.0\n", + "2860 Angola 2012 m 15-24yo 2804.0\n", + "5631 Angola 2000 m 25-34yo 1003.0\n", + "5632 Angola 2001 m 25-34yo 752.0\n", + "5633 Angola 2002 m 25-34yo 2292.0\n", + "5634 Angola 2003 m 25-34yo 2598.0\n", + "5635 Angola 2004 m 25-34yo 2659.0\n", + "5636 Angola 2005 m 25-34yo 2797.0\n", + "5637 Angola 2006 m 25-34yo 3049.0\n", + "5638 Angola 2007 m 25-34yo 3197.0\n", + "5639 Angola 2008 m 25-34yo 3493.0\n", + "5640 Angola 2009 m 25-34yo 3600.0\n", + "5641 Angola 2010 m 25-34yo 3584.0\n", + "5642 Angola 2011 m 25-34yo 3792.0\n", + "5643 Angola 2012 m 25-34yo 3627.0\n", + "8414 Angola 2000 m 35-44yo 912.0\n", + "8415 Angola 2001 m 35-44yo 648.0\n", + "8416 Angola 2002 m 35-44yo 1915.0\n", + "8417 Angola 2003 m 35-44yo 1908.0\n", + "8418 Angola 2004 m 35-44yo 1998.0\n", + "8419 Angola 2005 m 35-44yo 1918.0\n", + "8420 Angola 2006 m 35-44yo 2182.0\n", + "8421 Angola 2007 m 35-44yo 2255.0\n", + "8422 Angola 2008 m 35-44yo 2418.0\n", + "8423 Angola 2009 m 35-44yo 2420.0\n", + "8424 Angola 2010 m 35-44yo 2415.0\n", + "8425 Angola 2011 m 35-44yo 2386.0\n", + "8426 Angola 2012 m 35-44yo 2529.0\n", + "11197 Angola 2000 m 45-54yo 482.0\n", + "11198 Angola 2001 m 45-54yo 420.0\n", + "11199 Angola 2002 m 45-54yo 1187.0\n", + "11200 Angola 2003 m 45-54yo 1090.0\n", + "11201 Angola 2004 m 45-54yo 1196.0\n", + "11202 Angola 2005 m 45-54yo 1255.0\n", + "11203 Angola 2006 m 45-54yo 1397.0\n", + "11204 Angola 2007 m 45-54yo 1357.0\n", + "11205 Angola 2008 m 45-54yo 1480.0\n", + "11206 Angola 2009 m 45-54yo 1590.0\n", + "11207 Angola 2010 m 45-54yo 1424.0\n", + "11208 Angola 2011 m 45-54yo 1395.0\n", + "11209 Angola 2012 m 45-54yo 1427.0\n", + "13980 Angola 2000 m 55-64yo 312.0\n", + "13981 Angola 2001 m 55-64yo 197.0\n", + "13982 Angola 2002 m 55-64yo 624.0\n", + "13983 Angola 2003 m 55-64yo 512.0\n", + "13984 Angola 2004 m 55-64yo 561.0\n", + "13985 Angola 2005 m 55-64yo 665.0\n", + "13986 Angola 2006 m 55-64yo 729.0\n", + "13987 Angola 2007 m 55-64yo 699.0\n", + "13988 Angola 2008 m 55-64yo 733.0\n", + "13989 Angola 2009 m 55-64yo 748.0\n", + "13990 Angola 2010 m 55-64yo 691.0\n", + "13991 Angola 2011 m 55-64yo 680.0\n", + "13992 Angola 2012 m 55-64yo 732.0\n", + "16763 Angola 2000 m >=65yo 194.0\n", + "16764 Angola 2001 m >=65yo 173.0\n", + "16765 Angola 2002 m >=65yo 444.0\n", + "16766 Angola 2003 m >=65yo 361.0\n", + "16767 Angola 2004 m >=65yo 321.0\n", + "16768 Angola 2005 m >=65yo 461.0\n", + "16769 Angola 2006 m >=65yo 428.0\n", + "16770 Angola 2007 m >=65yo 465.0\n", + "16771 Angola 2008 m >=65yo 420.0\n", + "16772 Angola 2009 m >=65yo 463.0\n", + "16773 Angola 2010 m >=65yo 355.0\n", + "16774 Angola 2011 m >=65yo 455.0\n", + "16775 Angola 2012 m >=65yo 424.0\n", + "19546 Angola 2000 f <=14yo 247.0\n", + "19547 Angola 2001 f <=14yo 279.0\n", + "19548 Angola 2002 f <=14yo 640.0\n", + "19549 Angola 2003 f <=14yo 591.0\n", + "19550 Angola 2004 f <=14yo 733.0\n", + "19551 Angola 2005 f <=14yo 704.0\n", + "19552 Angola 2006 f <=14yo 689.0\n", + "19553 Angola 2007 f <=14yo 703.0\n", + "19554 Angola 2008 f <=14yo 512.0\n", + "19555 Angola 2009 f <=14yo 568.0\n", + "19556 Angola 2010 f <=14yo 558.0\n", + "19557 Angola 2011 f <=14yo 708.0\n", + "19558 Angola 2012 f <=14yo 592.0\n", + "22329 Angola 2000 f 15-24yo 1142.0\n", + "22330 Angola 2001 f 15-24yo 993.0\n", + "22331 Angola 2002 f 15-24yo 2610.0\n", + "22332 Angola 2003 f 15-24yo 3078.0\n", + "22333 Angola 2004 f 15-24yo 3198.0\n", + "22334 Angola 2005 f 15-24yo 2926.0\n", + "22335 Angola 2006 f 15-24yo 2851.0\n", + "22336 Angola 2007 f 15-24yo 2943.0\n", + "22337 Angola 2008 f 15-24yo 3199.0\n", + "22338 Angola 2009 f 15-24yo 3152.0\n", + "22339 Angola 2010 f 15-24yo 2763.0\n", + "22340 Angola 2011 f 15-24yo 2731.0\n", + "22341 Angola 2012 f 15-24yo 2501.0\n", + "25112 Angola 2000 f 25-34yo 1091.0\n", + "25113 Angola 2001 f 25-34yo 869.0\n", + "25114 Angola 2002 f 25-34yo 2208.0\n", + "25115 Angola 2003 f 25-34yo 2641.0\n", + "25116 Angola 2004 f 25-34yo 2772.0\n", + "25117 Angola 2005 f 25-34yo 2682.0\n", + "25118 Angola 2006 f 25-34yo 2892.0\n", + "25119 Angola 2007 f 25-34yo 2721.0\n", + "25120 Angola 2008 f 25-34yo 2786.0\n", + "25121 Angola 2009 f 25-34yo 2798.0\n", + "25122 Angola 2010 f 25-34yo 2594.0\n", + "25123 Angola 2011 f 25-34yo 2563.0\n", + "25124 Angola 2012 f 25-34yo 2540.0\n", + "27895 Angola 2000 f 35-44yo 844.0\n", + "27896 Angola 2001 f 35-44yo 647.0\n", + "27897 Angola 2002 f 35-44yo 1600.0\n", + "27898 Angola 2003 f 35-44yo 1747.0\n", + "27899 Angola 2004 f 35-44yo 1854.0\n", + "27900 Angola 2005 f 35-44yo 1797.0\n", + "27901 Angola 2006 f 35-44yo 1990.0\n", + "27902 Angola 2007 f 35-44yo 1812.0\n", + "27903 Angola 2008 f 35-44yo 2082.0\n", + "27904 Angola 2009 f 35-44yo 1790.0\n", + "27905 Angola 2010 f 35-44yo 1688.0\n", + "27906 Angola 2011 f 35-44yo 1683.0\n", + "27907 Angola 2012 f 35-44yo 1617.0\n", + "30678 Angola 2000 f 45-54yo 417.0\n", + "30679 Angola 2001 f 45-54yo 323.0\n", + "30680 Angola 2002 f 45-54yo 972.0\n", + "30681 Angola 2003 f 45-54yo 1157.0\n", + "30682 Angola 2004 f 45-54yo 1029.0\n", + "30683 Angola 2005 f 45-54yo 1138.0\n", + "30684 Angola 2006 f 45-54yo 1223.0\n", + "30685 Angola 2007 f 45-54yo 1041.0\n", + "30686 Angola 2008 f 45-54yo 1209.0\n", + "30687 Angola 2009 f 45-54yo 1069.0\n", + "30688 Angola 2010 f 45-54yo 958.0\n", + "30689 Angola 2011 f 45-54yo 1006.0\n", + "30690 Angola 2012 f 45-54yo 1028.0\n", + "33461 Angola 2000 f 55-64yo 200.0\n", + "33462 Angola 2001 f 55-64yo 200.0\n", + "33463 Angola 2002 f 55-64yo 533.0\n", + "33464 Angola 2003 f 55-64yo 395.0\n", + "33465 Angola 2004 f 55-64yo 505.0\n", + "33466 Angola 2005 f 55-64yo 581.0\n", + "33467 Angola 2006 f 55-64yo 583.0\n", + "33468 Angola 2007 f 55-64yo 554.0\n", + "33469 Angola 2008 f 55-64yo 556.0\n", + "33470 Angola 2009 f 55-64yo 572.0\n", + "33471 Angola 2010 f 55-64yo 482.0\n", + "33472 Angola 2011 f 55-64yo 457.0\n", + "33473 Angola 2012 f 55-64yo 529.0\n", + "36244 Angola 2000 f >=65yo 120.0\n", + "36245 Angola 2001 f >=65yo 182.0\n", + "36246 Angola 2002 f >=65yo 305.0\n", + "36247 Angola 2003 f >=65yo 129.0\n", + "36248 Angola 2004 f >=65yo 269.0\n", + "36249 Angola 2005 f >=65yo 417.0\n", + "36250 Angola 2006 f >=65yo 314.0\n", + "36251 Angola 2007 f >=65yo 367.0\n", + "36252 Angola 2008 f >=65yo 337.0\n", + "36253 Angola 2009 f >=65yo 272.0\n", + "36254 Angola 2010 f >=65yo 286.0\n", + "36255 Angola 2011 f >=65yo 346.0\n", + "36256 Angola 2012 f >=65yo 384.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "age_range_map = {\n", + " '014': '<=14yo',\n", + " '1524': '15-24yo',\n", + " '2534': '25-34yo',\n", + " '3544': '35-44yo',\n", + " '4554': '45-54yo',\n", + " '5564': '55-64yo',\n", + " '65': '>=65yo'\n", + "}\n", + "\n", + "\n", + "tb_melted['gender'] = tb_melted['variable'].str[3]\n", + "tb_melted['age_range'] = tb_melted['variable'].str[5:].map(age_range_map)\n", + "tb = tb_melted[['country', 'year', 'gender', 'age_range', 'cases']]\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# 2. Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender, for data between 2000 and 2006 (included)\n", + "2. Compute the number of cases per country and year range (2000-2006, 2007-2012) on rows, and gender on columns" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "75cc0463", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
country
Afghanistan34579.016426.0
Albania441.0920.0
Algeria22993.032926.0
American Samoa11.06.0
Andorra10.018.0
Angola57307.056848.0
Anguilla1.00.0
Antigua and Barbuda11.05.0
Argentina14527.019357.0
Armenia681.03220.0
Aruba0.00.0
Australia547.0915.0
Austria456.01186.0
Azerbaijan1559.05913.0
Bahamas76.0109.0
Bahrain63.0140.0
Bangladesh133757.0294417.0
Barbados12.026.0
Belarus1031.04247.0
Belgium692.01588.0
Belize140.0243.0
Benin6405.011283.0
Bermuda1.01.0
Bhutan1040.01356.0
Bolivia (Plurinational State of)18089.026493.0
Bosnia and Herzegovina1982.02669.0
Botswana9650.012441.0
Brazil113354.0211322.0
British Virgin Islands2.02.0
Brunei Darussalam251.0400.0
Bulgaria1937.04233.0
Burkina Faso4170.08743.0
Burundi7043.011273.0
Cabo Verde309.0471.0
Cambodia60829.063809.0
Cameroon25588.038214.0
Canada1265.01702.0
Cayman Islands1.06.0
Central African Republic5980.07685.0
Chad4694.07208.0
Chile3058.06281.0
China692350.01522330.0
China, Hong Kong SAR3792.08483.0
China, Macao SAR284.0699.0
Colombia21225.031804.0
Comoros192.0253.0
Congo5314.06160.0
Cook Islands0.05.0
Costa Rica886.01641.0
Cote d'Ivoire28598.040932.0
Croatia960.01931.0
Cuba872.02762.0
Cyprus13.035.0
Czech Republic632.01703.0
Democratic People's Republic of Korea46809.074757.0
Democratic Republic of the Congo170192.0192935.0
Denmark370.0601.0
Djibouti2755.05755.0
Dominica5.05.0
Dominican Republic6419.09800.0
Ecuador6807.09901.0
Egypt10845.021086.0
El Salvador2677.04082.0
Equatorial Guinea161.0245.0
Eritrea2608.02270.0
Estonia368.01015.0
Ethiopia116094.0140312.0
Fiji209.0334.0
Finland312.0583.0
France4243.08166.0
French Polynesia90.0108.0
Gabon2776.04131.0
Gambia1613.03805.0
Georgia1971.06242.0
Germany2266.04311.0
Ghana18497.034527.0
Greece379.0923.0
Greenland0.00.0
Grenada2.02.0
Guam97.0179.0
Guatemala5596.06544.0
Guinea11207.021725.0
Guinea-Bissau2285.03451.0
Guyana916.01962.0
Haiti23235.023307.0
Honduras7230.08965.0
Hungary897.02514.0
Iceland6.09.0
India828474.01848348.0
Indonesia286538.0399164.0
Iran (Islamic Republic of)17795.017946.0
Iraq7994.015159.0
Ireland246.0441.0
Israel466.0738.0
Italy2360.04445.0
Jamaica139.0350.0
Japan23230.053242.0
Jordan227.0436.0
Kazakhstan18320.030157.0
Kenya106531.0146717.0
Kiribati324.0366.0
Kuwait524.0956.0
Kyrgyzstan4503.07007.0
Lao People's Democratic Republic5757.09100.0
Latvia1097.03094.0
Lebanon430.0613.0
Lesotho9791.012371.0
Liberia5500.07301.0
Libya847.03092.0
Lithuania1677.04595.0
Luxembourg44.068.0
Madagascar29552.042855.0
Malawi24471.024994.0
Malaysia23938.052440.0
Maldives169.0268.0
Mali6028.012665.0
Malta4.021.0
Marshall Islands159.0152.0
Mauritania902.02246.0
Mauritius180.0432.0
Mexico33134.053218.0
Micronesia (Federated States of)116.093.0
Monaco0.00.0
Mongolia5583.06454.0
Montenegro42.080.0
Montserrat0.03.0
Morocco30252.058497.0
Mozambique0.00.0
Myanmar67403.0130337.0
Namibia14772.019685.0
Nauru5.05.0
Nepal32414.066254.0
Netherlands593.01258.0
Netherlands Antilles12.040.0
New Caledonia63.086.0
New Zealand295.0335.0
Nicaragua4244.05319.0
Niger4789.012190.0
Nigeria80330.0111660.0
Niue1.00.0
Northern Mariana Islands96.0111.0
Norway129.0175.0
Oman453.0692.0
Pakistan94064.099216.0
Palau11.023.0
Panama1902.03346.0
Papua New Guinea3225.03434.0
Paraguay2815.05061.0
Peru46298.062229.0
Philippines96966.0216914.0
Poland6560.015001.0
Portugal2962.08464.0
Puerto Rico157.0332.0
Qatar114.0399.0
Republic of Korea28390.048574.0
Republic of Moldova2053.06568.0
Romania21126.052827.0
Russian Federation35450.0113330.0
Rwanda7350.012980.0
Saint Kitts and Nevis3.01.0
Saint Lucia29.048.0
Saint Vincent and the Grenadines10.031.0
Samoa41.041.0
San Marino0.01.0
Sao Tome and Principe193.0213.0
Saudi Arabia4572.07073.0
Senegal13910.030431.0
Serbia868.01364.0
Serbia & Montenegro1078.01632.0
Seychelles17.042.0
Sierra Leone9201.014748.0
Singapore862.02466.0
Slovakia437.0897.0
Slovenia281.0530.0
Solomon Islands427.0373.0
Somalia13763.024980.0
South Africa264248.0341088.0
Spain4180.08889.0
Sri Lanka8386.022441.0
Sudan32121.048022.0
Suriname93.0235.0
Swaziland6696.07019.0
Sweden352.0449.0
Switzerland227.0386.0
Syrian Arab Republic3582.06609.0
Tajikistan1521.02208.0
Thailand55379.0130832.0
The Former Yugoslav Republic of Macedonia474.0812.0
Timor-Leste2150.02903.0
Togo3449.05429.0
Tokelau0.00.0
Tonga33.049.0
Trinidad and Tobago244.0579.0
Tunisia1803.04931.0
Turkey4219.011395.0
Turkmenistan2777.05187.0
Turks and Caicos Islands10.05.0
Tuvalu10.016.0
US Virgin Islands0.00.0
Uganda56500.079555.0
Ukraine11481.038200.0
United Arab Emirates143.0170.0
United Kingdom of Great Britain and Northern Ireland3546.05285.0
United Republic of Tanzania65505.0108065.0
United States of America12047.025716.0
Uruguay727.01641.0
Uzbekistan13706.018760.0
Vanuatu154.0186.0
Venezuela (Bolivarian Republic of)7215.011087.0
Viet Nam112399.0278116.0
Wallis and Futuna Islands7.010.0
West Bank and Gaza Strip14.028.0
Yemen12969.015771.0
Zambia41179.053162.0
Zimbabwe30699.035504.0
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country \n", + "Afghanistan 34579.0 16426.0\n", + "Albania 441.0 920.0\n", + "Algeria 22993.0 32926.0\n", + "American Samoa 11.0 6.0\n", + "Andorra 10.0 18.0\n", + "Angola 57307.0 56848.0\n", + "Anguilla 1.0 0.0\n", + "Antigua and Barbuda 11.0 5.0\n", + "Argentina 14527.0 19357.0\n", + "Armenia 681.0 3220.0\n", + "Aruba 0.0 0.0\n", + "Australia 547.0 915.0\n", + "Austria 456.0 1186.0\n", + "Azerbaijan 1559.0 5913.0\n", + "Bahamas 76.0 109.0\n", + "Bahrain 63.0 140.0\n", + "Bangladesh 133757.0 294417.0\n", + "Barbados 12.0 26.0\n", + "Belarus 1031.0 4247.0\n", + "Belgium 692.0 1588.0\n", + "Belize 140.0 243.0\n", + "Benin 6405.0 11283.0\n", + "Bermuda 1.0 1.0\n", + "Bhutan 1040.0 1356.0\n", + "Bolivia (Plurinational State of) 18089.0 26493.0\n", + "Bosnia and Herzegovina 1982.0 2669.0\n", + "Botswana 9650.0 12441.0\n", + "Brazil 113354.0 211322.0\n", + "British Virgin Islands 2.0 2.0\n", + "Brunei Darussalam 251.0 400.0\n", + "Bulgaria 1937.0 4233.0\n", + "Burkina Faso 4170.0 8743.0\n", + "Burundi 7043.0 11273.0\n", + "Cabo Verde 309.0 471.0\n", + "Cambodia 60829.0 63809.0\n", + "Cameroon 25588.0 38214.0\n", + "Canada 1265.0 1702.0\n", + "Cayman Islands 1.0 6.0\n", + "Central African Republic 5980.0 7685.0\n", + "Chad 4694.0 7208.0\n", + "Chile 3058.0 6281.0\n", + "China 692350.0 1522330.0\n", + "China, Hong Kong SAR 3792.0 8483.0\n", + "China, Macao SAR 284.0 699.0\n", + "Colombia 21225.0 31804.0\n", + "Comoros 192.0 253.0\n", + "Congo 5314.0 6160.0\n", + "Cook Islands 0.0 5.0\n", + "Costa Rica 886.0 1641.0\n", + "Cote d'Ivoire 28598.0 40932.0\n", + "Croatia 960.0 1931.0\n", + "Cuba 872.0 2762.0\n", + "Cyprus 13.0 35.0\n", + "Czech Republic 632.0 1703.0\n", + "Democratic People's Republic of Korea 46809.0 74757.0\n", + "Democratic Republic of the Congo 170192.0 192935.0\n", + "Denmark 370.0 601.0\n", + "Djibouti 2755.0 5755.0\n", + "Dominica 5.0 5.0\n", + "Dominican Republic 6419.0 9800.0\n", + "Ecuador 6807.0 9901.0\n", + "Egypt 10845.0 21086.0\n", + "El Salvador 2677.0 4082.0\n", + "Equatorial Guinea 161.0 245.0\n", + "Eritrea 2608.0 2270.0\n", + "Estonia 368.0 1015.0\n", + "Ethiopia 116094.0 140312.0\n", + "Fiji 209.0 334.0\n", + "Finland 312.0 583.0\n", + "France 4243.0 8166.0\n", + "French Polynesia 90.0 108.0\n", + "Gabon 2776.0 4131.0\n", + "Gambia 1613.0 3805.0\n", + "Georgia 1971.0 6242.0\n", + "Germany 2266.0 4311.0\n", + "Ghana 18497.0 34527.0\n", + "Greece 379.0 923.0\n", + "Greenland 0.0 0.0\n", + "Grenada 2.0 2.0\n", + "Guam 97.0 179.0\n", + "Guatemala 5596.0 6544.0\n", + "Guinea 11207.0 21725.0\n", + "Guinea-Bissau 2285.0 3451.0\n", + "Guyana 916.0 1962.0\n", + "Haiti 23235.0 23307.0\n", + "Honduras 7230.0 8965.0\n", + "Hungary 897.0 2514.0\n", + "Iceland 6.0 9.0\n", + "India 828474.0 1848348.0\n", + "Indonesia 286538.0 399164.0\n", + "Iran (Islamic Republic of) 17795.0 17946.0\n", + "Iraq 7994.0 15159.0\n", + "Ireland 246.0 441.0\n", + "Israel 466.0 738.0\n", + "Italy 2360.0 4445.0\n", + "Jamaica 139.0 350.0\n", + "Japan 23230.0 53242.0\n", + "Jordan 227.0 436.0\n", + "Kazakhstan 18320.0 30157.0\n", + "Kenya 106531.0 146717.0\n", + "Kiribati 324.0 366.0\n", + "Kuwait 524.0 956.0\n", + "Kyrgyzstan 4503.0 7007.0\n", + "Lao People's Democratic Republic 5757.0 9100.0\n", + "Latvia 1097.0 3094.0\n", + "Lebanon 430.0 613.0\n", + "Lesotho 9791.0 12371.0\n", + "Liberia 5500.0 7301.0\n", + "Libya 847.0 3092.0\n", + "Lithuania 1677.0 4595.0\n", + "Luxembourg 44.0 68.0\n", + "Madagascar 29552.0 42855.0\n", + "Malawi 24471.0 24994.0\n", + "Malaysia 23938.0 52440.0\n", + "Maldives 169.0 268.0\n", + "Mali 6028.0 12665.0\n", + "Malta 4.0 21.0\n", + "Marshall Islands 159.0 152.0\n", + "Mauritania 902.0 2246.0\n", + "Mauritius 180.0 432.0\n", + "Mexico 33134.0 53218.0\n", + "Micronesia (Federated States of) 116.0 93.0\n", + "Monaco 0.0 0.0\n", + "Mongolia 5583.0 6454.0\n", + "Montenegro 42.0 80.0\n", + "Montserrat 0.0 3.0\n", + "Morocco 30252.0 58497.0\n", + "Mozambique 0.0 0.0\n", + "Myanmar 67403.0 130337.0\n", + "Namibia 14772.0 19685.0\n", + "Nauru 5.0 5.0\n", + "Nepal 32414.0 66254.0\n", + "Netherlands 593.0 1258.0\n", + "Netherlands Antilles 12.0 40.0\n", + "New Caledonia 63.0 86.0\n", + "New Zealand 295.0 335.0\n", + "Nicaragua 4244.0 5319.0\n", + "Niger 4789.0 12190.0\n", + "Nigeria 80330.0 111660.0\n", + "Niue 1.0 0.0\n", + "Northern Mariana Islands 96.0 111.0\n", + "Norway 129.0 175.0\n", + "Oman 453.0 692.0\n", + "Pakistan 94064.0 99216.0\n", + "Palau 11.0 23.0\n", + "Panama 1902.0 3346.0\n", + "Papua New Guinea 3225.0 3434.0\n", + "Paraguay 2815.0 5061.0\n", + "Peru 46298.0 62229.0\n", + "Philippines 96966.0 216914.0\n", + "Poland 6560.0 15001.0\n", + "Portugal 2962.0 8464.0\n", + "Puerto Rico 157.0 332.0\n", + "Qatar 114.0 399.0\n", + "Republic of Korea 28390.0 48574.0\n", + "Republic of Moldova 2053.0 6568.0\n", + "Romania 21126.0 52827.0\n", + "Russian Federation 35450.0 113330.0\n", + "Rwanda 7350.0 12980.0\n", + "Saint Kitts and Nevis 3.0 1.0\n", + "Saint Lucia 29.0 48.0\n", + "Saint Vincent and the Grenadines 10.0 31.0\n", + "Samoa 41.0 41.0\n", + "San Marino 0.0 1.0\n", + "Sao Tome and Principe 193.0 213.0\n", + "Saudi Arabia 4572.0 7073.0\n", + "Senegal 13910.0 30431.0\n", + "Serbia 868.0 1364.0\n", + "Serbia & Montenegro 1078.0 1632.0\n", + "Seychelles 17.0 42.0\n", + "Sierra Leone 9201.0 14748.0\n", + "Singapore 862.0 2466.0\n", + "Slovakia 437.0 897.0\n", + "Slovenia 281.0 530.0\n", + "Solomon Islands 427.0 373.0\n", + "Somalia 13763.0 24980.0\n", + "South Africa 264248.0 341088.0\n", + "Spain 4180.0 8889.0\n", + "Sri Lanka 8386.0 22441.0\n", + "Sudan 32121.0 48022.0\n", + "Suriname 93.0 235.0\n", + "Swaziland 6696.0 7019.0\n", + "Sweden 352.0 449.0\n", + "Switzerland 227.0 386.0\n", + "Syrian Arab Republic 3582.0 6609.0\n", + "Tajikistan 1521.0 2208.0\n", + "Thailand 55379.0 130832.0\n", + "The Former Yugoslav Republic of Macedonia 474.0 812.0\n", + "Timor-Leste 2150.0 2903.0\n", + "Togo 3449.0 5429.0\n", + "Tokelau 0.0 0.0\n", + "Tonga 33.0 49.0\n", + "Trinidad and Tobago 244.0 579.0\n", + "Tunisia 1803.0 4931.0\n", + "Turkey 4219.0 11395.0\n", + "Turkmenistan 2777.0 5187.0\n", + "Turks and Caicos Islands 10.0 5.0\n", + "Tuvalu 10.0 16.0\n", + "US Virgin Islands 0.0 0.0\n", + "Uganda 56500.0 79555.0\n", + "Ukraine 11481.0 38200.0\n", + "United Arab Emirates 143.0 170.0\n", + "United Kingdom of Great Britain and Northern Ireland 3546.0 5285.0\n", + "United Republic of Tanzania 65505.0 108065.0\n", + "United States of America 12047.0 25716.0\n", + "Uruguay 727.0 1641.0\n", + "Uzbekistan 13706.0 18760.0\n", + "Vanuatu 154.0 186.0\n", + "Venezuela (Bolivarian Republic of) 7215.0 11087.0\n", + "Viet Nam 112399.0 278116.0\n", + "Wallis and Futuna Islands 7.0 10.0\n", + "West Bank and Gaza Strip 14.0 28.0\n", + "Yemen 12969.0 15771.0\n", + "Zambia 41179.0 53162.0\n", + "Zimbabwe 30699.0 35504.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender_2000 = (\n", + " tb[tb['year'].between(2000, 2006)]\n", + " .pivot_table(index='country', columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "tb_cases_per_gender_2000" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "a2491a2c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyeargenderage_rangecasesyear_range
65Angola2000m<=14yo186.02000-2006
66Angola2001m<=14yo230.02000-2006
67Angola2002m<=14yo435.02000-2006
68Angola2003m<=14yo409.02000-2006
69Angola2004m<=14yo554.02000-2006
70Angola2005m<=14yo520.02000-2006
71Angola2006m<=14yo540.02000-2006
72Angola2007m<=14yo484.02007-2012
73Angola2008m<=14yo367.02007-2012
74Angola2009m<=14yo392.02007-2012
75Angola2010m<=14yo448.02007-2012
76Angola2011m<=14yo501.02007-2012
77Angola2012m<=14yo390.02007-2012
2848Angola2000m15-24yo999.02000-2006
2849Angola2001m15-24yo892.02000-2006
2850Angola2002m15-24yo2223.02000-2006
2851Angola2003m15-24yo2355.02000-2006
2852Angola2004m15-24yo2684.02000-2006
2853Angola2005m15-24yo2549.02000-2006
2854Angola2006m15-24yo2632.02000-2006
2855Angola2007m15-24yo2824.02007-2012
2856Angola2008m15-24yo2970.02007-2012
2857Angola2009m15-24yo3054.02007-2012
2858Angola2010m15-24yo2900.02007-2012
2859Angola2011m15-24yo3000.02007-2012
2860Angola2012m15-24yo2804.02007-2012
5631Angola2000m25-34yo1003.02000-2006
5632Angola2001m25-34yo752.02000-2006
5633Angola2002m25-34yo2292.02000-2006
5634Angola2003m25-34yo2598.02000-2006
5635Angola2004m25-34yo2659.02000-2006
5636Angola2005m25-34yo2797.02000-2006
5637Angola2006m25-34yo3049.02000-2006
5638Angola2007m25-34yo3197.02007-2012
5639Angola2008m25-34yo3493.02007-2012
5640Angola2009m25-34yo3600.02007-2012
5641Angola2010m25-34yo3584.02007-2012
5642Angola2011m25-34yo3792.02007-2012
5643Angola2012m25-34yo3627.02007-2012
8414Angola2000m35-44yo912.02000-2006
8415Angola2001m35-44yo648.02000-2006
8416Angola2002m35-44yo1915.02000-2006
8417Angola2003m35-44yo1908.02000-2006
8418Angola2004m35-44yo1998.02000-2006
8419Angola2005m35-44yo1918.02000-2006
8420Angola2006m35-44yo2182.02000-2006
8421Angola2007m35-44yo2255.02007-2012
8422Angola2008m35-44yo2418.02007-2012
8423Angola2009m35-44yo2420.02007-2012
8424Angola2010m35-44yo2415.02007-2012
8425Angola2011m35-44yo2386.02007-2012
8426Angola2012m35-44yo2529.02007-2012
11197Angola2000m45-54yo482.02000-2006
11198Angola2001m45-54yo420.02000-2006
11199Angola2002m45-54yo1187.02000-2006
11200Angola2003m45-54yo1090.02000-2006
11201Angola2004m45-54yo1196.02000-2006
11202Angola2005m45-54yo1255.02000-2006
11203Angola2006m45-54yo1397.02000-2006
11204Angola2007m45-54yo1357.02007-2012
11205Angola2008m45-54yo1480.02007-2012
11206Angola2009m45-54yo1590.02007-2012
11207Angola2010m45-54yo1424.02007-2012
11208Angola2011m45-54yo1395.02007-2012
11209Angola2012m45-54yo1427.02007-2012
13980Angola2000m55-64yo312.02000-2006
13981Angola2001m55-64yo197.02000-2006
13982Angola2002m55-64yo624.02000-2006
13983Angola2003m55-64yo512.02000-2006
13984Angola2004m55-64yo561.02000-2006
13985Angola2005m55-64yo665.02000-2006
13986Angola2006m55-64yo729.02000-2006
13987Angola2007m55-64yo699.02007-2012
13988Angola2008m55-64yo733.02007-2012
13989Angola2009m55-64yo748.02007-2012
13990Angola2010m55-64yo691.02007-2012
13991Angola2011m55-64yo680.02007-2012
13992Angola2012m55-64yo732.02007-2012
16763Angola2000m>=65yo194.02000-2006
16764Angola2001m>=65yo173.02000-2006
16765Angola2002m>=65yo444.02000-2006
16766Angola2003m>=65yo361.02000-2006
16767Angola2004m>=65yo321.02000-2006
16768Angola2005m>=65yo461.02000-2006
16769Angola2006m>=65yo428.02000-2006
16770Angola2007m>=65yo465.02007-2012
16771Angola2008m>=65yo420.02007-2012
16772Angola2009m>=65yo463.02007-2012
16773Angola2010m>=65yo355.02007-2012
16774Angola2011m>=65yo455.02007-2012
16775Angola2012m>=65yo424.02007-2012
19546Angola2000f<=14yo247.02000-2006
19547Angola2001f<=14yo279.02000-2006
19548Angola2002f<=14yo640.02000-2006
19549Angola2003f<=14yo591.02000-2006
19550Angola2004f<=14yo733.02000-2006
19551Angola2005f<=14yo704.02000-2006
19552Angola2006f<=14yo689.02000-2006
19553Angola2007f<=14yo703.02007-2012
19554Angola2008f<=14yo512.02007-2012
19555Angola2009f<=14yo568.02007-2012
19556Angola2010f<=14yo558.02007-2012
19557Angola2011f<=14yo708.02007-2012
19558Angola2012f<=14yo592.02007-2012
22329Angola2000f15-24yo1142.02000-2006
22330Angola2001f15-24yo993.02000-2006
22331Angola2002f15-24yo2610.02000-2006
22332Angola2003f15-24yo3078.02000-2006
22333Angola2004f15-24yo3198.02000-2006
22334Angola2005f15-24yo2926.02000-2006
22335Angola2006f15-24yo2851.02000-2006
22336Angola2007f15-24yo2943.02007-2012
22337Angola2008f15-24yo3199.02007-2012
22338Angola2009f15-24yo3152.02007-2012
22339Angola2010f15-24yo2763.02007-2012
22340Angola2011f15-24yo2731.02007-2012
22341Angola2012f15-24yo2501.02007-2012
25112Angola2000f25-34yo1091.02000-2006
25113Angola2001f25-34yo869.02000-2006
25114Angola2002f25-34yo2208.02000-2006
25115Angola2003f25-34yo2641.02000-2006
25116Angola2004f25-34yo2772.02000-2006
25117Angola2005f25-34yo2682.02000-2006
25118Angola2006f25-34yo2892.02000-2006
25119Angola2007f25-34yo2721.02007-2012
25120Angola2008f25-34yo2786.02007-2012
25121Angola2009f25-34yo2798.02007-2012
25122Angola2010f25-34yo2594.02007-2012
25123Angola2011f25-34yo2563.02007-2012
25124Angola2012f25-34yo2540.02007-2012
27895Angola2000f35-44yo844.02000-2006
27896Angola2001f35-44yo647.02000-2006
27897Angola2002f35-44yo1600.02000-2006
27898Angola2003f35-44yo1747.02000-2006
27899Angola2004f35-44yo1854.02000-2006
27900Angola2005f35-44yo1797.02000-2006
27901Angola2006f35-44yo1990.02000-2006
27902Angola2007f35-44yo1812.02007-2012
27903Angola2008f35-44yo2082.02007-2012
27904Angola2009f35-44yo1790.02007-2012
27905Angola2010f35-44yo1688.02007-2012
27906Angola2011f35-44yo1683.02007-2012
27907Angola2012f35-44yo1617.02007-2012
30678Angola2000f45-54yo417.02000-2006
30679Angola2001f45-54yo323.02000-2006
30680Angola2002f45-54yo972.02000-2006
30681Angola2003f45-54yo1157.02000-2006
30682Angola2004f45-54yo1029.02000-2006
30683Angola2005f45-54yo1138.02000-2006
30684Angola2006f45-54yo1223.02000-2006
30685Angola2007f45-54yo1041.02007-2012
30686Angola2008f45-54yo1209.02007-2012
30687Angola2009f45-54yo1069.02007-2012
30688Angola2010f45-54yo958.02007-2012
30689Angola2011f45-54yo1006.02007-2012
30690Angola2012f45-54yo1028.02007-2012
33461Angola2000f55-64yo200.02000-2006
33462Angola2001f55-64yo200.02000-2006
33463Angola2002f55-64yo533.02000-2006
33464Angola2003f55-64yo395.02000-2006
33465Angola2004f55-64yo505.02000-2006
33466Angola2005f55-64yo581.02000-2006
33467Angola2006f55-64yo583.02000-2006
33468Angola2007f55-64yo554.02007-2012
33469Angola2008f55-64yo556.02007-2012
33470Angola2009f55-64yo572.02007-2012
33471Angola2010f55-64yo482.02007-2012
33472Angola2011f55-64yo457.02007-2012
33473Angola2012f55-64yo529.02007-2012
36244Angola2000f>=65yo120.02000-2006
36245Angola2001f>=65yo182.02000-2006
36246Angola2002f>=65yo305.02000-2006
36247Angola2003f>=65yo129.02000-2006
36248Angola2004f>=65yo269.02000-2006
36249Angola2005f>=65yo417.02000-2006
36250Angola2006f>=65yo314.02000-2006
36251Angola2007f>=65yo367.02007-2012
36252Angola2008f>=65yo337.02007-2012
36253Angola2009f>=65yo272.02007-2012
36254Angola2010f>=65yo286.02007-2012
36255Angola2011f>=65yo346.02007-2012
36256Angola2012f>=65yo384.02007-2012
\n", + "
" + ], + "text/plain": [ + " country year gender age_range cases year_range\n", + "65 Angola 2000 m <=14yo 186.0 2000-2006\n", + "66 Angola 2001 m <=14yo 230.0 2000-2006\n", + "67 Angola 2002 m <=14yo 435.0 2000-2006\n", + "68 Angola 2003 m <=14yo 409.0 2000-2006\n", + "69 Angola 2004 m <=14yo 554.0 2000-2006\n", + "70 Angola 2005 m <=14yo 520.0 2000-2006\n", + "71 Angola 2006 m <=14yo 540.0 2000-2006\n", + "72 Angola 2007 m <=14yo 484.0 2007-2012\n", + "73 Angola 2008 m <=14yo 367.0 2007-2012\n", + "74 Angola 2009 m <=14yo 392.0 2007-2012\n", + "75 Angola 2010 m <=14yo 448.0 2007-2012\n", + "76 Angola 2011 m <=14yo 501.0 2007-2012\n", + "77 Angola 2012 m <=14yo 390.0 2007-2012\n", + "2848 Angola 2000 m 15-24yo 999.0 2000-2006\n", + "2849 Angola 2001 m 15-24yo 892.0 2000-2006\n", + "2850 Angola 2002 m 15-24yo 2223.0 2000-2006\n", + "2851 Angola 2003 m 15-24yo 2355.0 2000-2006\n", + "2852 Angola 2004 m 15-24yo 2684.0 2000-2006\n", + "2853 Angola 2005 m 15-24yo 2549.0 2000-2006\n", + "2854 Angola 2006 m 15-24yo 2632.0 2000-2006\n", + "2855 Angola 2007 m 15-24yo 2824.0 2007-2012\n", + "2856 Angola 2008 m 15-24yo 2970.0 2007-2012\n", + "2857 Angola 2009 m 15-24yo 3054.0 2007-2012\n", + "2858 Angola 2010 m 15-24yo 2900.0 2007-2012\n", + "2859 Angola 2011 m 15-24yo 3000.0 2007-2012\n", + "2860 Angola 2012 m 15-24yo 2804.0 2007-2012\n", + "5631 Angola 2000 m 25-34yo 1003.0 2000-2006\n", + "5632 Angola 2001 m 25-34yo 752.0 2000-2006\n", + "5633 Angola 2002 m 25-34yo 2292.0 2000-2006\n", + "5634 Angola 2003 m 25-34yo 2598.0 2000-2006\n", + "5635 Angola 2004 m 25-34yo 2659.0 2000-2006\n", + "5636 Angola 2005 m 25-34yo 2797.0 2000-2006\n", + "5637 Angola 2006 m 25-34yo 3049.0 2000-2006\n", + "5638 Angola 2007 m 25-34yo 3197.0 2007-2012\n", + "5639 Angola 2008 m 25-34yo 3493.0 2007-2012\n", + "5640 Angola 2009 m 25-34yo 3600.0 2007-2012\n", + "5641 Angola 2010 m 25-34yo 3584.0 2007-2012\n", + "5642 Angola 2011 m 25-34yo 3792.0 2007-2012\n", + "5643 Angola 2012 m 25-34yo 3627.0 2007-2012\n", + "8414 Angola 2000 m 35-44yo 912.0 2000-2006\n", + "8415 Angola 2001 m 35-44yo 648.0 2000-2006\n", + "8416 Angola 2002 m 35-44yo 1915.0 2000-2006\n", + "8417 Angola 2003 m 35-44yo 1908.0 2000-2006\n", + "8418 Angola 2004 m 35-44yo 1998.0 2000-2006\n", + "8419 Angola 2005 m 35-44yo 1918.0 2000-2006\n", + "8420 Angola 2006 m 35-44yo 2182.0 2000-2006\n", + "8421 Angola 2007 m 35-44yo 2255.0 2007-2012\n", + "8422 Angola 2008 m 35-44yo 2418.0 2007-2012\n", + "8423 Angola 2009 m 35-44yo 2420.0 2007-2012\n", + "8424 Angola 2010 m 35-44yo 2415.0 2007-2012\n", + "8425 Angola 2011 m 35-44yo 2386.0 2007-2012\n", + "8426 Angola 2012 m 35-44yo 2529.0 2007-2012\n", + "11197 Angola 2000 m 45-54yo 482.0 2000-2006\n", + "11198 Angola 2001 m 45-54yo 420.0 2000-2006\n", + "11199 Angola 2002 m 45-54yo 1187.0 2000-2006\n", + "11200 Angola 2003 m 45-54yo 1090.0 2000-2006\n", + "11201 Angola 2004 m 45-54yo 1196.0 2000-2006\n", + "11202 Angola 2005 m 45-54yo 1255.0 2000-2006\n", + "11203 Angola 2006 m 45-54yo 1397.0 2000-2006\n", + "11204 Angola 2007 m 45-54yo 1357.0 2007-2012\n", + "11205 Angola 2008 m 45-54yo 1480.0 2007-2012\n", + "11206 Angola 2009 m 45-54yo 1590.0 2007-2012\n", + "11207 Angola 2010 m 45-54yo 1424.0 2007-2012\n", + "11208 Angola 2011 m 45-54yo 1395.0 2007-2012\n", + "11209 Angola 2012 m 45-54yo 1427.0 2007-2012\n", + "13980 Angola 2000 m 55-64yo 312.0 2000-2006\n", + "13981 Angola 2001 m 55-64yo 197.0 2000-2006\n", + "13982 Angola 2002 m 55-64yo 624.0 2000-2006\n", + "13983 Angola 2003 m 55-64yo 512.0 2000-2006\n", + "13984 Angola 2004 m 55-64yo 561.0 2000-2006\n", + "13985 Angola 2005 m 55-64yo 665.0 2000-2006\n", + "13986 Angola 2006 m 55-64yo 729.0 2000-2006\n", + "13987 Angola 2007 m 55-64yo 699.0 2007-2012\n", + "13988 Angola 2008 m 55-64yo 733.0 2007-2012\n", + "13989 Angola 2009 m 55-64yo 748.0 2007-2012\n", + "13990 Angola 2010 m 55-64yo 691.0 2007-2012\n", + "13991 Angola 2011 m 55-64yo 680.0 2007-2012\n", + "13992 Angola 2012 m 55-64yo 732.0 2007-2012\n", + "16763 Angola 2000 m >=65yo 194.0 2000-2006\n", + "16764 Angola 2001 m >=65yo 173.0 2000-2006\n", + "16765 Angola 2002 m >=65yo 444.0 2000-2006\n", + "16766 Angola 2003 m >=65yo 361.0 2000-2006\n", + "16767 Angola 2004 m >=65yo 321.0 2000-2006\n", + "16768 Angola 2005 m >=65yo 461.0 2000-2006\n", + "16769 Angola 2006 m >=65yo 428.0 2000-2006\n", + "16770 Angola 2007 m >=65yo 465.0 2007-2012\n", + "16771 Angola 2008 m >=65yo 420.0 2007-2012\n", + "16772 Angola 2009 m >=65yo 463.0 2007-2012\n", + "16773 Angola 2010 m >=65yo 355.0 2007-2012\n", + "16774 Angola 2011 m >=65yo 455.0 2007-2012\n", + "16775 Angola 2012 m >=65yo 424.0 2007-2012\n", + "19546 Angola 2000 f <=14yo 247.0 2000-2006\n", + "19547 Angola 2001 f <=14yo 279.0 2000-2006\n", + "19548 Angola 2002 f <=14yo 640.0 2000-2006\n", + "19549 Angola 2003 f <=14yo 591.0 2000-2006\n", + "19550 Angola 2004 f <=14yo 733.0 2000-2006\n", + "19551 Angola 2005 f <=14yo 704.0 2000-2006\n", + "19552 Angola 2006 f <=14yo 689.0 2000-2006\n", + "19553 Angola 2007 f <=14yo 703.0 2007-2012\n", + "19554 Angola 2008 f <=14yo 512.0 2007-2012\n", + "19555 Angola 2009 f <=14yo 568.0 2007-2012\n", + "19556 Angola 2010 f <=14yo 558.0 2007-2012\n", + "19557 Angola 2011 f <=14yo 708.0 2007-2012\n", + "19558 Angola 2012 f <=14yo 592.0 2007-2012\n", + "22329 Angola 2000 f 15-24yo 1142.0 2000-2006\n", + "22330 Angola 2001 f 15-24yo 993.0 2000-2006\n", + "22331 Angola 2002 f 15-24yo 2610.0 2000-2006\n", + "22332 Angola 2003 f 15-24yo 3078.0 2000-2006\n", + "22333 Angola 2004 f 15-24yo 3198.0 2000-2006\n", + "22334 Angola 2005 f 15-24yo 2926.0 2000-2006\n", + "22335 Angola 2006 f 15-24yo 2851.0 2000-2006\n", + "22336 Angola 2007 f 15-24yo 2943.0 2007-2012\n", + "22337 Angola 2008 f 15-24yo 3199.0 2007-2012\n", + "22338 Angola 2009 f 15-24yo 3152.0 2007-2012\n", + "22339 Angola 2010 f 15-24yo 2763.0 2007-2012\n", + "22340 Angola 2011 f 15-24yo 2731.0 2007-2012\n", + "22341 Angola 2012 f 15-24yo 2501.0 2007-2012\n", + "25112 Angola 2000 f 25-34yo 1091.0 2000-2006\n", + "25113 Angola 2001 f 25-34yo 869.0 2000-2006\n", + "25114 Angola 2002 f 25-34yo 2208.0 2000-2006\n", + "25115 Angola 2003 f 25-34yo 2641.0 2000-2006\n", + "25116 Angola 2004 f 25-34yo 2772.0 2000-2006\n", + "25117 Angola 2005 f 25-34yo 2682.0 2000-2006\n", + "25118 Angola 2006 f 25-34yo 2892.0 2000-2006\n", + "25119 Angola 2007 f 25-34yo 2721.0 2007-2012\n", + "25120 Angola 2008 f 25-34yo 2786.0 2007-2012\n", + "25121 Angola 2009 f 25-34yo 2798.0 2007-2012\n", + "25122 Angola 2010 f 25-34yo 2594.0 2007-2012\n", + "25123 Angola 2011 f 25-34yo 2563.0 2007-2012\n", + "25124 Angola 2012 f 25-34yo 2540.0 2007-2012\n", + "27895 Angola 2000 f 35-44yo 844.0 2000-2006\n", + "27896 Angola 2001 f 35-44yo 647.0 2000-2006\n", + "27897 Angola 2002 f 35-44yo 1600.0 2000-2006\n", + "27898 Angola 2003 f 35-44yo 1747.0 2000-2006\n", + "27899 Angola 2004 f 35-44yo 1854.0 2000-2006\n", + "27900 Angola 2005 f 35-44yo 1797.0 2000-2006\n", + "27901 Angola 2006 f 35-44yo 1990.0 2000-2006\n", + "27902 Angola 2007 f 35-44yo 1812.0 2007-2012\n", + "27903 Angola 2008 f 35-44yo 2082.0 2007-2012\n", + "27904 Angola 2009 f 35-44yo 1790.0 2007-2012\n", + "27905 Angola 2010 f 35-44yo 1688.0 2007-2012\n", + "27906 Angola 2011 f 35-44yo 1683.0 2007-2012\n", + "27907 Angola 2012 f 35-44yo 1617.0 2007-2012\n", + "30678 Angola 2000 f 45-54yo 417.0 2000-2006\n", + "30679 Angola 2001 f 45-54yo 323.0 2000-2006\n", + "30680 Angola 2002 f 45-54yo 972.0 2000-2006\n", + "30681 Angola 2003 f 45-54yo 1157.0 2000-2006\n", + "30682 Angola 2004 f 45-54yo 1029.0 2000-2006\n", + "30683 Angola 2005 f 45-54yo 1138.0 2000-2006\n", + "30684 Angola 2006 f 45-54yo 1223.0 2000-2006\n", + "30685 Angola 2007 f 45-54yo 1041.0 2007-2012\n", + "30686 Angola 2008 f 45-54yo 1209.0 2007-2012\n", + "30687 Angola 2009 f 45-54yo 1069.0 2007-2012\n", + "30688 Angola 2010 f 45-54yo 958.0 2007-2012\n", + "30689 Angola 2011 f 45-54yo 1006.0 2007-2012\n", + "30690 Angola 2012 f 45-54yo 1028.0 2007-2012\n", + "33461 Angola 2000 f 55-64yo 200.0 2000-2006\n", + "33462 Angola 2001 f 55-64yo 200.0 2000-2006\n", + "33463 Angola 2002 f 55-64yo 533.0 2000-2006\n", + "33464 Angola 2003 f 55-64yo 395.0 2000-2006\n", + "33465 Angola 2004 f 55-64yo 505.0 2000-2006\n", + "33466 Angola 2005 f 55-64yo 581.0 2000-2006\n", + "33467 Angola 2006 f 55-64yo 583.0 2000-2006\n", + "33468 Angola 2007 f 55-64yo 554.0 2007-2012\n", + "33469 Angola 2008 f 55-64yo 556.0 2007-2012\n", + "33470 Angola 2009 f 55-64yo 572.0 2007-2012\n", + "33471 Angola 2010 f 55-64yo 482.0 2007-2012\n", + "33472 Angola 2011 f 55-64yo 457.0 2007-2012\n", + "33473 Angola 2012 f 55-64yo 529.0 2007-2012\n", + "36244 Angola 2000 f >=65yo 120.0 2000-2006\n", + "36245 Angola 2001 f >=65yo 182.0 2000-2006\n", + "36246 Angola 2002 f >=65yo 305.0 2000-2006\n", + "36247 Angola 2003 f >=65yo 129.0 2000-2006\n", + "36248 Angola 2004 f >=65yo 269.0 2000-2006\n", + "36249 Angola 2005 f >=65yo 417.0 2000-2006\n", + "36250 Angola 2006 f >=65yo 314.0 2000-2006\n", + "36251 Angola 2007 f >=65yo 367.0 2007-2012\n", + "36252 Angola 2008 f >=65yo 337.0 2007-2012\n", + "36253 Angola 2009 f >=65yo 272.0 2007-2012\n", + "36254 Angola 2010 f >=65yo 286.0 2007-2012\n", + "36255 Angola 2011 f >=65yo 346.0 2007-2012\n", + "36256 Angola 2012 f >=65yo 384.0 2007-2012" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add a new column, containing the year range\n", + "tb['year_range'] = (\n", + " tb['year']\n", + " .between(2000, 2006)\n", + " .map({True: '2000-2006', False: '2007-2012'})\n", + ")\n", + "tb[tb['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "e987b783", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
countryyear_range
Afghanistan2000-200634579.016426.0
2007-201253159.025748.0
Albania2000-2006441.0920.0
2007-2012310.0706.0
Algeria2000-200622993.032926.0
2007-201218904.030182.0
American Samoa2000-200611.06.0
2007-20120.00.0
Andorra2000-200610.018.0
2007-20125.05.0
Angola2000-200657307.056848.0
2007-201259057.071388.0
Anguilla2000-20061.00.0
2007-20120.01.0
Antigua and Barbuda2000-200611.05.0
2007-20122.018.0
Argentina2000-200614527.019357.0
2007-201212051.015187.0
Armenia2000-2006681.03220.0
2007-2012491.01916.0
Aruba2000-20060.00.0
2007-201211.010.0
Australia2000-2006547.0915.0
2007-2012706.01003.0
Austria2000-2006456.01186.0
2007-2012182.0361.0
Azerbaijan2000-20061559.05913.0
2007-20121078.03082.0
Bahamas2000-200676.0109.0
2007-201250.0102.0
Bahrain2000-200663.0140.0
2007-2012198.0454.0
Bangladesh2000-2006133757.0294417.0
2007-2012175795.0346381.0
Barbados2000-200612.026.0
2007-20126.011.0
Belarus2000-20061031.04247.0
2007-20121648.05427.0
Belgium2000-2006692.01588.0
2007-2012533.01092.0
Belize2000-2006140.0243.0
2007-2012148.0326.0
Benin2000-20066405.011283.0
2007-20126316.011855.0
Bermuda2000-20061.01.0
2007-20121.01.0
Bhutan2000-20061040.01356.0
2007-20121301.01257.0
Bolivia (Plurinational State of)2000-200618089.026493.0
2007-201213521.020791.0
Bonaire, Saint Eustatius and Saba2007-20120.00.0
Bosnia and Herzegovina2000-20061982.02669.0
2007-20121076.01603.0
Botswana2000-20069650.012441.0
2007-20127660.09792.0
Brazil2000-2006113354.0211322.0
2007-201273972.0159616.0
British Virgin Islands2000-20062.02.0
2007-20120.01.0
Brunei Darussalam2000-2006251.0400.0
2007-2012294.0480.0
Bulgaria2000-20061937.04233.0
2007-20121501.03758.0
Burkina Faso2000-20064170.08743.0
2007-20125765.012740.0
Burundi2000-20067043.011273.0
2007-20128205.015699.0
Cabo Verde2000-2006309.0471.0
2007-2012268.0630.0
Cambodia2000-200660829.063809.0
2007-201249450.055865.0
Cameroon2000-200625588.038214.0
2007-201234545.051806.0
Canada2000-20061265.01702.0
2007-20121041.01615.0
Cayman Islands2000-20061.06.0
2007-20121.08.0
Central African Republic2000-20065980.07685.0
2007-20129510.011593.0
Chad2000-20064694.07208.0
2007-20126377.012948.0
Chile2000-20063058.06281.0
2007-20122186.04761.0
China2000-2006692350.01522330.0
2007-2012716717.01784144.0
China, Hong Kong SAR2000-20063792.08483.0
2007-20122754.05968.0
China, Macao SAR2000-2006284.0699.0
2007-2012302.0644.0
Colombia2000-200621225.031804.0
2007-201216508.025150.0
Comoros2000-2006192.0253.0
2007-201293.0193.0
Congo2000-20065314.06160.0
2007-20129625.011880.0
Cook Islands2000-20060.05.0
2007-20121.03.0
Costa Rica2000-2006886.01641.0
2007-2012583.01099.0
Cote d'Ivoire2000-200628598.040932.0
2007-201234650.052222.0
Croatia2000-2006960.01931.0
2007-2012369.0785.0
Cuba2000-2006872.02762.0
2007-2012495.01694.0
Curacao2007-20123.03.0
Cyprus2000-200613.035.0
2007-201228.032.0
Czech Republic2000-2006632.01703.0
2007-2012319.01010.0
Democratic People's Republic of Korea2000-200646809.074757.0
2007-201264750.0110640.0
Democratic Republic of the Congo2000-2006170192.0192935.0
2007-2012193001.0229162.0
Denmark2000-2006370.0601.0
2007-2012228.0463.0
Djibouti2000-20062755.05755.0
2007-20122672.04975.0
Dominica2000-20065.05.0
2007-20126.019.0
Dominican Republic2000-20066419.09800.0
2007-20125481.08887.0
Ecuador2000-20066807.09901.0
2007-20127696.013212.0
Egypt2000-200610845.021086.0
2007-20129385.019162.0
El Salvador2000-20062677.04082.0
2007-20122230.03915.0
Equatorial Guinea2000-2006161.0245.0
2007-2012908.01251.0
Eritrea2000-20062608.02270.0
2007-20121392.01715.0
Estonia2000-2006368.01015.0
2007-2012200.0575.0
Ethiopia2000-2006116094.0140312.0
2007-201297671.0121887.0
Fiji2000-2006209.0334.0
2007-2012245.0289.0
Finland2000-2006312.0583.0
2007-2012173.0345.0
France2000-20064243.08166.0
2007-20122523.04343.0
French Polynesia2000-200690.0108.0
2007-201252.062.0
Gabon2000-20062776.04131.0
2007-20123096.04693.0
Gambia2000-20061613.03805.0
2007-20122186.04578.0
Georgia2000-20061971.06242.0
2007-20122709.08892.0
Germany2000-20062266.04311.0
2007-20122466.04756.0
Ghana2000-200618497.034527.0
2007-201212728.025325.0
Greece2000-2006379.0923.0
2007-2012329.0827.0
Greenland2000-20060.00.0
2007-201251.078.0
Grenada2000-20062.02.0
2007-20124.014.0
Guam2000-200697.0179.0
2007-201249.0108.0
Guatemala2000-20065596.06544.0
2007-20124701.05408.0
Guinea2000-200611207.021725.0
2007-201212965.024187.0
Guinea-Bissau2000-20062285.03451.0
2007-20122537.03945.0
Guyana2000-2006916.01962.0
2007-2012514.01324.0
Haiti2000-200623235.023307.0
2007-201220461.021527.0
Honduras2000-20067230.08965.0
2007-20124653.06958.0
Hungary2000-2006897.02514.0
2007-2012538.01349.0
Iceland2000-20066.09.0
2007-20129.09.0
India2000-2006828474.01848348.0
2007-20121143930.02590830.0
Indonesia2000-2006286538.0399164.0
2007-2012440227.0639461.0
Iran (Islamic Republic of)2000-200617795.017946.0
2007-201215264.015447.0
Iraq2000-20067994.015159.0
2007-20127963.010697.0
Ireland2000-2006246.0441.0
2007-2012247.0501.0
Israel2000-2006466.0738.0
2007-2012260.0460.0
Italy2000-20062360.04445.0
2007-20121789.03054.0
Jamaica2000-2006139.0350.0
2007-2012125.0262.0
Japan2000-200623230.053242.0
2007-201217028.034090.0
Jordan2000-2006227.0436.0
2007-2012292.0335.0
Kazakhstan2000-200618320.030157.0
2007-201211542.019017.0
Kenya2000-2006106531.0146717.0
2007-201287519.0135336.0
Kiribati2000-2006324.0366.0
2007-2012379.0408.0
Kuwait2000-2006524.0956.0
2007-2012829.01111.0
Kyrgyzstan2000-20064503.07007.0
2007-20124020.05823.0
Lao People's Democratic Republic2000-20065757.09100.0
2007-20127258.011391.0
Latvia2000-20061097.03094.0
2007-2012561.01658.0
Lebanon2000-2006430.0613.0
2007-2012641.0461.0
Lesotho2000-20069791.012371.0
2007-20128313.010721.0
Liberia2000-20065500.07301.0
2007-20128517.010714.0
Libya2000-2006847.03092.0
2007-2012842.02754.0
Lithuania2000-20061677.04595.0
2007-20121181.03497.0
Luxembourg2000-200644.068.0
2007-20120.01.0
Madagascar2000-200629552.042855.0
2007-201239949.057554.0
Malawi2000-200624471.024994.0
2007-201219560.024546.0
Malaysia2000-200623938.052440.0
2007-201222941.046467.0
Maldives2000-2006169.0268.0
2007-201297.0200.0
Mali2000-20066028.012665.0
2007-20128393.016587.0
Malta2000-20064.021.0
2007-201211.044.0
Marshall Islands2000-2006159.0152.0
2007-2012133.0126.0
Mauritania2000-2006902.02246.0
2007-20122577.06288.0
Mauritius2000-2006180.0432.0
2007-2012181.0411.0
Mexico2000-200633134.053218.0
2007-201228000.045866.0
Micronesia (Federated States of)2000-2006116.093.0
2007-2012150.0135.0
Monaco2000-20060.00.0
2007-20120.00.0
Mongolia2000-20065583.06454.0
2007-20124674.06105.0
Montenegro2000-200642.080.0
2007-2012122.0168.0
Montserrat2000-20060.03.0
2007-20121.00.0
Morocco2000-200630252.058497.0
2007-201221326.049976.0
Mozambique2000-20060.00.0
2007-20120.00.0
Myanmar2000-200667403.0130337.0
2007-201286520.0166258.0
Namibia2000-200614772.019685.0
2007-201212062.015865.0
Nauru2000-20065.05.0
2007-20123.07.0
Nepal2000-200632414.066254.0
2007-201227740.058736.0
Netherlands2000-2006593.01258.0
2007-2012388.0712.0
Netherlands Antilles2000-200612.040.0
2007-20120.00.0
New Caledonia2000-200663.086.0
2007-201226.054.0
New Zealand2000-2006295.0335.0
2007-2012237.0277.0
Nicaragua2000-20064244.05319.0
2007-20122493.03354.0
Niger2000-20064789.012190.0
2007-20129799.027912.0
Nigeria2000-200680330.0111660.0
2007-2012111620.0169039.0
Niue2000-20061.00.0
2007-20120.00.0
Northern Mariana Islands2000-200696.0111.0
2007-201232.054.0
Norway2000-2006129.0175.0
2007-2012107.0181.0
Oman2000-2006453.0692.0
2007-2012404.0655.0
Pakistan2000-200694064.099216.0
2007-2012297873.0313604.0
Palau2000-200611.023.0
2007-201211.017.0
Panama2000-20061902.03346.0
2007-20121760.03080.0
Papua New Guinea2000-20063225.03434.0
2007-20124573.04870.0
Paraguay2000-20062815.05061.0
2007-20122488.05652.0
Peru2000-200646298.062229.0
2007-201215103.020100.0
Philippines2000-200696966.0216914.0
2007-2012159419.0377739.0
Poland2000-20066560.015001.0
2007-20124465.011174.0
Portugal2000-20062962.08464.0
2007-20121607.04513.0
Puerto Rico2000-2006157.0332.0
2007-201272.0173.0
Qatar2000-2006114.0399.0
2007-2012168.0967.0
Republic of Korea2000-200628390.048574.0
2007-201227674.041026.0
Republic of Moldova2000-20062053.06568.0
2007-20121847.06499.0
Romania2000-200621126.052827.0
2007-201214688.035758.0
Russian Federation2000-200635450.0113330.0
2007-201249652.0138825.0
Rwanda2000-20067350.012980.0
2007-20128444.015133.0
Saint Kitts and Nevis2000-20063.01.0
2007-20125.013.0
Saint Lucia2000-200629.048.0
2007-201218.052.0
Saint Vincent and the Grenadines2000-200610.031.0
2007-201212.039.0
Samoa2000-200641.041.0
2007-20121151.0239.0
San Marino2000-20060.01.0
2007-20120.00.0
Sao Tome and Principe2000-2006193.0213.0
2007-2012125.0196.0
Saudi Arabia2000-20064572.07073.0
2007-20124883.07795.0
Senegal2000-200613910.030431.0
2007-201214339.032003.0
Serbia2000-2006868.01364.0
2007-20122308.03456.0
Serbia & Montenegro2000-20061078.01632.0
Seychelles2000-200617.042.0
2007-20129.026.0
Sierra Leone2000-20069201.014748.0
2007-201214769.024760.0
Singapore2000-2006862.02466.0
2007-2012861.02520.0
Sint Maarten (Dutch part)2007-20124.02.0
Slovakia2000-2006437.0897.0
2007-2012207.0520.0
Slovenia2000-2006281.0530.0
2007-2012153.0296.0
Solomon Islands2000-2006427.0373.0
2007-2012447.0422.0
Somalia2000-200613763.024980.0
2007-201212759.023174.0
South Africa2000-2006264248.0341088.0
2007-2012363623.0432029.0
South Sudan2007-20122073.03844.0
Spain2000-20064180.08889.0
2007-20123834.07440.0
Sri Lanka2000-20068386.022441.0
2007-20127215.020056.0
Sudan2000-200632121.048022.0
2007-201221751.036028.0
Suriname2000-200693.0235.0
2007-2012129.0297.0
Swaziland2000-20066696.07019.0
2007-20128801.08455.0
Sweden2000-2006352.0449.0
2007-2012251.0366.0
Switzerland2000-2006227.0386.0
2007-2012190.0279.0
Syrian Arab Republic2000-20063582.06609.0
2007-20122361.04011.0
Tajikistan2000-20061521.02208.0
2007-20125599.07163.0
Thailand2000-200655379.0130832.0
2007-201256286.0131516.0
The Former Yugoslav Republic of Macedonia2000-2006474.0812.0
2007-2012345.0661.0
Timor-Leste2000-20062150.02903.0
2007-20122807.03442.0
Togo2000-20063449.05429.0
2007-20124884.07644.0
Tokelau2000-20060.00.0
2007-20120.00.0
Tonga2000-200633.049.0
2007-201222.030.0
Trinidad and Tobago2000-2006244.0579.0
2007-2012233.0644.0
Tunisia2000-20061803.04931.0
2007-20121730.04290.0
Turkey2000-20064219.011395.0
2007-201210003.025411.0
Turkmenistan2000-20062777.05187.0
2007-20122744.04772.0
Turks and Caicos Islands2000-200610.05.0
2007-20125.011.0
Tuvalu2000-200610.016.0
2007-201225.024.0
US Virgin Islands2000-20060.00.0
2007-20120.00.0
Uganda2000-200656500.079555.0
2007-201251566.088857.0
Ukraine2000-200611481.038200.0
2007-201218694.056689.0
United Arab Emirates2000-2006143.0170.0
2007-2012131.0185.0
United Kingdom of Great Britain and Northern Ireland2000-20063546.05285.0
2007-20123176.04947.0
United Republic of Tanzania2000-200665505.0108065.0
2007-201253863.093848.0
United States of America2000-200612047.025716.0
2007-20127909.016479.0
Uruguay2000-2006727.01641.0
2007-2012718.01762.0
Uzbekistan2000-200613706.018760.0
2007-201212143.016336.0
Vanuatu2000-2006154.0186.0
2007-2012145.0121.0
Venezuela (Bolivarian Republic of)2000-20067215.011087.0
2007-20127934.012160.0
Viet Nam2000-2006112399.0278116.0
2007-201280950.0232357.0
Wallis and Futuna Islands2000-20067.010.0
2007-20121.05.0
West Bank and Gaza Strip2000-200614.028.0
2007-201224.057.0
Yemen2000-200612969.015771.0
2007-20129279.011414.0
Zambia2000-200641179.053162.0
2007-201225435.038711.0
Zimbabwe2000-200630699.035504.0
2007-201231121.035900.0
\n", + "
" + ], + "text/plain": [ + "gender f \\\n", + "country year_range \n", + "Afghanistan 2000-2006 34579.0 \n", + " 2007-2012 53159.0 \n", + "Albania 2000-2006 441.0 \n", + " 2007-2012 310.0 \n", + "Algeria 2000-2006 22993.0 \n", + " 2007-2012 18904.0 \n", + "American Samoa 2000-2006 11.0 \n", + " 2007-2012 0.0 \n", + "Andorra 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "Angola 2000-2006 57307.0 \n", + " 2007-2012 59057.0 \n", + "Anguilla 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Antigua and Barbuda 2000-2006 11.0 \n", + " 2007-2012 2.0 \n", + "Argentina 2000-2006 14527.0 \n", + " 2007-2012 12051.0 \n", + "Armenia 2000-2006 681.0 \n", + " 2007-2012 491.0 \n", + "Aruba 2000-2006 0.0 \n", + " 2007-2012 11.0 \n", + "Australia 2000-2006 547.0 \n", + " 2007-2012 706.0 \n", + "Austria 2000-2006 456.0 \n", + " 2007-2012 182.0 \n", + "Azerbaijan 2000-2006 1559.0 \n", + " 2007-2012 1078.0 \n", + "Bahamas 2000-2006 76.0 \n", + " 2007-2012 50.0 \n", + "Bahrain 2000-2006 63.0 \n", + " 2007-2012 198.0 \n", + "Bangladesh 2000-2006 133757.0 \n", + " 2007-2012 175795.0 \n", + "Barbados 2000-2006 12.0 \n", + " 2007-2012 6.0 \n", + "Belarus 2000-2006 1031.0 \n", + " 2007-2012 1648.0 \n", + "Belgium 2000-2006 692.0 \n", + " 2007-2012 533.0 \n", + "Belize 2000-2006 140.0 \n", + " 2007-2012 148.0 \n", + "Benin 2000-2006 6405.0 \n", + " 2007-2012 6316.0 \n", + "Bermuda 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Bhutan 2000-2006 1040.0 \n", + " 2007-2012 1301.0 \n", + "Bolivia (Plurinational State of) 2000-2006 18089.0 \n", + " 2007-2012 13521.0 \n", + "Bonaire, Saint Eustatius and Saba 2007-2012 0.0 \n", + "Bosnia and Herzegovina 2000-2006 1982.0 \n", + " 2007-2012 1076.0 \n", + "Botswana 2000-2006 9650.0 \n", + " 2007-2012 7660.0 \n", + "Brazil 2000-2006 113354.0 \n", + " 2007-2012 73972.0 \n", + "British Virgin Islands 2000-2006 2.0 \n", + " 2007-2012 0.0 \n", + "Brunei Darussalam 2000-2006 251.0 \n", + " 2007-2012 294.0 \n", + "Bulgaria 2000-2006 1937.0 \n", + " 2007-2012 1501.0 \n", + "Burkina Faso 2000-2006 4170.0 \n", + " 2007-2012 5765.0 \n", + "Burundi 2000-2006 7043.0 \n", + " 2007-2012 8205.0 \n", + "Cabo Verde 2000-2006 309.0 \n", + " 2007-2012 268.0 \n", + "Cambodia 2000-2006 60829.0 \n", + " 2007-2012 49450.0 \n", + "Cameroon 2000-2006 25588.0 \n", + " 2007-2012 34545.0 \n", + "Canada 2000-2006 1265.0 \n", + " 2007-2012 1041.0 \n", + "Cayman Islands 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Central African Republic 2000-2006 5980.0 \n", + " 2007-2012 9510.0 \n", + "Chad 2000-2006 4694.0 \n", + " 2007-2012 6377.0 \n", + "Chile 2000-2006 3058.0 \n", + " 2007-2012 2186.0 \n", + "China 2000-2006 692350.0 \n", + " 2007-2012 716717.0 \n", + "China, Hong Kong SAR 2000-2006 3792.0 \n", + " 2007-2012 2754.0 \n", + "China, Macao SAR 2000-2006 284.0 \n", + " 2007-2012 302.0 \n", + "Colombia 2000-2006 21225.0 \n", + " 2007-2012 16508.0 \n", + "Comoros 2000-2006 192.0 \n", + " 2007-2012 93.0 \n", + "Congo 2000-2006 5314.0 \n", + " 2007-2012 9625.0 \n", + "Cook Islands 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Costa Rica 2000-2006 886.0 \n", + " 2007-2012 583.0 \n", + "Cote d'Ivoire 2000-2006 28598.0 \n", + " 2007-2012 34650.0 \n", + "Croatia 2000-2006 960.0 \n", + " 2007-2012 369.0 \n", + "Cuba 2000-2006 872.0 \n", + " 2007-2012 495.0 \n", + "Curacao 2007-2012 3.0 \n", + "Cyprus 2000-2006 13.0 \n", + " 2007-2012 28.0 \n", + "Czech Republic 2000-2006 632.0 \n", + " 2007-2012 319.0 \n", + "Democratic People's Republic of Korea 2000-2006 46809.0 \n", + " 2007-2012 64750.0 \n", + "Democratic Republic of the Congo 2000-2006 170192.0 \n", + " 2007-2012 193001.0 \n", + "Denmark 2000-2006 370.0 \n", + " 2007-2012 228.0 \n", + "Djibouti 2000-2006 2755.0 \n", + " 2007-2012 2672.0 \n", + "Dominica 2000-2006 5.0 \n", + " 2007-2012 6.0 \n", + "Dominican Republic 2000-2006 6419.0 \n", + " 2007-2012 5481.0 \n", + "Ecuador 2000-2006 6807.0 \n", + " 2007-2012 7696.0 \n", + "Egypt 2000-2006 10845.0 \n", + " 2007-2012 9385.0 \n", + "El Salvador 2000-2006 2677.0 \n", + " 2007-2012 2230.0 \n", + "Equatorial Guinea 2000-2006 161.0 \n", + " 2007-2012 908.0 \n", + "Eritrea 2000-2006 2608.0 \n", + " 2007-2012 1392.0 \n", + "Estonia 2000-2006 368.0 \n", + " 2007-2012 200.0 \n", + "Ethiopia 2000-2006 116094.0 \n", + " 2007-2012 97671.0 \n", + "Fiji 2000-2006 209.0 \n", + " 2007-2012 245.0 \n", + "Finland 2000-2006 312.0 \n", + " 2007-2012 173.0 \n", + "France 2000-2006 4243.0 \n", + " 2007-2012 2523.0 \n", + "French Polynesia 2000-2006 90.0 \n", + " 2007-2012 52.0 \n", + "Gabon 2000-2006 2776.0 \n", + " 2007-2012 3096.0 \n", + "Gambia 2000-2006 1613.0 \n", + " 2007-2012 2186.0 \n", + "Georgia 2000-2006 1971.0 \n", + " 2007-2012 2709.0 \n", + "Germany 2000-2006 2266.0 \n", + " 2007-2012 2466.0 \n", + "Ghana 2000-2006 18497.0 \n", + " 2007-2012 12728.0 \n", + "Greece 2000-2006 379.0 \n", + " 2007-2012 329.0 \n", + "Greenland 2000-2006 0.0 \n", + " 2007-2012 51.0 \n", + "Grenada 2000-2006 2.0 \n", + " 2007-2012 4.0 \n", + "Guam 2000-2006 97.0 \n", + " 2007-2012 49.0 \n", + "Guatemala 2000-2006 5596.0 \n", + " 2007-2012 4701.0 \n", + "Guinea 2000-2006 11207.0 \n", + " 2007-2012 12965.0 \n", + "Guinea-Bissau 2000-2006 2285.0 \n", + " 2007-2012 2537.0 \n", + "Guyana 2000-2006 916.0 \n", + " 2007-2012 514.0 \n", + "Haiti 2000-2006 23235.0 \n", + " 2007-2012 20461.0 \n", + "Honduras 2000-2006 7230.0 \n", + " 2007-2012 4653.0 \n", + "Hungary 2000-2006 897.0 \n", + " 2007-2012 538.0 \n", + "Iceland 2000-2006 6.0 \n", + " 2007-2012 9.0 \n", + "India 2000-2006 828474.0 \n", + " 2007-2012 1143930.0 \n", + "Indonesia 2000-2006 286538.0 \n", + " 2007-2012 440227.0 \n", + "Iran (Islamic Republic of) 2000-2006 17795.0 \n", + " 2007-2012 15264.0 \n", + "Iraq 2000-2006 7994.0 \n", + " 2007-2012 7963.0 \n", + "Ireland 2000-2006 246.0 \n", + " 2007-2012 247.0 \n", + "Israel 2000-2006 466.0 \n", + " 2007-2012 260.0 \n", + "Italy 2000-2006 2360.0 \n", + " 2007-2012 1789.0 \n", + "Jamaica 2000-2006 139.0 \n", + " 2007-2012 125.0 \n", + "Japan 2000-2006 23230.0 \n", + " 2007-2012 17028.0 \n", + "Jordan 2000-2006 227.0 \n", + " 2007-2012 292.0 \n", + "Kazakhstan 2000-2006 18320.0 \n", + " 2007-2012 11542.0 \n", + "Kenya 2000-2006 106531.0 \n", + " 2007-2012 87519.0 \n", + "Kiribati 2000-2006 324.0 \n", + " 2007-2012 379.0 \n", + "Kuwait 2000-2006 524.0 \n", + " 2007-2012 829.0 \n", + "Kyrgyzstan 2000-2006 4503.0 \n", + " 2007-2012 4020.0 \n", + "Lao People's Democratic Republic 2000-2006 5757.0 \n", + " 2007-2012 7258.0 \n", + "Latvia 2000-2006 1097.0 \n", + " 2007-2012 561.0 \n", + "Lebanon 2000-2006 430.0 \n", + " 2007-2012 641.0 \n", + "Lesotho 2000-2006 9791.0 \n", + " 2007-2012 8313.0 \n", + "Liberia 2000-2006 5500.0 \n", + " 2007-2012 8517.0 \n", + "Libya 2000-2006 847.0 \n", + " 2007-2012 842.0 \n", + "Lithuania 2000-2006 1677.0 \n", + " 2007-2012 1181.0 \n", + "Luxembourg 2000-2006 44.0 \n", + " 2007-2012 0.0 \n", + "Madagascar 2000-2006 29552.0 \n", + " 2007-2012 39949.0 \n", + "Malawi 2000-2006 24471.0 \n", + " 2007-2012 19560.0 \n", + "Malaysia 2000-2006 23938.0 \n", + " 2007-2012 22941.0 \n", + "Maldives 2000-2006 169.0 \n", + " 2007-2012 97.0 \n", + "Mali 2000-2006 6028.0 \n", + " 2007-2012 8393.0 \n", + "Malta 2000-2006 4.0 \n", + " 2007-2012 11.0 \n", + "Marshall Islands 2000-2006 159.0 \n", + " 2007-2012 133.0 \n", + "Mauritania 2000-2006 902.0 \n", + " 2007-2012 2577.0 \n", + "Mauritius 2000-2006 180.0 \n", + " 2007-2012 181.0 \n", + "Mexico 2000-2006 33134.0 \n", + " 2007-2012 28000.0 \n", + "Micronesia (Federated States of) 2000-2006 116.0 \n", + " 2007-2012 150.0 \n", + "Monaco 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Mongolia 2000-2006 5583.0 \n", + " 2007-2012 4674.0 \n", + "Montenegro 2000-2006 42.0 \n", + " 2007-2012 122.0 \n", + "Montserrat 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Morocco 2000-2006 30252.0 \n", + " 2007-2012 21326.0 \n", + "Mozambique 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Myanmar 2000-2006 67403.0 \n", + " 2007-2012 86520.0 \n", + "Namibia 2000-2006 14772.0 \n", + " 2007-2012 12062.0 \n", + "Nauru 2000-2006 5.0 \n", + " 2007-2012 3.0 \n", + "Nepal 2000-2006 32414.0 \n", + " 2007-2012 27740.0 \n", + "Netherlands 2000-2006 593.0 \n", + " 2007-2012 388.0 \n", + "Netherlands Antilles 2000-2006 12.0 \n", + " 2007-2012 0.0 \n", + "New Caledonia 2000-2006 63.0 \n", + " 2007-2012 26.0 \n", + "New Zealand 2000-2006 295.0 \n", + " 2007-2012 237.0 \n", + "Nicaragua 2000-2006 4244.0 \n", + " 2007-2012 2493.0 \n", + "Niger 2000-2006 4789.0 \n", + " 2007-2012 9799.0 \n", + "Nigeria 2000-2006 80330.0 \n", + " 2007-2012 111620.0 \n", + "Niue 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Northern Mariana Islands 2000-2006 96.0 \n", + " 2007-2012 32.0 \n", + "Norway 2000-2006 129.0 \n", + " 2007-2012 107.0 \n", + "Oman 2000-2006 453.0 \n", + " 2007-2012 404.0 \n", + "Pakistan 2000-2006 94064.0 \n", + " 2007-2012 297873.0 \n", + "Palau 2000-2006 11.0 \n", + " 2007-2012 11.0 \n", + "Panama 2000-2006 1902.0 \n", + " 2007-2012 1760.0 \n", + "Papua New Guinea 2000-2006 3225.0 \n", + " 2007-2012 4573.0 \n", + "Paraguay 2000-2006 2815.0 \n", + " 2007-2012 2488.0 \n", + "Peru 2000-2006 46298.0 \n", + " 2007-2012 15103.0 \n", + "Philippines 2000-2006 96966.0 \n", + " 2007-2012 159419.0 \n", + "Poland 2000-2006 6560.0 \n", + " 2007-2012 4465.0 \n", + "Portugal 2000-2006 2962.0 \n", + " 2007-2012 1607.0 \n", + "Puerto Rico 2000-2006 157.0 \n", + " 2007-2012 72.0 \n", + "Qatar 2000-2006 114.0 \n", + " 2007-2012 168.0 \n", + "Republic of Korea 2000-2006 28390.0 \n", + " 2007-2012 27674.0 \n", + "Republic of Moldova 2000-2006 2053.0 \n", + " 2007-2012 1847.0 \n", + "Romania 2000-2006 21126.0 \n", + " 2007-2012 14688.0 \n", + "Russian Federation 2000-2006 35450.0 \n", + " 2007-2012 49652.0 \n", + "Rwanda 2000-2006 7350.0 \n", + " 2007-2012 8444.0 \n", + "Saint Kitts and Nevis 2000-2006 3.0 \n", + " 2007-2012 5.0 \n", + "Saint Lucia 2000-2006 29.0 \n", + " 2007-2012 18.0 \n", + "Saint Vincent and the Grenadines 2000-2006 10.0 \n", + " 2007-2012 12.0 \n", + "Samoa 2000-2006 41.0 \n", + " 2007-2012 1151.0 \n", + "San Marino 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Sao Tome and Principe 2000-2006 193.0 \n", + " 2007-2012 125.0 \n", + "Saudi Arabia 2000-2006 4572.0 \n", + " 2007-2012 4883.0 \n", + "Senegal 2000-2006 13910.0 \n", + " 2007-2012 14339.0 \n", + "Serbia 2000-2006 868.0 \n", + " 2007-2012 2308.0 \n", + "Serbia & Montenegro 2000-2006 1078.0 \n", + "Seychelles 2000-2006 17.0 \n", + " 2007-2012 9.0 \n", + "Sierra Leone 2000-2006 9201.0 \n", + " 2007-2012 14769.0 \n", + "Singapore 2000-2006 862.0 \n", + " 2007-2012 861.0 \n", + "Sint Maarten (Dutch part) 2007-2012 4.0 \n", + "Slovakia 2000-2006 437.0 \n", + " 2007-2012 207.0 \n", + "Slovenia 2000-2006 281.0 \n", + " 2007-2012 153.0 \n", + "Solomon Islands 2000-2006 427.0 \n", + " 2007-2012 447.0 \n", + "Somalia 2000-2006 13763.0 \n", + " 2007-2012 12759.0 \n", + "South Africa 2000-2006 264248.0 \n", + " 2007-2012 363623.0 \n", + "South Sudan 2007-2012 2073.0 \n", + "Spain 2000-2006 4180.0 \n", + " 2007-2012 3834.0 \n", + "Sri Lanka 2000-2006 8386.0 \n", + " 2007-2012 7215.0 \n", + "Sudan 2000-2006 32121.0 \n", + " 2007-2012 21751.0 \n", + "Suriname 2000-2006 93.0 \n", + " 2007-2012 129.0 \n", + "Swaziland 2000-2006 6696.0 \n", + " 2007-2012 8801.0 \n", + "Sweden 2000-2006 352.0 \n", + " 2007-2012 251.0 \n", + "Switzerland 2000-2006 227.0 \n", + " 2007-2012 190.0 \n", + "Syrian Arab Republic 2000-2006 3582.0 \n", + " 2007-2012 2361.0 \n", + "Tajikistan 2000-2006 1521.0 \n", + " 2007-2012 5599.0 \n", + "Thailand 2000-2006 55379.0 \n", + " 2007-2012 56286.0 \n", + "The Former Yugoslav Republic of Macedonia 2000-2006 474.0 \n", + " 2007-2012 345.0 \n", + "Timor-Leste 2000-2006 2150.0 \n", + " 2007-2012 2807.0 \n", + "Togo 2000-2006 3449.0 \n", + " 2007-2012 4884.0 \n", + "Tokelau 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Tonga 2000-2006 33.0 \n", + " 2007-2012 22.0 \n", + "Trinidad and Tobago 2000-2006 244.0 \n", + " 2007-2012 233.0 \n", + "Tunisia 2000-2006 1803.0 \n", + " 2007-2012 1730.0 \n", + "Turkey 2000-2006 4219.0 \n", + " 2007-2012 10003.0 \n", + "Turkmenistan 2000-2006 2777.0 \n", + " 2007-2012 2744.0 \n", + "Turks and Caicos Islands 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "Tuvalu 2000-2006 10.0 \n", + " 2007-2012 25.0 \n", + "US Virgin Islands 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Uganda 2000-2006 56500.0 \n", + " 2007-2012 51566.0 \n", + "Ukraine 2000-2006 11481.0 \n", + " 2007-2012 18694.0 \n", + "United Arab Emirates 2000-2006 143.0 \n", + " 2007-2012 131.0 \n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 3546.0 \n", + " 2007-2012 3176.0 \n", + "United Republic of Tanzania 2000-2006 65505.0 \n", + " 2007-2012 53863.0 \n", + "United States of America 2000-2006 12047.0 \n", + " 2007-2012 7909.0 \n", + "Uruguay 2000-2006 727.0 \n", + " 2007-2012 718.0 \n", + "Uzbekistan 2000-2006 13706.0 \n", + " 2007-2012 12143.0 \n", + "Vanuatu 2000-2006 154.0 \n", + " 2007-2012 145.0 \n", + "Venezuela (Bolivarian Republic of) 2000-2006 7215.0 \n", + " 2007-2012 7934.0 \n", + "Viet Nam 2000-2006 112399.0 \n", + " 2007-2012 80950.0 \n", + "Wallis and Futuna Islands 2000-2006 7.0 \n", + " 2007-2012 1.0 \n", + "West Bank and Gaza Strip 2000-2006 14.0 \n", + " 2007-2012 24.0 \n", + "Yemen 2000-2006 12969.0 \n", + " 2007-2012 9279.0 \n", + "Zambia 2000-2006 41179.0 \n", + " 2007-2012 25435.0 \n", + "Zimbabwe 2000-2006 30699.0 \n", + " 2007-2012 31121.0 \n", + "\n", + "gender m \n", + "country year_range \n", + "Afghanistan 2000-2006 16426.0 \n", + " 2007-2012 25748.0 \n", + "Albania 2000-2006 920.0 \n", + " 2007-2012 706.0 \n", + "Algeria 2000-2006 32926.0 \n", + " 2007-2012 30182.0 \n", + "American Samoa 2000-2006 6.0 \n", + " 2007-2012 0.0 \n", + "Andorra 2000-2006 18.0 \n", + " 2007-2012 5.0 \n", + "Angola 2000-2006 56848.0 \n", + " 2007-2012 71388.0 \n", + "Anguilla 2000-2006 0.0 \n", + " 2007-2012 1.0 \n", + "Antigua and Barbuda 2000-2006 5.0 \n", + " 2007-2012 18.0 \n", + "Argentina 2000-2006 19357.0 \n", + " 2007-2012 15187.0 \n", + "Armenia 2000-2006 3220.0 \n", + " 2007-2012 1916.0 \n", + "Aruba 2000-2006 0.0 \n", + " 2007-2012 10.0 \n", + "Australia 2000-2006 915.0 \n", + " 2007-2012 1003.0 \n", + "Austria 2000-2006 1186.0 \n", + " 2007-2012 361.0 \n", + "Azerbaijan 2000-2006 5913.0 \n", + " 2007-2012 3082.0 \n", + "Bahamas 2000-2006 109.0 \n", + " 2007-2012 102.0 \n", + "Bahrain 2000-2006 140.0 \n", + " 2007-2012 454.0 \n", + "Bangladesh 2000-2006 294417.0 \n", + " 2007-2012 346381.0 \n", + "Barbados 2000-2006 26.0 \n", + " 2007-2012 11.0 \n", + "Belarus 2000-2006 4247.0 \n", + " 2007-2012 5427.0 \n", + "Belgium 2000-2006 1588.0 \n", + " 2007-2012 1092.0 \n", + "Belize 2000-2006 243.0 \n", + " 2007-2012 326.0 \n", + "Benin 2000-2006 11283.0 \n", + " 2007-2012 11855.0 \n", + "Bermuda 2000-2006 1.0 \n", + " 2007-2012 1.0 \n", + "Bhutan 2000-2006 1356.0 \n", + " 2007-2012 1257.0 \n", + "Bolivia (Plurinational State of) 2000-2006 26493.0 \n", + " 2007-2012 20791.0 \n", + "Bonaire, Saint Eustatius and Saba 2007-2012 0.0 \n", + "Bosnia and Herzegovina 2000-2006 2669.0 \n", + " 2007-2012 1603.0 \n", + "Botswana 2000-2006 12441.0 \n", + " 2007-2012 9792.0 \n", + "Brazil 2000-2006 211322.0 \n", + " 2007-2012 159616.0 \n", + "British Virgin Islands 2000-2006 2.0 \n", + " 2007-2012 1.0 \n", + "Brunei Darussalam 2000-2006 400.0 \n", + " 2007-2012 480.0 \n", + "Bulgaria 2000-2006 4233.0 \n", + " 2007-2012 3758.0 \n", + "Burkina Faso 2000-2006 8743.0 \n", + " 2007-2012 12740.0 \n", + "Burundi 2000-2006 11273.0 \n", + " 2007-2012 15699.0 \n", + "Cabo Verde 2000-2006 471.0 \n", + " 2007-2012 630.0 \n", + "Cambodia 2000-2006 63809.0 \n", + " 2007-2012 55865.0 \n", + "Cameroon 2000-2006 38214.0 \n", + " 2007-2012 51806.0 \n", + "Canada 2000-2006 1702.0 \n", + " 2007-2012 1615.0 \n", + "Cayman Islands 2000-2006 6.0 \n", + " 2007-2012 8.0 \n", + "Central African Republic 2000-2006 7685.0 \n", + " 2007-2012 11593.0 \n", + "Chad 2000-2006 7208.0 \n", + " 2007-2012 12948.0 \n", + "Chile 2000-2006 6281.0 \n", + " 2007-2012 4761.0 \n", + "China 2000-2006 1522330.0 \n", + " 2007-2012 1784144.0 \n", + "China, Hong Kong SAR 2000-2006 8483.0 \n", + " 2007-2012 5968.0 \n", + "China, Macao SAR 2000-2006 699.0 \n", + " 2007-2012 644.0 \n", + "Colombia 2000-2006 31804.0 \n", + " 2007-2012 25150.0 \n", + "Comoros 2000-2006 253.0 \n", + " 2007-2012 193.0 \n", + "Congo 2000-2006 6160.0 \n", + " 2007-2012 11880.0 \n", + "Cook Islands 2000-2006 5.0 \n", + " 2007-2012 3.0 \n", + "Costa Rica 2000-2006 1641.0 \n", + " 2007-2012 1099.0 \n", + "Cote d'Ivoire 2000-2006 40932.0 \n", + " 2007-2012 52222.0 \n", + "Croatia 2000-2006 1931.0 \n", + " 2007-2012 785.0 \n", + "Cuba 2000-2006 2762.0 \n", + " 2007-2012 1694.0 \n", + "Curacao 2007-2012 3.0 \n", + "Cyprus 2000-2006 35.0 \n", + " 2007-2012 32.0 \n", + "Czech Republic 2000-2006 1703.0 \n", + " 2007-2012 1010.0 \n", + "Democratic People's Republic of Korea 2000-2006 74757.0 \n", + " 2007-2012 110640.0 \n", + "Democratic Republic of the Congo 2000-2006 192935.0 \n", + " 2007-2012 229162.0 \n", + "Denmark 2000-2006 601.0 \n", + " 2007-2012 463.0 \n", + "Djibouti 2000-2006 5755.0 \n", + " 2007-2012 4975.0 \n", + "Dominica 2000-2006 5.0 \n", + " 2007-2012 19.0 \n", + "Dominican Republic 2000-2006 9800.0 \n", + " 2007-2012 8887.0 \n", + "Ecuador 2000-2006 9901.0 \n", + " 2007-2012 13212.0 \n", + "Egypt 2000-2006 21086.0 \n", + " 2007-2012 19162.0 \n", + "El Salvador 2000-2006 4082.0 \n", + " 2007-2012 3915.0 \n", + "Equatorial Guinea 2000-2006 245.0 \n", + " 2007-2012 1251.0 \n", + "Eritrea 2000-2006 2270.0 \n", + " 2007-2012 1715.0 \n", + "Estonia 2000-2006 1015.0 \n", + " 2007-2012 575.0 \n", + "Ethiopia 2000-2006 140312.0 \n", + " 2007-2012 121887.0 \n", + "Fiji 2000-2006 334.0 \n", + " 2007-2012 289.0 \n", + "Finland 2000-2006 583.0 \n", + " 2007-2012 345.0 \n", + "France 2000-2006 8166.0 \n", + " 2007-2012 4343.0 \n", + "French Polynesia 2000-2006 108.0 \n", + " 2007-2012 62.0 \n", + "Gabon 2000-2006 4131.0 \n", + " 2007-2012 4693.0 \n", + "Gambia 2000-2006 3805.0 \n", + " 2007-2012 4578.0 \n", + "Georgia 2000-2006 6242.0 \n", + " 2007-2012 8892.0 \n", + "Germany 2000-2006 4311.0 \n", + " 2007-2012 4756.0 \n", + "Ghana 2000-2006 34527.0 \n", + " 2007-2012 25325.0 \n", + "Greece 2000-2006 923.0 \n", + " 2007-2012 827.0 \n", + "Greenland 2000-2006 0.0 \n", + " 2007-2012 78.0 \n", + "Grenada 2000-2006 2.0 \n", + " 2007-2012 14.0 \n", + "Guam 2000-2006 179.0 \n", + " 2007-2012 108.0 \n", + "Guatemala 2000-2006 6544.0 \n", + " 2007-2012 5408.0 \n", + "Guinea 2000-2006 21725.0 \n", + " 2007-2012 24187.0 \n", + "Guinea-Bissau 2000-2006 3451.0 \n", + " 2007-2012 3945.0 \n", + "Guyana 2000-2006 1962.0 \n", + " 2007-2012 1324.0 \n", + "Haiti 2000-2006 23307.0 \n", + " 2007-2012 21527.0 \n", + "Honduras 2000-2006 8965.0 \n", + " 2007-2012 6958.0 \n", + "Hungary 2000-2006 2514.0 \n", + " 2007-2012 1349.0 \n", + "Iceland 2000-2006 9.0 \n", + " 2007-2012 9.0 \n", + "India 2000-2006 1848348.0 \n", + " 2007-2012 2590830.0 \n", + "Indonesia 2000-2006 399164.0 \n", + " 2007-2012 639461.0 \n", + "Iran (Islamic Republic of) 2000-2006 17946.0 \n", + " 2007-2012 15447.0 \n", + "Iraq 2000-2006 15159.0 \n", + " 2007-2012 10697.0 \n", + "Ireland 2000-2006 441.0 \n", + " 2007-2012 501.0 \n", + "Israel 2000-2006 738.0 \n", + " 2007-2012 460.0 \n", + "Italy 2000-2006 4445.0 \n", + " 2007-2012 3054.0 \n", + "Jamaica 2000-2006 350.0 \n", + " 2007-2012 262.0 \n", + "Japan 2000-2006 53242.0 \n", + " 2007-2012 34090.0 \n", + "Jordan 2000-2006 436.0 \n", + " 2007-2012 335.0 \n", + "Kazakhstan 2000-2006 30157.0 \n", + " 2007-2012 19017.0 \n", + "Kenya 2000-2006 146717.0 \n", + " 2007-2012 135336.0 \n", + "Kiribati 2000-2006 366.0 \n", + " 2007-2012 408.0 \n", + "Kuwait 2000-2006 956.0 \n", + " 2007-2012 1111.0 \n", + "Kyrgyzstan 2000-2006 7007.0 \n", + " 2007-2012 5823.0 \n", + "Lao People's Democratic Republic 2000-2006 9100.0 \n", + " 2007-2012 11391.0 \n", + "Latvia 2000-2006 3094.0 \n", + " 2007-2012 1658.0 \n", + "Lebanon 2000-2006 613.0 \n", + " 2007-2012 461.0 \n", + "Lesotho 2000-2006 12371.0 \n", + " 2007-2012 10721.0 \n", + "Liberia 2000-2006 7301.0 \n", + " 2007-2012 10714.0 \n", + "Libya 2000-2006 3092.0 \n", + " 2007-2012 2754.0 \n", + "Lithuania 2000-2006 4595.0 \n", + " 2007-2012 3497.0 \n", + "Luxembourg 2000-2006 68.0 \n", + " 2007-2012 1.0 \n", + "Madagascar 2000-2006 42855.0 \n", + " 2007-2012 57554.0 \n", + "Malawi 2000-2006 24994.0 \n", + " 2007-2012 24546.0 \n", + "Malaysia 2000-2006 52440.0 \n", + " 2007-2012 46467.0 \n", + "Maldives 2000-2006 268.0 \n", + " 2007-2012 200.0 \n", + "Mali 2000-2006 12665.0 \n", + " 2007-2012 16587.0 \n", + "Malta 2000-2006 21.0 \n", + " 2007-2012 44.0 \n", + "Marshall Islands 2000-2006 152.0 \n", + " 2007-2012 126.0 \n", + "Mauritania 2000-2006 2246.0 \n", + " 2007-2012 6288.0 \n", + "Mauritius 2000-2006 432.0 \n", + " 2007-2012 411.0 \n", + "Mexico 2000-2006 53218.0 \n", + " 2007-2012 45866.0 \n", + "Micronesia (Federated States of) 2000-2006 93.0 \n", + " 2007-2012 135.0 \n", + "Monaco 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Mongolia 2000-2006 6454.0 \n", + " 2007-2012 6105.0 \n", + "Montenegro 2000-2006 80.0 \n", + " 2007-2012 168.0 \n", + "Montserrat 2000-2006 3.0 \n", + " 2007-2012 0.0 \n", + "Morocco 2000-2006 58497.0 \n", + " 2007-2012 49976.0 \n", + "Mozambique 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Myanmar 2000-2006 130337.0 \n", + " 2007-2012 166258.0 \n", + "Namibia 2000-2006 19685.0 \n", + " 2007-2012 15865.0 \n", + "Nauru 2000-2006 5.0 \n", + " 2007-2012 7.0 \n", + "Nepal 2000-2006 66254.0 \n", + " 2007-2012 58736.0 \n", + "Netherlands 2000-2006 1258.0 \n", + " 2007-2012 712.0 \n", + "Netherlands Antilles 2000-2006 40.0 \n", + " 2007-2012 0.0 \n", + "New Caledonia 2000-2006 86.0 \n", + " 2007-2012 54.0 \n", + "New Zealand 2000-2006 335.0 \n", + " 2007-2012 277.0 \n", + "Nicaragua 2000-2006 5319.0 \n", + " 2007-2012 3354.0 \n", + "Niger 2000-2006 12190.0 \n", + " 2007-2012 27912.0 \n", + "Nigeria 2000-2006 111660.0 \n", + " 2007-2012 169039.0 \n", + "Niue 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Northern Mariana Islands 2000-2006 111.0 \n", + " 2007-2012 54.0 \n", + "Norway 2000-2006 175.0 \n", + " 2007-2012 181.0 \n", + "Oman 2000-2006 692.0 \n", + " 2007-2012 655.0 \n", + "Pakistan 2000-2006 99216.0 \n", + " 2007-2012 313604.0 \n", + "Palau 2000-2006 23.0 \n", + " 2007-2012 17.0 \n", + "Panama 2000-2006 3346.0 \n", + " 2007-2012 3080.0 \n", + "Papua New Guinea 2000-2006 3434.0 \n", + " 2007-2012 4870.0 \n", + "Paraguay 2000-2006 5061.0 \n", + " 2007-2012 5652.0 \n", + "Peru 2000-2006 62229.0 \n", + " 2007-2012 20100.0 \n", + "Philippines 2000-2006 216914.0 \n", + " 2007-2012 377739.0 \n", + "Poland 2000-2006 15001.0 \n", + " 2007-2012 11174.0 \n", + "Portugal 2000-2006 8464.0 \n", + " 2007-2012 4513.0 \n", + "Puerto Rico 2000-2006 332.0 \n", + " 2007-2012 173.0 \n", + "Qatar 2000-2006 399.0 \n", + " 2007-2012 967.0 \n", + "Republic of Korea 2000-2006 48574.0 \n", + " 2007-2012 41026.0 \n", + "Republic of Moldova 2000-2006 6568.0 \n", + " 2007-2012 6499.0 \n", + "Romania 2000-2006 52827.0 \n", + " 2007-2012 35758.0 \n", + "Russian Federation 2000-2006 113330.0 \n", + " 2007-2012 138825.0 \n", + "Rwanda 2000-2006 12980.0 \n", + " 2007-2012 15133.0 \n", + "Saint Kitts and Nevis 2000-2006 1.0 \n", + " 2007-2012 13.0 \n", + "Saint Lucia 2000-2006 48.0 \n", + " 2007-2012 52.0 \n", + "Saint Vincent and the Grenadines 2000-2006 31.0 \n", + " 2007-2012 39.0 \n", + "Samoa 2000-2006 41.0 \n", + " 2007-2012 239.0 \n", + "San Marino 2000-2006 1.0 \n", + " 2007-2012 0.0 \n", + "Sao Tome and Principe 2000-2006 213.0 \n", + " 2007-2012 196.0 \n", + "Saudi Arabia 2000-2006 7073.0 \n", + " 2007-2012 7795.0 \n", + "Senegal 2000-2006 30431.0 \n", + " 2007-2012 32003.0 \n", + "Serbia 2000-2006 1364.0 \n", + " 2007-2012 3456.0 \n", + "Serbia & Montenegro 2000-2006 1632.0 \n", + "Seychelles 2000-2006 42.0 \n", + " 2007-2012 26.0 \n", + "Sierra Leone 2000-2006 14748.0 \n", + " 2007-2012 24760.0 \n", + "Singapore 2000-2006 2466.0 \n", + " 2007-2012 2520.0 \n", + "Sint Maarten (Dutch part) 2007-2012 2.0 \n", + "Slovakia 2000-2006 897.0 \n", + " 2007-2012 520.0 \n", + "Slovenia 2000-2006 530.0 \n", + " 2007-2012 296.0 \n", + "Solomon Islands 2000-2006 373.0 \n", + " 2007-2012 422.0 \n", + "Somalia 2000-2006 24980.0 \n", + " 2007-2012 23174.0 \n", + "South Africa 2000-2006 341088.0 \n", + " 2007-2012 432029.0 \n", + "South Sudan 2007-2012 3844.0 \n", + "Spain 2000-2006 8889.0 \n", + " 2007-2012 7440.0 \n", + "Sri Lanka 2000-2006 22441.0 \n", + " 2007-2012 20056.0 \n", + "Sudan 2000-2006 48022.0 \n", + " 2007-2012 36028.0 \n", + "Suriname 2000-2006 235.0 \n", + " 2007-2012 297.0 \n", + "Swaziland 2000-2006 7019.0 \n", + " 2007-2012 8455.0 \n", + "Sweden 2000-2006 449.0 \n", + " 2007-2012 366.0 \n", + "Switzerland 2000-2006 386.0 \n", + " 2007-2012 279.0 \n", + "Syrian Arab Republic 2000-2006 6609.0 \n", + " 2007-2012 4011.0 \n", + "Tajikistan 2000-2006 2208.0 \n", + " 2007-2012 7163.0 \n", + "Thailand 2000-2006 130832.0 \n", + " 2007-2012 131516.0 \n", + "The Former Yugoslav Republic of Macedonia 2000-2006 812.0 \n", + " 2007-2012 661.0 \n", + "Timor-Leste 2000-2006 2903.0 \n", + " 2007-2012 3442.0 \n", + "Togo 2000-2006 5429.0 \n", + " 2007-2012 7644.0 \n", + "Tokelau 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Tonga 2000-2006 49.0 \n", + " 2007-2012 30.0 \n", + "Trinidad and Tobago 2000-2006 579.0 \n", + " 2007-2012 644.0 \n", + "Tunisia 2000-2006 4931.0 \n", + " 2007-2012 4290.0 \n", + "Turkey 2000-2006 11395.0 \n", + " 2007-2012 25411.0 \n", + "Turkmenistan 2000-2006 5187.0 \n", + " 2007-2012 4772.0 \n", + "Turks and Caicos Islands 2000-2006 5.0 \n", + " 2007-2012 11.0 \n", + "Tuvalu 2000-2006 16.0 \n", + " 2007-2012 24.0 \n", + "US Virgin Islands 2000-2006 0.0 \n", + " 2007-2012 0.0 \n", + "Uganda 2000-2006 79555.0 \n", + " 2007-2012 88857.0 \n", + "Ukraine 2000-2006 38200.0 \n", + " 2007-2012 56689.0 \n", + "United Arab Emirates 2000-2006 170.0 \n", + " 2007-2012 185.0 \n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 5285.0 \n", + " 2007-2012 4947.0 \n", + "United Republic of Tanzania 2000-2006 108065.0 \n", + " 2007-2012 93848.0 \n", + "United States of America 2000-2006 25716.0 \n", + " 2007-2012 16479.0 \n", + "Uruguay 2000-2006 1641.0 \n", + " 2007-2012 1762.0 \n", + "Uzbekistan 2000-2006 18760.0 \n", + " 2007-2012 16336.0 \n", + "Vanuatu 2000-2006 186.0 \n", + " 2007-2012 121.0 \n", + "Venezuela (Bolivarian Republic of) 2000-2006 11087.0 \n", + " 2007-2012 12160.0 \n", + "Viet Nam 2000-2006 278116.0 \n", + " 2007-2012 232357.0 \n", + "Wallis and Futuna Islands 2000-2006 10.0 \n", + " 2007-2012 5.0 \n", + "West Bank and Gaza Strip 2000-2006 28.0 \n", + " 2007-2012 57.0 \n", + "Yemen 2000-2006 15771.0 \n", + " 2007-2012 11414.0 \n", + "Zambia 2000-2006 53162.0 \n", + " 2007-2012 38711.0 \n", + "Zimbabwe 2000-2006 35504.0 \n", + " 2007-2012 35900.0 " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_cases_per_gender = (\n", + " tb.pivot_table(index=['country', 'year_range'], columns='gender', values='cases', aggfunc='sum')\n", + ")\n", + "\n", + "tb_cases_per_gender" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
genderfm
countryyear_range
Afghanistan2000-200667.832.2
2007-201267.432.6
Albania2000-200632.467.6
2007-201230.569.5
Algeria2000-200641.158.9
2007-201238.561.5
American Samoa2000-200664.735.3
2007-2012NaNNaN
Andorra2000-200635.764.3
2007-201250.050.0
Angola2000-200650.249.8
2007-201245.354.7
Anguilla2000-2006100.00.0
2007-20120.0100.0
Antigua and Barbuda2000-200668.831.2
2007-201210.090.0
Argentina2000-200642.957.1
2007-201244.255.8
Armenia2000-200617.582.5
2007-201220.479.6
Aruba2000-2006NaNNaN
2007-201252.447.6
Australia2000-200637.462.6
2007-201241.358.7
Austria2000-200627.872.2
2007-201233.566.5
Azerbaijan2000-200620.979.1
2007-201225.974.1
Bahamas2000-200641.158.9
2007-201232.967.1
Bahrain2000-200631.069.0
2007-201230.469.6
Bangladesh2000-200631.268.8
2007-201233.766.3
Barbados2000-200631.668.4
2007-201235.364.7
Belarus2000-200619.580.5
2007-201223.376.7
Belgium2000-200630.469.6
2007-201232.867.2
Belize2000-200636.663.4
2007-201231.268.8
Benin2000-200636.263.8
2007-201234.865.2
Bermuda2000-200650.050.0
2007-201250.050.0
Bhutan2000-200643.456.6
2007-201250.949.1
Bolivia (Plurinational State of)2000-200640.659.4
2007-201239.460.6
Bonaire, Saint Eustatius and Saba2007-2012NaNNaN
Bosnia and Herzegovina2000-200642.657.4
2007-201240.259.8
Botswana2000-200643.756.3
2007-201243.956.1
Brazil2000-200634.965.1
2007-201231.768.3
British Virgin Islands2000-200650.050.0
2007-20120.0100.0
Brunei Darussalam2000-200638.661.4
2007-201238.062.0
Bulgaria2000-200631.468.6
2007-201228.571.5
Burkina Faso2000-200632.367.7
2007-201231.268.8
Burundi2000-200638.561.5
2007-201234.365.7
Cabo Verde2000-200639.660.4
2007-201229.870.2
Cambodia2000-200648.851.2
2007-201247.053.0
Cameroon2000-200640.159.9
2007-201240.060.0
Canada2000-200642.657.4
2007-201239.260.8
Cayman Islands2000-200614.385.7
2007-201211.188.9
Central African Republic2000-200643.856.2
2007-201245.154.9
Chad2000-200639.460.6
2007-201233.067.0
Chile2000-200632.767.3
2007-201231.568.5
China2000-200631.368.7
2007-201228.771.3
China, Hong Kong SAR2000-200630.969.1
2007-201231.668.4
China, Macao SAR2000-200628.971.1
2007-201231.968.1
Colombia2000-200640.060.0
2007-201239.660.4
Comoros2000-200643.156.9
2007-201232.567.5
Congo2000-200646.353.7
2007-201244.855.2
Cook Islands2000-20060.0100.0
2007-201225.075.0
Costa Rica2000-200635.164.9
2007-201234.765.3
Cote d'Ivoire2000-200641.158.9
2007-201239.960.1
Croatia2000-200633.266.8
2007-201232.068.0
Cuba2000-200624.076.0
2007-201222.677.4
Curacao2007-201250.050.0
Cyprus2000-200627.172.9
2007-201246.753.3
Czech Republic2000-200627.172.9
2007-201224.076.0
Democratic People's Republic of Korea2000-200638.561.5
2007-201236.963.1
Democratic Republic of the Congo2000-200646.953.1
2007-201245.754.3
Denmark2000-200638.161.9
2007-201233.067.0
Djibouti2000-200632.467.6
2007-201234.965.1
Dominica2000-200650.050.0
2007-201224.076.0
Dominican Republic2000-200639.660.4
2007-201238.161.9
Ecuador2000-200640.759.3
2007-201236.863.2
Egypt2000-200634.066.0
2007-201232.967.1
El Salvador2000-200639.660.4
2007-201236.363.7
Equatorial Guinea2000-200639.760.3
2007-201242.157.9
Eritrea2000-200653.546.5
2007-201244.855.2
Estonia2000-200626.673.4
2007-201225.874.2
Ethiopia2000-200645.354.7
2007-201244.555.5
Fiji2000-200638.561.5
2007-201245.954.1
Finland2000-200634.965.1
2007-201233.466.6
France2000-200634.265.8
2007-201236.763.3
French Polynesia2000-200645.554.5
2007-201245.654.4
Gabon2000-200640.259.8
2007-201239.760.3
Gambia2000-200629.870.2
2007-201232.367.7
Georgia2000-200624.076.0
2007-201223.476.6
Germany2000-200634.565.5
2007-201234.165.9
Ghana2000-200634.965.1
2007-201233.466.6
Greece2000-200629.170.9
2007-201228.571.5
Greenland2000-2006NaNNaN
2007-201239.560.5
Grenada2000-200650.050.0
2007-201222.277.8
Guam2000-200635.164.9
2007-201231.268.8
Guatemala2000-200646.153.9
2007-201246.553.5
Guinea2000-200634.066.0
2007-201234.965.1
Guinea-Bissau2000-200639.860.2
2007-201239.160.9
Guyana2000-200631.868.2
2007-201228.072.0
Haiti2000-200649.950.1
2007-201248.751.3
Honduras2000-200644.655.4
2007-201240.159.9
Hungary2000-200626.373.7
2007-201228.571.5
Iceland2000-200640.060.0
2007-201250.050.0
India2000-200630.969.1
2007-201230.669.4
Indonesia2000-200641.858.2
2007-201240.859.2
Iran (Islamic Republic of)2000-200649.850.2
2007-201249.750.3
Iraq2000-200634.565.5
2007-201242.757.3
Ireland2000-200635.864.2
2007-201233.067.0
Israel2000-200638.761.3
2007-201236.163.9
Italy2000-200634.765.3
2007-201236.963.1
Jamaica2000-200628.471.6
2007-201232.367.7
Japan2000-200630.469.6
2007-201233.366.7
Jordan2000-200634.265.8
2007-201246.653.4
Kazakhstan2000-200637.862.2
2007-201237.862.2
Kenya2000-200642.157.9
2007-201239.360.7
Kiribati2000-200647.053.0
2007-201248.251.8
Kuwait2000-200635.464.6
2007-201242.757.3
Kyrgyzstan2000-200639.160.9
2007-201240.859.2
Lao People's Democratic Republic2000-200638.761.3
2007-201238.961.1
Latvia2000-200626.273.8
2007-201225.374.7
Lebanon2000-200641.258.8
2007-201258.241.8
Lesotho2000-200644.255.8
2007-201243.756.3
Liberia2000-200643.057.0
2007-201244.355.7
Libya2000-200621.578.5
2007-201223.476.6
Lithuania2000-200626.773.3
2007-201225.274.8
Luxembourg2000-200639.360.7
2007-20120.0100.0
Madagascar2000-200640.859.2
2007-201241.059.0
Malawi2000-200649.550.5
2007-201244.355.7
Malaysia2000-200631.368.7
2007-201233.166.9
Maldives2000-200638.761.3
2007-201232.767.3
Mali2000-200632.267.8
2007-201233.666.4
Malta2000-200616.084.0
2007-201220.080.0
Marshall Islands2000-200651.148.9
2007-201251.448.6
Mauritania2000-200628.771.3
2007-201229.170.9
Mauritius2000-200629.470.6
2007-201230.669.4
Mexico2000-200638.461.6
2007-201237.962.1
Micronesia (Federated States of)2000-200655.544.5
2007-201252.647.4
Monaco2000-2006NaNNaN
2007-2012NaNNaN
Mongolia2000-200646.453.6
2007-201243.456.6
Montenegro2000-200634.465.6
2007-201242.157.9
Montserrat2000-20060.0100.0
2007-2012100.00.0
Morocco2000-200634.165.9
2007-201229.970.1
Mozambique2000-2006NaNNaN
2007-2012NaNNaN
Myanmar2000-200634.165.9
2007-201234.265.8
Namibia2000-200642.957.1
2007-201243.256.8
Nauru2000-200650.050.0
2007-201230.070.0
Nepal2000-200632.967.1
2007-201232.167.9
Netherlands2000-200632.068.0
2007-201235.364.7
Netherlands Antilles2000-200623.176.9
2007-2012NaNNaN
New Caledonia2000-200642.357.7
2007-201232.567.5
New Zealand2000-200646.853.2
2007-201246.153.9
Nicaragua2000-200644.455.6
2007-201242.657.4
Niger2000-200628.271.8
2007-201226.074.0
Nigeria2000-200641.858.2
2007-201239.860.2
Niue2000-2006100.00.0
2007-2012NaNNaN
Northern Mariana Islands2000-200646.453.6
2007-201237.262.8
Norway2000-200642.457.6
2007-201237.262.8
Oman2000-200639.660.4
2007-201238.161.9
Pakistan2000-200648.751.3
2007-201248.751.3
Palau2000-200632.467.6
2007-201239.360.7
Panama2000-200636.263.8
2007-201236.463.6
Papua New Guinea2000-200648.451.6
2007-201248.451.6
Paraguay2000-200635.764.3
2007-201230.669.4
Peru2000-200642.757.3
2007-201242.957.1
Philippines2000-200630.969.1
2007-201229.770.3
Poland2000-200630.469.6
2007-201228.671.4
Portugal2000-200625.974.1
2007-201226.373.7
Puerto Rico2000-200632.167.9
2007-201229.470.6
Qatar2000-200622.277.8
2007-201214.885.2
Republic of Korea2000-200636.963.1
2007-201240.359.7
Republic of Moldova2000-200623.876.2
2007-201222.177.9
Romania2000-200628.671.4
2007-201229.170.9
Russian Federation2000-200623.876.2
2007-201226.373.7
Rwanda2000-200636.263.8
2007-201235.864.2
Saint Kitts and Nevis2000-200675.025.0
2007-201227.872.2
Saint Lucia2000-200637.762.3
2007-201225.774.3
Saint Vincent and the Grenadines2000-200624.475.6
2007-201223.576.5
Samoa2000-200650.050.0
2007-201282.817.2
San Marino2000-20060.0100.0
2007-2012NaNNaN
Sao Tome and Principe2000-200647.552.5
2007-201238.961.1
Saudi Arabia2000-200639.360.7
2007-201238.561.5
Senegal2000-200631.468.6
2007-201230.969.1
Serbia2000-200638.961.1
2007-201240.060.0
Serbia & Montenegro2000-200639.860.2
Seychelles2000-200628.871.2
2007-201225.774.3
Sierra Leone2000-200638.461.6
2007-201237.462.6
Singapore2000-200625.974.1
2007-201225.574.5
Sint Maarten (Dutch part)2007-201266.733.3
Slovakia2000-200632.867.2
2007-201228.571.5
Slovenia2000-200634.665.4
2007-201234.165.9
Solomon Islands2000-200653.446.6
2007-201251.448.6
Somalia2000-200635.564.5
2007-201235.564.5
South Africa2000-200643.756.3
2007-201245.754.3
South Sudan2007-201235.065.0
Spain2000-200632.068.0
2007-201234.066.0
Sri Lanka2000-200627.272.8
2007-201226.573.5
Sudan2000-200640.159.9
2007-201237.662.4
Suriname2000-200628.471.6
2007-201230.369.7
Swaziland2000-200648.851.2
2007-201251.049.0
Sweden2000-200643.956.1
2007-201240.759.3
Switzerland2000-200637.063.0
2007-201240.559.5
Syrian Arab Republic2000-200635.164.9
2007-201237.162.9
Tajikistan2000-200640.859.2
2007-201243.956.1
Thailand2000-200629.770.3
2007-201230.070.0
The Former Yugoslav Republic of Macedonia2000-200636.963.1
2007-201234.365.7
Timor-Leste2000-200642.557.5
2007-201244.955.1
Togo2000-200638.861.2
2007-201239.061.0
Tokelau2000-2006NaNNaN
2007-2012NaNNaN
Tonga2000-200640.259.8
2007-201242.357.7
Trinidad and Tobago2000-200629.670.4
2007-201226.673.4
Tunisia2000-200626.873.2
2007-201228.771.3
Turkey2000-200627.073.0
2007-201228.271.8
Turkmenistan2000-200634.965.1
2007-201236.563.5
Turks and Caicos Islands2000-200666.733.3
2007-201231.268.8
Tuvalu2000-200638.561.5
2007-201251.049.0
US Virgin Islands2000-2006NaNNaN
2007-2012NaNNaN
Uganda2000-200641.558.5
2007-201236.763.3
Ukraine2000-200623.176.9
2007-201224.875.2
United Arab Emirates2000-200645.754.3
2007-201241.558.5
United Kingdom of Great Britain and Northern Ireland2000-200640.259.8
2007-201239.160.9
United Republic of Tanzania2000-200637.762.3
2007-201236.563.5
United States of America2000-200631.968.1
2007-201232.467.6
Uruguay2000-200630.769.3
2007-201229.071.0
Uzbekistan2000-200642.257.8
2007-201242.657.4
Vanuatu2000-200645.354.7
2007-201254.545.5
Venezuela (Bolivarian Republic of)2000-200639.460.6
2007-201239.560.5
Viet Nam2000-200628.871.2
2007-201225.874.2
Wallis and Futuna Islands2000-200641.258.8
2007-201216.783.3
West Bank and Gaza Strip2000-200633.366.7
2007-201229.670.4
Yemen2000-200645.154.9
2007-201244.855.2
Zambia2000-200643.656.4
2007-201239.760.3
Zimbabwe2000-200646.453.6
2007-201246.453.6
\n", + "
" + ], + "text/plain": [ + "gender f m\n", + "country year_range \n", + "Afghanistan 2000-2006 67.8 32.2\n", + " 2007-2012 67.4 32.6\n", + "Albania 2000-2006 32.4 67.6\n", + " 2007-2012 30.5 69.5\n", + "Algeria 2000-2006 41.1 58.9\n", + " 2007-2012 38.5 61.5\n", + "American Samoa 2000-2006 64.7 35.3\n", + " 2007-2012 NaN NaN\n", + "Andorra 2000-2006 35.7 64.3\n", + " 2007-2012 50.0 50.0\n", + "Angola 2000-2006 50.2 49.8\n", + " 2007-2012 45.3 54.7\n", + "Anguilla 2000-2006 100.0 0.0\n", + " 2007-2012 0.0 100.0\n", + "Antigua and Barbuda 2000-2006 68.8 31.2\n", + " 2007-2012 10.0 90.0\n", + "Argentina 2000-2006 42.9 57.1\n", + " 2007-2012 44.2 55.8\n", + "Armenia 2000-2006 17.5 82.5\n", + " 2007-2012 20.4 79.6\n", + "Aruba 2000-2006 NaN NaN\n", + " 2007-2012 52.4 47.6\n", + "Australia 2000-2006 37.4 62.6\n", + " 2007-2012 41.3 58.7\n", + "Austria 2000-2006 27.8 72.2\n", + " 2007-2012 33.5 66.5\n", + "Azerbaijan 2000-2006 20.9 79.1\n", + " 2007-2012 25.9 74.1\n", + "Bahamas 2000-2006 41.1 58.9\n", + " 2007-2012 32.9 67.1\n", + "Bahrain 2000-2006 31.0 69.0\n", + " 2007-2012 30.4 69.6\n", + "Bangladesh 2000-2006 31.2 68.8\n", + " 2007-2012 33.7 66.3\n", + "Barbados 2000-2006 31.6 68.4\n", + " 2007-2012 35.3 64.7\n", + "Belarus 2000-2006 19.5 80.5\n", + " 2007-2012 23.3 76.7\n", + "Belgium 2000-2006 30.4 69.6\n", + " 2007-2012 32.8 67.2\n", + "Belize 2000-2006 36.6 63.4\n", + " 2007-2012 31.2 68.8\n", + "Benin 2000-2006 36.2 63.8\n", + " 2007-2012 34.8 65.2\n", + "Bermuda 2000-2006 50.0 50.0\n", + " 2007-2012 50.0 50.0\n", + "Bhutan 2000-2006 43.4 56.6\n", + " 2007-2012 50.9 49.1\n", + "Bolivia (Plurinational State of) 2000-2006 40.6 59.4\n", + " 2007-2012 39.4 60.6\n", + "Bonaire, Saint Eustatius and Saba 2007-2012 NaN NaN\n", + "Bosnia and Herzegovina 2000-2006 42.6 57.4\n", + " 2007-2012 40.2 59.8\n", + "Botswana 2000-2006 43.7 56.3\n", + " 2007-2012 43.9 56.1\n", + "Brazil 2000-2006 34.9 65.1\n", + " 2007-2012 31.7 68.3\n", + "British Virgin Islands 2000-2006 50.0 50.0\n", + " 2007-2012 0.0 100.0\n", + "Brunei Darussalam 2000-2006 38.6 61.4\n", + " 2007-2012 38.0 62.0\n", + "Bulgaria 2000-2006 31.4 68.6\n", + " 2007-2012 28.5 71.5\n", + "Burkina Faso 2000-2006 32.3 67.7\n", + " 2007-2012 31.2 68.8\n", + "Burundi 2000-2006 38.5 61.5\n", + " 2007-2012 34.3 65.7\n", + "Cabo Verde 2000-2006 39.6 60.4\n", + " 2007-2012 29.8 70.2\n", + "Cambodia 2000-2006 48.8 51.2\n", + " 2007-2012 47.0 53.0\n", + "Cameroon 2000-2006 40.1 59.9\n", + " 2007-2012 40.0 60.0\n", + "Canada 2000-2006 42.6 57.4\n", + " 2007-2012 39.2 60.8\n", + "Cayman Islands 2000-2006 14.3 85.7\n", + " 2007-2012 11.1 88.9\n", + "Central African Republic 2000-2006 43.8 56.2\n", + " 2007-2012 45.1 54.9\n", + "Chad 2000-2006 39.4 60.6\n", + " 2007-2012 33.0 67.0\n", + "Chile 2000-2006 32.7 67.3\n", + " 2007-2012 31.5 68.5\n", + "China 2000-2006 31.3 68.7\n", + " 2007-2012 28.7 71.3\n", + "China, Hong Kong SAR 2000-2006 30.9 69.1\n", + " 2007-2012 31.6 68.4\n", + "China, Macao SAR 2000-2006 28.9 71.1\n", + " 2007-2012 31.9 68.1\n", + "Colombia 2000-2006 40.0 60.0\n", + " 2007-2012 39.6 60.4\n", + "Comoros 2000-2006 43.1 56.9\n", + " 2007-2012 32.5 67.5\n", + "Congo 2000-2006 46.3 53.7\n", + " 2007-2012 44.8 55.2\n", + "Cook Islands 2000-2006 0.0 100.0\n", + " 2007-2012 25.0 75.0\n", + "Costa Rica 2000-2006 35.1 64.9\n", + " 2007-2012 34.7 65.3\n", + "Cote d'Ivoire 2000-2006 41.1 58.9\n", + " 2007-2012 39.9 60.1\n", + "Croatia 2000-2006 33.2 66.8\n", + " 2007-2012 32.0 68.0\n", + "Cuba 2000-2006 24.0 76.0\n", + " 2007-2012 22.6 77.4\n", + "Curacao 2007-2012 50.0 50.0\n", + "Cyprus 2000-2006 27.1 72.9\n", + " 2007-2012 46.7 53.3\n", + "Czech Republic 2000-2006 27.1 72.9\n", + " 2007-2012 24.0 76.0\n", + "Democratic People's Republic of Korea 2000-2006 38.5 61.5\n", + " 2007-2012 36.9 63.1\n", + "Democratic Republic of the Congo 2000-2006 46.9 53.1\n", + " 2007-2012 45.7 54.3\n", + "Denmark 2000-2006 38.1 61.9\n", + " 2007-2012 33.0 67.0\n", + "Djibouti 2000-2006 32.4 67.6\n", + " 2007-2012 34.9 65.1\n", + "Dominica 2000-2006 50.0 50.0\n", + " 2007-2012 24.0 76.0\n", + "Dominican Republic 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Ecuador 2000-2006 40.7 59.3\n", + " 2007-2012 36.8 63.2\n", + "Egypt 2000-2006 34.0 66.0\n", + " 2007-2012 32.9 67.1\n", + "El Salvador 2000-2006 39.6 60.4\n", + " 2007-2012 36.3 63.7\n", + "Equatorial Guinea 2000-2006 39.7 60.3\n", + " 2007-2012 42.1 57.9\n", + "Eritrea 2000-2006 53.5 46.5\n", + " 2007-2012 44.8 55.2\n", + "Estonia 2000-2006 26.6 73.4\n", + " 2007-2012 25.8 74.2\n", + "Ethiopia 2000-2006 45.3 54.7\n", + " 2007-2012 44.5 55.5\n", + "Fiji 2000-2006 38.5 61.5\n", + " 2007-2012 45.9 54.1\n", + "Finland 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "France 2000-2006 34.2 65.8\n", + " 2007-2012 36.7 63.3\n", + "French Polynesia 2000-2006 45.5 54.5\n", + " 2007-2012 45.6 54.4\n", + "Gabon 2000-2006 40.2 59.8\n", + " 2007-2012 39.7 60.3\n", + "Gambia 2000-2006 29.8 70.2\n", + " 2007-2012 32.3 67.7\n", + "Georgia 2000-2006 24.0 76.0\n", + " 2007-2012 23.4 76.6\n", + "Germany 2000-2006 34.5 65.5\n", + " 2007-2012 34.1 65.9\n", + "Ghana 2000-2006 34.9 65.1\n", + " 2007-2012 33.4 66.6\n", + "Greece 2000-2006 29.1 70.9\n", + " 2007-2012 28.5 71.5\n", + "Greenland 2000-2006 NaN NaN\n", + " 2007-2012 39.5 60.5\n", + "Grenada 2000-2006 50.0 50.0\n", + " 2007-2012 22.2 77.8\n", + "Guam 2000-2006 35.1 64.9\n", + " 2007-2012 31.2 68.8\n", + "Guatemala 2000-2006 46.1 53.9\n", + " 2007-2012 46.5 53.5\n", + "Guinea 2000-2006 34.0 66.0\n", + " 2007-2012 34.9 65.1\n", + "Guinea-Bissau 2000-2006 39.8 60.2\n", + " 2007-2012 39.1 60.9\n", + "Guyana 2000-2006 31.8 68.2\n", + " 2007-2012 28.0 72.0\n", + "Haiti 2000-2006 49.9 50.1\n", + " 2007-2012 48.7 51.3\n", + "Honduras 2000-2006 44.6 55.4\n", + " 2007-2012 40.1 59.9\n", + "Hungary 2000-2006 26.3 73.7\n", + " 2007-2012 28.5 71.5\n", + "Iceland 2000-2006 40.0 60.0\n", + " 2007-2012 50.0 50.0\n", + "India 2000-2006 30.9 69.1\n", + " 2007-2012 30.6 69.4\n", + "Indonesia 2000-2006 41.8 58.2\n", + " 2007-2012 40.8 59.2\n", + "Iran (Islamic Republic of) 2000-2006 49.8 50.2\n", + " 2007-2012 49.7 50.3\n", + "Iraq 2000-2006 34.5 65.5\n", + " 2007-2012 42.7 57.3\n", + "Ireland 2000-2006 35.8 64.2\n", + " 2007-2012 33.0 67.0\n", + "Israel 2000-2006 38.7 61.3\n", + " 2007-2012 36.1 63.9\n", + "Italy 2000-2006 34.7 65.3\n", + " 2007-2012 36.9 63.1\n", + "Jamaica 2000-2006 28.4 71.6\n", + " 2007-2012 32.3 67.7\n", + "Japan 2000-2006 30.4 69.6\n", + " 2007-2012 33.3 66.7\n", + "Jordan 2000-2006 34.2 65.8\n", + " 2007-2012 46.6 53.4\n", + "Kazakhstan 2000-2006 37.8 62.2\n", + " 2007-2012 37.8 62.2\n", + "Kenya 2000-2006 42.1 57.9\n", + " 2007-2012 39.3 60.7\n", + "Kiribati 2000-2006 47.0 53.0\n", + " 2007-2012 48.2 51.8\n", + "Kuwait 2000-2006 35.4 64.6\n", + " 2007-2012 42.7 57.3\n", + "Kyrgyzstan 2000-2006 39.1 60.9\n", + " 2007-2012 40.8 59.2\n", + "Lao People's Democratic Republic 2000-2006 38.7 61.3\n", + " 2007-2012 38.9 61.1\n", + "Latvia 2000-2006 26.2 73.8\n", + " 2007-2012 25.3 74.7\n", + "Lebanon 2000-2006 41.2 58.8\n", + " 2007-2012 58.2 41.8\n", + "Lesotho 2000-2006 44.2 55.8\n", + " 2007-2012 43.7 56.3\n", + "Liberia 2000-2006 43.0 57.0\n", + " 2007-2012 44.3 55.7\n", + "Libya 2000-2006 21.5 78.5\n", + " 2007-2012 23.4 76.6\n", + "Lithuania 2000-2006 26.7 73.3\n", + " 2007-2012 25.2 74.8\n", + "Luxembourg 2000-2006 39.3 60.7\n", + " 2007-2012 0.0 100.0\n", + "Madagascar 2000-2006 40.8 59.2\n", + " 2007-2012 41.0 59.0\n", + "Malawi 2000-2006 49.5 50.5\n", + " 2007-2012 44.3 55.7\n", + "Malaysia 2000-2006 31.3 68.7\n", + " 2007-2012 33.1 66.9\n", + "Maldives 2000-2006 38.7 61.3\n", + " 2007-2012 32.7 67.3\n", + "Mali 2000-2006 32.2 67.8\n", + " 2007-2012 33.6 66.4\n", + "Malta 2000-2006 16.0 84.0\n", + " 2007-2012 20.0 80.0\n", + "Marshall Islands 2000-2006 51.1 48.9\n", + " 2007-2012 51.4 48.6\n", + "Mauritania 2000-2006 28.7 71.3\n", + " 2007-2012 29.1 70.9\n", + "Mauritius 2000-2006 29.4 70.6\n", + " 2007-2012 30.6 69.4\n", + "Mexico 2000-2006 38.4 61.6\n", + " 2007-2012 37.9 62.1\n", + "Micronesia (Federated States of) 2000-2006 55.5 44.5\n", + " 2007-2012 52.6 47.4\n", + "Monaco 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Mongolia 2000-2006 46.4 53.6\n", + " 2007-2012 43.4 56.6\n", + "Montenegro 2000-2006 34.4 65.6\n", + " 2007-2012 42.1 57.9\n", + "Montserrat 2000-2006 0.0 100.0\n", + " 2007-2012 100.0 0.0\n", + "Morocco 2000-2006 34.1 65.9\n", + " 2007-2012 29.9 70.1\n", + "Mozambique 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Myanmar 2000-2006 34.1 65.9\n", + " 2007-2012 34.2 65.8\n", + "Namibia 2000-2006 42.9 57.1\n", + " 2007-2012 43.2 56.8\n", + "Nauru 2000-2006 50.0 50.0\n", + " 2007-2012 30.0 70.0\n", + "Nepal 2000-2006 32.9 67.1\n", + " 2007-2012 32.1 67.9\n", + "Netherlands 2000-2006 32.0 68.0\n", + " 2007-2012 35.3 64.7\n", + "Netherlands Antilles 2000-2006 23.1 76.9\n", + " 2007-2012 NaN NaN\n", + "New Caledonia 2000-2006 42.3 57.7\n", + " 2007-2012 32.5 67.5\n", + "New Zealand 2000-2006 46.8 53.2\n", + " 2007-2012 46.1 53.9\n", + "Nicaragua 2000-2006 44.4 55.6\n", + " 2007-2012 42.6 57.4\n", + "Niger 2000-2006 28.2 71.8\n", + " 2007-2012 26.0 74.0\n", + "Nigeria 2000-2006 41.8 58.2\n", + " 2007-2012 39.8 60.2\n", + "Niue 2000-2006 100.0 0.0\n", + " 2007-2012 NaN NaN\n", + "Northern Mariana Islands 2000-2006 46.4 53.6\n", + " 2007-2012 37.2 62.8\n", + "Norway 2000-2006 42.4 57.6\n", + " 2007-2012 37.2 62.8\n", + "Oman 2000-2006 39.6 60.4\n", + " 2007-2012 38.1 61.9\n", + "Pakistan 2000-2006 48.7 51.3\n", + " 2007-2012 48.7 51.3\n", + "Palau 2000-2006 32.4 67.6\n", + " 2007-2012 39.3 60.7\n", + "Panama 2000-2006 36.2 63.8\n", + " 2007-2012 36.4 63.6\n", + "Papua New Guinea 2000-2006 48.4 51.6\n", + " 2007-2012 48.4 51.6\n", + "Paraguay 2000-2006 35.7 64.3\n", + " 2007-2012 30.6 69.4\n", + "Peru 2000-2006 42.7 57.3\n", + " 2007-2012 42.9 57.1\n", + "Philippines 2000-2006 30.9 69.1\n", + " 2007-2012 29.7 70.3\n", + "Poland 2000-2006 30.4 69.6\n", + " 2007-2012 28.6 71.4\n", + "Portugal 2000-2006 25.9 74.1\n", + " 2007-2012 26.3 73.7\n", + "Puerto Rico 2000-2006 32.1 67.9\n", + " 2007-2012 29.4 70.6\n", + "Qatar 2000-2006 22.2 77.8\n", + " 2007-2012 14.8 85.2\n", + "Republic of Korea 2000-2006 36.9 63.1\n", + " 2007-2012 40.3 59.7\n", + "Republic of Moldova 2000-2006 23.8 76.2\n", + " 2007-2012 22.1 77.9\n", + "Romania 2000-2006 28.6 71.4\n", + " 2007-2012 29.1 70.9\n", + "Russian Federation 2000-2006 23.8 76.2\n", + " 2007-2012 26.3 73.7\n", + "Rwanda 2000-2006 36.2 63.8\n", + " 2007-2012 35.8 64.2\n", + "Saint Kitts and Nevis 2000-2006 75.0 25.0\n", + " 2007-2012 27.8 72.2\n", + "Saint Lucia 2000-2006 37.7 62.3\n", + " 2007-2012 25.7 74.3\n", + "Saint Vincent and the Grenadines 2000-2006 24.4 75.6\n", + " 2007-2012 23.5 76.5\n", + "Samoa 2000-2006 50.0 50.0\n", + " 2007-2012 82.8 17.2\n", + "San Marino 2000-2006 0.0 100.0\n", + " 2007-2012 NaN NaN\n", + "Sao Tome and Principe 2000-2006 47.5 52.5\n", + " 2007-2012 38.9 61.1\n", + "Saudi Arabia 2000-2006 39.3 60.7\n", + " 2007-2012 38.5 61.5\n", + "Senegal 2000-2006 31.4 68.6\n", + " 2007-2012 30.9 69.1\n", + "Serbia 2000-2006 38.9 61.1\n", + " 2007-2012 40.0 60.0\n", + "Serbia & Montenegro 2000-2006 39.8 60.2\n", + "Seychelles 2000-2006 28.8 71.2\n", + " 2007-2012 25.7 74.3\n", + "Sierra Leone 2000-2006 38.4 61.6\n", + " 2007-2012 37.4 62.6\n", + "Singapore 2000-2006 25.9 74.1\n", + " 2007-2012 25.5 74.5\n", + "Sint Maarten (Dutch part) 2007-2012 66.7 33.3\n", + "Slovakia 2000-2006 32.8 67.2\n", + " 2007-2012 28.5 71.5\n", + "Slovenia 2000-2006 34.6 65.4\n", + " 2007-2012 34.1 65.9\n", + "Solomon Islands 2000-2006 53.4 46.6\n", + " 2007-2012 51.4 48.6\n", + "Somalia 2000-2006 35.5 64.5\n", + " 2007-2012 35.5 64.5\n", + "South Africa 2000-2006 43.7 56.3\n", + " 2007-2012 45.7 54.3\n", + "South Sudan 2007-2012 35.0 65.0\n", + "Spain 2000-2006 32.0 68.0\n", + " 2007-2012 34.0 66.0\n", + "Sri Lanka 2000-2006 27.2 72.8\n", + " 2007-2012 26.5 73.5\n", + "Sudan 2000-2006 40.1 59.9\n", + " 2007-2012 37.6 62.4\n", + "Suriname 2000-2006 28.4 71.6\n", + " 2007-2012 30.3 69.7\n", + "Swaziland 2000-2006 48.8 51.2\n", + " 2007-2012 51.0 49.0\n", + "Sweden 2000-2006 43.9 56.1\n", + " 2007-2012 40.7 59.3\n", + "Switzerland 2000-2006 37.0 63.0\n", + " 2007-2012 40.5 59.5\n", + "Syrian Arab Republic 2000-2006 35.1 64.9\n", + " 2007-2012 37.1 62.9\n", + "Tajikistan 2000-2006 40.8 59.2\n", + " 2007-2012 43.9 56.1\n", + "Thailand 2000-2006 29.7 70.3\n", + " 2007-2012 30.0 70.0\n", + "The Former Yugoslav Republic of Macedonia 2000-2006 36.9 63.1\n", + " 2007-2012 34.3 65.7\n", + "Timor-Leste 2000-2006 42.5 57.5\n", + " 2007-2012 44.9 55.1\n", + "Togo 2000-2006 38.8 61.2\n", + " 2007-2012 39.0 61.0\n", + "Tokelau 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Tonga 2000-2006 40.2 59.8\n", + " 2007-2012 42.3 57.7\n", + "Trinidad and Tobago 2000-2006 29.6 70.4\n", + " 2007-2012 26.6 73.4\n", + "Tunisia 2000-2006 26.8 73.2\n", + " 2007-2012 28.7 71.3\n", + "Turkey 2000-2006 27.0 73.0\n", + " 2007-2012 28.2 71.8\n", + "Turkmenistan 2000-2006 34.9 65.1\n", + " 2007-2012 36.5 63.5\n", + "Turks and Caicos Islands 2000-2006 66.7 33.3\n", + " 2007-2012 31.2 68.8\n", + "Tuvalu 2000-2006 38.5 61.5\n", + " 2007-2012 51.0 49.0\n", + "US Virgin Islands 2000-2006 NaN NaN\n", + " 2007-2012 NaN NaN\n", + "Uganda 2000-2006 41.5 58.5\n", + " 2007-2012 36.7 63.3\n", + "Ukraine 2000-2006 23.1 76.9\n", + " 2007-2012 24.8 75.2\n", + "United Arab Emirates 2000-2006 45.7 54.3\n", + " 2007-2012 41.5 58.5\n", + "United Kingdom of Great Britain and Northern Ireland 2000-2006 40.2 59.8\n", + " 2007-2012 39.1 60.9\n", + "United Republic of Tanzania 2000-2006 37.7 62.3\n", + " 2007-2012 36.5 63.5\n", + "United States of America 2000-2006 31.9 68.1\n", + " 2007-2012 32.4 67.6\n", + "Uruguay 2000-2006 30.7 69.3\n", + " 2007-2012 29.0 71.0\n", + "Uzbekistan 2000-2006 42.2 57.8\n", + " 2007-2012 42.6 57.4\n", + "Vanuatu 2000-2006 45.3 54.7\n", + " 2007-2012 54.5 45.5\n", + "Venezuela (Bolivarian Republic of) 2000-2006 39.4 60.6\n", + " 2007-2012 39.5 60.5\n", + "Viet Nam 2000-2006 28.8 71.2\n", + " 2007-2012 25.8 74.2\n", + "Wallis and Futuna Islands 2000-2006 41.2 58.8\n", + " 2007-2012 16.7 83.3\n", + "West Bank and Gaza Strip 2000-2006 33.3 66.7\n", + " 2007-2012 29.6 70.4\n", + "Yemen 2000-2006 45.1 54.9\n", + " 2007-2012 44.8 55.2\n", + "Zambia 2000-2006 43.6 56.4\n", + " 2007-2012 39.7 60.3\n", + "Zimbabwe 2000-2006 46.4 53.6\n", + " 2007-2012 46.4 53.6" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "total_cases = tb_cases_per_gender.sum(axis=1)\n", + "\n", + "tb_cases_per_gender = tb_cases_per_gender.div(total_cases, axis=0)\n", + "(tb_cases_per_gender.round(3) * 100)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "cf39e5dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tidy_data/who2.csv b/exercises/tabular_tidy_data/who2.csv new file mode 100644 index 0000000..a1587d0 --- /dev/null +++ b/exercises/tabular_tidy_data/who2.csv @@ -0,0 +1,7241 @@ +rownames,country,year,sp_m_014,sp_m_1524,sp_m_2534,sp_m_3544,sp_m_4554,sp_m_5564,sp_m_65,sp_f_014,sp_f_1524,sp_f_2534,sp_f_3544,sp_f_4554,sp_f_5564,sp_f_65,sn_m_014,sn_m_1524,sn_m_2534,sn_m_3544,sn_m_4554,sn_m_5564,sn_m_65,sn_f_014,sn_f_1524,sn_f_2534,sn_f_3544,sn_f_4554,sn_f_5564,sn_f_65,ep_m_014,ep_m_1524,ep_m_2534,ep_m_3544,ep_m_4554,ep_m_5564,ep_m_65,ep_f_014,ep_f_1524,ep_f_2534,ep_f_3544,ep_f_4554,ep_f_5564,ep_f_65,rel_m_014,rel_m_1524,rel_m_2534,rel_m_3544,rel_m_4554,rel_m_5564,rel_m_65,rel_f_014,rel_f_1524,rel_f_2534,rel_f_3544,rel_f_4554,rel_f_5564,rel_f_65 +1,Afghanistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Afghanistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Afghanistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Afghanistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Afghanistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Afghanistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Afghanistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Afghanistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Afghanistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Afghanistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Afghanistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Afghanistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Afghanistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Afghanistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Afghanistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Afghanistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Afghanistan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Afghanistan,1997,0,10,6,3,5,2,0,5,38,36,14,8,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Afghanistan,1998,30,129,128,90,89,64,41,45,350,419,194,118,61,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Afghanistan,1999,8,55,55,47,34,21,8,25,139,160,110,50,25,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Afghanistan,2000,52,228,183,149,129,94,80,93,414,565,339,205,99,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Afghanistan,2001,129,379,349,274,204,139,103,146,799,888,586,375,179,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Afghanistan,2002,90,476,481,368,246,241,189,192,1119,1251,792,526,320,218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Afghanistan,2003,127,511,436,284,256,288,203,245,1152,1287,814,462,305,158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Afghanistan,2004,139,537,568,360,358,386,310,256,1360,1561,1096,645,413,256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Afghanistan,2005,151,606,560,472,453,470,419,320,1651,1959,1302,869,471,246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +27,Afghanistan,2006,193,837,791,574,572,572,410,442,2139,2340,1654,1006,630,309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Afghanistan,2007,186,856,840,597,566,630,507,475,2224,2357,1708,1143,771,353,0,0,0,0,0,0,0,,,,,,,,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, +29,Afghanistan,2008,187,941,773,545,570,630,575,428,2094,2449,1614,1149,817,364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Afghanistan,2009,200,906,705,499,491,596,570,439,2173,2186,1541,1014,764,419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Afghanistan,2010,197,986,819,491,490,641,622,445,2107,2263,1455,1112,831,488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Afghanistan,2011,204,1010,895,613,570,700,692,465,2167,2325,1564,1146,903,535,902,,,,,,,851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Afghanistan,2012,188,1116,801,586,521,585,651,400,2280,2204,1482,1150,850,505,1265,,,,,,,1190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Afghanistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1705,,,,,,,1749,,,,,, +35,Albania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Albania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Albania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Albania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Albania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Albania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Albania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Albania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Albania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Albania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Albania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Albania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Albania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Albania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Albania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Albania,1995,0,0,0,0,19,40,30,0,1,0,0,13,20,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Albania,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Albania,1997,0,23,43,33,25,21,19,1,16,19,14,9,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Albania,1998,1,17,21,24,18,26,24,2,19,11,12,13,11,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Albania,1999,0,13,23,25,19,15,15,0,5,13,11,5,8,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Albania,2000,2,19,21,14,24,19,16,3,11,10,8,8,5,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Albania,2001,3,13,18,17,19,20,30,1,12,10,5,7,7,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Albania,2002,0,21,27,29,19,23,25,2,20,19,9,6,8,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Albania,2003,0,28,19,32,16,22,19,2,13,8,6,14,12,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Albania,2004,5,12,19,21,24,23,20,2,12,12,8,11,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Albania,2005,0,26,21,16,31,20,37,0,3,9,5,5,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Albania,2006,5,24,19,22,21,19,20,2,12,8,7,7,7,13,15,4,5,2,8,9,25,4,6,3,5,3,5,12,9,19,11,18,12,9,21,7,8,10,9,12,15,15,,,,,,,,,,,,,, +62,Albania,2007,0,19,13,16,24,16,19,2,13,9,7,7,11,9,10,9,4,7,11,13,17,5,5,2,1,6,6,9,9,18,9,10,14,8,19,1,8,9,8,13,12,14,,,,,,,,,,,,,, +63,Albania,2008,1,23,26,13,19,13,16,1,20,10,8,5,5,10,8,8,2,7,5,7,10,6,7,2,7,5,3,10,0,11,12,6,15,13,18,3,12,7,10,12,10,16,,,,,,,,,,,,,, +64,Albania,2009,0,22,21,12,24,15,22,2,15,7,6,9,4,12,7,9,5,9,8,10,20,4,7,3,5,10,2,10,2,16,6,7,14,19,15,2,5,5,11,8,8,18,,,,,,,,,,,,,, +65,Albania,2010,0,28,17,14,16,16,15,2,11,7,6,3,2,8,6,9,7,10,13,13,18,4,4,3,3,6,3,6,4,26,15,16,13,14,21,2,10,6,8,4,9,17,,,,,,,,,,,,,, +66,Albania,2011,0,29,26,18,30,9,22,1,14,10,6,2,1,12,2,11,5,6,13,17,19,0,3,4,4,2,10,9,1,17,10,4,12,15,13,3,9,4,6,12,11,11,,,,,,,,,,,,,, +67,Albania,2012,0,33,34,16,15,11,23,0,17,9,6,3,6,12,1,6,9,7,10,12,19,1,4,8,2,3,7,11,0,15,12,5,13,11,13,1,5,8,2,7,5,9,,,,,,,,,,,,,, +68,Albania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,60,61,32,44,50,67,5,28,34,13,18,14,34 +69,Algeria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Algeria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Algeria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Algeria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Algeria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Algeria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Algeria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Algeria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Algeria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Algeria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Algeria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +80,Algeria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +81,Algeria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +82,Algeria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +83,Algeria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +84,Algeria,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +85,Algeria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +86,Algeria,1997,659,1422,1982,639,357,312,396,92,1102,702,405,242,236,356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +87,Algeria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +88,Algeria,1999,40,1193,1344,556,706,263,315,92,884,621,281,221,243,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +89,Algeria,2000,59,927,1516,610,491,234,299,36,1005,1293,746,314,208,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +90,Algeria,2001,41,1345,1614,708,401,283,390,79,1057,782,352,287,280,334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +91,Algeria,2002,39,1364,1580,630,406,273,280,71,1840,730,334,224,217,258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +92,Algeria,2003,40,1316,1633,706,429,231,328,74,1017,702,326,242,241,356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +93,Algeria,2004,63,1326,1694,758,434,271,373,92,1011,798,320,253,227,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +94,Algeria,2005,53,1309,1841,919,473,314,426,102,1044,820,389,270,229,465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +95,Algeria,2006,41,1173,1573,692,409,251,360,80,971,679,339,223,197,408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +96,Algeria,2007,95,1388,1749,813,494,296,407,109,1031,811,335,273,247,391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +97,Algeria,2008,99,1505,1786,794,447,198,463,150,1263,827,346,256,226,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +98,Algeria,2009,43,1225,1827,898,541,319,364,90,1021,860,363,270,241,340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +99,Algeria,2010,52,1203,1669,825,513,392,397,79,1086,826,417,251,222,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +100,Algeria,2011,42,1147,1513,881,483,345,347,58,1050,787,383,211,202,341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +101,Algeria,2012,29,1102,1467,857,464,354,349,60,917,773,382,198,229,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +102,Algeria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,1021,1288,763,475,324,409,50,861,707,377,267,205,352 +103,American Samoa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +104,American Samoa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +105,American Samoa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +106,American Samoa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +107,American Samoa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +108,American Samoa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +109,American Samoa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +110,American Samoa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +111,American Samoa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +112,American Samoa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +113,American Samoa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +114,American Samoa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +115,American Samoa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +116,American Samoa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +117,American Samoa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +118,American Samoa,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +119,American Samoa,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +120,American Samoa,1997,1,0,0,1,1,1,1,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +121,American Samoa,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +122,American Samoa,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +123,American Samoa,2000,,,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +124,American Samoa,2001,,,,,,,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +125,American Samoa,2002,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +126,American Samoa,2003,,,,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +127,American Samoa,2004,,,,,,2,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +128,American Samoa,2005,,,,,,,,,,1,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +129,American Samoa,2006,,,,,,,,,,1,,2,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,, +130,American Samoa,2007,,,,,,,,,,,,,,,0,1,0,0,1,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +131,American Samoa,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +132,American Samoa,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,, +133,American Samoa,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +134,American Samoa,2011,,,,,,,,,,,,,,,,,,,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +135,American Samoa,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +136,American Samoa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +137,Andorra,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +138,Andorra,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +139,Andorra,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +140,Andorra,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +141,Andorra,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +142,Andorra,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +143,Andorra,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +144,Andorra,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +145,Andorra,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +146,Andorra,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +147,Andorra,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +148,Andorra,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +149,Andorra,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +150,Andorra,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +151,Andorra,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +152,Andorra,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +153,Andorra,1996,0,0,0,4,1,0,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +154,Andorra,1997,0,0,1,2,2,1,6,0,1,2,3,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +155,Andorra,1998,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +156,Andorra,1999,0,0,0,1,1,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +157,Andorra,2000,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +158,Andorra,2001,0,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +159,Andorra,2002,0,0,0,1,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +160,Andorra,2003,0,0,0,1,2,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +161,Andorra,2004,0,0,0,1,1,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +162,Andorra,2005,0,0,1,1,0,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +163,Andorra,2006,0,1,1,2,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,,,,,,,,,,,,,, +164,Andorra,2007,,,,,,,,,,1,,1,,,,,,,,,1,,,,,,,,,,,1,,,,,,,,1,1,,,,,,,,,,,,,,, +165,Andorra,2008,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +166,Andorra,2009,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +167,Andorra,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +168,Andorra,2011,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +169,Andorra,2012,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,,,,,,,,,,,,,, +170,Andorra,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,1,2,1,0,0,0,0,1,0,0,0 +171,Angola,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +172,Angola,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +173,Angola,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +174,Angola,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +175,Angola,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +176,Angola,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +177,Angola,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +178,Angola,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +179,Angola,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +180,Angola,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +181,Angola,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +182,Angola,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +183,Angola,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +184,Angola,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +185,Angola,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +186,Angola,1995,386,724,562,346,224,155,14,371,707,443,264,248,130,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +187,Angola,1996,360,1036,926,1027,469,272,169,388,1066,963,615,370,242,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +188,Angola,1997,419,913,1026,819,507,304,193,431,1165,1007,627,411,234,145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +189,Angola,1998,240,915,950,839,470,219,135,297,1084,970,623,319,169,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +190,Angola,1999,391,1134,1237,973,518,314,234,459,1197,1157,743,474,217,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +191,Angola,2000,186,999,1003,912,482,312,194,247,1142,1091,844,417,200,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +192,Angola,2001,230,892,752,648,420,197,173,279,993,869,647,323,200,182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +193,Angola,2002,435,2223,2292,1915,1187,624,444,640,2610,2208,1600,972,533,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +194,Angola,2003,409,2355,2598,1908,1090,512,361,591,3078,2641,1747,1157,395,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +195,Angola,2004,554,2684,2659,1998,1196,561,321,733,3198,2772,1854,1029,505,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +196,Angola,2005,520,2549,2797,1918,1255,665,461,704,2926,2682,1797,1138,581,417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +197,Angola,2006,540,2632,3049,2182,1397,729,428,689,2851,2892,1990,1223,583,314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +198,Angola,2007,484,2824,3197,2255,1357,699,465,703,2943,2721,1812,1041,554,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +199,Angola,2008,367,2970,3493,2418,1480,733,420,512,3199,2786,2082,1209,556,337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +200,Angola,2009,392,3054,3600,2420,1590,748,463,568,3152,2798,1790,1069,572,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +201,Angola,2010,448,2900,3584,2415,1424,691,355,558,2763,2594,1688,958,482,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +202,Angola,2011,501,3000,3792,2386,1395,680,455,708,2731,2563,1683,1006,457,346,2466,,,,,,,2165,,,,,,,36,,,,,,,64,,,,,,,,,,,,,,,,,,,, +203,Angola,2012,390,2804,3627,2529,1427,732,424,592,2501,2540,1617,1028,529,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +204,Angola,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,486,2992,3790,2632,1433,735,386,626,2644,2480,1671,991,481,314 +205,Anguilla,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +206,Anguilla,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +207,Anguilla,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +208,Anguilla,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +209,Anguilla,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +210,Anguilla,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +211,Anguilla,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +212,Anguilla,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +213,Anguilla,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +214,Anguilla,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +215,Anguilla,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +216,Anguilla,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +217,Anguilla,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +218,Anguilla,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +219,Anguilla,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +220,Anguilla,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +221,Anguilla,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +222,Anguilla,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +223,Anguilla,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +224,Anguilla,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +225,Anguilla,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +226,Anguilla,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +227,Anguilla,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +228,Anguilla,2003,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +229,Anguilla,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +230,Anguilla,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +231,Anguilla,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +232,Anguilla,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +233,Anguilla,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +234,Anguilla,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +235,Anguilla,2010,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +236,Anguilla,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +237,Anguilla,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +238,Anguilla,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +239,Antigua and Barbuda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +240,Antigua and Barbuda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +241,Antigua and Barbuda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +242,Antigua and Barbuda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +243,Antigua and Barbuda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +244,Antigua and Barbuda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +245,Antigua and Barbuda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +246,Antigua and Barbuda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +247,Antigua and Barbuda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +248,Antigua and Barbuda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +249,Antigua and Barbuda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +250,Antigua and Barbuda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +251,Antigua and Barbuda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +252,Antigua and Barbuda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +253,Antigua and Barbuda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +254,Antigua and Barbuda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +255,Antigua and Barbuda,1996,0,0,0,0,1,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +256,Antigua and Barbuda,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +257,Antigua and Barbuda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +258,Antigua and Barbuda,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +259,Antigua and Barbuda,2000,0,0,0,0,0,0,1,1,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +260,Antigua and Barbuda,2001,,,,,,,,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +261,Antigua and Barbuda,2002,0,0,1,0,0,0,0,2,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +262,Antigua and Barbuda,2003,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +263,Antigua and Barbuda,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +264,Antigua and Barbuda,2005,,,,1,1,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +265,Antigua and Barbuda,2006,,,,,,,,,,,,,,,0,0,1,1,0,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +266,Antigua and Barbuda,2007,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +267,Antigua and Barbuda,2008,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +268,Antigua and Barbuda,2009,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +269,Antigua and Barbuda,2010,0,0,2,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +270,Antigua and Barbuda,2011,0,0,1,1,3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +271,Antigua and Barbuda,2012,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +272,Antigua and Barbuda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,1,1,0,0,0,0,0,0,1 +273,Argentina,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +274,Argentina,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +275,Argentina,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +276,Argentina,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +277,Argentina,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +278,Argentina,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +279,Argentina,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +280,Argentina,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +281,Argentina,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +282,Argentina,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +283,Argentina,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +284,Argentina,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +285,Argentina,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +286,Argentina,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +287,Argentina,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +288,Argentina,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +289,Argentina,1996,113,611,535,338,276,230,286,107,643,591,528,546,520,463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +290,Argentina,1997,96,580,600,523,489,417,393,133,566,511,336,240,199,234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +291,Argentina,1998,84,578,571,463,476,387,370,94,558,498,271,229,207,276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +292,Argentina,1999,90,490,546,435,464,384,380,108,502,442,292,210,177,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +293,Argentina,2000,97,278,594,402,419,368,330,121,544,479,262,230,179,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +294,Argentina,2001,78,682,611,495,471,404,436,85,674,561,303,242,215,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +295,Argentina,2002,70,612,658,463,477,389,399,117,622,580,301,237,203,255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +296,Argentina,2003,89,574,565,413,461,366,405,99,516,513,294,241,192,231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +297,Argentina,2004,64,588,543,399,387,332,345,98,519,477,271,237,169,237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +298,Argentina,2005,64,621,530,358,384,340,348,90,530,474,290,198,169,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +299,Argentina,2006,67,519,484,360,351,346,321,74,438,437,235,197,173,213,394,196,235,143,153,176,187,345,187,185,119,75,90,127,32,111,122,94,92,76,91,36,87,91,69,59,46,75,,,,,,,,,,,,,, +300,Argentina,2007,77,656,623,401,415,389,324,70,558,500,246,217,172,246,539,278,214,189,147,159,152,476,234,199,135,111,67,149,64,157,192,122,96,86,95,39,144,140,89,73,46,90,,,,,,,,,,,,,, +301,Argentina,2008,69,633,611,390,416,364,295,66,536,506,252,221,157,204,417,287,238,175,162,125,142,409,207,199,128,81,79,111,51,163,191,155,104,96,109,37,125,158,88,66,58,78,,,,,,,,,,,,,, +302,Argentina,2009,44,546,483,348,327,303,297,63,434,406,257,185,137,199,269,193,226,154,129,136,144,217,189,156,99,99,62,87,25,86,113,93,79,77,70,24,74,90,61,53,32,55,,,,,,,,,,,,,, +303,Argentina,2010,56,536,491,309,302,340,282,59,421,426,233,184,153,176,190,214,196,155,148,126,134,186,171,132,98,82,67,108,23,91,104,86,60,61,66,17,72,68,56,59,44,45,,,,,,,,,,,,,, +304,Argentina,2011,143,664,657,434,397,358,289,142,587,470,279,192,169,213,325,304,270,179,158,119,118,257,250,221,153,98,73,92,72,217,240,134,95,89,72,75,162,158,107,65,62,60,,,,,,,,,,,,,, +305,Argentina,2012,59,533,484,299,180,182,181,67,652,614,375,364,321,322,322,222,173,126,83,69,83,297,258,195,152,115,125,114,40,128,102,107,75,49,63,46,154,153,147,72,63,84,,,,,,,,,,,,,, +306,Argentina,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,462,1124,1094,768,593,581,491,431,927,808,537,395,307,374 +307,Armenia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +308,Armenia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +309,Armenia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +310,Armenia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +311,Armenia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +312,Armenia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +313,Armenia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +314,Armenia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +315,Armenia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +316,Armenia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +317,Armenia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +318,Armenia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +319,Armenia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +320,Armenia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +321,Armenia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +322,Armenia,1995,1,18,16,11,10,8,1,1,1,7,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +323,Armenia,1996,2,53,100,51,43,30,7,0,9,11,9,8,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +324,Armenia,1997,2,85,59,77,51,34,12,3,16,22,17,7,14,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +325,Armenia,1998,2,159,90,79,39,17,15,1,21,20,11,10,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +326,Armenia,1999,4,151,88,115,76,37,20,6,22,15,20,6,9,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +327,Armenia,2000,2,152,130,131,63,26,21,1,24,27,24,8,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +328,Armenia,2001,2,154,120,93,54,24,9,1,40,31,22,10,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +329,Armenia,2002,1,95,63,109,93,21,14,2,16,24,32,36,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +330,Armenia,2003,12,120,98,75,104,49,18,2,29,31,13,12,9,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +331,Armenia,2004,2,130,72,76,62,25,24,1,24,17,12,10,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +332,Armenia,2005,3,170,104,83,84,30,24,3,27,21,10,11,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +333,Armenia,2006,0,113,116,96,98,38,17,3,28,29,16,15,7,4,27,172,64,68,97,44,79,25,36,31,15,16,9,11,25,103,29,24,14,8,17,12,19,25,12,18,8,10,,,,,,,,,,,,,, +334,Armenia,2007,1,81,87,100,92,29,20,2,31,22,11,7,7,7,26,122,78,62,106,59,84,12,36,33,23,22,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +335,Armenia,2008,0,53,103,74,87,37,15,4,44,25,10,14,10,11,18,107,88,76,112,64,79,15,38,45,27,30,12,13,29,51,30,21,33,13,11,19,23,18,14,14,15,5,,,,,,,,,,,,,, +336,Armenia,2009,1,52,76,59,102,36,16,2,33,29,7,9,9,9,6,102,100,85,106,84,69,6,38,42,23,26,16,22,32,61,28,22,21,15,15,18,31,10,12,18,9,7,,,,,,,,,,,,,, +337,Armenia,2010,0,36,75,49,68,27,15,1,24,17,4,7,8,8,6,77,93,72,101,75,49,7,28,52,17,24,23,15,31,53,44,18,23,17,17,14,35,33,14,28,16,8,,,,,,,,,,,,,, +338,Armenia,2011,0,28,65,52,71,42,8,0,19,16,9,7,7,5,5,66,76,64,93,72,69,11,20,27,18,29,18,14,19,43,33,18,19,22,13,12,30,23,15,21,12,9,,,,,,,,,,,,,, +339,Armenia,2012,1,23,67,60,56,34,18,0,13,19,12,2,5,5,8,53,73,64,84,89,58,2,18,32,13,21,22,16,20,34,14,27,29,18,13,6,12,34,15,11,13,9,,,,,,,,,,,,,, +340,Armenia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,116,169,165,254,217,122,17,50,81,48,52,48,33 +341,Aruba,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +342,Aruba,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +343,Aruba,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +344,Aruba,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +345,Aruba,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +346,Aruba,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +347,Aruba,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +348,Aruba,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +349,Aruba,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +350,Aruba,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +351,Aruba,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +352,Aruba,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +353,Aruba,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +354,Aruba,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +355,Aruba,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +356,Aruba,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +357,Aruba,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +358,Aruba,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +359,Aruba,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +360,Aruba,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +361,Aruba,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +362,Aruba,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +363,Aruba,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +364,Aruba,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +365,Aruba,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +366,Aruba,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +367,Aruba,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +368,Aruba,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +369,Aruba,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +370,Aruba,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +371,Aruba,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +372,Aruba,2011,,,,,4,,1,,,1,,,,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,, +373,Aruba,2012,,,,2,3,,,1,4,,2,1,,1,1,1,,2,4,2,,1,5,,3,2,1,1,,,,2,3,,,1,4,,1,,1,1,,,,,,,,,,,,,, +374,Aruba,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,,,1,,,1,2,2 +375,Australia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +376,Australia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +377,Australia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +378,Australia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +379,Australia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +380,Australia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +381,Australia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +382,Australia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +383,Australia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +384,Australia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +385,Australia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +386,Australia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +387,Australia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +388,Australia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +389,Australia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +390,Australia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +391,Australia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +392,Australia,1997,1,8,24,18,13,17,28,0,10,15,9,5,10,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +393,Australia,1998,0,11,22,18,13,15,31,2,19,24,15,8,2,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +394,Australia,1999,0,13,40,54,52,37,49,0,10,16,18,6,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +395,Australia,2000,3,16,35,25,24,19,49,0,15,19,12,15,5,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +396,Australia,2001,1,23,20,18,18,13,35,1,21,27,16,7,8,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +397,Australia,2002,1,15,20,26,19,13,34,0,15,21,15,6,4,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +398,Australia,2003,0,14,10,2,11,5,30,0,9,13,3,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +399,Australia,2004,0,18,16,17,15,11,32,0,6,17,5,7,3,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +400,Australia,2005,0,32,27,23,11,12,30,2,18,26,11,10,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +401,Australia,2006,1,33,35,23,21,16,43,2,18,27,14,7,9,21,15,37,50,31,36,20,53,22,20,48,30,18,15,42,11,30,48,33,22,21,45,9,30,61,47,40,17,43,,,,,,,,,,,,,, +402,Australia,2007,3,30,33,20,15,14,37,4,26,37,20,12,7,23,17,30,53,23,33,17,45,16,23,41,21,11,12,30,9,32,68,35,25,22,24,8,17,74,29,36,23,26,,,,,,,,,,,,,, +403,Australia,2008,2,46,33,20,27,23,42,3,27,32,14,6,11,10,12,65,58,34,19,26,37,17,29,42,17,13,12,18,11,30,70,38,25,13,28,7,39,67,47,33,26,29,,,,,,,,,,,,,, +404,Australia,2009,3,30,37,16,24,12,34,4,31,27,14,12,11,12,14,46,51,24,23,18,44,10,41,51,24,19,13,13,15,50,95,49,19,14,26,8,32,86,42,28,21,25,,,,,,,,,,,,,, +405,Australia,2010,2,42,33,22,25,9,27,4,36,43,12,2,5,12,13,54,68,28,25,19,36,9,38,52,23,18,9,16,8,33,97,40,23,10,21,5,40,84,28,30,13,25,,,,,,,,,,,,,, +406,Australia,2011,2,38,44,26,19,12,37,3,26,40,23,7,7,17,11,40,82,29,15,26,42,16,37,60,30,13,9,26,8,42,84,43,31,13,22,7,34,88,36,23,18,14,,,,,,,,,,,,,, +407,Australia,2012,3,26,40,17,25,16,37,1,27,48,15,11,9,15,14,43,46,28,29,22,53,14,28,65,27,12,14,12,8,31,119,38,19,17,30,8,32,76,42,32,20,26,,,,,,,,,,,,,, +408,Australia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,105,206,108,67,68,120,20,95,165,97,62,46,63 +409,Austria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +410,Austria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +411,Austria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +412,Austria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +413,Austria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +414,Austria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +415,Austria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +416,Austria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +417,Austria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +418,Austria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +419,Austria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +420,Austria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +421,Austria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +422,Austria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +423,Austria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +424,Austria,1995,4,37,95,82,89,71,73,6,22,52,32,21,18,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +425,Austria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +426,Austria,1997,24,59,117,170,168,122,185,33,41,93,62,52,52,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +427,Austria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +428,Austria,1999,0,13,40,54,52,37,49,0,10,16,18,6,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +429,Austria,2000,1,17,30,59,42,23,41,1,11,22,12,11,6,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +430,Austria,2001,1,15,27,39,37,37,27,1,8,13,15,4,6,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +431,Austria,2002,1,8,14,32,43,20,25,0,8,13,7,5,7,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +432,Austria,2003,0,19,31,37,43,19,28,2,10,25,12,7,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +433,Austria,2004,1,19,19,38,27,24,21,0,12,15,9,3,3,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +434,Austria,2005,1,32,23,22,41,24,30,0,13,11,8,3,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +435,Austria,2006,1,9,25,36,39,19,19,2,12,12,16,5,3,15,22,27,46,53,60,51,74,26,16,19,25,21,18,49,3,11,9,12,15,5,13,2,7,10,7,10,6,25,,,,,,,,,,,,,, +436,Austria,2007,1,12,15,27,26,18,25,2,10,14,7,11,2,19,13,28,54,51,57,59,70,5,24,31,13,23,19,39,0,8,6,15,15,12,29,4,4,6,5,4,9,18,,,,,,,,,,,,,, +437,Austria,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +438,Austria,2009,0,4,10,13,12,7,13,0,7,8,4,5,1,5,6,14,23,14,28,32,47,8,13,14,16,17,7,27,0,2,8,5,11,2,13,2,4,1,12,3,2,13,,,,,,,,,,,,,, +439,Austria,2010,0,4,4,12,13,8,10,1,5,4,2,2,5,6,6,15,11,19,29,17,33,6,7,13,14,12,7,26,1,3,2,10,2,5,7,2,4,6,6,9,5,7,,,,,,,,,,,,,, +440,Austria,2011,0,8,11,9,13,11,13,0,11,6,4,1,3,4,9,14,21,21,20,25,24,8,12,10,16,12,5,18,0,4,10,9,6,4,10,2,5,8,7,3,4,15,,,,,,,,,,,,,, +441,Austria,2012,1,5,8,7,19,9,13,1,10,8,4,4,1,5,9,18,26,13,26,7,28,9,14,19,11,20,5,13,3,10,14,8,5,6,10,0,1,7,7,3,9,14,,,,,,,,,,,,,, +442,Austria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,44,66,46,68,53,86,8,45,37,36,34,28,58 +443,Azerbaijan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +444,Azerbaijan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +445,Azerbaijan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +446,Azerbaijan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +447,Azerbaijan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +448,Azerbaijan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +449,Azerbaijan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +450,Azerbaijan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +451,Azerbaijan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +452,Azerbaijan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +453,Azerbaijan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +454,Azerbaijan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +455,Azerbaijan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +456,Azerbaijan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +457,Azerbaijan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +458,Azerbaijan,1995,0,13,29,14,6,4,1,0,5,18,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +459,Azerbaijan,1996,0,57,302,231,47,101,16,5,20,154,86,16,13,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +460,Azerbaijan,1997,0,120,244,194,89,12,3,0,42,70,178,23,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +461,Azerbaijan,1998,0,44,47,24,9,4,2,0,7,10,7,6,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +462,Azerbaijan,1999,0,96,46,217,184,49,0,0,4,17,73,58,19,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +463,Azerbaijan,2000,0,9,24,33,42,30,0,0,3,3,6,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +464,Azerbaijan,2001,3,1,3,,,,,2,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +465,Azerbaijan,2002,6,290,433,359,190,72,16,5,48,88,80,34,19,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +466,Azerbaijan,2003,3,212,258,215,113,66,20,1,72,60,62,48,26,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +467,Azerbaijan,2004,8,248,311,222,167,92,83,8,120,65,57,34,33,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +468,Azerbaijan,2005,77,109,297,215,209,187,88,90,64,98,47,32,24,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +469,Azerbaijan,2006,6,241,362,365,120,78,30,2,51,66,66,44,15,8,40,351,448,469,387,96,61,23,114,117,85,52,18,17,107,186,129,60,39,9,4,39,35,41,29,10,3,6,,,,,,,,,,,,,, +470,Azerbaijan,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +471,Azerbaijan,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +472,Azerbaijan,2009,5,229,190,165,151,63,30,11,108,92,37,41,14,19,48,,,,,,,42,,,,,,,105,,,,,,,60,,,,,,,,,,,,,,,,,,,, +473,Azerbaijan,2010,0,328,371,267,280,30,27,3,141,100,57,73,9,18,55,598,316,198,306,57,79,34,175,120,66,80,10,29,97,265,97,67,67,15,12,55,100,64,58,49,8,11,,,,,,,,,,,,,, +474,Azerbaijan,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,106,277,107,69,74,32,17,80,111,107,53,64,30,3,,,,,,,,,,,,,, +475,Azerbaijan,2012,4,230,223,170,176,95,48,8,115,89,35,50,35,23,24,459,400,291,294,158,89,26,182,135,74,82,63,36,91,264,96,80,56,30,15,59,104,74,63,37,29,4,,,,,,,,,,,,,, +476,Azerbaijan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125,958,663,538,556,306,124,90,376,302,145,166,104,75 +477,Bahamas,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +478,Bahamas,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +479,Bahamas,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +480,Bahamas,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +481,Bahamas,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +482,Bahamas,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +483,Bahamas,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +484,Bahamas,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +485,Bahamas,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +486,Bahamas,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +487,Bahamas,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +488,Bahamas,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +489,Bahamas,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +490,Bahamas,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +491,Bahamas,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +492,Bahamas,1995,3,3,5,7,4,2,2,0,1,7,2,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +493,Bahamas,1996,0,1,4,4,5,0,0,0,2,4,4,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +494,Bahamas,1997,0,2,14,11,5,3,2,0,2,5,7,4,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +495,Bahamas,1998,0,3,2,7,5,3,0,1,1,3,5,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +496,Bahamas,1999,1,0,10,8,6,0,0,0,1,3,4,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +497,Bahamas,2000,1,2,7,9,4,3,2,2,5,7,8,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +498,Bahamas,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +499,Bahamas,2002,2,2,2,7,7,3,2,4,1,6,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +500,Bahamas,2003,0,2,5,6,3,1,3,2,2,2,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +501,Bahamas,2004,3,3,6,14,9,0,1,0,3,4,1,0,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +502,Bahamas,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +503,Bahamas,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +504,Bahamas,2007,0,3,3,9,4,1,0,0,3,4,3,1,1,0,0,1,1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,0,0,0,0,2,2,1,0,0,0,0,,,,,,,,,,,,,, +505,Bahamas,2008,0,2,6,5,7,2,0,0,1,4,4,0,0,0,1,0,2,4,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,2,,,,,,,,,,,,,, +506,Bahamas,2009,1,2,7,4,3,1,2,1,2,1,1,0,1,0,2,0,2,1,0,0,1,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,,,,,,,,,,,,,, +507,Bahamas,2010,0,2,3,5,0,2,0,0,5,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,, +508,Bahamas,2011,0,2,3,6,2,2,1,0,1,3,3,0,0,0,1,0,0,4,3,0,1,0,1,2,0,0,0,0,0,0,2,1,0,0,0,1,0,0,1,0,0,0,,,,,,,,,,,,,, +509,Bahamas,2012,0,1,1,6,2,0,2,0,2,5,1,1,0,0,0,0,1,0,4,1,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +510,Bahamas,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,6,5,2,2,0,2,1,5,2,0,1 +511,Bahrain,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +512,Bahrain,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +513,Bahrain,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +514,Bahrain,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +515,Bahrain,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +516,Bahrain,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +517,Bahrain,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +518,Bahrain,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +519,Bahrain,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +520,Bahrain,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +521,Bahrain,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +522,Bahrain,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +523,Bahrain,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +524,Bahrain,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +525,Bahrain,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +526,Bahrain,1995,0,0,1,2,3,1,3,0,1,1,2,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +527,Bahrain,1996,0,8,25,24,16,7,6,1,10,11,7,0,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +528,Bahrain,1997,1,11,32,19,10,4,10,0,4,11,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +529,Bahrain,1998,0,3,40,36,20,13,22,3,4,9,7,5,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +530,Bahrain,1999,0,12,19,14,13,5,3,0,6,11,6,0,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +531,Bahrain,2000,0,0,3,2,5,3,4,0,1,2,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +532,Bahrain,2001,0,1,2,2,6,1,6,0,1,2,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +533,Bahrain,2002,0,1,1,2,2,1,5,0,1,1,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +534,Bahrain,2003,0,2,2,1,1,3,4,0,1,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +535,Bahrain,2004,0,0,0,2,2,0,1,0,1,1,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +536,Bahrain,2005,0,0,0,2,3,0,4,1,1,0,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +537,Bahrain,2006,0,10,25,11,18,1,1,0,7,14,4,5,2,0,0,5,16,10,7,1,4,0,4,15,4,2,1,3,0,4,26,8,9,3,7,0,11,14,9,7,2,2,,,,,,,,,,,,,, +538,Bahrain,2007,0,8,26,15,8,4,3,1,10,15,5,3,0,1,0,7,25,7,4,3,4,0,2,8,8,0,1,2,2,10,18,11,8,5,3,5,8,19,7,3,6,3,,,,,,,,,,,,,, +539,Bahrain,2008,0,17,48,27,8,2,3,0,12,16,8,1,0,0,0,3,15,12,5,4,5,0,7,4,3,1,0,0,3,11,25,15,8,1,1,2,7,20,6,5,1,0,,,,,,,,,,,,,, +540,Bahrain,2009,0,13,37,21,13,7,1,0,14,18,3,2,0,2,0,7,22,9,6,0,3,1,14,6,4,0,1,1,2,11,27,18,7,4,1,6,14,18,6,3,3,1,,,,,,,,,,,,,, +541,Bahrain,2010,0,10,16,11,12,4,4,0,8,15,7,1,1,1,2,2,12,12,11,3,4,0,6,4,1,0,0,1,2,4,27,15,6,4,2,1,3,21,8,3,1,1,,,,,,,,,,,,,, +542,Bahrain,2011,1,5,19,13,14,8,2,0,9,5,6,6,0,1,3,3,5,5,3,5,6,0,4,4,3,4,0,2,5,6,24,10,3,2,3,6,5,11,6,4,2,2,,,,,,,,,,,,,, +543,Bahrain,2012,0,9,28,16,11,8,2,1,2,11,8,4,1,0,0,4,5,5,4,1,6,0,2,11,6,1,0,2,0,7,21,9,4,4,1,2,3,14,6,2,4,0,,,,,,,,,,,,,, +544,Bahrain,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,13,25,60,20,10,4,1,8,33,19,5,4,3 +545,Bangladesh,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +546,Bangladesh,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +547,Bangladesh,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +548,Bangladesh,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +549,Bangladesh,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +550,Bangladesh,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +551,Bangladesh,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +552,Bangladesh,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +553,Bangladesh,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +554,Bangladesh,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +555,Bangladesh,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +556,Bangladesh,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +557,Bangladesh,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +558,Bangladesh,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +559,Bangladesh,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +560,Bangladesh,1995,29,505,983,1001,748,648,424,64,309,546,360,236,132,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +561,Bangladesh,1996,45,723,1322,1264,908,737,472,89,434,663,434,268,151,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +562,Bangladesh,1997,201,2639,5013,5226,3926,2901,2003,328,1883,2634,1748,1029,527,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +563,Bangladesh,1998,254,3516,5988,6242,4771,3522,2569,438,2663,3319,2156,1212,649,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +564,Bangladesh,1999,259,3504,5777,6143,4748,3568,2701,405,2753,3276,2180,1315,712,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +565,Bangladesh,2000,256,3640,5643,5750,4718,3667,2837,495,3029,3238,2247,1315,778,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +566,Bangladesh,2001,283,3976,5834,6257,5172,3682,3039,428,3392,3538,2260,1492,763,371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +567,Bangladesh,2002,449,4490,6288,7038,5981,4493,3682,575,3104,3926,2791,2101,988,865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +568,Bangladesh,2003,320,5166,7275,8058,6947,5501,4142,544,4298,4282,3258,2086,1150,591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +569,Bangladesh,2004,420,6171,8281,8914,8327,6276,5144,589,5081,4869,3758,2518,1434,718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +570,Bangladesh,2005,524,8170,10443,11423,11038,8476,7453,751,6776,6785,5538,3960,2281,1230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +571,Bangladesh,2006,607,9937,12166,12889,13378,10283,9513,850,8164,8048,6395,5020,2982,1735,1356,3933,4224,3842,3614,2962,3062,1366,4433,3774,2650,1918,1138,709,,,,,,,,,,,,,,,,,,,,,,,,,,,, +572,Bangladesh,2007,523,10210,12442,13003,13307,10653,9830,829,8562,8164,6678,5220,3057,1818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +573,Bangladesh,2008,422,10618,12926,12761,13355,10772,10386,764,9189,8389,6465,5206,3173,1947,1420,4274,4554,3693,3594,2995,3063,1458,4966,3930,2669,1989,1187,759,1421,4272,4554,3695,3595,2995,3061,1457,4967,3931,2666,1987,1186,760,,,,,,,,,,,,,, +574,Bangladesh,2009,,,,,,,,,,,,,,,1747,,,,,,,1719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +575,Bangladesh,2010,365,10460,12535,11409,12758,11176,11536,653,9221,8279,6185,5458,3484,2250,548,1942,2301,1917,2364,2329,2714,494,1982,1524,1110,1021,775,559,1078,2427,2854,1696,1386,1026,983,1097,3546,3183,1795,1313,702,421,,,,,,,,,,,,,, +576,Bangladesh,2011,309,9606,11616,10152,11728,10746,11301,623,8849,7679,5683,4946,3457,2253,604,1997,2395,1935,2312,2335,2706,548,2036,1549,1159,995,776,574,1300,2882,3198,2027,1632,1249,1125,1283,3963,3674,2139,1513,849,495,,,,,,,,,,,,,, +577,Bangladesh,2012,316,9479,12021,10837,12744,11843,12236,650,9355,8175,6342,6044,4043,2705,534,2109,2527,2154,2637,2755,3158,575,2160,1695,1266,1212,948,721,1400,3108,3494,2169,1831,1378,1194,1367,4545,4251,2469,1786,969,588,,,,,,,,,,,,,, +578,Bangladesh,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2323,14705,18311,16143,19529,19058,20194,2728,16356,15912,12386,11145,7675,5172 +579,Barbados,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +580,Barbados,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +581,Barbados,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +582,Barbados,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +583,Barbados,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +584,Barbados,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +585,Barbados,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +586,Barbados,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +587,Barbados,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +588,Barbados,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +589,Barbados,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +590,Barbados,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +591,Barbados,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +592,Barbados,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +593,Barbados,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +594,Barbados,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +595,Barbados,1996,0,0,1,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +596,Barbados,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +597,Barbados,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +598,Barbados,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +599,Barbados,2000,0,0,0,2,0,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +600,Barbados,2001,0,1,1,1,0,0,1,0,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +601,Barbados,2002,,2,,,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +602,Barbados,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +603,Barbados,2004,,,2,2,6,,4,1,,2,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +604,Barbados,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +605,Barbados,2006,,,2,,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,, +606,Barbados,2007,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,,,,,,,,,,,,,, +607,Barbados,2008,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +608,Barbados,2009,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +609,Barbados,2010,0,0,0,1,2,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +610,Barbados,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +611,Barbados,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +612,Barbados,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,1,1,0,0,0,0,0,0,1,0,0 +613,Belarus,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +614,Belarus,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +615,Belarus,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +616,Belarus,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +617,Belarus,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +618,Belarus,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +619,Belarus,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +620,Belarus,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +621,Belarus,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +622,Belarus,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +623,Belarus,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +624,Belarus,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +625,Belarus,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +626,Belarus,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +627,Belarus,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +628,Belarus,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +629,Belarus,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +630,Belarus,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +631,Belarus,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +632,Belarus,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +633,Belarus,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +634,Belarus,2001,2,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +635,Belarus,2002,0,66,133,217,159,75,51,0,12,22,28,17,17,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +636,Belarus,2003,0,67,134,243,226,96,60,0,18,39,43,26,21,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +637,Belarus,2004,,84,170,260,235,83,56,1,31,38,38,35,11,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +638,Belarus,2005,,71,180,273,287,118,62,,25,53,50,43,11,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +639,Belarus,2006,,61,134,217,260,96,71,1,32,38,43,43,18,58,15,237,560,642,695,328,190,15,213,238,190,176,75,135,18,15,14,26,33,28,19,12,18,32,30,34,28,54,,,,,,,,,,,,,, +640,Belarus,2007,,57,142,205,244,110,56,,28,58,41,35,17,58,11,241,518,544,640,307,193,9,180,256,210,140,75,162,5,17,14,19,31,30,22,6,11,35,20,35,36,54,,,,,,,,,,,,,, +641,Belarus,2008,,44,149,207,261,106,69,,26,43,36,34,20,65,3,194,460,474,637,274,154,6,148,214,172,148,58,132,14,26,35,41,39,49,47,15,27,66,29,40,29,43,,,,,,,,,,,,,, +642,Belarus,2009,0,66,173,208,287,134,54,0,41,52,52,41,25,68,,,,,,,,,,,,,,,6,20,33,36,47,39,29,5,15,46,29,39,31,55,,,,,,,,,,,,,, +643,Belarus,2010,0,65,173,224,293,163,58,1,28,52,56,37,28,91,5,153,432,410,501,261,99,10,128,217,159,112,54,106,7,15,28,43,49,38,23,8,11,35,36,34,44,58,,,,,,,,,,,,,, +644,Belarus,2011,1,53,156,228,290,138,48,3,37,67,47,39,27,83,2,164,374,411,458,255,95,6,107,182,152,97,51,85,8,7,28,45,52,39,25,6,5,34,31,20,40,47,,,,,,,,,,,,,, +645,Belarus,2012,0,44,174,250,266,158,73,1,34,64,47,45,28,93,1,98,350,372,413,216,74,7,90,168,131,102,75,87,4,14,23,42,60,32,26,8,11,33,19,29,34,46,,,,,,,,,,,,,, +646,Belarus,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,162,565,803,876,600,226,10,131,280,248,168,141,256 +647,Belgium,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +648,Belgium,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +649,Belgium,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +650,Belgium,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +651,Belgium,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +652,Belgium,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +653,Belgium,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +654,Belgium,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +655,Belgium,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +656,Belgium,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +657,Belgium,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +658,Belgium,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +659,Belgium,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +660,Belgium,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +661,Belgium,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +662,Belgium,1995,3,23,49,63,52,54,102,3,12,24,32,17,10,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +663,Belgium,1996,1,20,43,49,45,32,59,4,9,30,25,11,10,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +664,Belgium,1997,3,18,45,56,43,41,115,2,11,26,22,13,11,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +665,Belgium,1998,3,22,50,58,48,36,78,2,6,30,20,17,13,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +666,Belgium,1999,2,18,40,49,46,38,83,4,20,38,19,22,8,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +667,Belgium,2000,3,20,57,39,55,32,56,6,15,15,19,4,13,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +668,Belgium,2001,8,31,40,47,44,23,54,6,14,21,24,15,7,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +669,Belgium,2002,1,19,56,52,33,19,58,6,21,19,16,9,16,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +670,Belgium,2003,6,27,33,30,40,17,35,5,20,17,15,11,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +671,Belgium,2004,1,26,55,30,37,24,48,6,18,16,20,3,8,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +672,Belgium,2005,1,26,50,32,27,15,47,2,27,31,15,12,4,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +673,Belgium,2006,4,26,52,38,45,27,42,6,25,25,18,6,7,22,20,25,43,33,29,31,48,16,33,29,18,20,12,13,8,22,43,38,25,23,31,9,24,37,19,23,7,21,,,,,,,,,,,,,, +674,Belgium,2007,2,23,55,35,38,18,43,4,13,31,23,7,8,22,25,26,47,45,30,18,53,17,17,27,24,11,10,17,7,17,44,20,11,17,22,11,19,25,28,19,9,17,,,,,,,,,,,,,, +675,Belgium,2008,3,23,40,43,32,24,41,3,17,40,22,8,3,12,18,15,31,29,20,25,43,14,11,24,18,12,10,17,6,20,27,37,18,6,17,7,11,20,15,10,7,12,,,,,,,,,,,,,, +676,Belgium,2009,1,29,33,27,32,24,36,0,21,34,10,7,7,19,22,16,32,17,31,15,34,20,17,22,15,11,8,19,5,12,29,17,15,12,21,11,20,29,18,11,9,19,,,,,,,,,,,,,, +677,Belgium,2010,4,20,39,30,28,20,19,6,13,17,18,11,5,9,23,16,49,37,28,19,43,15,14,25,14,16,6,20,8,16,37,22,19,8,20,5,14,32,14,11,8,12,,,,,,,,,,,,,, +678,Belgium,2011,8,25,50,33,25,16,27,3,13,14,9,3,5,7,17,21,31,20,19,7,40,19,18,25,9,11,12,16,11,20,30,16,5,3,18,6,21,22,6,6,5,17,,,,,,,,,,,,,, +679,Belgium,2012,3,25,33,18,27,22,18,5,23,23,17,9,7,5,18,23,23,24,19,18,26,15,14,10,13,10,8,16,7,22,26,14,14,9,14,9,7,18,17,8,4,10,,,,,,,,,,,,,, +680,Belgium,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,63,135,105,86,57,93,19,58,96,50,31,23,50 +681,Belize,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +682,Belize,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +683,Belize,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +684,Belize,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +685,Belize,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +686,Belize,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +687,Belize,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +688,Belize,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +689,Belize,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +690,Belize,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +691,Belize,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +692,Belize,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +693,Belize,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +694,Belize,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +695,Belize,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +696,Belize,1995,1,1,2,4,0,1,1,0,6,2,0,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +697,Belize,1996,1,3,2,2,2,3,2,0,1,4,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +698,Belize,1997,2,2,6,3,10,3,6,2,3,2,2,0,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +699,Belize,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +700,Belize,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +701,Belize,2000,2,5,7,2,6,3,5,0,2,1,2,4,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +702,Belize,2001,0,0,5,9,7,9,11,0,0,3,4,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +703,Belize,2002,4,7,5,7,11,4,4,3,5,6,3,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +704,Belize,2003,1,4,8,10,3,2,8,2,6,3,3,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +705,Belize,2004,0,4,6,8,6,3,2,1,0,1,1,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +706,Belize,2005,0,8,8,6,8,5,3,0,4,4,4,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +707,Belize,2006,3,4,4,7,5,1,3,2,6,5,3,5,6,6,0,0,0,4,1,0,2,0,0,2,1,5,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +708,Belize,2007,1,6,8,8,7,6,3,0,8,2,5,2,2,3,,,,,,,,,,,,,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,, +709,Belize,2008,1,8,12,15,9,5,8,0,5,0,6,4,3,8,,,,,,,,,,,,,,,0,0,1,0,2,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +710,Belize,2009,2,7,9,12,10,6,8,3,2,7,6,3,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +711,Belize,2010,2,9,16,22,24,11,18,4,5,7,7,9,4,5,2,2,3,6,5,3,6,2,2,3,5,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +712,Belize,2011,0,8,14,9,16,2,0,0,2,0,8,4,1,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +713,Belize,2012,1,2,7,5,4,3,2,0,4,3,4,4,1,0,1,1,4,5,8,3,9,0,0,4,4,2,1,2,0,0,0,3,0,0,0,0,0,1,0,1,0,0,,,,,,,,,,,,,, +714,Belize,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,8,14,13,18,9,12,3,9,7,6,7,6,8 +715,Benin,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +716,Benin,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +717,Benin,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +718,Benin,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +719,Benin,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +720,Benin,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +721,Benin,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +722,Benin,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +723,Benin,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +724,Benin,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +725,Benin,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +726,Benin,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +727,Benin,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +728,Benin,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +729,Benin,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +730,Benin,1995,14,186,352,306,176,101,92,26,148,197,118,69,32,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +731,Benin,1996,17,215,348,277,166,102,77,34,169,218,136,46,42,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +732,Benin,1997,20,215,376,306,180,76,107,26,169,226,124,64,21,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +733,Benin,1998,20,233,367,251,205,113,71,15,189,242,159,65,39,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +734,Benin,1999,14,250,444,293,207,124,85,28,207,254,153,74,39,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +735,Benin,2000,19,277,428,327,213,103,74,36,239,275,149,76,45,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +736,Benin,2001,18,262,429,323,229,107,85,22,230,279,158,94,42,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +737,Benin,2002,16,248,489,304,231,125,94,35,255,298,159,86,47,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +738,Benin,2003,20,266,504,370,188,117,92,32,226,304,150,93,47,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +739,Benin,2004,16,308,529,344,229,125,82,43,263,354,147,73,45,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +740,Benin,2005,21,306,595,396,270,135,87,25,249,331,145,89,51,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +741,Benin,2006,18,298,624,465,247,124,106,32,310,371,158,111,38,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +742,Benin,2007,22,302,580,422,254,156,89,25,253,331,172,81,43,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +743,Benin,2008,20,333,604,439,284,163,100,38,245,386,173,99,52,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +744,Benin,2009,32,284,575,452,323,157,99,39,265,392,178,85,42,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +745,Benin,2010,18,314,631,443,267,164,85,29,265,382,200,98,42,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +746,Benin,2011,21,320,650,497,353,210,107,41,288,385,246,119,42,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +747,Benin,2012,23,314,595,524,329,179,121,39,264,346,221,105,65,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +748,Benin,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,301,591,539,331,156,120,23,251,360,215,120,69,28 +749,Bermuda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +750,Bermuda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +751,Bermuda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +752,Bermuda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +753,Bermuda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +754,Bermuda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +755,Bermuda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +756,Bermuda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +757,Bermuda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +758,Bermuda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +759,Bermuda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +760,Bermuda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +761,Bermuda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +762,Bermuda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +763,Bermuda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +764,Bermuda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +765,Bermuda,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +766,Bermuda,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +767,Bermuda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +768,Bermuda,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +769,Bermuda,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +770,Bermuda,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +771,Bermuda,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +772,Bermuda,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +773,Bermuda,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +774,Bermuda,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +775,Bermuda,2006,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +776,Bermuda,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +777,Bermuda,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +778,Bermuda,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +779,Bermuda,2010,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +780,Bermuda,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +781,Bermuda,2012,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +782,Bermuda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +783,Bhutan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +784,Bhutan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +785,Bhutan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +786,Bhutan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +787,Bhutan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +788,Bhutan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +789,Bhutan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +790,Bhutan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +791,Bhutan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +792,Bhutan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +793,Bhutan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +794,Bhutan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +795,Bhutan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +796,Bhutan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +797,Bhutan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +798,Bhutan,1995,2,42,65,36,35,24,11,12,43,44,25,12,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +799,Bhutan,1996,4,51,45,43,22,12,8,8,42,41,22,14,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +800,Bhutan,1997,4,39,42,36,21,24,8,4,43,34,16,7,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +801,Bhutan,1998,3,45,39,24,24,22,9,7,45,26,25,8,11,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +802,Bhutan,1999,10,27,42,31,29,22,14,9,33,34,23,18,14,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +803,Bhutan,2000,6,65,41,30,24,12,2,7,57,34,31,23,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +804,Bhutan,2001,3,51,50,37,32,10,16,6,58,45,20,12,11,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +805,Bhutan,2002,5,54,51,32,26,22,19,6,54,38,22,20,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +806,Bhutan,2003,9,62,50,20,25,20,13,14,57,39,17,13,15,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +807,Bhutan,2004,1,54,52,28,27,18,23,8,54,35,33,10,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +808,Bhutan,2005,1,47,58,26,23,14,12,9,45,38,13,11,9,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +809,Bhutan,2006,0,65,55,22,20,12,11,5,61,27,10,9,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +810,Bhutan,2007,2,60,44,29,26,17,13,3,59,28,21,10,10,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +811,Bhutan,2008,3,85,46,12,18,13,14,9,151,77,32,33,23,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +812,Bhutan,2009,10,74,53,19,19,21,24,22,92,44,27,12,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +813,Bhutan,2010,,108,50,25,12,26,13,17,104,45,18,18,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +814,Bhutan,2011,2,88,39,26,14,20,19,2,92,40,19,12,4,5,15,16,42,39,12,2,1,10,12,36,37,,1,2,24,32,67,95,43,28,12,18,27,59,87,39,26,16,,,,,,,,,,,,,, +815,Bhutan,2012,6,82,56,30,11,17,11,6,92,58,14,18,9,10,6,12,18,12,8,6,3,4,10,16,12,10,8,2,8,12,56,53,54,40,12,12,18,62,59,58,46,29,,,,,,,,,,,,,, +816,Bhutan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,180,129,70,48,44,48,38,199,134,53,45,41,23 +817,Bolivia (Plurinational State of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +818,Bolivia (Plurinational State of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +819,Bolivia (Plurinational State of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +820,Bolivia (Plurinational State of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +821,Bolivia (Plurinational State of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +822,Bolivia (Plurinational State of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +823,Bolivia (Plurinational State of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +824,Bolivia (Plurinational State of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +825,Bolivia (Plurinational State of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +826,Bolivia (Plurinational State of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +827,Bolivia (Plurinational State of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +828,Bolivia (Plurinational State of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +829,Bolivia (Plurinational State of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +830,Bolivia (Plurinational State of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +831,Bolivia (Plurinational State of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +832,Bolivia (Plurinational State of),1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +833,Bolivia (Plurinational State of),1996,178,1359,887,636,525,321,324,172,841,676,422,244,189,175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +834,Bolivia (Plurinational State of),1997,150,1214,792,579,485,334,318,202,792,548,380,285,192,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +835,Bolivia (Plurinational State of),1998,167,1254,885,579,488,364,353,202,777,587,274,264,157,230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +836,Bolivia (Plurinational State of),1999,222,1182,862,527,482,379,400,225,798,554,352,263,205,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +837,Bolivia (Plurinational State of),2000,166,1182,797,518,466,340,366,191,831,588,334,254,192,233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +838,Bolivia (Plurinational State of),2001,165,1235,761,483,489,359,355,241,915,664,302,226,194,283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +839,Bolivia (Plurinational State of),2002,231,1235,787,492,417,356,386,281,938,630,358,238,185,295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +840,Bolivia (Plurinational State of),2003,156,1164,742,501,438,336,442,167,811,549,313,224,196,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +841,Bolivia (Plurinational State of),2004,161,1205,750,505,431,319,399,151,793,555,272,205,186,281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +842,Bolivia (Plurinational State of),2005,157,1320,725,439,391,346,415,160,846,533,276,226,182,262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +843,Bolivia (Plurinational State of),2006,127,1147,699,471,390,333,398,179,764,461,253,177,148,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +844,Bolivia (Plurinational State of),2007,116,1100,604,379,348,328,354,125,736,453,243,193,162,259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +845,Bolivia (Plurinational State of),2008,128,1253,734,412,391,363,429,147,850,482,237,193,178,251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +846,Bolivia (Plurinational State of),2009,106,1225,703,393,385,343,429,158,795,502,217,225,161,295,,,,,,,,,,,,,,,72,276,212,109,118,131,165,52,178,126,82,62,56,103,,,,,,,,,,,,,, +847,Bolivia (Plurinational State of),2010,95,1150,622,415,395,338,409,119,744,471,238,191,162,264,92,102,66,43,26,29,42,65,38,42,18,9,29,29,63,234,192,121,122,125,171,47,175,161,62,68,60,93,,,,,,,,,,,,,, +848,Bolivia (Plurinational State of),2011,100,1231,685,372,371,302,457,146,778,459,235,183,155,272,75,115,50,46,35,32,56,76,47,34,18,15,20,24,60,289,204,132,125,94,160,55,164,147,66,66,61,98,,,,,,,,,,,,,, +849,Bolivia (Plurinational State of),2012,99,1096,672,368,358,353,380,101,792,480,223,204,193,249,68,100,62,43,29,32,47,57,37,31,16,23,9,17,41,266,198,105,101,141,181,43,173,149,65,60,65,84,,,,,,,,,,,,,, +850,Bolivia (Plurinational State of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,223,1470,978,625,610,556,728,212,945,664,355,277,281,403 +851,"Bonaire, Saint Eustatius and Saba",2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +852,"Bonaire, Saint Eustatius and Saba",2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +853,"Bonaire, Saint Eustatius and Saba",2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +854,"Bonaire, Saint Eustatius and Saba",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +855,Bosnia and Herzegovina,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +856,Bosnia and Herzegovina,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +857,Bosnia and Herzegovina,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +858,Bosnia and Herzegovina,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +859,Bosnia and Herzegovina,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +860,Bosnia and Herzegovina,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +861,Bosnia and Herzegovina,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +862,Bosnia and Herzegovina,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +863,Bosnia and Herzegovina,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +864,Bosnia and Herzegovina,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +865,Bosnia and Herzegovina,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +866,Bosnia and Herzegovina,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +867,Bosnia and Herzegovina,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +868,Bosnia and Herzegovina,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +869,Bosnia and Herzegovina,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +870,Bosnia and Herzegovina,1995,0,15,61,90,140,139,100,0,40,67,64,49,77,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +871,Bosnia and Herzegovina,1996,5,30,48,62,51,60,39,0,23,28,39,16,27,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +872,Bosnia and Herzegovina,1997,5,48,84,99,66,36,74,11,53,42,50,35,65,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +873,Bosnia and Herzegovina,1998,1,28,75,85,75,55,75,3,37,42,27,22,30,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +874,Bosnia and Herzegovina,1999,2,44,76,113,89,60,68,6,49,59,34,24,38,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +875,Bosnia and Herzegovina,2000,4,56,82,99,66,58,77,4,30,46,29,29,48,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +876,Bosnia and Herzegovina,2001,6,39,70,110,89,53,99,7,45,50,34,17,50,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +877,Bosnia and Herzegovina,2002,1,36,48,70,69,33,63,2,22,33,18,19,31,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +878,Bosnia and Herzegovina,2003,4,32,42,49,52,45,50,4,27,37,34,14,30,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +879,Bosnia and Herzegovina,2004,3,66,79,95,82,77,115,3,45,67,43,51,59,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +880,Bosnia and Herzegovina,2005,1,22,58,61,78,44,80,2,35,39,33,28,28,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +881,Bosnia and Herzegovina,2006,0,40,58,47,53,42,66,0,41,50,24,29,20,88,7,22,30,55,73,82,196,10,22,18,34,48,68,243,5,23,11,13,13,10,29,2,14,20,12,15,12,36,,,,,,,,,,,,,, +882,Bosnia and Herzegovina,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +883,Bosnia and Herzegovina,2008,0,20,35,38,84,49,79,3,26,26,20,11,6,112,5,39,47,45,99,80,196,1,19,31,39,40,66,212,4,13,18,23,24,13,33,4,12,12,18,12,18,37,,,,,,,,,,,,,, +884,Bosnia and Herzegovina,2009,2,27,35,75,77,67,99,4,31,30,17,19,13,113,3,28,44,48,103,76,198,2,19,27,27,31,59,197,3,12,12,15,17,17,28,0,12,14,8,14,10,20,,,,,,,,,,,,,, +885,Bosnia and Herzegovina,2010,1,27,37,34,61,46,51,0,27,19,16,10,18,94,6,27,26,41,64,71,154,4,27,19,26,31,41,150,1,12,12,7,15,14,29,1,15,8,8,10,8,21,,,,,,,,,,,,,, +886,Bosnia and Herzegovina,2011,2,33,32,52,75,61,62,3,17,27,17,13,25,128,6,24,34,39,61,91,80,6,19,31,25,31,35,127,1,15,7,9,14,16,25,2,5,9,8,11,20,20,,,,,,,,,,,,,, +887,Bosnia and Herzegovina,2012,1,23,32,58,74,62,92,0,33,26,21,10,25,116,7,19,32,29,59,80,102,2,19,20,9,19,27,105,4,17,14,10,13,14,27,4,9,6,12,13,10,23,,,,,,,,,,,,,, +888,Bosnia and Herzegovina,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,57,73,89,125,136,208,5,53,46,47,50,71,294 +889,Botswana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +890,Botswana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +891,Botswana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +892,Botswana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +893,Botswana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +894,Botswana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +895,Botswana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +896,Botswana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +897,Botswana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +898,Botswana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +899,Botswana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +900,Botswana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +901,Botswana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +902,Botswana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +903,Botswana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +904,Botswana,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +905,Botswana,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +906,Botswana,1997,29,193,509,422,244,143,95,28,291,359,181,97,60,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +907,Botswana,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +908,Botswana,1999,18,177,526,492,274,139,93,46,274,434,225,90,30,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +909,Botswana,2000,25,185,605,488,267,135,96,37,335,469,262,98,57,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +910,Botswana,2001,15,190,539,490,288,116,73,33,328,493,309,116,46,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +911,Botswana,2002,17,226,595,517,244,136,84,45,393,566,290,144,54,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +912,Botswana,2003,22,203,552,446,244,136,78,32,338,524,276,104,52,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +913,Botswana,2004,29,245,490,436,271,122,96,49,358,544,290,110,52,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +914,Botswana,2005,27,260,563,506,272,135,97,45,321,491,253,97,55,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +915,Botswana,2006,36,262,577,490,289,122,104,54,326,507,259,133,55,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +916,Botswana,2007,25,251,535,442,263,120,82,46,347,430,254,123,47,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +917,Botswana,2008,27,254,528,384,220,113,85,42,347,474,226,135,51,30,225,144,492,473,282,152,132,215,227,461,298,131,67,67,90,63,226,204,103,53,52,87,110,274,154,79,21,28,,,,,,,,,,,,,, +918,Botswana,2009,40,262,539,461,271,136,101,63,331,455,256,128,56,45,311,138,442,439,259,149,123,274,217,488,284,142,67,60,81,69,217,188,96,55,43,84,99,226,149,73,24,25,,,,,,,,,,,,,, +919,Botswana,2010,45,256,590,477,239,137,107,68,338,509,301,119,56,53,142,108,266,327,147,90,86,153,120,271,169,80,41,55,57,53,177,144,87,50,34,58,83,196,166,58,19,28,,,,,,,,,,,,,, +920,Botswana,2011,36,220,464,354,206,110,94,65,286,421,211,105,48,49,141,70,259,259,150,105,100,129,163,254,192,83,38,40,63,46,169,149,99,48,52,40,84,227,138,53,21,24,,,,,,,,,,,,,, +921,Botswana,2012,40,207,394,333,190,79,75,63,267,402,193,109,43,31,170,99,283,325,151,91,99,162,125,314,196,102,44,47,54,47,169,174,79,46,47,46,76,189,127,45,30,22,,,,,,,,,,,,,, +922,Botswana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,298,423,908,1024,584,346,328,258,501,898,636,317,146,167 +923,Brazil,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +924,Brazil,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +925,Brazil,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +926,Brazil,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +927,Brazil,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +928,Brazil,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +929,Brazil,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +930,Brazil,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +931,Brazil,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +932,Brazil,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +933,Brazil,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +934,Brazil,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +935,Brazil,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +936,Brazil,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +937,Brazil,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +938,Brazil,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +939,Brazil,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +940,Brazil,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +941,Brazil,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +942,Brazil,1999,301,3662,5401,5827,4630,2634,2121,372,2909,3450,2621,1661,1042,1106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +943,Brazil,2000,1894,7268,11568,11906,8623,5085,4494,1859,6719,7215,5395,3582,2384,2496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +944,Brazil,2001,468,4455,5536,5184,4285,2353,1694,516,3632,3303,2296,1701,1050,1018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +945,Brazil,2002,344,4695,5890,6325,4834,2738,2080,380,3715,3584,2817,1755,1031,535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +946,Brazil,2003,382,4485,5709,6034,4863,2589,2057,401,3582,3542,2540,1676,1001,1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +947,Brazil,2004,337,5041,6321,6481,5157,2716,2169,375,3684,3763,2742,1865,1041,1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +948,Brazil,2005,317,5074,6119,6128,5259,2803,2140,355,3496,3663,2626,1897,1112,1104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +949,Brazil,2006,343,4783,6098,6050,5042,2885,2221,343,3132,3506,2569,1885,1121,1139,781,2046,2804,2990,2643,1606,1645,787,1412,1733,1420,1096,726,896,365,825,1504,1458,1066,567,531,311,672,1026,941,612,399,379,,,,,,,,,,,,,, +950,Brazil,2007,371,4399,5990,5456,4878,2726,2075,344,2952,3250,2327,1727,977,972,789,2092,2879,3097,2687,1725,1630,733,1334,1817,1428,1189,842,823,385,821,1489,1414,1022,570,479,314,587,976,873,618,397,373,,,,,,,,,,,,,, +951,Brazil,2008,298,4436,6173,5305,4854,2650,1905,356,2709,3233,2266,1669,964,879,715,2108,2977,2894,2612,1638,1537,711,1315,1857,1434,1171,767,929,356,790,1477,1388,1043,586,494,296,592,951,814,584,384,367,,,,,,,,,,,,,, +952,Brazil,2009,328,4621,6399,5291,5058,2846,1994,352,2880,3326,2271,1758,1077,1011,750,2037,2908,2728,2547,1696,1512,663,1336,1734,1362,1171,750,915,363,901,1441,1315,1044,576,542,293,577,980,798,657,385,379,,,,,,,,,,,,,, +953,Brazil,2010,298,4405,6381,5293,4762,2875,1947,280,2677,3008,2211,1720,1038,979,675,2081,3206,2795,2609,1783,1663,596,1350,1812,1381,1198,835,993,362,819,1464,1277,1006,597,495,239,579,1004,830,602,374,349,,,,,,,,,,,,,, +954,Brazil,2011,336,4877,6755,5462,5054,3083,2142,356,2815,3131,2230,1779,1164,1069,641,1786,2793,2621,2522,1707,1556,602,1125,1517,1247,1068,821,896,296,801,1485,1288,1011,644,502,284,564,975,757,668,393,379,,,,,,,,,,,,,, +955,Brazil,2012,277,5027,6811,5387,5128,3103,2160,303,2798,3013,2173,1785,1113,1030,643,1937,2916,2449,2350,1730,1380,623,1097,1446,1235,1176,853,853,298,879,1521,1250,1075,659,532,244,590,975,802,664,420,367,,,,,,,,,,,,,, +956,Brazil,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1398,7903,11759,10043,8991,6041,4602,1249,4670,5673,4547,3868,2672,2580 +957,British Virgin Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +958,British Virgin Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +959,British Virgin Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +960,British Virgin Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +961,British Virgin Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +962,British Virgin Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +963,British Virgin Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +964,British Virgin Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +965,British Virgin Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +966,British Virgin Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +967,British Virgin Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +968,British Virgin Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +969,British Virgin Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +970,British Virgin Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +971,British Virgin Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +972,British Virgin Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +973,British Virgin Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +974,British Virgin Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +975,British Virgin Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +976,British Virgin Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +977,British Virgin Islands,2000,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +978,British Virgin Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +979,British Virgin Islands,2002,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +980,British Virgin Islands,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +981,British Virgin Islands,2004,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +982,British Virgin Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +983,British Virgin Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +984,British Virgin Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +985,British Virgin Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +986,British Virgin Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +987,British Virgin Islands,2010,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +988,British Virgin Islands,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +989,British Virgin Islands,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +990,British Virgin Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +991,Brunei Darussalam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +992,Brunei Darussalam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +993,Brunei Darussalam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +994,Brunei Darussalam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +995,Brunei Darussalam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +996,Brunei Darussalam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +997,Brunei Darussalam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +998,Brunei Darussalam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +999,Brunei Darussalam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1000,Brunei Darussalam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1001,Brunei Darussalam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1002,Brunei Darussalam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1003,Brunei Darussalam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1004,Brunei Darussalam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1005,Brunei Darussalam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1006,Brunei Darussalam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1007,Brunei Darussalam,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1008,Brunei Darussalam,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1009,Brunei Darussalam,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1010,Brunei Darussalam,1999,0,16,42,30,11,25,31,1,16,36,16,16,13,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1011,Brunei Darussalam,2000,0,6,4,15,5,7,15,0,4,6,9,6,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1012,Brunei Darussalam,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1013,Brunei Darussalam,2002,2,15,15,7,6,8,14,0,11,9,8,5,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1014,Brunei Darussalam,2003,0,5,25,17,8,8,9,0,9,14,11,4,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1015,Brunei Darussalam,2004,0,10,13,12,16,11,10,0,6,11,12,8,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1016,Brunei Darussalam,2005,0,9,19,19,12,9,0,0,9,11,8,3,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1017,Brunei Darussalam,2006,2,10,11,12,13,10,11,1,5,11,8,11,4,9,,0,3,1,3,3,3,0,2,0,1,3,0,6,,2,2,1,2,4,2,1,1,10,4,3,3,1,,,,,,,,,,,,,, +1018,Brunei Darussalam,2007,0,5,10,15,21,10,17,0,6,6,12,15,9,2,0,1,0,2,1,1,1,0,0,0,1,0,1,1,0,3,7,2,4,2,6,0,3,5,8,7,1,1,,,,,,,,,,,,,, +1019,Brunei Darussalam,2008,0,10,10,12,21,6,23,1,6,11,8,7,7,10,0,2,2,6,2,1,5,0,2,4,1,1,1,1,0,1,3,2,6,4,4,0,5,8,5,2,1,2,,,,,,,,,,,,,, +1020,Brunei Darussalam,2009,1,5,5,16,13,18,29,0,10,12,11,7,3,10,0,0,0,3,2,0,2,0,1,4,3,0,2,1,1,2,3,4,2,2,2,2,4,8,6,7,3,3,,,,,,,,,,,,,, +1021,Brunei Darussalam,2010,0,17,15,13,18,7,18,2,7,15,12,8,4,10,0,2,4,6,4,1,4,0,0,4,1,0,1,3,1,3,3,4,5,4,4,0,2,7,5,2,2,1,,,,,,,,,,,,,, +1022,Brunei Darussalam,2011,0,11,11,11,10,11,13,2,5,9,6,7,3,10,0,6,6,5,12,2,7,0,1,3,5,1,1,3,0,5,10,5,4,2,4,0,5,3,4,2,1,3,,,,,,,,,,,,,, +1023,Brunei Darussalam,2012,0,10,13,15,13,8,19,0,5,6,9,10,6,5,0,4,8,11,8,6,11,0,4,3,6,3,4,11,1,2,1,1,4,3,6,0,3,1,4,3,0,2,,,,,,,,,,,,,, +1024,Brunei Darussalam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,14,20,20,27,16,27,3,9,24,17,12,10,12 +1025,Bulgaria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1026,Bulgaria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1027,Bulgaria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1028,Bulgaria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1029,Bulgaria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1030,Bulgaria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1031,Bulgaria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1032,Bulgaria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1033,Bulgaria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1034,Bulgaria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1035,Bulgaria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1036,Bulgaria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1037,Bulgaria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1038,Bulgaria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1039,Bulgaria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1040,Bulgaria,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1041,Bulgaria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1042,Bulgaria,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1043,Bulgaria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1044,Bulgaria,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1045,Bulgaria,2000,0,13,16,20,3,9,10,0,11,14,7,3,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1046,Bulgaria,2001,1,15,20,23,23,18,13,1,11,16,13,5,2,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1047,Bulgaria,2002,2,62,86,116,132,58,56,6,48,73,45,19,9,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1048,Bulgaria,2003,3,99,169,178,200,121,89,7,85,106,63,44,32,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1049,Bulgaria,2004,10,97,156,166,204,153,111,4,84,111,64,49,35,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1050,Bulgaria,2005,9,98,150,195,195,150,136,9,90,111,59,29,37,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1051,Bulgaria,2006,6,86,146,170,184,133,123,12,76,96,86,34,24,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1052,Bulgaria,2007,7,63,122,181,176,131,90,4,63,77,53,38,29,46,17,53,104,83,128,132,164,24,43,71,35,41,45,70,75,46,35,39,41,54,73,67,37,25,31,31,36,63,,,,,,,,,,,,,, +1053,Bulgaria,2008,2,80,145,151,159,127,68,1,57,78,54,31,23,44,11,67,98,103,150,157,172,10,48,56,51,54,44,100,118,36,33,43,31,43,68,83,20,35,27,34,57,59,,,,,,,,,,,,,, +1054,Bulgaria,2009,7,51,93,120,158,96,84,2,65,72,44,44,21,39,10,46,73,72,126,107,144,10,34,46,49,41,58,74,94,52,33,50,39,52,90,79,31,23,26,42,37,92,,,,,,,,,,,,,, +1055,Bulgaria,2010,1,40,115,143,133,90,65,3,42,59,43,23,15,34,6,45,73,69,78,97,117,8,37,44,40,32,35,67,93,34,40,41,42,58,81,102,41,32,31,34,37,81,,,,,,,,,,,,,, +1056,Bulgaria,2011,2,38,100,110,122,92,61,2,41,40,36,28,14,30,6,35,68,78,81,94,97,6,20,44,49,37,36,56,88,33,39,32,32,43,82,69,27,21,20,26,50,66,,,,,,,,,,,,,, +1057,Bulgaria,2012,0,46,89,130,131,82,57,0,37,50,44,24,16,35,6,30,58,62,73,90,93,3,16,40,40,28,32,47,87,31,36,26,37,46,86,80,23,11,21,28,30,64,,,,,,,,,,,,,, +1058,Bulgaria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,89,196,218,247,240,228,82,73,102,111,81,62,137 +1059,Burkina Faso,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1060,Burkina Faso,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1061,Burkina Faso,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1062,Burkina Faso,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1063,Burkina Faso,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1064,Burkina Faso,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1065,Burkina Faso,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1066,Burkina Faso,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1067,Burkina Faso,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1068,Burkina Faso,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1069,Burkina Faso,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1070,Burkina Faso,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1071,Burkina Faso,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1072,Burkina Faso,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1073,Burkina Faso,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1074,Burkina Faso,1995,4,67,133,124,62,48,29,7,76,53,39,26,11,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1075,Burkina Faso,1996,3,47,161,148,115,65,36,10,51,97,67,58,31,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1076,Burkina Faso,1997,3,47,161,148,115,65,36,10,51,97,67,58,31,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1077,Burkina Faso,1998,4,104,270,236,159,89,65,9,83,98,86,82,32,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1078,Burkina Faso,1999,13,85,247,216,118,83,56,8,67,141,92,63,39,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1079,Burkina Faso,2000,12,91,274,252,133,68,65,7,59,128,101,45,38,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1080,Burkina Faso,2001,7,124,283,279,168,122,70,17,80,155,100,49,32,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1081,Burkina Faso,2002,6,123,273,266,156,124,83,12,85,159,104,80,30,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1082,Burkina Faso,2003,14,148,313,321,162,129,80,19,102,131,132,70,46,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1083,Burkina Faso,2004,10,155,375,308,204,138,102,22,109,196,148,72,54,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1084,Burkina Faso,2005,18,181,430,370,273,144,113,15,125,248,174,109,54,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1085,Burkina Faso,2006,13,227,473,433,307,183,140,33,155,252,198,99,99,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1086,Burkina Faso,2007,8,233,442,429,303,176,145,29,157,243,187,129,88,45,42,22,62,68,66,35,50,29,22,52,54,34,24,17,27,49,59,51,53,30,27,20,30,68,44,26,14,15,,,,,,,,,,,,,, +1087,Burkina Faso,2008,8,225,555,448,314,174,146,33,143,250,180,116,107,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1088,Burkina Faso,2009,27,221,592,467,336,230,189,38,156,269,209,154,96,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1089,Burkina Faso,2010,20,231,620,493,328,224,173,33,158,259,198,124,97,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1090,Burkina Faso,2011,22,265,708,582,375,262,196,31,163,277,221,146,110,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1091,Burkina Faso,2012,25,277,769,631,423,250,198,27,160,288,191,156,106,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1092,Burkina Faso,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,274,828,671,416,252,212,32,163,251,190,134,95,76 +1093,Burundi,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1094,Burundi,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1095,Burundi,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1096,Burundi,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1097,Burundi,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1098,Burundi,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1099,Burundi,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1100,Burundi,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1101,Burundi,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1102,Burundi,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1103,Burundi,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1104,Burundi,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1105,Burundi,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1106,Burundi,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1107,Burundi,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1108,Burundi,1995,5,128,238,224,73,32,19,19,109,124,89,33,12,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1109,Burundi,1996,16,217,283,274,116,41,17,18,132,203,112,53,16,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1110,Burundi,1997,21,208,446,431,198,79,32,30,189,265,198,71,39,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1111,Burundi,1998,45,301,527,530,319,102,33,49,265,321,240,126,47,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1112,Burundi,1999,64,349,566,492,281,102,57,66,291,253,236,109,30,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1113,Burundi,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1114,Burundi,2001,34,344,559,469,238,75,39,81,369,364,337,86,30,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1115,Burundi,2002,16,310,470,520,270,97,52,48,243,242,324,152,24,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1116,Burundi,2003,32,348,572,488,260,106,35,75,308,361,276,119,27,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1117,Burundi,2004,24,352,674,468,292,78,48,51,325,370,232,114,40,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1118,Burundi,2005,34,352,591,525,372,111,55,46,298,399,288,122,36,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1119,Burundi,2006,30,347,600,488,320,114,64,41,296,367,242,140,56,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1120,Burundi,2007,26,425,637,542,372,177,88,55,360,392,276,140,67,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1121,Burundi,2008,30,430,684,526,459,175,80,38,335,340,264,139,72,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1122,Burundi,2009,34,452,717,584,468,240,117,50,326,397,309,157,83,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1123,Burundi,2010,56,481,773,651,570,270,157,78,390,421,332,225,99,87,43,57,108,131,119,78,43,33,55,84,84,77,29,22,245,125,191,182,153,70,44,214,117,197,143,86,43,16,,,,,,,,,,,,,, +1124,Burundi,2011,37,484,743,620,504,235,98,56,345,374,263,180,81,40,18,49,81,107,103,60,60,17,53,63,57,45,36,36,188,132,199,177,135,64,43,159,118,171,128,67,43,25,,,,,,,,,,,,,, +1125,Burundi,2012,45,447,801,667,461,233,103,74,338,367,283,162,64,30,22,56,121,90,82,63,34,19,46,46,67,41,32,27,188,141,229,195,173,96,53,177,152,167,143,89,47,37,,,,,,,,,,,,,, +1126,Burundi,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,262,679,1204,1071,803,426,244,266,534,658,461,336,179,126 +1127,Cabo Verde,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1128,Cabo Verde,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1129,Cabo Verde,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1130,Cabo Verde,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1131,Cabo Verde,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1132,Cabo Verde,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1133,Cabo Verde,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1134,Cabo Verde,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1135,Cabo Verde,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1136,Cabo Verde,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1137,Cabo Verde,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1138,Cabo Verde,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1139,Cabo Verde,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1140,Cabo Verde,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1141,Cabo Verde,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1142,Cabo Verde,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1143,Cabo Verde,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1144,Cabo Verde,1997,0,11,16,19,4,10,10,2,10,10,8,3,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1145,Cabo Verde,1998,2,9,14,14,6,6,9,2,12,4,5,3,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1146,Cabo Verde,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1147,Cabo Verde,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1148,Cabo Verde,2001,0,5,15,6,5,5,1,2,7,9,7,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1149,Cabo Verde,2002,3,9,29,20,14,1,2,2,11,11,12,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1150,Cabo Verde,2003,3,12,32,32,9,7,8,1,6,7,13,7,4,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1151,Cabo Verde,2004,1,8,33,17,20,2,7,2,17,34,11,7,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1152,Cabo Verde,2005,0,22,23,26,9,2,8,2,9,16,4,5,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1153,Cabo Verde,2006,2,15,22,18,8,6,4,2,14,16,5,6,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1154,Cabo Verde,2007,0,24,30,26,18,4,6,0,18,17,5,1,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1155,Cabo Verde,2008,0,23,33,29,27,12,6,6,18,21,11,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1156,Cabo Verde,2009,1,27,40,31,19,3,6,4,13,10,8,4,1,5,7,3,12,14,11,6,2,4,4,10,6,10,3,2,2,5,11,8,9,2,3,1,3,2,3,3,1,0,,,,,,,,,,,,,, +1157,Cabo Verde,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1158,Cabo Verde,2011,0,17,43,35,31,3,3,4,14,15,4,6,3,4,17,9,18,17,17,7,11,6,4,5,4,6,1,5,4,7,13,7,5,0,0,1,4,7,4,3,2,0,,,,,,,,,,,,,, +1159,Cabo Verde,2012,0,29,36,34,24,8,2,0,19,13,9,8,3,4,11,15,19,18,11,8,10,10,6,6,5,6,1,4,6,9,11,6,7,3,0,5,5,6,3,1,1,3,,,,,,,,,,,,,, +1160,Cabo Verde,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,23,46,29,20,9,9,2,12,12,10,4,5,4 +1161,Cambodia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1162,Cambodia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1163,Cambodia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1164,Cambodia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1165,Cambodia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1166,Cambodia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1167,Cambodia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1168,Cambodia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1169,Cambodia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1170,Cambodia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1171,Cambodia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1172,Cambodia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1173,Cambodia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1174,Cambodia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1175,Cambodia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1176,Cambodia,1995,161,453,1244,1147,1253,1257,707,123,388,1133,1435,1426,1180,578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1177,Cambodia,1996,148,32,1272,1363,1348,1226,726,124,27,1087,1430,1534,1201,547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1178,Cambodia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1179,Cambodia,1998,36,446,1330,1477,1521,1293,924,23,367,1184,1531,1667,1359,691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1180,Cambodia,1999,41,525,1389,1734,1645,1578,1089,51,445,1229,1861,1857,1448,852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1181,Cambodia,2000,26,519,1323,1618,1456,1373,1058,38,457,1157,1649,1798,1459,892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1182,Cambodia,2001,29,600,1302,1601,1406,1403,1037,25,455,1033,1526,1687,1428,829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1183,Cambodia,2002,54,791,1449,1956,1799,1624,1432,54,600,1114,1737,1898,1650,1100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1184,Cambodia,2003,37,805,1514,2183,1848,1729,1487,46,691,1287,1975,2208,1857,1256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1185,Cambodia,2004,36,850,1466,2261,1942,1759,1538,28,658,1276,1882,2176,1836,1270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1186,Cambodia,2005,49,894,1600,2349,2043,1964,1811,45,790,1413,2089,2323,2058,1573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1187,Cambodia,2006,50,791,1486,2205,1902,1689,1665,44,749,1330,1839,2072,1915,1557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1188,Cambodia,2007,50,883,1526,2190,2102,1761,1644,64,749,1351,1698,2105,1839,1459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1189,Cambodia,2008,49,920,1570,2040,2117,1746,1683,72,808,1403,1809,2093,1943,1607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1190,Cambodia,2009,37,746,1522,1884,2117,1543,1548,45,801,1252,1461,1894,1637,1376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1191,Cambodia,2010,39,750,1564,1760,2105,1531,1599,60,752,1321,1303,1732,1607,1331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1192,Cambodia,2011,34,791,1469,1557,1972,1439,1339,39,690,1211,1092,1528,1473,1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1193,Cambodia,2012,31,673,1256,1414,1904,1434,1526,22,612,1088,957,1424,1302,1198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1194,Cambodia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,583,1213,1316,1825,1373,1367,32,540,1079,893,1319,1264,1247 +1195,Cameroon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1196,Cameroon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1197,Cameroon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1198,Cameroon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1199,Cameroon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1200,Cameroon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1201,Cameroon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1202,Cameroon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1203,Cameroon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1204,Cameroon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1205,Cameroon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1206,Cameroon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1207,Cameroon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1208,Cameroon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1209,Cameroon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1210,Cameroon,1995,20,208,569,323,287,204,164,9,185,313,223,153,106,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1211,Cameroon,1996,34,151,735,291,178,38,17,21,123,388,202,103,24,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1212,Cameroon,1997,36,321,1011,387,269,79,24,25,277,522,341,179,63,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1213,Cameroon,1998,15,651,1006,787,262,87,35,30,443,595,268,112,53,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1214,Cameroon,1999,49,602,1595,736,433,166,59,47,506,783,505,235,95,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1215,Cameroon,2000,41,518,842,584,284,130,75,63,368,530,293,139,60,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1216,Cameroon,2001,24,643,1000,732,322,154,86,49,482,609,328,155,62,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1217,Cameroon,2002,66,818,1335,1117,619,258,125,59,950,1053,545,236,140,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1218,Cameroon,2003,100,1176,2274,1516,788,330,160,136,1273,1542,745,363,217,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1219,Cameroon,2004,127,1312,2147,1575,928,408,259,181,1310,1449,756,412,214,140,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1220,Cameroon,2005,134,1472,2482,1766,1035,463,289,226,1467,1788,1028,503,205,143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1221,Cameroon,2006,112,1401,2550,1820,1080,437,300,151,1358,1823,960,470,266,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1222,Cameroon,2007,121,1392,2613,1874,1011,480,307,152,1443,1963,985,483,248,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1223,Cameroon,2008,108,1613,2861,2016,1135,526,281,173,1506,2041,1027,568,234,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1224,Cameroon,2009,107,1635,2822,2029,1245,567,355,155,1521,1997,1123,529,245,157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1225,Cameroon,2010,106,1497,2750,1996,1314,559,329,172,1474,2031,1121,642,290,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1226,Cameroon,2011,114,1580,2931,2139,1283,625,361,178,1461,2022,1177,581,281,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1227,Cameroon,2012,108,1597,2900,2182,1304,658,375,184,1417,2053,1177,579,295,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1228,Cameroon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,115,,,,,,,176,,,,,, +1229,Canada,1980,12,54,75,83,100,108,186,18,62,51,34,31,33,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1230,Canada,1981,8,49,61,64,87,103,141,6,46,57,26,28,35,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1231,Canada,1982,6,52,66,69,90,91,150,7,51,57,30,25,38,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1232,Canada,1983,9,47,63,62,90,92,123,11,50,50,29,24,35,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1233,Canada,1984,3,44,75,58,68,83,169,9,51,59,28,28,36,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1234,Canada,1985,11,42,70,59,77,81,168,5,30,56,19,28,48,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1235,Canada,1986,9,58,73,62,59,73,147,10,33,54,33,20,26,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1236,Canada,1987,9,40,71,60,49,64,129,8,39,48,29,17,26,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1237,Canada,1988,4,43,73,62,52,68,131,6,38,56,27,16,26,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1238,Canada,1989,10,45,56,60,54,62,122,6,37,51,23,24,21,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1239,Canada,1990,3,35,70,55,40,42,100,1,30,38,26,17,20,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1240,Canada,1991,7,37,79,53,37,36,110,4,23,37,31,9,20,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1241,Canada,1992,6,42,47,58,41,51,79,2,27,28,21,11,15,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1242,Canada,1993,8,33,47,53,43,33,74,6,22,50,22,21,21,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1243,Canada,1994,2,42,54,42,43,34,87,3,37,37,19,11,13,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1244,Canada,1995,1,28,31,60,34,41,70,7,33,28,22,12,18,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1245,Canada,1996,3,28,49,48,31,34,70,2,23,34,28,14,16,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1246,Canada,1997,0,21,55,44,30,44,90,1,36,44,26,13,16,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1247,Canada,1998,4,33,43,51,31,26,80,1,26,31,26,14,18,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1248,Canada,1999,0,23,47,51,36,33,94,4,33,31,28,13,11,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1249,Canada,2000,5,34,45,46,41,32,79,4,33,40,30,25,12,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1250,Canada,2001,6,24,49,56,40,22,76,5,23,41,33,16,14,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1251,Canada,2002,0,25,34,50,34,27,64,6,32,31,26,17,17,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1252,Canada,2003,1,26,36,37,32,21,42,3,21,28,25,15,9,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1253,Canada,2004,2,25,34,38,32,31,64,0,34,55,34,19,22,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1254,Canada,2005,3,37,45,44,40,20,68,6,28,40,27,24,13,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1255,Canada,2006,2,34,34,33,42,26,64,4,39,30,25,16,6,52,43,60,25,52,42,29,71,39,40,41,46,23,24,51,6,19,42,43,20,14,40,7,30,46,41,33,29,32,,,,,,,,,,,,,, +1256,Canada,2007,5,31,41,51,50,35,75,2,32,33,33,11,13,51,14,36,38,38,29,28,55,16,34,33,36,20,12,60,36,29,32,49,29,25,33,22,21,55,47,39,30,37,,,,,,,,,,,,,, +1257,Canada,2008,2,39,36,49,53,38,62,3,36,39,39,27,20,45,15,30,44,40,28,34,59,20,24,51,40,28,13,40,24,18,39,38,34,14,38,19,32,44,39,20,16,41,,,,,,,,,,,,,, +1258,Canada,2009,2,45,41,53,55,30,58,3,19,39,28,27,20,42,12,44,49,51,41,29,64,12,45,50,39,20,16,47,29,26,39,42,37,23,34,28,24,50,42,32,28,32,,,,,,,,,,,,,, +1259,Canada,2010,3,30,28,36,32,25,62,1,28,24,16,10,19,44,6,22,39,55,40,38,75,8,19,43,34,26,17,50,12,25,29,43,30,16,38,13,22,66,45,37,30,38,,,,,,,,,,,,,, +1260,Canada,2011,2,34,36,31,40,33,70,3,23,29,28,14,9,55,18,34,45,31,38,23,60,14,34,49,26,22,13,49,18,28,37,44,32,18,38,19,24,66,50,30,32,33,,,,,,,,,,,,,, +1261,Canada,2012,1,33,32,53,51,35,97,6,32,34,29,19,11,45,28,46,57,38,54,35,79,21,40,57,35,27,12,45,28,41,52,43,31,28,53,24,34,45,52,35,19,34,,,,,,,,,,,,,, +1262,Canada,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61,117,110,119,142,127,226,47,85,161,125,92,62,164 +1263,Cayman Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1264,Cayman Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1265,Cayman Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1266,Cayman Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1267,Cayman Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1268,Cayman Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1269,Cayman Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1270,Cayman Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1271,Cayman Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1272,Cayman Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1273,Cayman Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1274,Cayman Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1275,Cayman Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1276,Cayman Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1277,Cayman Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1278,Cayman Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1279,Cayman Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1280,Cayman Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1281,Cayman Islands,1998,0,0,0,0,0,0,1,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1282,Cayman Islands,1999,0,0,0,1,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1283,Cayman Islands,2000,0,0,3,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1284,Cayman Islands,2001,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1285,Cayman Islands,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1286,Cayman Islands,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1287,Cayman Islands,2004,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1288,Cayman Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1289,Cayman Islands,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1290,Cayman Islands,2007,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1291,Cayman Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1292,Cayman Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1293,Cayman Islands,2010,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1294,Cayman Islands,2011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1295,Cayman Islands,2012,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1296,Cayman Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,1,0,0,0,1,1,0,0,0,0 +1297,Central African Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1298,Central African Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1299,Central African Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1300,Central African Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1301,Central African Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1302,Central African Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1303,Central African Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1304,Central African Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1305,Central African Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1306,Central African Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1307,Central African Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1308,Central African Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1309,Central African Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1310,Central African Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1311,Central African Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1312,Central African Republic,1995,38,162,356,206,120,40,18,39,233,350,145,57,21,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1313,Central African Republic,1996,46,192,385,234,94,57,15,52,273,346,177,62,45,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1314,Central African Republic,1997,54,211,403,282,144,65,26,53,301,394,207,100,23,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1315,Central African Republic,1998,28,205,482,328,157,76,46,67,353,476,217,115,61,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1316,Central African Republic,1999,28,224,529,367,123,67,65,72,376,498,196,86,52,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1317,Central African Republic,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1318,Central African Republic,2001,15,127,279,171,78,45,16,25,179,236,123,64,23,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1319,Central African Republic,2002,76,264,462,414,154,82,22,66,315,402,262,139,82,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1320,Central African Republic,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1321,Central African Republic,2004,12,58,694,575,241,30,14,14,60,430,559,181,46,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1322,Central African Republic,2005,29,40,1136,160,26,35,15,30,32,420,145,30,40,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1323,Central African Republic,2006,48,409,770,923,152,83,30,52,538,613,647,126,42,16,12,127,172,81,8,5,1,6,99,150,36,5,4,1,46,116,107,72,15,8,0,47,86,708,47,5,3,1,,,,,,,,,,,,,, +1324,Central African Republic,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1325,Central African Republic,2008,68,466,643,515,276,160,81,102,481,673,378,196,136,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1326,Central African Republic,2009,124,546,850,662,351,184,94,137,611,723,426,228,128,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1327,Central African Republic,2010,78,379,633,468,251,135,63,88,367,576,319,155,73,44,144,130,154,171,108,56,39,139,171,214,146,72,42,12,206,79,84,84,55,18,11,157,78,140,96,39,19,9,,,,,,,,,,,,,, +1328,Central African Republic,2011,70,362,576,467,269,119,59,96,382,530,289,162,62,26,87,52,120,126,43,25,9,104,88,163,77,36,25,8,166,49,90,61,37,18,11,138,78,117,59,30,13,8,,,,,,,,,,,,,, +1329,Central African Republic,2012,73,502,799,660,360,158,92,101,511,689,370,191,96,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1330,Central African Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,479,714,568,349,140,57,93,496,626,343,170,71,36 +1331,Chad,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1332,Chad,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1333,Chad,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1334,Chad,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1335,Chad,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1336,Chad,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1337,Chad,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1338,Chad,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1339,Chad,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1340,Chad,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1341,Chad,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1342,Chad,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1343,Chad,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1344,Chad,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1345,Chad,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1346,Chad,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1347,Chad,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1348,Chad,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1349,Chad,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1350,Chad,1999,20,172,414,957,477,42,4,13,28,230,458,78,16,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1351,Chad,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1352,Chad,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1353,Chad,2002,24,90,1029,794,269,37,17,18,28,495,500,187,18,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1354,Chad,2003,155,256,428,549,303,191,78,112,206,363,497,259,151,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1355,Chad,2004,72,141,466,415,207,61,29,41,89,317,262,129,25,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1356,Chad,2005,25,194,535,409,229,123,82,28,148,298,211,148,59,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1357,Chad,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1358,Chad,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1359,Chad,2008,63,,,1543,584,,,78,,,777,264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1360,Chad,2009,48,355,808,642,336,196,126,47,256,339,319,196,90,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1361,Chad,2010,76,382,850,666,379,173,99,59,274,413,263,158,79,44,168,207,408,406,245,151,110,140,165,238,185,94,44,37,134,135,139,138,70,44,52,102,86,102,81,49,35,21,,,,,,,,,,,,,, +1362,Chad,2011,92,469,951,764,418,184,121,84,296,438,298,166,109,44,177,279,438,371,225,141,109,143,221,263,209,99,86,38,118,99,124,104,67,52,39,103,65,105,62,41,33,21,,,,,,,,,,,,,, +1363,Chad,2012,68,405,842,634,376,210,88,51,273,403,227,135,91,46,216,288,553,502,253,175,114,154,235,303,225,138,105,66,148,111,151,93,78,51,36,96,83,97,65,47,41,16,,,,,,,,,,,,,, +1364,Chad,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,471,910,1874,1599,1124,721,441,396,629,1075,676,609,476,236 +1365,Chile,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1366,Chile,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1367,Chile,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1368,Chile,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1369,Chile,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1370,Chile,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1371,Chile,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1372,Chile,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1373,Chile,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1374,Chile,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1375,Chile,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1376,Chile,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1377,Chile,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1378,Chile,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1379,Chile,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1380,Chile,1995,24,148,182,204,155,141,163,24,100,120,108,75,73,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1381,Chile,1996,8,123,201,207,207,125,139,11,88,117,72,63,47,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1382,Chile,1997,11,107,182,224,165,153,163,11,92,121,80,66,60,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1383,Chile,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1384,Chile,1999,4,118,173,204,206,132,132,9,87,109,97,52,76,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1385,Chile,2000,6,81,160,198,150,132,126,10,66,96,70,54,58,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1386,Chile,2001,2,78,183,213,190,116,138,9,69,85,76,58,55,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1387,Chile,2002,6,87,163,196,193,144,160,7,64,91,82,76,54,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1388,Chile,2003,1,77,131,181,183,150,136,8,59,106,81,42,41,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1389,Chile,2004,3,87,148,179,187,124,168,5,58,74,76,57,57,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1390,Chile,2005,3,74,128,179,162,115,133,4,55,78,60,56,36,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1391,Chile,2006,12,107,140,176,197,179,199,7,70,91,74,95,64,122,6,14,14,21,16,10,21,5,12,17,6,10,4,12,14,42,51,52,62,47,43,15,23,36,41,37,37,70,,,,,,,,,,,,,, +1392,Chile,2007,3,86,137,140,169,139,121,8,59,75,63,49,39,78,4,35,49,51,61,48,84,11,16,29,17,23,15,53,13,37,60,66,61,51,43,8,23,36,46,44,56,60,,,,,,,,,,,,,, +1393,Chile,2008,7,86,131,148,167,135,118,3,52,86,49,37,30,65,10,41,70,49,53,51,86,8,21,23,15,26,20,52,16,32,68,75,65,39,59,5,19,45,58,42,55,58,,,,,,,,,,,,,, +1394,Chile,2009,7,85,141,147,169,109,140,8,51,67,68,52,49,59,8,32,41,54,50,58,73,12,30,19,25,24,37,46,15,36,58,49,58,31,58,7,22,27,46,38,43,61,,,,,,,,,,,,,, +1395,Chile,2010,2,90,115,144,159,122,157,6,56,76,59,56,40,72,6,23,39,65,52,52,81,10,22,24,32,20,29,47,12,31,69,54,56,39,47,16,26,41,42,37,39,44,,,,,,,,,,,,,, +1396,Chile,2011,4,88,139,143,164,127,134,6,62,75,66,69,48,71,9,35,45,49,70,39,72,5,17,20,22,21,21,48,13,43,74,57,57,35,61,13,23,32,35,44,42,65,,,,,,,,,,,,,, +1397,Chile,2012,4,91,122,135,170,117,149,4,59,69,53,56,60,76,8,33,41,50,61,61,94,18,17,18,22,25,29,60,10,31,66,45,46,38,53,5,24,35,31,33,39,57,,,,,,,,,,,,,, +1398,Chile,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,135,275,253,300,240,303,19,116,147,118,124,150,184 +1399,China,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1400,China,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1401,China,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1402,China,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1403,China,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1404,China,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1405,China,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1406,China,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1407,China,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1408,China,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1409,China,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1410,China,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1411,China,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1412,China,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1413,China,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1414,China,1995,1102,12791,18306,15487,13105,13489,10130,1169,10890,13250,8376,5679,4579,2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1415,China,1996,1409,16490,24057,19695,17024,16758,13697,1624,13773,17218,10214,7020,5346,3945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1416,China,1997,1456,18547,28247,23006,20330,19667,17041,1534,15258,19547,11758,8259,6422,4823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1417,China,1998,1481,19699,30093,25088,23483,21651,20501,1558,15726,20203,12672,9399,7122,5728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1418,China,1999,1247,18961,29328,25095,24239,21564,21367,1431,15178,18846,12370,9838,7131,5663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1419,China,2000,1131,19111,29399,25206,25593,21429,21771,1420,14536,18496,12377,9899,7102,6296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1420,China,2001,1213,19121,28520,25544,25759,20789,22799,1405,14500,17446,12041,9963,7175,6491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1421,China,2002,925,17933,25242,22645,23884,19564,22562,1152,13250,15188,10505,8796,6586,6740,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1422,China,2003,1133,25125,32760,31604,32585,27243,32027,1407,18811,19248,14783,12101,8988,9465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1423,China,2004,1375,35465,43594,45408,46256,41846,50797,1659,25951,25150,20613,16995,14038,15739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1424,China,2005,1416,43005,49558,55400,54872,53822,69779,1864,31180,27759,24728,19889,18203,21244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1425,China,2006,1023,44528,48232,56733,54301,53746,68557,1408,30904,26526,24564,18775,17782,21212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1426,China,2007,878,44011,46374,56224,54960,56288,70376,1235,29960,24914,23542,18129,17647,21339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1427,China,2008,751,45596,44651,56182,55740,57492,69678,964,29223,23484,22370,17565,17814,21086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1428,China,2009,944,44757,41439,53300,54700,57653,67213,1078,29195,22179,21636,16898,17537,20623,2865,51307,42063,47112,44567,47249,58778,2356,32424,23121,22432,18704,19685,22662,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1429,China,2010,759,42851,38880,50246,52925,56754,64514,926,27064,21022,20422,16075,17441,20020,2522,54328,41926,45869,43632,47016,55003,2193,33194,24042,22604,18710,19627,22202,198,403,477,507,505,429,350,112,486,580,798,602,520,358,,,,,,,,,,,,,, +1430,China,2011,645,37514,34597,43087,47949,51315,55881,733,22859,18347,17119,14103,15218,17638,2291,58225,46051,50724,51044,55593,63305,1874,34383,26119,24405,21018,22141,24341,153,415,487,531,466,463,390,103,493,716,709,640,582,392,,,,,,,,,,,,,, +1431,China,2012,511,29018,28324,34505,40428,44821,49413,580,17786,15549,13485,11981,13384,16547,2362,60246,50282,54472,57181,64972,74282,1926,35518,28753,26472,23869,26085,29630,155,393,463,578,499,452,394,91,461,633,677,684,578,421,,,,,,,,,,,,,, +1432,China,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2529,84785,76917,84565,100297,112558,124476,2301,49491,44985,38804,37138,40892,47438 +1433,"China, Hong Kong SAR",1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1434,"China, Hong Kong SAR",1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1435,"China, Hong Kong SAR",1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1436,"China, Hong Kong SAR",1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1437,"China, Hong Kong SAR",1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1438,"China, Hong Kong SAR",1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1439,"China, Hong Kong SAR",1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1440,"China, Hong Kong SAR",1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1441,"China, Hong Kong SAR",1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1442,"China, Hong Kong SAR",1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1443,"China, Hong Kong SAR",1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1444,"China, Hong Kong SAR",1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1445,"China, Hong Kong SAR",1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1446,"China, Hong Kong SAR",1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1447,"China, Hong Kong SAR",1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1448,"China, Hong Kong SAR",1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1449,"China, Hong Kong SAR",1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1450,"China, Hong Kong SAR",1997,5,90,122,174,198,271,593,12,85,114,83,49,64,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1451,"China, Hong Kong SAR",1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1452,"China, Hong Kong SAR",1999,3,88,121,162,173,233,432,8,85,109,72,50,43,188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1453,"China, Hong Kong SAR",2000,4,78,102,160,211,236,578,5,65,115,86,44,45,211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1454,"China, Hong Kong SAR",2001,6,79,99,162,196,201,519,13,88,119,83,58,34,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1455,"China, Hong Kong SAR",2002,2,99,105,163,207,218,543,8,97,115,90,57,35,153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1456,"China, Hong Kong SAR",2003,8,104,91,140,195,180,472,10,88,136,102,65,43,160,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1457,"China, Hong Kong SAR",2004,3,59,94,128,226,175,477,6,97,112,87,56,34,140,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1458,"China, Hong Kong SAR",2005,3,76,84,108,200,168,453,3,67,81,92,57,34,135,19,177,190,213,264,283,907,14,172,237,148,123,78,354,11,26,40,38,40,37,78,10,30,85,83,90,46,87,,,,,,,,,,,,,, +1459,"China, Hong Kong SAR",2006,3,75,84,135,174,161,439,9,59,97,73,54,42,132,13,110,177,187,264,279,888,16,129,193,163,109,76,304,2,27,35,40,36,43,101,4,30,75,78,79,55,92,,,,,,,,,,,,,, +1460,"China, Hong Kong SAR",2007,5,63,80,110,177,175,425,1,59,94,74,64,37,137,15,108,152,146,257,259,863,11,112,183,147,105,75,346,8,20,21,38,48,45,80,9,35,85,74,76,49,105,,,,,,,,,,,,,, +1461,"China, Hong Kong SAR",2008,0,59,79,95,166,208,414,8,65,84,65,45,40,131,9,117,151,201,264,247,959,17,118,183,134,138,95,348,7,19,35,33,43,42,104,6,30,91,72,93,55,98,,,,,,,,,,,,,, +1462,"China, Hong Kong SAR",2009,3,53,64,79,176,179,413,7,56,107,82,56,39,130,8,107,134,159,220,256,803,16,89,189,132,123,91,346,7,24,37,34,50,42,93,5,25,89,58,81,59,118,,,,,,,,,,,,,, +1463,"China, Hong Kong SAR",2010,2,52,84,99,184,166,413,3,49,101,76,64,49,133,17,95,119,130,208,224,711,14,112,124,136,108,80,274,2,16,42,46,45,48,151,6,21,79,80,80,64,112,,,,,,,,,,,,,, +1464,"China, Hong Kong SAR",2011,2,72,52,63,172,189,384,3,56,89,69,60,53,116,9,96,105,109,206,253,715,8,69,158,105,94,87,230,7,24,43,32,54,64,137,6,31,84,85,74,64,110,,,,,,,,,,,,,, +1465,"China, Hong Kong SAR",2012,4,63,67,95,174,178,430,1,45,110,76,51,54,115,5,75,99,118,194,233,709,7,66,140,120,111,88,241,7,33,30,33,39,55,145,3,25,82,74,73,87,131,,,,,,,,,,,,,, +1466,"China, Hong Kong SAR",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,197,200,234,406,593,1299,15,140,346,285,219,242,549 +1467,"China, Macao SAR",1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1468,"China, Macao SAR",1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1469,"China, Macao SAR",1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1470,"China, Macao SAR",1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1471,"China, Macao SAR",1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1472,"China, Macao SAR",1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1473,"China, Macao SAR",1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1474,"China, Macao SAR",1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1475,"China, Macao SAR",1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1476,"China, Macao SAR",1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1477,"China, Macao SAR",1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1478,"China, Macao SAR",1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1479,"China, Macao SAR",1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1480,"China, Macao SAR",1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1481,"China, Macao SAR",1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1482,"China, Macao SAR",1995,0,7,19,20,13,12,16,0,9,18,12,4,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1483,"China, Macao SAR",1996,1,16,29,34,20,16,26,0,10,21,14,3,3,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1484,"China, Macao SAR",1997,1,15,38,47,37,34,55,4,10,16,21,5,6,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1485,"China, Macao SAR",1998,0,11,26,42,23,28,56,1,9,13,22,6,3,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1486,"China, Macao SAR",1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1487,"China, Macao SAR",2000,0,10,8,25,22,9,17,0,10,4,6,6,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1488,"China, Macao SAR",2001,0,9,17,26,25,11,23,1,5,7,11,10,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1489,"China, Macao SAR",2002,1,13,8,21,20,17,21,1,7,10,7,9,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1490,"China, Macao SAR",2003,0,9,9,16,27,9,27,0,7,7,11,7,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1491,"China, Macao SAR",2004,0,8,7,18,31,12,14,0,5,7,12,3,2,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1492,"China, Macao SAR",2005,3,6,9,21,23,17,22,0,5,9,7,8,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1493,"China, Macao SAR",2006,0,15,6,17,32,19,19,1,7,8,9,4,3,4,2,22,10,26,18,15,16,0,20,4,22,9,4,7,0,4,5,0,6,0,2,1,7,5,9,3,0,4,,,,,,,,,,,,,, +1494,"China, Macao SAR",2007,0,14,12,14,30,16,13,2,10,4,6,8,3,6,0,11,13,18,25,19,14,1,9,13,7,4,3,10,,4,1,2,2,2,3,,1,4,3,5,1,1,,,,,,,,,,,,,, +1495,"China, Macao SAR",2008,1,18,12,10,29,19,13,2,7,6,5,6,6,5,1,21,15,11,28,16,14,0,12,8,9,8,5,2,0,3,3,4,4,1,3,0,4,8,7,8,1,3,,,,,,,,,,,,,, +1496,"China, Macao SAR",2009,0,12,12,8,24,15,10,1,5,10,5,6,3,5,0,18,9,9,27,12,8,1,13,11,11,5,2,4,1,3,4,3,3,3,7,0,4,5,4,6,1,1,,,,,,,,,,,,,, +1497,"China, Macao SAR",2010,0,17,5,7,22,20,11,0,7,6,10,5,7,6,1,29,17,10,26,12,14,2,22,11,8,11,3,9,1,8,4,1,2,0,5,0,7,4,6,6,3,2,,,,,,,,,,,,,, +1498,"China, Macao SAR",2011,0,20,22,22,47,39,24,0,28,25,17,18,6,6,0,10,8,9,24,12,13,0,15,12,8,9,3,3,0,3,3,0,4,2,6,1,3,5,2,5,6,6,,,,,,,,,,,,,, +1499,"China, Macao SAR",2012,0,10,12,13,22,32,17,1,12,11,13,3,7,3,0,12,17,7,26,23,11,0,10,11,7,5,4,6,1,2,2,1,1,4,5,0,2,4,1,3,2,3,,,,,,,,,,,,,, +1500,"China, Macao SAR",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,31,31,37,66,53,65,2,25,34,27,26,20,15 +1501,Colombia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1502,Colombia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1503,Colombia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1504,Colombia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1505,Colombia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1506,Colombia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1507,Colombia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1508,Colombia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1509,Colombia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1510,Colombia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1511,Colombia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1512,Colombia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1513,Colombia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1514,Colombia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1515,Colombia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1516,Colombia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1517,Colombia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1518,Colombia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1519,Colombia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1520,Colombia,1999,270,1730,1473,1796,1500,350,1210,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1521,Colombia,2000,246,763,1030,963,743,610,746,194,587,758,523,381,304,510,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1522,Colombia,2001,223,1037,703,722,869,646,653,186,865,544,429,436,350,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1523,Colombia,2002,209,614,696,688,593,472,662,167,524,545,402,318,258,371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1524,Colombia,2003,237,684,816,844,853,642,761,174,662,692,512,382,292,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1525,Colombia,2004,208,732,824,743,725,564,737,205,624,647,513,361,331,426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1526,Colombia,2005,178,623,685,666,687,510,695,179,581,533,457,389,292,395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1527,Colombia,2006,219,709,713,737,785,573,766,210,603,653,520,377,314,469,128,73,111,97,122,96,139,125,73,94,83,52,51,104,67,144,218,238,131,104,155,56,100,130,127,73,61,96,,,,,,,,,,,,,, +1528,Colombia,2007,144,618,704,694,712,574,786,138,599,620,459,393,286,461,120,93,123,143,133,133,182,109,78,104,117,97,102,102,58,134,218,220,149,122,146,47,94,157,132,82,42,102,,,,,,,,,,,,,, +1529,Colombia,2008,136,666,736,666,749,610,797,133,580,608,441,384,284,406,126,106,153,136,130,129,154,137,88,117,109,94,87,143,95,169,257,257,155,137,185,72,118,151,138,109,80,103,,,,,,,,,,,,,, +1530,Colombia,2009,124,697,754,651,692,569,838,121,575,582,434,423,304,447,141,116,143,105,129,116,135,139,94,120,86,105,56,105,123,182,286,246,193,139,207,69,136,185,127,107,78,106,,,,,,,,,,,,,, +1531,Colombia,2010,148,602,765,540,710,610,814,146,560,576,428,374,284,471,161,88,130,121,127,158,216,144,79,115,72,70,100,115,69,169,252,242,178,154,184,51,117,172,139,91,78,89,,,,,,,,,,,,,, +1532,Colombia,2011,105,663,714,558,702,594,753,98,461,535,324,337,278,390,154,165,187,164,229,183,282,148,111,157,138,121,113,203,70,174,294,259,207,169,222,58,152,201,136,119,92,122,,,,,,,,,,,,,, +1533,Colombia,2012,92,613,744,497,653,616,740,79,519,555,376,355,252,432,163,118,208,175,174,203,264,160,87,155,127,117,117,211,70,205,288,284,211,154,209,57,133,177,131,129,82,134,,,,,,,,,,,,,, +1534,Colombia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,299,976,1436,990,1138,1081,1340,272,759,907,651,631,502,755 +1535,Comoros,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1536,Comoros,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1537,Comoros,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1538,Comoros,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1539,Comoros,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1540,Comoros,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1541,Comoros,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1542,Comoros,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1543,Comoros,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1544,Comoros,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1545,Comoros,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1546,Comoros,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1547,Comoros,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1548,Comoros,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1549,Comoros,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1550,Comoros,1995,0,18,13,9,7,8,4,1,13,9,8,6,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1551,Comoros,1996,1,19,16,12,4,8,8,1,7,12,6,4,10,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1552,Comoros,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1553,Comoros,1998,0,15,10,13,11,6,0,0,7,9,5,8,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1554,Comoros,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1555,Comoros,2000,0,18,7,14,9,3,4,1,9,6,12,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1556,Comoros,2001,0,15,11,10,11,3,5,2,10,11,8,4,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1557,Comoros,2002,0,10,9,8,4,3,3,0,11,6,7,6,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1558,Comoros,2003,1,7,12,5,1,3,3,0,5,7,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1559,Comoros,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1560,Comoros,2005,0,12,9,6,4,2,4,2,10,7,4,8,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1561,Comoros,2006,0,12,9,7,4,4,1,0,5,5,9,6,4,1,0,2,3,2,1,2,2,1,2,2,1,2,1,1,1,2,1,3,2,1,0,2,1,0,5,1,1,0,,,,,,,,,,,,,, +1562,Comoros,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1563,Comoros,2008,2,11,11,4,9,5,5,2,6,11,1,6,2,2,4,1,1,0,0,4,0,2,0,0,0,1,1,2,1,1,1,2,1,2,1,0,1,1,2,1,0,5,,,,,,,,,,,,,, +1564,Comoros,2009,1,9,12,12,11,6,3,1,8,4,4,2,2,1,0,0,2,0,2,1,1,2,3,0,0,2,1,1,4,4,1,2,1,1,1,1,2,1,2,1,2,4,,,,,,,,,,,,,, +1565,Comoros,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1566,Comoros,2011,0,10,13,9,5,2,5,2,8,4,2,1,0,1,1,1,0,1,0,1,0,1,1,1,1,2,1,1,1,7,0,5,2,2,0,6,1,3,3,1,0,1,,,,,,,,,,,,,, +1567,Comoros,2012,,9,15,8,4,6,6,1,5,7,5,1,1,3,1,1,4,4,3,3,1,,,1,1,2,,2,,3,2,4,1,,5,,1,3,1,,2,1,,,,,,,,,,,,,, +1568,Comoros,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,7,14,10,8,6,2,0,13,2,2,4,2,0 +1569,Congo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1570,Congo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1571,Congo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1572,Congo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1573,Congo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1574,Congo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1575,Congo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1576,Congo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1577,Congo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1578,Congo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1579,Congo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1580,Congo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1581,Congo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1582,Congo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1583,Congo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1584,Congo,1995,16,265,409,221,73,44,15,17,296,353,167,61,38,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1585,Congo,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1586,Congo,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1587,Congo,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1588,Congo,1999,17,272,407,229,99,39,27,25,297,348,143,83,24,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1589,Congo,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1590,Congo,2001,31,557,756,437,174,85,65,53,554,706,377,177,85,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1591,Congo,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1592,Congo,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1593,Congo,2004,9,602,887,451,251,78,32,38,310,800,373,156,88,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1594,Congo,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1595,Congo,2006,32,371,656,392,174,69,51,44,384,500,247,138,79,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1596,Congo,2007,28,351,635,482,233,78,63,45,411,608,334,153,71,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1597,Congo,2008,31,417,606,469,195,68,49,56,396,505,308,135,85,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1598,Congo,2009,50,474,644,376,220,87,56,65,426,493,292,127,76,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1599,Congo,2010,41,435,672,424,203,77,55,49,409,510,296,152,70,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1600,Congo,2011,58,453,705,462,222,80,76,72,408,463,332,200,88,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1601,Congo,2012,46,563,716,519,276,113,72,63,438,482,349,171,68,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1602,Congo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,502,803,572,246,101,60,46,452,475,300,156,84,71 +1603,Cook Islands,1980,0,2,0,1,1,0,0,0,3,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1604,Cook Islands,1981,0,0,1,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1605,Cook Islands,1982,0,0,0,1,2,3,1,0,2,0,3,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1606,Cook Islands,1983,0,2,1,0,0,1,1,0,4,0,3,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1607,Cook Islands,1984,0,0,1,0,1,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1608,Cook Islands,1985,1,0,0,1,2,1,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1609,Cook Islands,1986,0,1,0,0,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1610,Cook Islands,1987,0,0,0,1,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1611,Cook Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1612,Cook Islands,1989,0,0,0,0,0,0,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1613,Cook Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1614,Cook Islands,1991,0,0,0,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1615,Cook Islands,1992,0,0,0,0,1,2,0,0,0,0,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1616,Cook Islands,1993,0,0,0,0,2,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1617,Cook Islands,1994,0,0,0,0,0,3,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1618,Cook Islands,1995,0,0,0,0,0,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1619,Cook Islands,1996,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1620,Cook Islands,1997,0,0,0,0,0,1,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1621,Cook Islands,1998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1622,Cook Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1623,Cook Islands,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1624,Cook Islands,2001,0,0,0,0,0,1,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1625,Cook Islands,2002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1626,Cook Islands,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1627,Cook Islands,2004,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1628,Cook Islands,2005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1629,Cook Islands,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1630,Cook Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1631,Cook Islands,2008,,,,1,,1,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1632,Cook Islands,2009,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1633,Cook Islands,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1634,Cook Islands,2011,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1635,Cook Islands,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1636,Cook Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,1,1,0,0,0,0,0,0,0 +1637,Costa Rica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1638,Costa Rica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1639,Costa Rica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1640,Costa Rica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1641,Costa Rica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1642,Costa Rica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1643,Costa Rica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1644,Costa Rica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1645,Costa Rica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1646,Costa Rica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1647,Costa Rica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1648,Costa Rica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1649,Costa Rica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1650,Costa Rica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1651,Costa Rica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1652,Costa Rica,1995,1,17,38,24,19,23,22,2,17,15,11,7,9,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1653,Costa Rica,1996,0,11,11,19,15,19,15,0,4,9,7,3,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1654,Costa Rica,1997,37,30,82,69,52,35,45,31,28,45,40,30,24,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1655,Costa Rica,1998,30,53,78,67,53,43,36,23,19,43,47,27,17,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1656,Costa Rica,1999,4,28,63,89,70,51,73,10,23,42,37,32,33,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1657,Costa Rica,2000,14,31,53,62,39,28,49,13,21,33,24,20,23,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1658,Costa Rica,2001,2,26,53,72,50,29,36,1,18,31,20,16,16,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1659,Costa Rica,2002,3,26,45,44,43,19,38,6,13,24,19,14,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1660,Costa Rica,2003,3,33,47,32,39,28,33,4,25,24,21,30,11,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1661,Costa Rica,2004,1,49,62,45,36,29,43,5,35,29,34,11,18,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1662,Costa Rica,2005,1,43,38,53,34,20,34,1,21,31,18,16,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1663,Costa Rica,2006,1,27,36,29,34,25,24,4,27,24,20,15,8,11,12,1,10,6,7,7,9,9,5,5,8,8,3,2,2,10,16,13,5,8,5,3,4,7,7,5,6,4,,,,,,,,,,,,,, +1664,Costa Rica,2007,4,44,57,28,32,17,31,3,16,24,19,16,16,15,10,12,10,6,23,8,8,7,3,5,4,5,6,3,4,5,11,10,9,13,8,3,4,1,4,5,6,8,,,,,,,,,,,,,, +1665,Costa Rica,2008,3,24,39,31,38,17,29,2,19,31,20,14,6,14,12,4,6,8,9,4,11,20,3,,4,5,3,4,2,12,12,8,10,9,13,4,9,3,10,8,5,2,,,,,,,,,,,,,, +1666,Costa Rica,2009,,26,49,27,26,24,29,,27,22,12,10,8,11,16,6,4,15,6,6,15,20,3,7,4,6,2,2,3,8,11,16,12,1,8,4,4,8,4,3,5,2,,,,,,,,,,,,,, +1667,Costa Rica,2010,2,18,48,33,27,22,28,0,18,20,12,14,15,8,12,7,4,8,5,9,12,13,4,1,2,3,2,7,2,8,12,13,15,8,18,1,0,9,6,3,6,7,,,,,,,,,,,,,, +1668,Costa Rica,2011,0,23,24,29,33,22,36,2,18,27,23,19,12,17,18,7,2,9,8,9,25,15,10,5,4,9,1,6,4,4,6,11,11,4,11,3,3,6,5,7,4,6,,,,,,,,,,,,,, +1669,Costa Rica,2012,2,18,33,28,34,41,23,2,11,24,11,12,8,5,13,5,6,9,6,7,9,9,2,5,12,6,5,3,4,3,19,22,9,8,10,3,5,8,3,4,2,2,,,,,,,,,,,,,, +1670,Costa Rica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,28,41,37,37,47,46,9,15,35,23,13,11,42 +1671,Cote d'Ivoire,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1672,Cote d'Ivoire,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1673,Cote d'Ivoire,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1674,Cote d'Ivoire,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1675,Cote d'Ivoire,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1676,Cote d'Ivoire,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1677,Cote d'Ivoire,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1678,Cote d'Ivoire,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1679,Cote d'Ivoire,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1680,Cote d'Ivoire,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1681,Cote d'Ivoire,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1682,Cote d'Ivoire,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1683,Cote d'Ivoire,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1684,Cote d'Ivoire,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1685,Cote d'Ivoire,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1686,Cote d'Ivoire,1995,41,989,2092,1344,759,283,130,99,810,813,497,273,105,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1687,Cote d'Ivoire,1996,118,903,1670,1107,535,262,178,139,803,836,409,194,158,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1688,Cote d'Ivoire,1997,87,1140,1850,1326,662,398,260,118,955,1123,548,291,184,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1689,Cote d'Ivoire,1998,72,1173,1747,1471,795,433,273,104,955,1087,703,347,126,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1690,Cote d'Ivoire,1999,98,1069,1794,1240,629,378,251,132,1022,1137,644,260,186,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1691,Cote d'Ivoire,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1692,Cote d'Ivoire,2001,108,1205,1818,1378,686,393,302,127,1111,1345,735,342,239,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1693,Cote d'Ivoire,2002,102,1271,2194,1490,833,385,307,135,1151,1620,827,358,210,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1694,Cote d'Ivoire,2003,116,1232,2075,1517,818,416,366,154,1193,1617,878,443,222,151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1695,Cote d'Ivoire,2004,114,1418,2323,1530,875,474,387,160,1266,1734,916,472,273,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1696,Cote d'Ivoire,2005,128,1346,2449,1606,888,422,385,193,1280,1756,989,528,232,201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1697,Cote d'Ivoire,2006,171,1467,2476,1614,915,564,368,191,1327,1776,1069,445,275,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1698,Cote d'Ivoire,2007,173,1576,2705,1817,981,532,429,225,1349,1973,1126,596,354,235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1699,Cote d'Ivoire,2008,261,1764,2944,1842,1121,649,482,277,1477,2085,1171,641,326,254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1700,Cote d'Ivoire,2009,199,1758,2886,1762,1048,527,354,237,1473,1913,1073,559,301,210,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1701,Cote d'Ivoire,2010,159,1751,2858,1882,1010,505,375,246,1431,1819,1051,531,304,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1702,Cote d'Ivoire,2011,189,1743,3043,1852,1072,601,348,244,1358,1838,1044,560,301,223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1703,Cote d'Ivoire,2012,163,1743,3087,2017,1032,552,430,204,1306,1870,1120,536,337,263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1704,Cote d'Ivoire,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,148,1770,3270,2161,1134,588,420,242,1416,1827,1111,560,314,280 +1705,Croatia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1706,Croatia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1707,Croatia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1708,Croatia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1709,Croatia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1710,Croatia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1711,Croatia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1712,Croatia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1713,Croatia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1714,Croatia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1715,Croatia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1716,Croatia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1717,Croatia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1718,Croatia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1719,Croatia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1720,Croatia,1995,6,38,97,210,132,178,141,10,50,57,57,38,60,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1721,Croatia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1722,Croatia,1997,12,65,88,180,124,118,117,13,43,43,54,28,52,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1723,Croatia,1998,14,48,81,177,176,106,129,19,44,64,54,38,48,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1724,Croatia,1999,1,29,45,83,93,46,45,2,14,18,15,15,16,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1725,Croatia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1726,Croatia,2001,0,32,64,186,126,88,64,2,32,36,54,34,28,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1727,Croatia,2002,1,18,40,75,77,32,43,0,18,18,20,19,16,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1728,Croatia,2003,0,15,27,68,80,42,60,1,14,19,18,10,15,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1729,Croatia,2004,1,18,32,68,81,39,53,3,18,17,11,12,7,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1730,Croatia,2005,1,24,27,48,72,47,34,1,12,18,15,11,6,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1731,Croatia,2006,0,20,23,58,69,30,48,2,16,26,16,22,7,59,10,21,23,41,75,54,99,12,9,19,31,15,21,89,2,7,3,5,18,6,15,2,5,1,7,12,9,21,,,,,,,,,,,,,, +1732,Croatia,2007,,,,,,,,,,,,,,,0,1,2,7,13,8,15,0,2,3,2,4,1,11,0,0,0,2,1,0,2,0,0,0,0,0,0,2,,,,,,,,,,,,,, +1733,Croatia,2008,0,15,25,34,63,32,47,1,11,16,13,15,12,44,13,17,18,40,62,50,88,10,16,23,17,21,26,101,2,4,4,10,7,6,19,1,1,3,3,13,3,25,,,,,,,,,,,,,, +1734,Croatia,2009,0,14,25,41,61,34,38,0,12,8,14,5,10,40,13,21,17,28,54,40,76,11,13,18,12,16,18,73,1,0,6,5,7,8,16,0,1,1,4,6,5,21,,,,,,,,,,,,,, +1735,Croatia,2010,0,10,19,18,38,25,24,1,3,8,4,2,1,30,7,8,14,22,47,56,80,10,13,15,21,15,14,60,0,3,5,5,6,7,12,0,0,4,6,9,6,24,,,,,,,,,,,,,, +1736,Croatia,2011,0,12,5,20,31,31,21,0,12,14,14,8,7,26,4,12,15,30,40,53,45,7,10,10,16,14,24,63,0,0,1,0,6,5,14,2,2,5,2,7,9,22,,,,,,,,,,,,,, +1737,Croatia,2012,0,7,10,18,24,29,14,0,0,10,2,2,3,21,5,9,15,19,41,57,49,5,4,16,19,14,23,60,2,2,3,7,5,5,11,0,2,1,3,4,6,12,,,,,,,,,,,,,, +1738,Croatia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,19,29,32,66,74,93,3,11,18,17,32,25,91 +1739,Cuba,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1740,Cuba,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1741,Cuba,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1742,Cuba,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1743,Cuba,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1744,Cuba,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1745,Cuba,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1746,Cuba,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1747,Cuba,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1748,Cuba,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1749,Cuba,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1750,Cuba,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1751,Cuba,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1752,Cuba,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1753,Cuba,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1754,Cuba,1995,2,59,118,83,75,75,156,1,17,52,29,39,48,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1755,Cuba,1996,0,54,136,86,93,84,138,1,29,44,20,45,42,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1756,Cuba,1997,0,69,151,83,63,77,116,2,16,49,33,32,28,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1757,Cuba,1998,0,60,140,109,75,53,102,1,17,48,23,30,31,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1758,Cuba,1999,1,55,163,97,68,72,100,2,15,37,27,20,28,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1759,Cuba,2000,0,71,167,90,74,55,75,2,9,22,26,22,23,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1760,Cuba,2001,0,36,136,87,39,54,67,1,24,17,22,17,20,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1761,Cuba,2002,0,21,104,83,67,45,77,3,15,28,22,21,20,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1762,Cuba,2003,2,23,90,91,62,51,78,0,11,14,20,23,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1763,Cuba,2004,0,17,68,95,63,45,50,0,16,20,15,16,20,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1764,Cuba,2005,2,20,73,90,50,58,51,2,14,17,26,13,22,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1765,Cuba,2006,,22,73,93,50,47,50,,8,18,22,12,14,23,2,4,20,31,27,32,24,2,4,4,8,6,14,10,1,6,24,23,10,7,3,2,4,3,5,4,,4,,,,,,,,,,,,,, +1766,Cuba,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1767,Cuba,2008,2,30,66,108,67,59,53,3,11,14,22,18,11,34,9,8,18,30,15,17,19,4,5,4,8,10,7,13,1,11,20,23,14,9,6,0,3,2,6,3,4,4,,,,,,,,,,,,,, +1768,Cuba,2009,,16,57,72,70,42,65,,10,13,16,13,14,30,7,9,14,21,23,17,19,5,3,2,6,7,8,9,1,13,18,14,9,4,10,,2,5,5,5,3,2,,,,,,,,,,,,,, +1769,Cuba,2010,3,17,61,89,78,53,57,1,15,15,14,16,17,26,11,5,17,29,30,29,39,5,2,2,6,11,10,16,0,5,16,19,11,15,4,1,6,2,8,3,4,4,,,,,,,,,,,,,, +1770,Cuba,2011,2,14,51,83,86,50,48,1,6,18,18,17,17,26,5,5,19,20,37,25,49,4,3,6,10,6,5,25,1,5,13,18,11,3,6,0,4,4,4,9,5,3,,,,,,,,,,,,,, +1771,Cuba,2012,1,15,45,83,70,45,36,0,13,12,16,12,13,13,6,4,18,30,32,23,26,8,4,4,9,7,14,15,0,13,18,13,14,10,12,3,3,6,4,6,2,8,,,,,,,,,,,,,, +1772,Cuba,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,23,82,136,145,89,94,4,15,31,30,31,28,44 +1773,Curacao,2010,0,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1774,Curacao,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1775,Curacao,2012,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1776,Curacao,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,1,0,0,0,0,1,0,0,0 +1777,Cyprus,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1778,Cyprus,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1779,Cyprus,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1780,Cyprus,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1781,Cyprus,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1782,Cyprus,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1783,Cyprus,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1784,Cyprus,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1785,Cyprus,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1786,Cyprus,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1787,Cyprus,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1788,Cyprus,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1789,Cyprus,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1790,Cyprus,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1791,Cyprus,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1792,Cyprus,1995,0,1,1,0,1,1,2,0,1,1,1,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1793,Cyprus,1996,0,0,0,0,0,1,0,0,2,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1794,Cyprus,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1795,Cyprus,1998,0,0,1,0,0,0,1,0,1,3,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1796,Cyprus,1999,5,1,6,2,2,10,0,4,1,2,3,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1797,Cyprus,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1798,Cyprus,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1799,Cyprus,2002,0,2,1,1,1,0,2,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1800,Cyprus,2003,0,1,4,3,0,0,1,0,0,2,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1801,Cyprus,2004,0,3,3,0,1,1,1,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1802,Cyprus,2005,0,3,1,1,1,0,1,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1803,Cyprus,2006,0,0,1,1,0,1,0,0,2,3,0,0,0,0,0,0,0,0,0,2,2,2,4,5,6,1,0,0,1,0,0,0,0,0,1,0,0,2,1,0,0,1,,,,,,,,,,,,,, +1804,Cyprus,2007,0,2,1,0,0,0,0,0,1,3,1,0,0,0,0,6,6,1,1,2,,0,3,5,1,0,,,0,0,1,0,0,0,0,1,0,3,0,1,0,0,,,,,,,,,,,,,, +1805,Cyprus,2008,0,1,0,0,1,0,0,0,1,2,1,0,0,0,1,2,7,3,2,0,0,0,3,6,2,1,0,1,1,0,1,0,0,0,1,1,0,2,1,0,0,0,,,,,,,,,,,,,, +1806,Cyprus,2009,0,1,4,0,1,1,1,0,1,2,2,0,0,0,0,2,3,1,0,1,2,0,2,1,2,0,0,1,1,1,2,0,0,0,1,0,0,3,3,1,0,0,,,,,,,,,,,,,, +1807,Cyprus,2010,0,2,1,0,0,0,0,0,0,3,1,0,0,0,2,4,2,0,0,1,0,0,0,2,0,1,0,0,0,0,3,0,1,1,0,0,0,5,2,0,0,1,,,,,,,,,,,,,, +1808,Cyprus,2011,0,0,3,4,0,0,1,0,1,0,2,0,0,0,0,1,1,0,0,1,3,0,2,3,2,0,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,,,,,,,,,,,,,, +1809,Cyprus,2012,0,0,4,2,1,1,0,0,3,2,1,0,0,1,1,2,6,0,5,4,0,0,2,4,1,2,0,1,0,0,1,0,2,1,1,0,0,4,0,0,0,2,,,,,,,,,,,,,, +1810,Cyprus,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,3,6,4,2,4,3,0,1,9,6,1,0,2 +1811,Czech Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1812,Czech Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1813,Czech Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1814,Czech Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1815,Czech Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1816,Czech Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1817,Czech Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1818,Czech Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1819,Czech Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1820,Czech Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1821,Czech Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1822,Czech Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1823,Czech Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1824,Czech Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1825,Czech Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1826,Czech Republic,1995,2,10,22,83,88,53,90,0,9,11,20,13,19,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1827,Czech Republic,1996,1,10,40,77,121,66,90,1,10,17,11,21,20,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1828,Czech Republic,1997,0,5,25,71,94,64,83,0,12,8,12,17,18,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1829,Czech Republic,1998,0,7,37,88,104,67,95,1,6,17,12,18,11,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1830,Czech Republic,1999,2,13,27,62,98,45,75,1,5,14,18,15,3,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1831,Czech Republic,2000,0,7,31,52,89,61,59,0,15,13,9,10,7,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1832,Czech Republic,2001,0,18,39,47,85,43,50,0,10,17,8,11,9,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1833,Czech Republic,2002,0,14,28,39,89,38,40,0,6,10,8,8,6,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1834,Czech Republic,2003,0,11,28,42,67,48,50,0,9,15,15,12,7,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1835,Czech Republic,2004,0,10,28,36,71,30,35,0,11,17,9,13,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1836,Czech Republic,2005,0,8,24,57,55,45,46,0,3,14,16,7,5,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1837,Czech Republic,2006,0,6,19,39,56,38,25,0,4,12,12,10,6,30,0,3,31,36,59,73,89,2,7,18,13,25,25,99,1,4,9,10,13,23,51,1,6,2,6,14,14,50,,,,,,,,,,,,,, +1838,Czech Republic,2007,0,14,26,35,63,39,29,0,6,8,5,9,5,28,0,11,32,38,58,57,82,2,3,16,13,16,20,59,1,3,6,4,7,14,28,1,3,6,3,2,11,27,,,,,,,,,,,,,, +1839,Czech Republic,2008,0,7,29,39,44,35,31,0,4,14,8,5,10,23,0,21,34,36,48,57,67,0,14,18,21,22,17,77,2,4,13,7,6,14,20,2,1,5,6,2,10,34,,,,,,,,,,,,,, +1840,Czech Republic,2009,0,11,29,25,39,44,29,0,3,6,7,5,4,15,2,12,19,17,38,40,76,1,7,18,10,17,10,51,2,2,3,4,7,7,20,2,3,8,5,6,6,22,,,,,,,,,,,,,, +1841,Czech Republic,2010,0,12,19,36,29,29,19,0,6,10,11,7,2,20,3,5,32,28,54,40,54,0,3,17,12,8,21,48,0,1,5,6,11,9,18,0,4,3,2,1,4,30,,,,,,,,,,,,,, +1842,Czech Republic,2011,0,10,29,20,38,28,24,0,4,9,4,4,3,15,3,7,23,33,38,49,56,2,6,7,11,18,9,44,1,6,7,2,6,9,13,0,0,0,3,3,7,17,,,,,,,,,,,,,, +1843,Czech Republic,2012,0,7,21,24,42,33,22,1,3,11,8,3,7,26,1,6,13,26,26,47,48,2,5,12,7,11,13,51,1,0,6,3,10,9,23,0,2,10,3,4,4,14,,,,,,,,,,,,,, +1844,Czech Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,13,37,47,59,75,83,2,17,19,19,16,16,65 +1845,Democratic People's Republic of Korea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1846,Democratic People's Republic of Korea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1847,Democratic People's Republic of Korea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1848,Democratic People's Republic of Korea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1849,Democratic People's Republic of Korea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1850,Democratic People's Republic of Korea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1851,Democratic People's Republic of Korea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1852,Democratic People's Republic of Korea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1853,Democratic People's Republic of Korea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1854,Democratic People's Republic of Korea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1855,Democratic People's Republic of Korea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1856,Democratic People's Republic of Korea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1857,Democratic People's Republic of Korea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1858,Democratic People's Republic of Korea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1859,Democratic People's Republic of Korea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1860,Democratic People's Republic of Korea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1861,Democratic People's Republic of Korea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1862,Democratic People's Republic of Korea,1997,5,375,430,640,620,430,240,2,205,295,210,205,175,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1863,Democratic People's Republic of Korea,1998,0,21,36,34,36,31,25,0,11,24,24,25,20,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1864,Democratic People's Republic of Korea,1999,14,294,438,401,294,151,30,10,162,235,327,237,68,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1865,Democratic People's Republic of Korea,2000,293,928,1508,2927,2519,1167,651,167,683,1121,2004,1524,591,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1866,Democratic People's Republic of Korea,2001,207,1081,1593,2276,2208,1149,606,123,690,1132,1354,1120,553,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1867,Democratic People's Republic of Korea,2002,199,1444,2282,2584,2618,1235,745,140,1049,1720,1642,1505,892,521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1868,Democratic People's Republic of Korea,2003,86,1154,2279,2678,2469,1412,634,93,823,1623,1607,1395,769,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1869,Democratic People's Republic of Korea,2004,175,1284,2559,2991,2858,1464,460,118,887,1577,1640,1473,724,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1870,Democratic People's Republic of Korea,2005,167,1409,2422,2688,2040,1185,485,166,1127,1756,1890,1381,764,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1871,Democratic People's Republic of Korea,2006,157,1498,2393,3219,2301,1479,591,87,725,1373,2051,1373,791,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1872,Democratic People's Republic of Korea,2007,353,1947,2748,3717,2831,2093,674,406,1233,1682,2672,1723,1056,440,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1873,Democratic People's Republic of Korea,2008,441,2341,3320,4263,3988,2704,948,479,1259,1792,2428,2282,1177,604,1188,2506,3858,4566,3800,2533,1037,1102,1737,2089,3067,2058,1334,569,387,889,1386,1485,1218,674,204,319,786,1048,1027,846,513,132,,,,,,,,,,,,,, +1874,Democratic People's Republic of Korea,2009,364,2359,3607,4211,3927,2879,1061,474,1408,2067,2660,2370,1479,500,1277,2358,3734,4324,3931,2756,1277,1006,1796,2370,2951,2438,1542,731,417,1143,1476,1580,1304,686,348,381,902,1100,1205,942,475,273,,,,,,,,,,,,,, +1875,Democratic People's Republic of Korea,2010,447,2524,4046,4849,4061,2629,1153,407,1493,2461,2910,2276,1347,637,970,2712,4412,5382,4811,2785,1249,787,1643,2774,3487,2838,1725,710,695,1096,1618,1857,1533,867,401,598,776,1089,1324,992,571,298,,,,,,,,,,,,,, +1876,Democratic People's Republic of Korea,2011,314,2218,4066,5493,4542,2474,1024,227,1390,2264,3093,2409,1271,494,1138,2843,4535,5944,4968,2899,1217,876,1818,2856,3528,2727,1481,627,949,1381,2017,2314,1775,975,452,935,1049,1347,1514,1203,631,286,,,,,,,,,,,,,, +1877,Democratic People's Republic of Korea,2012,293,2439,4015,5055,4373,2699,1150,227,1447,2475,3005,2623,1527,576,988,2880,4531,5484,4498,2726,1104,821,1790,2792,3343,2724,1587,691,1020,1473,2187,2357,1765,985,482,980,1043,1452,1513,1135,614,315,,,,,,,,,,,,,, +1878,Democratic People's Republic of Korea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2874,7057,11239,13618,11382,6674,2653,2365,4717,7094,8611,6916,3762,1629 +1879,Democratic Republic of the Congo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1880,Democratic Republic of the Congo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1881,Democratic Republic of the Congo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1882,Democratic Republic of the Congo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1883,Democratic Republic of the Congo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1884,Democratic Republic of the Congo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1885,Democratic Republic of the Congo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1886,Democratic Republic of the Congo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1887,Democratic Republic of the Congo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1888,Democratic Republic of the Congo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1889,Democratic Republic of the Congo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1890,Democratic Republic of the Congo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1891,Democratic Republic of the Congo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1892,Democratic Republic of the Congo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1893,Democratic Republic of the Congo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1894,Democratic Republic of the Congo,1995,373,1572,2382,1890,1184,634,289,331,1223,1532,1232,863,427,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1895,Democratic Republic of the Congo,1996,228,1040,1627,1492,998,548,285,292,1153,1528,1142,728,377,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1896,Democratic Republic of the Congo,1997,259,1401,1996,1599,996,614,276,321,1376,1874,1271,723,386,150,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1897,Democratic Republic of the Congo,1998,455,3684,5073,3578,2002,997,518,651,4074,4536,2716,1295,722,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1898,Democratic Republic of the Congo,1999,474,4061,5886,4191,2250,1279,626,708,4472,4991,3117,1725,836,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1899,Democratic Republic of the Congo,2000,485,4048,5833,4151,2549,1295,602,718,4422,5146,3309,1724,855,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1900,Democratic Republic of the Congo,2001,581,4651,6794,4817,2876,1384,724,842,4922,5586,3704,2057,1042,470,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1901,Democratic Republic of the Congo,2002,649,4965,7414,4994,3065,1388,791,874,5378,6230,3939,2262,1055,476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1902,Democratic Republic of the Congo,2003,854,5885,8427,6193,3776,1836,1047,1233,6630,7711,4826,2866,1457,592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1903,Democratic Republic of the Congo,2004,1195,7007,9467,7114,4442,2376,1229,1679,7630,8540,5529,3413,1850,721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1904,Democratic Republic of the Congo,2005,1321,6675,9808,7577,5022,2637,1499,1695,7570,8501,5832,3898,2054,951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1905,Democratic Republic of the Congo,2006,1122,6391,9486,7321,5011,2657,1504,1517,7236,8522,5621,3762,2019,975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1906,Democratic Republic of the Congo,2007,1343,6485,9548,7925,5341,2801,1752,1842,7130,8415,5939,4127,2352,1099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1907,Democratic Republic of the Congo,2008,1515,6497,9988,8552,5756,3131,1686,1828,7304,8995,6393,4104,2516,1212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1908,Democratic Republic of the Congo,2009,1453,6587,9964,8475,6155,3393,1821,1773,7091,8753,6477,4556,2655,1336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1909,Democratic Republic of the Congo,2010,1707,6859,10412,9134,6464,3641,1907,1987,7199,9120,6721,4579,2612,1311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1910,Democratic Republic of the Congo,2011,1579,6640,9872,8932,6415,3584,1911,1800,6802,8742,6541,4537,2671,1295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1911,Democratic Republic of the Congo,2012,1439,6612,10274,9361,6612,3698,1941,1699,6598,8406,6471,4131,2625,1257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1912,Democratic Republic of the Congo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,6776,10218,9280,6587,3841,2016,1706,6376,8352,6472,4402,2551,1263 +1913,Denmark,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1914,Denmark,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1915,Denmark,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1916,Denmark,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1917,Denmark,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1918,Denmark,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1919,Denmark,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1920,Denmark,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1921,Denmark,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1922,Denmark,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1923,Denmark,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1924,Denmark,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1925,Denmark,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1926,Denmark,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1927,Denmark,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1928,Denmark,1995,0,7,16,28,18,9,11,2,7,13,8,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1929,Denmark,1996,0,4,16,13,13,8,6,0,5,9,8,4,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1930,Denmark,1997,1,11,19,23,16,6,6,1,6,8,2,5,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1931,Denmark,1998,0,7,20,21,18,7,9,1,6,16,8,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1932,Denmark,1999,4,9,29,23,21,8,9,1,11,18,11,7,8,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1933,Denmark,2000,5,10,20,24,16,11,14,5,16,15,14,6,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1934,Denmark,2001,1,10,15,20,15,4,9,5,5,12,13,7,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1935,Denmark,2002,2,11,8,25,14,6,9,1,14,17,11,10,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1936,Denmark,2003,3,11,20,23,22,12,9,0,6,13,12,6,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1937,Denmark,2004,1,6,12,17,27,15,12,2,10,16,10,9,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1938,Denmark,2005,0,12,12,18,23,9,7,2,11,5,13,9,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1939,Denmark,2006,0,8,13,15,27,10,8,1,6,12,9,5,5,4,9,14,8,17,13,6,8,4,9,7,13,7,4,4,3,12,9,10,6,1,7,5,8,7,10,6,2,9,,,,,,,,,,,,,, +1940,Denmark,2007,0,6,12,20,29,16,6,1,8,12,8,4,5,8,9,13,14,10,17,6,8,8,10,13,6,7,10,6,1,10,10,10,5,3,2,6,6,16,4,4,2,4,,,,,,,,,,,,,, +1941,Denmark,2008,0,8,15,9,24,10,8,2,5,7,5,8,4,1,7,12,13,16,12,9,11,9,7,4,9,13,6,12,2,7,12,9,5,4,5,1,3,13,12,4,2,4,,,,,,,,,,,,,, +1942,Denmark,2009,0,7,7,13,15,12,5,2,7,16,7,8,2,1,10,7,9,17,18,6,11,5,8,12,4,9,3,6,0,6,13,4,5,1,3,4,8,5,8,3,2,1,,,,,,,,,,,,,, +1943,Denmark,2010,0,8,22,10,13,16,2,0,4,6,15,8,9,4,5,5,14,12,11,6,5,3,3,9,11,14,3,5,0,2,9,5,2,1,3,1,0,5,5,2,2,4,,,,,,,,,,,,,, +1944,Denmark,2011,0,5,14,18,32,16,4,0,5,5,9,7,2,7,2,4,11,9,13,5,10,5,4,4,7,11,8,7,2,3,6,8,3,2,0,1,4,7,6,1,0,2,,,,,,,,,,,,,, +1945,Denmark,2012,0,7,9,25,19,15,6,3,2,7,3,7,3,1,6,10,17,10,27,17,11,7,7,11,5,10,11,7,0,4,12,8,4,8,1,1,6,13,7,4,5,1,,,,,,,,,,,,,, +1946,Denmark,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,30,42,37,51,26,17,8,9,27,17,26,20,6 +1947,Djibouti,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1948,Djibouti,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1949,Djibouti,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1950,Djibouti,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1951,Djibouti,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1952,Djibouti,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1953,Djibouti,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1954,Djibouti,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1955,Djibouti,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1956,Djibouti,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1957,Djibouti,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1958,Djibouti,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1959,Djibouti,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1960,Djibouti,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1961,Djibouti,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1962,Djibouti,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1963,Djibouti,1996,30,421,429,139,77,52,27,31,247,212,67,38,21,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1964,Djibouti,1997,52,428,442,167,115,66,23,51,202,225,75,38,17,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1965,Djibouti,1998,23,348,396,191,81,57,23,28,208,197,76,43,17,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1966,Djibouti,1999,25,348,371,159,87,67,22,20,158,168,84,38,20,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1967,Djibouti,2000,17,302,347,139,67,60,42,12,147,156,47,31,17,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1968,Djibouti,2001,17,267,331,125,65,51,23,17,156,134,59,44,15,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1969,Djibouti,2002,20,256,320,124,58,55,25,18,142,136,48,28,19,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1970,Djibouti,2003,10,222,288,132,76,42,24,19,127,123,55,38,28,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1971,Djibouti,2004,19,217,225,142,68,38,28,16,111,115,49,23,25,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1972,Djibouti,2005,18,220,252,119,62,47,29,23,123,117,66,23,13,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1973,Djibouti,2006,14,225,246,165,63,33,20,24,117,129,59,35,18,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1974,Djibouti,2007,14,241,264,142,83,44,23,8,129,131,62,35,14,18,5,49,31,18,11,5,10,6,42,44,36,11,13,8,260,143,134,80,33,20,12,229,124,130,72,52,24,16,,,,,,,,,,,,,, +1975,Djibouti,2008,17,232,275,180,93,56,46,22,138,159,79,53,15,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1976,Djibouti,2009,18,230,295,183,90,49,24,18,139,154,85,52,29,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1977,Djibouti,2010,28,211,243,151,67,49,20,20,104,120,89,36,24,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1978,Djibouti,2011,35,212,265,149,97,45,33,31,139,118,104,57,30,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1979,Djibouti,2012,22,208,240,147,81,47,26,20,132,94,73,36,26,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1980,Djibouti,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,202,215,137,73,46,35,21,130,113,55,59,23,17 +1981,Dominica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1982,Dominica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1983,Dominica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1984,Dominica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1985,Dominica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1986,Dominica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1987,Dominica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1988,Dominica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1989,Dominica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1990,Dominica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1991,Dominica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1992,Dominica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1993,Dominica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1994,Dominica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1995,Dominica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1996,Dominica,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1997,Dominica,1996,0,0,1,2,1,1,0,0,0,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1998,Dominica,1997,0,0,0,0,1,1,1,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1999,Dominica,1998,0,0,0,0,1,0,0,0,2,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2000,Dominica,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2001,Dominica,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2002,Dominica,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2003,Dominica,2002,,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2004,Dominica,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2005,Dominica,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2006,Dominica,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2007,Dominica,2006,0,0,1,1,0,1,1,0,1,0,1,1,1,0,0,0,0,2,0,0,2,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2008,Dominica,2007,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2009,Dominica,2008,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2010,Dominica,2009,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2011,Dominica,2010,0,0,0,0,0,3,1,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2012,Dominica,2011,0,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2013,Dominica,2012,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2014,Dominica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,1,0,0,0,0,0,0,0,0,0 +2015,Dominican Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2016,Dominican Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2017,Dominican Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2018,Dominican Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2019,Dominican Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2020,Dominican Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2021,Dominican Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2022,Dominican Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2023,Dominican Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2024,Dominican Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2025,Dominican Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2026,Dominican Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2027,Dominican Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2028,Dominican Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2029,Dominican Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2030,Dominican Republic,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2031,Dominican Republic,1996,17,231,262,128,79,45,42,21,178,147,61,44,23,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2032,Dominican Republic,1997,76,450,471,246,145,111,81,53,314,329,171,102,77,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2033,Dominican Republic,1998,62,340,416,184,130,114,50,60,265,247,141,79,73,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2034,Dominican Republic,1999,90,507,485,356,238,166,183,99,363,359,226,160,121,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2035,Dominican Republic,2000,73,410,481,344,173,125,113,65,317,325,212,115,79,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2036,Dominican Republic,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2037,Dominican Republic,2002,39,295,417,270,145,86,71,35,251,241,137,81,49,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2038,Dominican Republic,2003,52,364,518,331,194,116,112,48,301,288,211,116,82,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2039,Dominican Republic,2004,45,391,502,363,180,122,104,39,301,288,177,104,60,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2040,Dominican Republic,2005,43,399,483,386,228,123,105,57,339,332,209,119,72,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2041,Dominican Republic,2006,25,342,480,340,207,111,92,38,287,320,189,106,63,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2042,Dominican Republic,2007,23,290,403,362,209,108,85,29,249,242,174,103,53,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2043,Dominican Republic,2008,16,322,398,337,198,122,105,34,288,272,163,96,55,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2044,Dominican Republic,2009,30,344,428,284,217,116,88,28,278,271,160,92,49,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2045,Dominican Republic,2010,29,276,346,292,170,112,85,43,239,207,142,102,54,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2046,Dominican Republic,2011,20,333,406,318,200,133,112,30,242,274,159,103,66,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2047,Dominican Republic,2012,15,317,489,315,197,126,111,26,230,260,148,119,62,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2048,Dominican Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,388,477,333,244,158,113,30,246,240,166,130,66,62 +2049,Ecuador,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2050,Ecuador,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2051,Ecuador,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2052,Ecuador,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2053,Ecuador,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2054,Ecuador,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2055,Ecuador,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2056,Ecuador,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2057,Ecuador,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2058,Ecuador,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2059,Ecuador,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2060,Ecuador,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2061,Ecuador,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2062,Ecuador,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2063,Ecuador,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2064,Ecuador,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2065,Ecuador,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2066,Ecuador,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2067,Ecuador,1998,169,402,286,58,,,,44,290,175,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2068,Ecuador,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2069,Ecuador,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2070,Ecuador,2001,39,673,832,269,202,251,116,37,591,584,267,180,208,190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2071,Ecuador,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2072,Ecuador,2003,18,310,266,194,125,75,96,24,217,140,94,56,44,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2073,Ecuador,2004,84,732,537,563,265,315,153,108,522,342,268,170,161,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2074,Ecuador,2005,48,446,468,308,237,150,159,48,329,305,199,139,85,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2075,Ecuador,2006,32,479,496,340,259,181,183,46,321,315,183,143,92,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2076,Ecuador,2007,42,555,486,367,282,178,227,57,365,335,198,133,100,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2077,Ecuador,2008,32,507,518,372,278,187,202,56,334,331,185,126,107,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2078,Ecuador,2009,40,485,519,296,297,212,230,49,342,312,162,141,99,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2079,Ecuador,2010,32,499,529,314,309,227,246,52,298,308,178,158,113,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2080,Ecuador,2011,45,481,547,364,323,272,232,49,340,311,177,141,118,121,46,42,59,40,23,17,23,31,18,25,10,13,21,12,39,77,131,107,58,52,58,20,50,78,39,29,31,39,,,,,,,,,,,,,, +2081,Ecuador,2012,37,506,567,387,359,291,333,59,333,337,184,164,146,153,35,28,41,20,25,18,19,24,17,15,7,9,12,15,29,102,126,87,61,50,50,19,72,80,55,40,43,42,,,,,,,,,,,,,, +2082,Ecuador,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,115,686,825,545,540,353,385,119,440,387,268,239,176,199 +2083,Egypt,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2084,Egypt,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2085,Egypt,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2086,Egypt,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2087,Egypt,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2088,Egypt,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2089,Egypt,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2090,Egypt,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2091,Egypt,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2092,Egypt,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2093,Egypt,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2094,Egypt,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2095,Egypt,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2096,Egypt,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2097,Egypt,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2098,Egypt,1995,223,542,665,460,408,463,160,134,288,367,274,256,160,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2099,Egypt,1996,58,714,1056,703,485,308,154,64,52,420,259,229,89,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2100,Egypt,1997,50,737,1033,767,465,291,142,64,525,388,264,200,114,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2101,Egypt,1998,45,761,943,761,475,286,174,60,489,405,291,204,139,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2102,Egypt,1999,31,708,889,691,458,288,170,57,485,347,248,193,112,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2103,Egypt,2000,21,641,827,667,476,307,158,55,457,343,257,211,112,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2104,Egypt,2001,34,586,879,614,453,268,159,57,438,396,265,207,109,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2105,Egypt,2002,39,662,774,682,576,303,171,77,424,365,245,254,145,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2106,Egypt,2003,42,586,814,675,631,404,195,57,463,338,268,282,175,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2107,Egypt,2004,14,563,763,588,502,502,204,44,491,317,233,233,111,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2108,Egypt,2005,25,524,606,421,414,243,123,48,431,298,205,218,132,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2109,Egypt,2006,54,542,728,563,587,340,136,64,470,367,338,279,155,87,212,223,260,142,122,105,116,127,224,171,182,132,68,42,184,313,338,204,119,111,54,123,299,323,322,183,118,32,,,,,,,,,,,,,, +2110,Egypt,2007,35,588,853,629,643,359,214,25,500,325,245,225,173,72,124,150,193,157,137,96,86,85,158,157,129,123,73,35,159,355,377,263,171,100,69,141,337,312,276,153,106,50,,,,,,,,,,,,,, +2111,Egypt,2008,13,581,640,807,791,431,242,7,382,412,308,195,169,113,83,118,129,132,112,71,59,70,110,83,71,66,56,23,186,266,291,298,252,159,134,158,249,186,161,149,125,51,,,,,,,,,,,,,, +2112,Egypt,2009,17,536,599,797,885,417,271,10,317,369,456,210,191,126,90,109,139,116,102,70,62,61,115,113,94,89,53,25,157,353,374,265,168,99,68,139,334,309,275,154,106,49,,,,,,,,,,,,,, +2113,Egypt,2010,9,358,617,783,725,407,217,8,199,352,423,292,192,97,85,111,112,115,99,72,64,62,58,115,95,91,54,26,176,376,399,278,182,106,73,150,357,331,293,162,112,53,,,,,,,,,,,,,, +2114,Egypt,2011,23,382,611,596,715,387,168,7,192,355,387,280,198,94,76,67,109,112,98,69,30,66,56,112,92,88,52,25,215,194,390,316,206,121,83,185,273,376,333,185,109,90,,,,,,,,,,,,,, +2115,Egypt,2012,23,373,597,582,698,379,164,8,187,346,379,274,193,92,68,60,97,100,87,60,27,59,52,98,82,78,47,22,202,183,367,298,195,114,78,190,257,355,314,174,102,84,,,,,,,,,,,,,, +2116,Egypt,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,282,556,940,886,896,516,245,230,425,803,687,572,320,176 +2117,El Salvador,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2118,El Salvador,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2119,El Salvador,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2120,El Salvador,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2121,El Salvador,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2122,El Salvador,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2123,El Salvador,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2124,El Salvador,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2125,El Salvador,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2126,El Salvador,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2127,El Salvador,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2128,El Salvador,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2129,El Salvador,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2130,El Salvador,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2131,El Salvador,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2132,El Salvador,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2133,El Salvador,1996,102,76,76,77,57,54,92,102,76,62,43,49,38,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2134,El Salvador,1997,13,86,110,117,71,68,75,17,67,72,44,33,42,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2135,El Salvador,1998,21,95,131,99,87,65,84,21,81,93,53,40,43,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2136,El Salvador,1999,18,102,128,104,88,88,104,20,81,73,61,47,44,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2137,El Salvador,2000,13,99,124,114,92,62,107,28,81,76,63,63,39,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2138,El Salvador,2001,20,101,144,100,78,62,101,22,68,86,59,59,53,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2139,El Salvador,2002,8,85,127,101,91,59,93,6,80,84,61,49,51,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2140,El Salvador,2003,7,75,105,103,81,59,89,7,70,71,47,48,44,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2141,El Salvador,2004,5,92,121,90,84,77,91,15,64,73,55,44,48,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2142,El Salvador,2005,5,97,140,128,104,74,117,6,85,82,59,50,42,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2143,El Salvador,2006,6,93,124,101,76,54,103,7,71,80,49,50,38,61,,,,,,,,,,,,,,,27,15,40,26,14,10,33,17,18,38,18,11,5,11,,,,,,,,,,,,,, +2144,El Salvador,2007,8,79,179,110,73,62,95,4,63,85,50,45,33,56,147,5,9,6,8,6,11,129,6,5,9,4,3,10,27,22,46,26,23,13,19,20,18,30,26,18,9,9,,,,,,,,,,,,,, +2145,El Salvador,2008,8,107,168,112,67,79,89,8,73,71,55,42,40,66,138,9,25,6,4,4,13,138,4,4,2,3,4,8,17,22,49,31,15,12,16,27,25,29,37,13,11,9,,,,,,,,,,,,,, +2146,El Salvador,2009,7,99,147,111,80,64,111,2,59,69,50,46,27,58,138,11,19,6,9,12,13,119,9,5,4,4,7,7,19,30,42,32,16,11,16,37,20,47,26,18,10,5,,,,,,,,,,,,,, +2147,El Salvador,2010,5,101,170,96,77,62,101,6,63,65,49,58,51,68,122,18,16,16,11,11,14,102,6,4,8,4,4,2,27,36,38,40,21,11,12,27,15,40,29,19,10,3,,,,,,,,,,,,,, +2148,El Salvador,2011,3,114,183,106,96,77,115,6,61,61,44,52,69,92,111,9,27,24,13,19,16,99,9,12,13,5,7,7,23,47,52,34,21,13,30,26,37,34,26,14,15,12,,,,,,,,,,,,,, +2149,El Salvador,2012,5,131,194,122,100,87,115,5,81,73,80,90,64,90,96,18,28,19,9,7,10,81,5,10,12,7,4,7,24,40,67,51,33,20,12,24,39,29,38,18,9,11,,,,,,,,,,,,,, +2150,El Salvador,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,120,208,344,197,133,96,180,80,90,122,123,95,115,164 +2151,Equatorial Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2152,Equatorial Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2153,Equatorial Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2154,Equatorial Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2155,Equatorial Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2156,Equatorial Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2157,Equatorial Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2158,Equatorial Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2159,Equatorial Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2160,Equatorial Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2161,Equatorial Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2162,Equatorial Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2163,Equatorial Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2164,Equatorial Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2165,Equatorial Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2166,Equatorial Guinea,1995,8,15,45,37,15,11,7,2,18,28,20,4,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2167,Equatorial Guinea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2168,Equatorial Guinea,1997,5,32,40,36,25,8,4,3,23,20,14,10,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2169,Equatorial Guinea,1998,6,30,46,39,29,16,11,3,37,31,20,7,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2170,Equatorial Guinea,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2171,Equatorial Guinea,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2172,Equatorial Guinea,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2173,Equatorial Guinea,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2174,Equatorial Guinea,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2175,Equatorial Guinea,2004,5,50,63,54,41,17,15,9,45,48,30,15,10,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2176,Equatorial Guinea,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2177,Equatorial Guinea,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2178,Equatorial Guinea,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2179,Equatorial Guinea,2008,8,68,95,85,44,17,11,10,57,66,35,23,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2180,Equatorial Guinea,2009,10,53,79,64,52,20,4,2,57,66,54,19,4,6,12,13,9,16,9,9,3,7,3,12,6,6,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2181,Equatorial Guinea,2010,10,71,80,59,35,16,10,13,80,57,45,26,9,6,5,10,12,4,9,5,4,13,7,9,9,4,4,3,24,10,5,3,4,1,0,21,10,7,11,5,4,4,,,,,,,,,,,,,, +2182,Equatorial Guinea,2011,11,77,90,89,59,22,12,15,76,81,46,21,9,3,11,9,9,8,3,8,2,13,12,14,18,3,4,2,24,13,12,8,7,1,1,22,8,14,9,7,3,2,,,,,,,,,,,,,, +2183,Equatorial Guinea,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2184,Equatorial Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2185,Eritrea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2186,Eritrea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2187,Eritrea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2188,Eritrea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2189,Eritrea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2190,Eritrea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2191,Eritrea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2192,Eritrea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2193,Eritrea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2194,Eritrea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2195,Eritrea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2196,Eritrea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2197,Eritrea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2198,Eritrea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2199,Eritrea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2200,Eritrea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2201,Eritrea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2202,Eritrea,1997,0,2,12,21,12,6,4,0,3,10,20,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2203,Eritrea,1998,4,36,30,19,15,8,10,3,43,29,11,9,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2204,Eritrea,1999,3,55,75,49,51,30,17,3,65,94,34,30,17,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2205,Eritrea,2000,9,70,75,57,32,25,20,10,100,87,71,21,12,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2206,Eritrea,2001,5,79,95,77,40,42,21,9,96,76,66,50,31,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2207,Eritrea,2002,16,85,88,53,41,24,23,15,75,85,52,39,30,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2208,Eritrea,2003,17,90,85,55,46,44,36,27,120,149,100,60,36,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2209,Eritrea,2004,14,67,61,45,45,39,29,13,95,118,67,43,23,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2210,Eritrea,2005,9,68,73,50,45,51,39,8,67,127,72,39,21,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2211,Eritrea,2006,6,50,55,44,52,42,36,17,109,123,64,45,19,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2212,Eritrea,2007,21,56,85,73,62,53,44,2,70,89,56,47,21,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2213,Eritrea,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2214,Eritrea,2009,6,104,111,79,46,57,44,4,85,88,88,39,27,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2215,Eritrea,2010,10,93,109,81,51,37,60,3,88,111,79,43,31,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2216,Eritrea,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2217,Eritrea,2012,2,84,105,90,62,39,51,4,86,98,74,45,19,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2218,Eritrea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2219,Estonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2220,Estonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2221,Estonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2222,Estonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2223,Estonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2224,Estonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2225,Estonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2226,Estonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2227,Estonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2228,Estonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2229,Estonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2230,Estonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2231,Estonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2232,Estonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2233,Estonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2234,Estonia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2235,Estonia,1996,1,7,34,53,39,28,19,0,10,14,16,5,2,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2236,Estonia,1997,0,4,23,59,53,29,17,0,8,16,17,14,6,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2237,Estonia,1998,0,15,49,60,64,34,22,0,7,7,15,9,7,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2238,Estonia,1999,0,14,35,72,55,19,17,0,8,9,20,16,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2239,Estonia,2000,0,6,31,53,56,35,15,0,9,11,14,11,4,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2240,Estonia,2001,0,10,25,43,37,24,14,0,6,11,17,11,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2241,Estonia,2002,0,9,20,47,45,19,7,0,7,11,16,9,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2242,Estonia,2003,0,7,28,38,35,24,18,0,7,4,11,12,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2243,Estonia,2004,0,6,24,42,54,14,11,0,4,12,10,13,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2244,Estonia,2005,0,9,25,19,40,12,7,0,6,11,8,11,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2245,Estonia,2006,0,4,19,24,40,12,7,0,3,9,10,9,4,6,3,7,26,33,35,15,9,2,9,13,13,14,7,9,1,3,0,1,2,6,6,1,1,1,2,1,3,3,,,,,,,,,,,,,, +2246,Estonia,2007,0,6,26,32,37,21,12,0,2,5,5,8,7,6,0,6,26,32,37,21,12,0,9,16,12,12,12,3,0,0,5,4,3,1,3,1,3,1,1,2,3,4,,,,,,,,,,,,,, +2247,Estonia,2008,0,3,14,26,34,12,13,0,2,7,6,8,4,15,1,9,16,33,34,26,12,0,7,11,9,4,8,10,1,0,3,3,4,2,7,0,1,0,0,1,2,6,,,,,,,,,,,,,, +2248,Estonia,2009,0,4,10,12,34,22,12,0,6,8,8,7,5,7,2,8,17,34,23,16,13,0,4,15,9,12,8,9,0,1,3,2,3,2,1,1,0,0,1,1,3,3,,,,,,,,,,,,,, +2249,Estonia,2010,0,3,7,21,25,12,8,0,3,6,3,3,6,3,1,5,18,13,26,17,13,2,5,5,8,6,6,10,2,1,4,2,2,0,1,1,0,1,0,1,0,2,,,,,,,,,,,,,, +2250,Estonia,2011,0,4,22,16,15,18,13,0,4,8,12,3,3,6,1,5,21,15,20,16,6,0,3,8,9,10,2,6,0,1,1,2,0,5,1,0,0,1,2,0,1,4,,,,,,,,,,,,,, +2251,Estonia,2012,0,6,15,13,21,17,9,0,5,7,2,4,1,5,0,5,12,18,18,9,11,1,2,7,9,4,3,11,1,1,0,1,0,1,8,0,1,0,0,2,1,3,,,,,,,,,,,,,, +2252,Estonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,25,42,48,39,17,0,3,20,14,10,8,31 +2253,Ethiopia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2254,Ethiopia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2255,Ethiopia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2256,Ethiopia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2257,Ethiopia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2258,Ethiopia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2259,Ethiopia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2260,Ethiopia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2261,Ethiopia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2262,Ethiopia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2263,Ethiopia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2264,Ethiopia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2265,Ethiopia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2266,Ethiopia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2267,Ethiopia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2268,Ethiopia,1995,247,1221,1017,541,276,142,51,283,908,781,382,152,64,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2269,Ethiopia,1996,302,1739,1609,854,427,201,71,369,1564,1147,576,246,88,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2270,Ethiopia,1997,579,2810,2520,1365,736,401,193,687,2469,2173,1039,481,192,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2271,Ethiopia,1998,715,2643,3187,1610,839,429,171,832,3016,2434,1220,519,194,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2272,Ethiopia,1999,692,3916,3673,1925,1045,471,230,798,3310,2949,1539,713,225,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2273,Ethiopia,2000,915,5095,5187,3082,1495,610,397,1037,4699,4424,2105,976,366,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2274,Ethiopia,2001,913,5730,5594,3233,1581,742,354,1107,5109,4830,2372,1014,338,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2275,Ethiopia,2002,1251,6764,5669,3128,1544,821,372,1614,5607,5692,2685,935,323,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2276,Ethiopia,2003,1110,6923,6648,3737,2022,976,483,1387,5936,5908,2780,1239,412,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2277,Ethiopia,2004,1160,7167,7002,4060,1988,911,456,1367,6422,6091,2984,1284,414,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2278,Ethiopia,2005,1109,6726,6181,3454,1985,1027,475,1326,5885,5663,2730,1296,513,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2279,Ethiopia,2006,978,6137,5950,3567,2016,1066,521,1178,5238,5326,2704,1324,510,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2280,Ethiopia,2007,1055,6522,6114,3545,2038,1051,559,1229,5426,5507,2850,1429,502,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2281,Ethiopia,2008,978,6512,6794,4067,2290,1176,685,1167,5490,5893,3251,1553,616,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2282,Ethiopia,2009,1421,7215,7193,4267,2452,1331,794,1593,5556,6075,3499,1798,824,378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2283,Ethiopia,2010,1582,7400,7785,4451,2746,1473,822,1608,5708,6480,3439,1950,855,335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2284,Ethiopia,2011,1847,7835,9246,3881,2771,1218,771,1983,6570,7917,3069,1564,719,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2285,Ethiopia,2012,,,,,,,,,,,,,,,3692,,,,,,,3990,,,,,,,3798,,,,,,,4054,,,,,,,,,,,,,,,,,,,, +2286,Ethiopia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10954,,,,,,,10363,,,,,, +2287,Fiji,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2288,Fiji,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2289,Fiji,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2290,Fiji,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2291,Fiji,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2292,Fiji,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2293,Fiji,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2294,Fiji,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2295,Fiji,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2296,Fiji,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2297,Fiji,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2298,Fiji,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2299,Fiji,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2300,Fiji,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2301,Fiji,1994,2,8,6,2,3,11,3,0,4,6,3,6,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2302,Fiji,1995,0,8,10,9,4,2,3,1,10,9,2,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2303,Fiji,1996,1,8,8,9,9,3,2,3,6,8,2,6,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2304,Fiji,1997,1,4,8,6,8,6,2,0,6,9,1,5,7,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2305,Fiji,1998,0,7,11,7,8,4,2,2,10,10,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2306,Fiji,1999,1,13,7,5,8,3,3,0,5,7,5,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2307,Fiji,2000,0,8,6,13,5,4,2,0,7,5,7,1,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2308,Fiji,2001,0,6,8,11,7,4,2,0,7,5,7,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2309,Fiji,2002,1,13,11,7,4,7,2,2,8,4,6,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2310,Fiji,2003,2,8,9,6,11,7,6,1,4,7,4,4,8,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2311,Fiji,2004,0,8,6,8,6,7,2,0,8,6,3,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2312,Fiji,2005,7,9,18,18,14,16,6,7,7,9,6,4,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2313,Fiji,2006,0,8,11,4,7,5,4,1,12,5,6,4,6,0,0,3,4,1,2,3,2,0,3,1,0,1,2,0,1,2,1,2,1,3,0,2,1,0,0,3,2,0,,,,,,,,,,,,,, +2314,Fiji,2007,1,7,7,7,4,1,4,7,11,4,6,5,1,2,1,2,2,4,5,2,3,0,4,3,0,1,1,1,1,5,2,4,6,0,1,0,4,3,3,2,0,0,,,,,,,,,,,,,, +2315,Fiji,2008,,10,10,4,9,4,4,,13,6,5,6,3,4,,1,1,2,3,0,4,1,0,2,1,1,1,0,,,3,2,4,0,3,,,2,2,2,1,0,,,,,,,,,,,,,, +2316,Fiji,2009,0,15,14,7,8,6,2,1,11,7,4,4,3,1,,,,,,,,,,,,,,,2,4,5,5,5,5,0,0,2,3,2,5,0,0,,,,,,,,,,,,,, +2317,Fiji,2010,1,7,15,11,6,2,4,1,11,12,5,1,8,5,5,5,4,0,7,8,3,3,1,1,1,0,5,2,5,2,6,5,2,1,0,6,2,5,2,3,3,3,,,,,,,,,,,,,, +2318,Fiji,2011,0,12,16,8,9,9,4,1,13,17,7,5,2,3,3,2,9,5,5,6,4,2,8,5,3,3,2,1,2,6,4,2,2,5,2,6,3,3,2,2,0,2,,,,,,,,,,,,,, +2319,Fiji,2012,2,14,12,9,12,5,7,2,11,10,7,6,7,7,3,6,4,3,6,6,3,6,2,4,2,2,3,4,6,4,2,3,5,2,2,2,3,2,1,2,2,4,,,,,,,,,,,,,, +2320,Fiji,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,19,31,25,25,17,19,14,24,27,18,6,9,10 +2321,Finland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2322,Finland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2323,Finland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2324,Finland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2325,Finland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2326,Finland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2327,Finland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2328,Finland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2329,Finland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2330,Finland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2331,Finland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2332,Finland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2333,Finland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2334,Finland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2335,Finland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2336,Finland,1995,1,1,10,25,28,24,61,1,1,6,7,4,10,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2337,Finland,1996,0,2,5,24,26,23,77,0,4,5,3,7,6,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2338,Finland,1997,0,1,5,22,24,26,53,0,2,6,2,5,5,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2339,Finland,1998,0,4,4,9,15,21,63,0,3,4,9,4,12,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2340,Finland,1999,0,,4,13,26,20,53,0,2,6,,11,5,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2341,Finland,2000,0,3,8,22,19,28,53,0,1,5,3,4,6,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2342,Finland,2001,0,1,9,13,17,13,43,0,3,4,5,8,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2343,Finland,2002,0,0,5,8,17,20,36,0,4,3,0,3,6,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2344,Finland,2003,0,2,3,8,19,17,29,0,2,10,3,6,5,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2345,Finland,2004,0,1,5,7,17,13,33,0,1,0,3,4,3,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2346,Finland,2005,1,5,4,3,14,11,25,0,3,4,1,0,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2347,Finland,2006,0,5,6,5,9,6,20,0,2,4,3,4,1,19,0,4,2,6,8,18,42,0,0,6,1,2,3,18,1,2,3,8,3,4,14,0,4,6,3,0,8,30,,,,,,,,,,,,,, +2348,Finland,2007,0,4,5,5,10,7,24,0,6,4,2,5,0,13,2,8,24,17,28,40,86,0,12,11,4,15,12,65,0,4,12,10,12,16,44,4,12,10,4,10,16,50,,,,,,,,,,,,,, +2349,Finland,2008,0,3,5,8,13,11,35,0,4,3,2,4,2,14,3,4,3,6,11,11,29,1,2,2,2,3,8,19,0,6,4,1,5,9,33,0,2,7,5,7,8,36,,,,,,,,,,,,,, +2350,Finland,2009,0,9,3,3,11,11,17,0,7,7,3,4,1,14,3,12,11,12,16,24,47,3,6,11,7,4,7,27,1,12,6,4,4,9,24,0,4,4,5,4,6,37,,,,,,,,,,,,,, +2351,Finland,2010,0,10,6,7,9,8,15,0,3,3,4,1,2,12,3,9,6,7,9,13,40,1,5,5,1,6,3,26,0,3,10,4,2,5,13,2,5,7,4,4,6,25,,,,,,,,,,,,,, +2352,Finland,2011,0,1,4,4,7,10,27,1,2,3,5,3,1,13,4,5,12,3,4,17,38,4,4,7,3,6,3,30,1,4,4,4,3,5,15,1,7,5,1,1,8,31,,,,,,,,,,,,,, +2353,Finland,2012,0,2,9,7,5,9,21,1,4,0,4,2,3,11,2,4,5,6,10,10,28,1,4,7,7,3,3,14,0,4,5,3,1,3,13,1,4,3,5,2,4,22,,,,,,,,,,,,,, +2354,Finland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,22,17,13,12,20,79,1,10,18,6,7,13,47 +2355,France,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2356,France,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2357,France,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2358,France,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2359,France,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2360,France,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2361,France,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2362,France,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2363,France,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2364,France,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2365,France,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2366,France,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2367,France,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2368,France,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2369,France,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2370,France,1995,30,156,431,502,414,297,496,36,138,226,176,90,92,365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2371,France,1996,36,124,335,413,351,248,475,22,124,195,131,79,82,376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2372,France,1997,24,113,288,362,271,194,343,17,117,166,115,80,57,274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2373,France,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2374,France,1999,13,147,267,310,276,157,318,25,110,145,120,80,60,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2375,France,2000,10,136,248,247,211,125,244,18,108,127,89,46,43,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2376,France,2001,10,124,230,260,205,119,211,17,131,132,102,63,40,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2377,France,2002,24,138,265,223,219,119,180,13,106,127,90,56,33,161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2378,France,2003,18,129,249,223,190,127,210,16,114,129,79,44,32,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2379,France,2004,13,109,222,220,200,138,216,11,96,116,82,53,34,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2380,France,2005,12,127,212,222,196,134,205,16,104,134,82,56,38,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2381,France,2006,17,137,214,238,209,153,278,15,112,158,91,67,44,170,59,92,171,151,131,108,198,52,90,128,92,81,57,205,39,92,140,103,84,64,133,46,62,97,102,88,69,152,,,,,,,,,,,,,, +2382,France,2007,17,120,225,196,219,156,273,20,127,167,91,56,61,188,66,123,207,186,159,127,225,67,97,150,100,76,61,206,92,142,332,216,164,138,264,90,122,224,178,166,138,294,,,,,,,,,,,,,, +2383,France,2008,10,73,136,161,134,110,175,8,57,96,71,50,38,101,28,58,123,101,93,88,143,39,64,89,65,50,54,113,34,50,116,84,63,47,89,34,48,75,73,67,40,133,,,,,,,,,,,,,, +2384,France,2009,11,74,109,114,97,81,125,9,63,87,69,35,23,108,39,66,115,100,72,67,155,35,61,76,64,46,27,104,27,49,84,83,51,45,98,21,40,66,67,42,46,96,,,,,,,,,,,,,, +2385,France,2010,10,60,139,114,99,76,110,10,47,76,49,45,25,97,35,64,111,95,73,73,132,35,58,84,49,52,39,109,36,47,92,81,46,45,81,21,29,50,51,44,43,98,,,,,,,,,,,,,, +2386,France,2011,12,89,113,116,95,73,102,7,58,69,50,36,24,66,32,67,125,88,76,65,144,38,50,93,66,60,44,87,31,32,87,74,44,39,96,29,26,64,43,41,28,73,,,,,,,,,,,,,, +2387,France,2012,8,63,114,98,90,56,90,14,43,81,74,23,24,80,39,68,131,82,91,72,121,46,59,78,56,49,39,96,30,39,96,58,43,44,72,22,36,76,42,46,38,73,,,,,,,,,,,,,, +2388,France,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,139,340,642,469,389,314,587,116,254,374,262,199,188,407 +2389,French Polynesia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2390,French Polynesia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2391,French Polynesia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2392,French Polynesia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2393,French Polynesia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2394,French Polynesia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2395,French Polynesia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2396,French Polynesia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2397,French Polynesia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2398,French Polynesia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2399,French Polynesia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2400,French Polynesia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2401,French Polynesia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2402,French Polynesia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2403,French Polynesia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2404,French Polynesia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2405,French Polynesia,1996,1,4,7,5,2,1,3,0,5,4,2,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2406,French Polynesia,1997,1,4,2,4,3,5,3,1,5,3,2,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2407,French Polynesia,1998,0,4,4,3,1,5,4,3,1,2,5,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2408,French Polynesia,1999,0,2,2,2,1,2,4,4,2,2,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2409,French Polynesia,2000,1,3,3,4,4,4,3,1,4,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2410,French Polynesia,2001,2,5,1,2,4,4,5,3,7,1,1,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2411,French Polynesia,2002,0,4,2,1,3,3,1,0,4,2,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2412,French Polynesia,2003,,2,2,1,2,4,3,,3,1,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2413,French Polynesia,2004,1,1,2,3,0,1,4,,4,6,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2414,French Polynesia,2005,0,2,2,2,0,4,2,0,2,3,0,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2415,French Polynesia,2006,1,1,1,3,3,1,1,1,6,1,0,0,2,3,0,2,2,1,1,5,4,0,0,1,4,2,3,3,1,2,1,1,2,1,2,0,0,2,1,0,1,1,,,,,,,,,,,,,, +2416,French Polynesia,2007,,,2,2,2,,,1,1,1,5,0,3,2,2,1,2,2,0,5,4,1,1,4,2,4,2,2,,2,1,,,,2,,1,1,1,2,1,,,,,,,,,,,,,,, +2417,French Polynesia,2008,1,3,1,1,1,2,2,0,1,1,1,0,1,2,0,2,1,0,1,1,2,2,2,3,0,1,1,2,0,0,2,2,0,1,2,0,1,0,0,0,0,2,,,,,,,,,,,,,, +2418,French Polynesia,2009,1,1,4,1,3,0,0,0,2,0,0,1,3,1,2,3,1,2,2,1,1,1,2,0,1,0,1,0,1,2,1,3,0,0,1,0,0,2,1,2,1,0,,,,,,,,,,,,,, +2419,French Polynesia,2010,0,3,1,0,1,1,1,0,1,1,0,3,0,1,3,2,0,1,1,2,0,2,1,2,0,1,2,1,0,0,0,2,0,0,0,0,0,1,1,2,0,0,,,,,,,,,,,,,, +2420,French Polynesia,2011,0,3,1,1,5,1,3,0,3,3,0,1,0,1,2,2,0,2,3,1,6,0,5,1,1,2,1,1,2,0,0,1,0,1,1,0,2,0,1,2,0,3,,,,,,,,,,,,,, +2421,French Polynesia,2012,0,1,2,2,3,3,3,0,2,3,0,3,4,0,0,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,0,0,0,,,,,,,,,,,,,, +2422,French Polynesia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,4,6,1,3,3,2,8,3,3,1,5,9 +2423,Gabon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2424,Gabon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2425,Gabon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2426,Gabon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2427,Gabon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2428,Gabon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2429,Gabon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2430,Gabon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2431,Gabon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2432,Gabon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2433,Gabon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2434,Gabon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2435,Gabon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2436,Gabon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2437,Gabon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2438,Gabon,1995,3,45,74,80,54,30,15,9,47,54,28,25,19,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2439,Gabon,1996,0,28,44,40,22,11,2,5,33,26,19,11,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2440,Gabon,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2441,Gabon,1998,14,93,159,129,76,43,32,15,97,85,67,32,30,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2442,Gabon,1999,14,98,158,129,76,43,32,15,97,110,67,32,30,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2443,Gabon,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2444,Gabon,2001,21,137,205,147,73,60,46,27,127,139,73,34,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2445,Gabon,2002,10,137,173,148,63,27,40,18,125,140,71,32,21,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2446,Gabon,2003,14,165,225,149,103,48,22,16,138,144,107,51,33,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2447,Gabon,2004,17,197,289,143,83,47,50,15,173,141,80,37,24,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2448,Gabon,2005,13,123,199,140,70,38,25,19,128,123,88,29,29,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2449,Gabon,2006,20,157,207,148,89,40,23,19,160,123,79,39,20,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2450,Gabon,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2451,Gabon,2008,14,209,297,196,104,45,39,29,209,158,93,59,32,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2452,Gabon,2009,45,145,163,158,138,42,29,14,103,118,121,105,33,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2453,Gabon,2010,15,145,223,208,130,89,91,13,110,164,122,100,86,64,183,88,87,101,88,76,75,95,82,71,83,65,70,62,70,37,28,32,28,17,20,32,26,22,36,39,13,12,,,,,,,,,,,,,, +2454,Gabon,2011,34,240,269,229,144,86,66,25,177,188,125,74,44,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2455,Gabon,2012,42,236,286,228,166,101,41,29,185,165,109,78,45,34,110,230,278,274,185,122,85,123,176,225,216,152,86,91,25,41,58,53,40,13,14,12,36,47,35,22,7,11,,,,,,,,,,,,,, +2456,Gabon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,242,295,267,155,89,55,29,190,213,158,106,53,35 +2457,Gambia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2458,Gambia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2459,Gambia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2460,Gambia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2461,Gambia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2462,Gambia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2463,Gambia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2464,Gambia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2465,Gambia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2466,Gambia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2467,Gambia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2468,Gambia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2469,Gambia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2470,Gambia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2471,Gambia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2472,Gambia,1995,3,68,181,88,72,29,24,4,39,61,44,25,12,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2473,Gambia,1996,29,42,148,100,66,46,48,20,50,64,46,46,30,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2474,Gambia,1997,2,83,219,126,61,63,37,5,55,76,45,20,20,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2475,Gambia,1998,6,99,193,158,79,61,35,7,60,95,53,25,18,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2476,Gambia,1999,6,99,180,124,86,65,39,10,58,82,54,30,16,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2477,Gambia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2478,Gambia,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2479,Gambia,2002,2,135,240,160,100,60,37,5,71,112,42,40,21,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2480,Gambia,2003,3,162,236,149,83,52,31,8,81,85,62,39,27,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2481,Gambia,2004,5,145,260,151,103,46,23,7,55,81,59,38,21,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2482,Gambia,2005,13,133,292,206,62,53,44,2,84,87,64,38,22,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2483,Gambia,2006,13,126,284,170,112,58,56,5,88,126,71,49,25,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2484,Gambia,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2485,Gambia,2008,7,151,307,167,125,87,34,9,94,133,90,43,45,8,45,39,51,56,67,73,8,38,29,64,47,41,46,6,13,10,10,10,4,13,3,10,9,15,10,6,3,0,,,,,,,,,,,,,, +2486,Gambia,2009,12,159,240,185,124,74,49,20,91,143,84,70,37,28,37,13,79,122,49,16,9,21,7,94,111,49,8,7,4,27,19,30,0,1,1,1,11,20,27,0,0,0,,,,,,,,,,,,,, +2487,Gambia,2010,9,194,314,184,141,68,39,6,104,121,71,35,40,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2488,Gambia,2011,14,183,271,181,136,87,56,16,103,112,88,63,32,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2489,Gambia,2012,7,210,331,191,107,80,54,16,123,106,89,41,32,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2490,Gambia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,,,,,,,66,,,,,, +2491,Georgia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2492,Georgia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2493,Georgia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2494,Georgia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2495,Georgia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2496,Georgia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2497,Georgia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2498,Georgia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2499,Georgia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2500,Georgia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2501,Georgia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2502,Georgia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2503,Georgia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2504,Georgia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2505,Georgia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2506,Georgia,1995,2,20,30,25,40,18,12,2,8,17,17,18,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2507,Georgia,1996,4,27,82,93,76,38,16,1,13,28,36,23,27,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2508,Georgia,1997,0,75,97,91,67,58,16,0,38,46,40,36,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2509,Georgia,1998,4,64,91,99,58,52,19,4,41,52,25,14,17,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2510,Georgia,1999,5,135,176,151,77,55,23,3,27,40,26,10,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2511,Georgia,2000,4,76,111,113,63,45,28,1,49,37,33,17,10,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2512,Georgia,2001,4,142,233,199,117,46,46,2,63,63,37,22,18,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2513,Georgia,2002,1,155,197,181,119,54,42,5,54,68,39,31,20,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2514,Georgia,2003,1,112,220,185,111,65,53,1,65,59,56,19,23,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2515,Georgia,2004,3,157,292,226,177,80,66,3,87,81,52,32,26,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2516,Georgia,2005,0,226,272,268,207,76,60,4,109,105,58,46,17,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2517,Georgia,2006,3,315,392,300,241,86,72,5,115,110,71,60,26,34,23,165,156,162,124,79,108,24,91,118,61,43,31,44,162,210,128,73,64,43,39,130,120,95,75,48,32,40,,,,,,,,,,,,,, +2518,Georgia,2007,7,277,388,308,230,96,75,6,153,140,67,54,17,46,23,132,116,114,120,75,54,25,83,62,56,31,14,29,142,176,145,91,81,33,38,103,122,104,72,49,37,37,,,,,,,,,,,,,, +2519,Georgia,2008,4,294,380,312,243,118,77,4,142,121,61,44,22,46,17,133,145,139,112,84,104,14,89,89,49,26,20,42,139,183,123,92,70,57,52,89,120,105,66,45,28,48,,,,,,,,,,,,,, +2520,Georgia,2009,2,327,435,310,284,135,89,5,124,134,74,60,30,46,15,140,170,141,145,73,98,20,93,97,36,21,28,42,153,175,191,99,86,44,39,86,124,104,62,47,28,45,,,,,,,,,,,,,, +2521,Georgia,2010,5,340,529,341,264,143,77,5,135,118,62,52,28,41,14,143,182,135,136,66,78,16,94,92,59,39,10,24,123,156,170,125,71,50,33,86,98,93,56,37,30,27,,,,,,,,,,,,,, +2522,Georgia,2011,5,271,478,333,251,139,93,8,136,132,59,32,35,54,10,146,220,162,130,67,78,14,88,90,47,33,26,30,98,139,155,91,60,43,38,67,105,95,54,50,28,33,,,,,,,,,,,,,, +2523,Georgia,2012,4,200,314,248,235,150,81,5,101,116,72,43,32,47,9,167,200,161,134,101,86,10,84,100,48,37,23,26,106,138,124,71,53,33,33,81,83,88,49,35,24,26,,,,,,,,,,,,,, +2524,Georgia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105,337,556,455,431,306,185,78,248,298,145,99,73,118 +2525,Germany,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2526,Germany,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2527,Germany,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2528,Germany,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2529,Germany,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2530,Germany,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2531,Germany,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2532,Germany,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2533,Germany,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2534,Germany,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2535,Germany,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2536,Germany,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2537,Germany,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2538,Germany,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2539,Germany,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2540,Germany,1995,14,179,453,539,460,442,625,17,115,251,167,89,104,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2541,Germany,1996,20,181,377,520,413,405,607,19,150,214,180,97,108,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2542,Germany,1997,11,166,375,459,384,424,509,16,109,204,154,93,99,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2543,Germany,1998,9,179,333,448,358,349,538,11,121,166,141,93,80,298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2544,Germany,1999,13,145,308,419,362,335,449,15,118,177,98,85,99,295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2545,Germany,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2546,Germany,2001,3,3,89,136,106,94,119,1,36,59,48,42,26,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2547,Germany,2002,3,34,75,102,88,81,101,1,32,61,50,14,16,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2548,Germany,2003,2,68,107,177,163,103,155,10,61,96,86,43,22,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2549,Germany,2004,5,63,130,182,161,110,198,6,75,110,97,42,32,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2550,Germany,2005,6,59,113,171,167,92,167,4,51,104,73,43,37,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2551,Germany,2006,2,78,138,169,189,103,199,7,66,109,77,39,24,102,63,93,203,230,223,224,434,75,102,180,134,133,98,342,16,43,93,77,49,65,129,26,46,104,81,67,53,177,,,,,,,,,,,,,, +2552,Germany,2007,2,116,248,314,344,184,362,4,120,176,152,116,46,178,62,106,145,191,266,187,414,55,96,141,137,105,100,312,24,36,80,58,63,63,119,23,47,86,66,56,74,181,,,,,,,,,,,,,, +2553,Germany,2008,2,40,95,114,142,96,148,6,35,68,61,41,33,71,45,66,129,158,212,172,318,35,81,117,101,89,53,213,9,27,65,71,55,45,113,15,34,66,50,43,59,145,,,,,,,,,,,,,, +2554,Germany,2009,2,48,109,125,163,103,148,1,52,76,51,49,27,92,45,77,134,133,194,151,332,56,73,116,84,70,80,232,15,37,58,56,36,46,99,17,26,69,67,54,53,115,,,,,,,,,,,,,, +2555,Germany,2010,1,49,96,105,149,97,145,3,48,68,63,38,27,78,60,90,119,131,185,148,320,53,66,125,61,89,49,205,20,30,74,45,58,40,106,15,25,63,68,52,50,138,,,,,,,,,,,,,, +2556,Germany,2011,0,43,95,108,139,69,127,2,45,90,61,53,26,87,65,74,118,141,180,151,333,63,62,128,85,87,76,212,15,29,67,61,52,40,99,14,22,55,50,49,62,122,,,,,,,,,,,,,, +2557,Germany,2012,4,47,101,114,152,106,104,6,53,99,38,46,25,55,66,78,122,140,154,158,276,61,53,97,78,68,64,189,14,51,72,59,62,49,119,18,25,86,53,50,57,109,,,,,,,,,,,,,, +2558,Germany,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,268,399,379,433,328,672,80,189,323,215,186,158,457 +2559,Ghana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2560,Ghana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2561,Ghana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2562,Ghana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2563,Ghana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2564,Ghana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2565,Ghana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2566,Ghana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2567,Ghana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2568,Ghana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2569,Ghana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2570,Ghana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2571,Ghana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2572,Ghana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2573,Ghana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2574,Ghana,1995,42,223,397,398,302,190,112,40,199,272,205,122,88,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2575,Ghana,1996,30,216,345,368,255,165,157,32,177,260,200,110,64,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2576,Ghana,1997,77,406,941,781,623,367,294,90,363,651,418,276,188,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2577,Ghana,1998,83,553,1009,913,775,509,487,85,483,758,493,366,248,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2578,Ghana,1999,64,586,1132,1008,767,389,389,80,491,753,492,302,192,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2579,Ghana,2000,73,550,1266,1115,811,495,426,74,456,791,566,338,179,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2580,Ghana,2001,84,587,1223,1144,857,471,460,128,515,814,623,370,209,227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2581,Ghana,2002,80,535,1245,1282,883,507,429,98,489,806,592,325,223,238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2582,Ghana,2003,79,579,1265,1234,924,509,441,83,487,744,586,380,200,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2583,Ghana,2004,54,532,1246,1250,854,472,413,69,454,701,518,303,202,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2584,Ghana,2005,49,592,1201,1311,944,462,414,68,450,693,527,366,207,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2585,Ghana,2006,33,557,1273,1388,956,529,443,70,494,711,515,381,207,229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2586,Ghana,2007,66,596,1164,1239,861,477,506,75,453,667,564,371,183,207,0,0,0,0,0,,0,0,0,0,0,,0,0,0,0,,,,0,,0,0,,0,,,0,,,,,,,,,,,,,, +2587,Ghana,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2588,Ghana,2009,66,674,1285,1423,1064,505,539,58,491,701,605,362,197,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2589,Ghana,2010,63,570,1146,1301,1030,540,447,64,446,667,560,369,204,249,292,285,607,716,511,284,345,251,206,455,460,283,147,226,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2590,Ghana,2011,50,550,1127,1328,955,491,456,52,470,699,614,390,174,260,311,249,632,869,658,390,536,252,189,452,496,318,210,313,119,110,141,187,136,95,74,85,80,153,104,74,59,54,,,,,,,,,,,,,, +2591,Ghana,2012,30,559,1051,1271,921,512,462,51,418,563,468,332,188,271,275,274,576,871,703,419,563,243,202,446,496,360,220,331,124,97,130,153,115,104,54,97,57,102,116,77,39,36,,,,,,,,,,,,,, +2592,Ghana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,420,937,1871,2401,1901,1128,1080,363,753,1170,1089,793,463,674 +2593,Greece,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2594,Greece,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2595,Greece,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2596,Greece,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2597,Greece,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2598,Greece,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2599,Greece,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2600,Greece,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2601,Greece,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2602,Greece,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2603,Greece,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2604,Greece,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2605,Greece,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2606,Greece,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2607,Greece,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2608,Greece,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2609,Greece,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2610,Greece,1997,0,16,30,34,42,39,47,0,14,19,8,3,9,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2611,Greece,1998,15,15,31,31,22,31,47,11,20,12,13,8,5,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2612,Greece,1999,3,11,11,17,18,18,27,1,5,8,8,2,3,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2613,Greece,2000,1,10,22,32,24,19,46,0,2,9,10,5,6,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2614,Greece,2001,0,10,23,29,20,17,37,0,7,11,7,4,7,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2615,Greece,2002,0,1,13,27,33,30,10,0,0,3,17,11,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2616,Greece,2003,2,20,28,25,23,25,36,0,7,9,7,2,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2617,Greece,2004,1,9,14,22,18,13,34,0,3,7,10,3,3,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2618,Greece,2005,1,14,25,22,14,12,23,0,13,18,8,7,2,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2619,Greece,2006,0,11,32,22,24,22,27,0,13,12,8,5,6,24,9,13,28,19,29,27,59,11,10,13,12,8,5,40,1,7,10,3,10,5,20,2,1,1,1,3,5,15,,,,,,,,,,,,,, +2620,Greece,2007,1,21,22,34,28,15,54,0,13,19,11,8,3,24,9,16,15,14,17,23,52,13,7,16,10,8,6,21,7,1,0,3,2,0,1,5,0,0,1,0,0,0,,,,,,,,,,,,,, +2621,Greece,2008,0,5,14,12,4,6,9,0,5,9,2,4,3,7,14,18,33,38,45,28,76,9,16,19,18,13,10,36,0,9,12,3,3,4,16,8,1,5,4,2,1,12,,,,,,,,,,,,,, +2622,Greece,2009,3,20,22,23,23,15,31,4,8,14,8,9,2,12,11,19,30,10,14,12,34,8,4,10,9,6,10,20,1,8,7,3,5,4,9,2,3,6,5,3,0,11,,,,,,,,,,,,,, +2623,Greece,2010,1,19,27,20,18,19,22,3,1,13,4,4,4,15,9,15,17,11,8,10,20,11,6,6,2,4,2,6,2,11,6,5,1,1,7,4,1,3,0,0,2,5,,,,,,,,,,,,,, +2624,Greece,2011,2,30,30,26,24,19,38,1,9,14,9,3,5,20,12,11,26,13,10,11,28,15,6,7,3,3,2,9,1,5,9,3,2,2,10,2,1,3,3,3,2,11,,,,,,,,,,,,,, +2625,Greece,2012,2,20,31,25,23,24,45,3,11,8,12,1,3,21,12,7,20,10,12,11,39,16,0,8,4,5,4,9,2,6,8,2,1,3,12,0,3,3,4,3,1,9,,,,,,,,,,,,,, +2626,Greece,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,44,68,56,47,40,78,9,13,22,12,12,12,52 +2627,Greenland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2628,Greenland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2629,Greenland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2630,Greenland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2631,Greenland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2632,Greenland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2633,Greenland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2634,Greenland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2635,Greenland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2636,Greenland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2637,Greenland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2638,Greenland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2639,Greenland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2640,Greenland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2641,Greenland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2642,Greenland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2643,Greenland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2644,Greenland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2645,Greenland,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2646,Greenland,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2647,Greenland,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2648,Greenland,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2649,Greenland,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2650,Greenland,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2651,Greenland,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2652,Greenland,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2653,Greenland,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2654,Greenland,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2655,Greenland,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2656,Greenland,2009,,2,3,3,3,1,,,4,5,2,1,,,2,4,5,1,7,3,,,4,2,,2,,,,,,1,1,,,,,1,,,,,,,,,,,,,,,,,, +2657,Greenland,2010,0,5,7,5,5,2,2,1,5,0,0,4,2,0,4,10,6,1,1,2,1,4,11,7,4,5,2,1,0,3,0,1,1,0,0,0,2,0,0,0,0,0,,,,,,,,,,,,,, +2658,Greenland,2011,0,10,2,0,3,3,1,0,8,1,1,2,3,0,3,20,5,5,3,3,1,3,12,4,2,6,7,2,,3,0,0,0,0,0,1,1,0,0,0,0,0,,,,,,,,,,,,,, +2659,Greenland,2012,0,6,3,5,1,5,1,2,3,0,3,1,0,3,1,8,2,3,8,7,3,1,2,3,1,5,0,0,0,0,1,0,1,0,0,0,0,0,0,1,2,0,,,,,,,,,,,,,, +2660,Greenland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,21,14,6,7,7,3,3,9,3,3,13,4,1 +2661,Grenada,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2662,Grenada,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2663,Grenada,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2664,Grenada,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2665,Grenada,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2666,Grenada,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2667,Grenada,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2668,Grenada,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2669,Grenada,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2670,Grenada,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2671,Grenada,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2672,Grenada,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2673,Grenada,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2674,Grenada,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2675,Grenada,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2676,Grenada,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2677,Grenada,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2678,Grenada,1997,0,0,1,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2679,Grenada,1998,0,1,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2680,Grenada,1999,0,0,1,0,0,1,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2681,Grenada,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2682,Grenada,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2683,Grenada,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2684,Grenada,2003,,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2685,Grenada,2004,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2686,Grenada,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2687,Grenada,2006,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2688,Grenada,2007,,,,,,1,1,,1,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2689,Grenada,2008,,1,,1,2,,1,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2690,Grenada,2009,,,,1,,1,,,,1,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2691,Grenada,2010,,,,1,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2692,Grenada,2011,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2693,Grenada,2012,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2694,Grenada,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,, +2695,Guam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2696,Guam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2697,Guam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2698,Guam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2699,Guam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2700,Guam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2701,Guam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2702,Guam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2703,Guam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2704,Guam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2705,Guam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2706,Guam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2707,Guam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2708,Guam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2709,Guam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2710,Guam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2711,Guam,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2712,Guam,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2713,Guam,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2714,Guam,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2715,Guam,2000,2,1,6,6,9,6,9,0,3,1,2,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2716,Guam,2001,0,1,4,10,9,3,6,0,2,3,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2717,Guam,2002,3,3,5,5,6,12,4,5,1,6,3,3,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2718,Guam,2003,0,2,1,3,4,7,5,1,3,1,4,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2719,Guam,2004,0,0,1,2,6,2,3,0,0,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2720,Guam,2005,0,2,4,4,2,2,4,0,3,1,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2721,Guam,2006,0,1,1,2,3,2,6,0,0,0,1,1,2,2,3,0,2,0,0,1,0,7,1,0,0,0,0,1,0,0,0,0,1,1,0,0,2,2,1,1,0,0,,,,,,,,,,,,,, +2722,Guam,2007,0,0,0,2,0,0,0,0,0,0,0,1,1,1,13,2,0,1,4,0,1,16,2,2,0,0,1,1,0,0,1,0,0,0,0,1,0,1,0,1,0,0,,,,,,,,,,,,,, +2723,Guam,2008,0,0,1,7,8,3,4,0,1,2,0,1,1,3,12,1,0,4,1,4,6,13,2,0,2,2,1,2,0,1,0,0,0,1,1,0,1,1,0,0,3,0,,,,,,,,,,,,,, +2724,Guam,2009,0,1,0,5,3,9,4,1,1,3,1,1,2,0,13,4,3,3,5,6,5,13,2,2,0,3,1,0,1,1,0,0,2,0,0,0,0,2,1,1,1,1,,,,,,,,,,,,,, +2725,Guam,2010,0,2,3,5,5,7,3,1,0,4,3,3,0,3,9,0,3,7,1,5,2,9,1,3,5,2,4,0,0,0,1,0,1,0,1,0,3,0,1,1,0,1,,,,,,,,,,,,,, +2726,Guam,2011,0,1,0,2,7,4,4,0,1,1,1,0,3,4,5,0,4,1,5,1,4,7,1,3,1,3,1,3,0,2,0,0,2,0,3,0,1,0,0,0,3,0,,,,,,,,,,,,,, +2727,Guam,2012,0,1,0,4,5,2,6,0,0,0,0,2,1,2,5,4,2,0,1,0,1,10,0,1,1,5,4,3,0,1,0,1,3,0,1,0,0,0,1,0,0,1,,,,,,,,,,,,,, +2728,Guam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,1,2,5,0,10,6,2,2,5,2,2,3 +2729,Guatemala,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2730,Guatemala,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2731,Guatemala,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2732,Guatemala,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2733,Guatemala,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2734,Guatemala,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2735,Guatemala,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2736,Guatemala,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2737,Guatemala,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2738,Guatemala,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2739,Guatemala,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2740,Guatemala,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2741,Guatemala,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2742,Guatemala,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2743,Guatemala,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2744,Guatemala,1995,51,235,280,236,165,142,139,51,224,255,221,146,129,94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2745,Guatemala,1996,75,230,230,218,152,132,142,48,214,250,212,172,134,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2746,Guatemala,1997,45,246,217,229,161,155,150,33,228,225,183,120,109,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2747,Guatemala,1998,60,206,248,234,163,148,152,45,203,216,199,160,118,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2748,Guatemala,1999,34,216,248,235,171,141,158,24,229,230,194,174,121,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2749,Guatemala,2000,36,220,236,216,177,112,140,41,199,167,175,135,87,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2750,Guatemala,2001,27,171,201,169,137,98,97,33,180,173,118,101,74,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2751,Guatemala,2002,27,217,219,171,158,117,146,42,192,171,147,116,68,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2752,Guatemala,2003,29,175,200,169,156,125,128,24,186,179,157,104,88,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2753,Guatemala,2004,43,282,291,209,210,144,129,31,278,201,227,144,72,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2754,Guatemala,2005,39,251,258,185,187,127,115,38,339,245,277,176,88,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2755,Guatemala,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2756,Guatemala,2007,74,169,207,226,203,159,155,183,163,246,145,153,143,122,17,35,37,35,17,10,21,27,51,44,40,22,13,7,24,21,23,28,16,15,16,17,16,27,26,22,17,14,,,,,,,,,,,,,, +2757,Guatemala,2008,19,220,257,193,163,124,167,22,199,189,162,154,100,101,19,24,29,34,22,17,22,19,20,29,36,21,19,15,16,23,55,36,31,16,11,16,28,33,27,25,16,13,,,,,,,,,,,,,, +2758,Guatemala,2009,121,144,168,117,122,91,88,116,148,149,99,107,73,66,,,,,,,,,,,,,,,13,144,168,117,122,91,88,16,148,149,99,107,73,66,,,,,,,,,,,,,, +2759,Guatemala,2010,60,187,245,207,172,143,165,29,194,190,179,139,108,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2760,Guatemala,2011,18,197,205,172,162,136,152,25,186,192,154,154,102,106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2761,Guatemala,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2762,Guatemala,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,239,248,212,207,155,164,25,197,208,167,154,106,98 +2763,Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2764,Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2765,Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2766,Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2767,Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2768,Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2769,Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2770,Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2771,Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2772,Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2773,Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2774,Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2775,Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2776,Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2777,Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2778,Guinea,1995,18,244,538,357,189,98,61,28,202,255,153,64,37,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2779,Guinea,1996,29,319,631,416,214,133,104,30,223,338,213,111,52,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2780,Guinea,1997,25,326,653,483,220,147,100,38,246,383,189,91,48,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2781,Guinea,1998,22,409,763,494,271,168,117,37,303,365,202,115,71,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2782,Guinea,1999,30,434,736,519,294,173,104,44,345,395,259,110,78,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2783,Guinea,2000,39,551,860,570,282,203,103,66,314,446,245,114,82,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2784,Guinea,2001,24,506,876,612,325,185,154,59,419,433,249,127,77,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2785,Guinea,2002,24,413,958,634,336,139,149,42,399,439,259,109,77,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2786,Guinea,2003,34,617,1052,671,368,172,134,53,353,451,307,137,106,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2787,Guinea,2004,38,728,1091,726,389,199,135,62,470,521,334,159,100,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2788,Guinea,2005,51,749,1165,778,463,195,130,65,594,583,354,203,94,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2789,Guinea,2006,31,834,1168,916,512,274,162,85,586,581,396,187,118,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2790,Guinea,2007,46,901,1315,936,503,240,204,76,631,613,367,207,106,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2791,Guinea,2008,56,970,1419,985,561,264,198,64,610,686,377,190,93,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2792,Guinea,2009,65,746,1064,655,376,208,150,68,549,644,429,225,132,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2793,Guinea,2010,61,679,877,982,876,565,289,51,549,739,751,405,145,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2794,Guinea,2011,45,1051,1537,955,541,293,197,85,709,688,432,219,109,73,79,207,156,177,134,65,52,27,67,180,102,100,67,33,14,343,458,176,201,96,20,0,109,241,278,169,112,67,,,,,,,,,,,,,, +2795,Guinea,2012,28,761,1104,791,383,190,120,49,505,509,323,134,61,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2796,Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,107,1269,1690,1887,1031,642,474,78,987,1056,998,693,214,187 +2797,Guinea-Bissau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2798,Guinea-Bissau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2799,Guinea-Bissau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2800,Guinea-Bissau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2801,Guinea-Bissau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2802,Guinea-Bissau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2803,Guinea-Bissau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2804,Guinea-Bissau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2805,Guinea-Bissau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2806,Guinea-Bissau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2807,Guinea-Bissau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2808,Guinea-Bissau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2809,Guinea-Bissau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2810,Guinea-Bissau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2811,Guinea-Bissau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2812,Guinea-Bissau,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2813,Guinea-Bissau,1996,9,110,159,113,99,60,36,7,49,80,94,62,31,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2814,Guinea-Bissau,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2815,Guinea-Bissau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2816,Guinea-Bissau,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2817,Guinea-Bissau,2000,2,52,92,80,64,39,19,4,30,46,47,24,15,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2818,Guinea-Bissau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2819,Guinea-Bissau,2002,7,101,146,128,70,52,34,9,80,108,66,49,37,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2820,Guinea-Bissau,2003,9,101,153,118,108,63,27,7,97,82,78,58,38,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2821,Guinea-Bissau,2004,16,86,175,147,130,84,51,11,87,115,103,98,54,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2822,Guinea-Bissau,2005,14,116,167,153,130,72,42,13,78,110,92,82,44,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2823,Guinea-Bissau,2006,8,86,178,143,90,74,24,7,82,116,90,81,36,15,554,,,,,,,401,,,,,,,13,,,,,,,6,,,,,,,,,,,,,,,,,,,, +2824,Guinea-Bissau,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2825,Guinea-Bissau,2008,8,119,194,191,109,79,30,12,85,129,123,92,41,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2826,Guinea-Bissau,2009,8,124,230,172,138,82,38,5,88,149,119,92,47,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2827,Guinea-Bissau,2010,18,164,219,183,141,80,43,30,100,161,133,80,38,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2828,Guinea-Bissau,2011,6,140,230,181,104,65,36,12,119,122,90,56,44,25,34,43,77,81,57,32,17,30,40,69,57,29,16,11,17,6,4,5,6,0,2,10,4,3,2,2,0,1,,,,,,,,,,,,,, +2829,Guinea-Bissau,2012,7,145,262,183,115,63,38,7,121,157,98,56,33,25,41,26,61,62,40,37,12,29,26,44,38,39,33,9,6,6,5,4,4,2,0,2,2,4,4,0,1,0,,,,,,,,,,,,,, +2830,Guinea-Bissau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,204,387,262,169,100,62,36,166,275,145,80,69,31 +2831,Guyana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2832,Guyana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2833,Guyana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2834,Guyana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2835,Guyana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2836,Guyana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2837,Guyana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2838,Guyana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2839,Guyana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2840,Guyana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2841,Guyana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2842,Guyana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2843,Guyana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2844,Guyana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2845,Guyana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2846,Guyana,1995,7,8,5,6,9,6,7,3,5,7,6,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2847,Guyana,1996,4,8,14,4,5,4,7,4,8,4,4,5,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2848,Guyana,1997,1,15,19,12,2,5,8,3,9,8,8,4,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2849,Guyana,1998,9,29,56,42,36,2,12,13,32,38,26,4,8,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2850,Guyana,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2851,Guyana,2000,4,20,19,14,7,6,9,1,11,8,7,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2852,Guyana,2001,1,15,47,44,12,2,1,0,6,16,16,9,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2853,Guyana,2002,20,49,90,94,51,19,23,26,32,36,34,19,15,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2854,Guyana,2003,10,56,111,114,58,27,13,12,35,61,56,27,10,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2855,Guyana,2004,9,45,113,97,87,,4,15,35,38,29,23,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2856,Guyana,2005,12,48,130,116,81,41,20,14,41,62,41,30,11,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2857,Guyana,2006,6,37,61,59,40,15,5,1,15,21,20,14,3,1,12,28,76,73,48,12,13,13,16,36,29,12,5,20,4,1,3,2,1,,,3,1,,3,1,,,,,,,,,,,,,,,, +2858,Guyana,2007,2,15,43,44,41,12,8,1,20,19,17,5,3,3,10,20,43,56,30,21,13,13,17,32,24,10,4,8,3,1,9,6,5,5,1,4,2,2,2,2,,1,,,,,,,,,,,,,, +2859,Guyana,2008,7,29,51,71,47,22,11,4,20,23,13,12,3,7,9,20,32,47,30,13,14,7,13,23,12,11,5,6,7,5,12,4,7,2,0,4,1,7,6,4,2,0,,,,,,,,,,,,,, +2860,Guyana,2009,7,21,48,61,60,11,20,3,21,26,22,12,8,8,5,26,33,48,33,11,15,2,15,16,19,12,9,8,3,3,8,7,5,4,2,0,2,6,4,1,1,0,,,,,,,,,,,,,, +2861,Guyana,2010,2,32,38,65,49,22,13,2,22,25,19,20,10,6,9,23,34,46,33,22,11,8,10,28,17,13,11,9,5,11,7,7,12,4,1,9,4,4,2,6,1,2,,,,,,,,,,,,,, +2862,Guyana,2011,8,26,54,61,54,19,13,2,17,19,17,17,7,9,13,17,23,36,47,17,30,6,13,23,19,19,13,6,7,7,10,11,8,3,0,2,3,5,9,3,4,6,,,,,,,,,,,,,, +2863,Guyana,2012,5,30,39,68,64,23,8,4,17,10,17,12,7,5,5,11,36,60,48,19,19,10,19,21,28,22,26,15,2,8,12,10,8,3,6,0,5,5,6,8,2,2,,,,,,,,,,,,,, +2864,Guyana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,56,82,109,112,52,31,10,39,50,42,39,19,26 +2865,Haiti,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2866,Haiti,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2867,Haiti,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2868,Haiti,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2869,Haiti,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2870,Haiti,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2871,Haiti,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2872,Haiti,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2873,Haiti,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2874,Haiti,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2875,Haiti,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2876,Haiti,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2877,Haiti,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2878,Haiti,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2879,Haiti,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2880,Haiti,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2881,Haiti,1996,148,358,438,289,160,87,97,224,417,492,303,176,62,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2882,Haiti,1997,156,683,817,453,260,150,162,149,760,878,515,250,119,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2883,Haiti,1998,188,804,971,656,331,177,142,208,827,958,620,300,141,119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2884,Haiti,1999,286,812,1059,672,348,186,145,285,919,918,614,312,162,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2885,Haiti,2000,67,836,898,613,350,147,118,96,914,857,513,275,132,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2886,Haiti,2001,72,752,785,587,319,169,112,113,882,843,498,273,109,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2887,Haiti,2002,79,903,904,572,377,184,148,118,980,851,550,303,120,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2888,Haiti,2003,89,1002,981,625,406,208,147,122,1114,1064,606,378,165,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2889,Haiti,2004,94,918,964,606,376,207,176,137,1146,1045,688,386,176,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2890,Haiti,2005,69,1045,1035,701,451,222,156,116,1097,1099,633,414,170,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2891,Haiti,2006,93,1110,1132,672,455,201,174,137,1113,1039,638,387,184,126,803,343,406,369,258,140,148,725,361,462,312,237,134,98,130,160,151,98,87,44,38,148,165,164,121,60,43,27,,,,,,,,,,,,,, +2892,Haiti,2007,104,1166,1199,760,471,219,192,147,1261,1107,632,344,182,131,860,298,368,279,211,126,133,763,348,378,286,197,132,93,134,158,172,122,63,41,41,129,152,174,119,68,35,29,,,,,,,,,,,,,, +2893,Haiti,2008,90,1137,1337,696,491,242,175,154,1272,1204,677,378,179,139,692,346,423,333,242,140,118,638,392,488,356,220,141,126,132,186,156,110,71,46,32,128,157,198,98,58,40,51,,,,,,,,,,,,,, +2894,Haiti,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2895,Haiti,2010,98,1225,1357,718,469,259,160,158,1268,1223,608,358,207,134,579,364,456,377,263,153,122,532,332,427,317,198,121,94,109,142,157,111,70,42,34,87,152,166,101,60,42,34,,,,,,,,,,,,,, +2896,Haiti,2011,107,1239,1398,690,445,235,133,170,1356,1291,601,397,199,138,612,439,505,386,294,151,109,566,389,523,381,256,152,108,184,171,204,129,71,45,43,138,156,173,136,75,35,41,,,,,,,,,,,,,, +2897,Haiti,2012,126,1358,1564,757,475,271,164,160,1478,1418,697,416,220,157,704,364,501,373,261,175,105,616,367,430,318,273,123,109,203,183,245,156,93,54,47,176,202,248,136,73,65,37,,,,,,,,,,,,,, +2898,Haiti,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,949,1973,2563,1463,1011,545,385,956,2122,2241,1262,779,452,339 +2899,Honduras,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2900,Honduras,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2901,Honduras,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2902,Honduras,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2903,Honduras,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2904,Honduras,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2905,Honduras,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2906,Honduras,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2907,Honduras,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2908,Honduras,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2909,Honduras,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2910,Honduras,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2911,Honduras,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2912,Honduras,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2913,Honduras,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2914,Honduras,1995,42,280,540,204,130,236,58,54,208,292,134,76,136,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2915,Honduras,1996,51,247,389,142,108,190,21,43,167,245,106,69,149,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2916,Honduras,1997,26,214,321,111,78,140,28,38,166,174,80,61,116,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2917,Honduras,1998,147,277,256,211,205,181,50,103,206,192,158,152,135,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2918,Honduras,1999,150,288,268,219,220,190,52,100,214,201,164,160,140,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2919,Honduras,2000,30,123,371,246,277,214,43,25,21,269,258,270,160,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2920,Honduras,2001,12,47,509,344,337,257,27,13,25,347,352,339,196,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2921,Honduras,2002,76,29,519,353,338,257,24,65,23,351,339,354,193,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2922,Honduras,2003,52,20,344,235,227,161,17,42,15,232,225,236,127,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2923,Honduras,2004,54,20,379,259,247,189,18,40,13,218,211,220,121,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2924,Honduras,2005,13,238,280,215,152,134,152,27,219,222,125,107,81,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2925,Honduras,2006,21,213,297,213,139,96,147,28,206,234,123,85,87,129,72,36,81,67,46,40,48,63,26,54,46,34,16,27,26,24,36,29,19,11,29,9,28,37,29,27,19,27,,,,,,,,,,,,,, +2926,Honduras,2007,21,204,293,194,158,123,180,29,185,175,110,106,84,112,36,42,62,48,37,20,46,28,24,34,18,24,22,29,25,25,45,32,21,12,20,23,16,37,26,21,7,18,,,,,,,,,,,,,, +2927,Honduras,2008,11,254,263,202,140,103,174,26,152,170,114,90,82,116,33,28,55,47,33,35,44,32,24,34,30,18,21,17,15,26,40,28,23,19,19,16,26,37,28,24,9,20,,,,,,,,,,,,,, +2928,Honduras,2009,13,227,269,177,155,131,168,17,167,172,124,80,73,108,37,52,58,53,39,40,50,37,23,30,25,20,21,35,23,26,36,36,23,18,28,17,21,35,18,22,13,15,,,,,,,,,,,,,, +2929,Honduras,2010,15,177,246,207,165,113,157,28,186,163,106,103,69,107,30,33,53,35,41,30,57,32,24,31,34,22,20,40,27,37,44,38,27,20,26,17,19,42,39,15,11,20,,,,,,,,,,,,,, +2930,Honduras,2011,17,194,291,227,184,120,184,19,181,194,138,99,98,126,63,36,73,57,48,35,53,53,33,42,25,28,27,43,19,31,39,41,34,26,39,20,21,33,25,18,28,16,,,,,,,,,,,,,, +2931,Honduras,2012,18,247,285,192,184,129,146,15,180,157,115,88,75,114,49,38,62,48,33,24,61,41,25,35,21,29,21,22,26,27,46,32,22,18,28,15,29,37,25,15,18,24,,,,,,,,,,,,,, +2932,Honduras,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,300,391,317,248,191,224,90,277,246,173,159,119,174 +2933,Hungary,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2934,Hungary,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2935,Hungary,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2936,Hungary,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2937,Hungary,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2938,Hungary,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2939,Hungary,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2940,Hungary,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2941,Hungary,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2942,Hungary,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2943,Hungary,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2944,Hungary,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2945,Hungary,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2946,Hungary,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2947,Hungary,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2948,Hungary,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2949,Hungary,1996,3,28,139,151,209,140,105,2,30,42,51,63,27,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2950,Hungary,1997,0,8,51,163,164,90,69,1,9,25,35,24,19,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2951,Hungary,1998,0,14,64,149,163,62,59,0,13,27,34,25,17,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2952,Hungary,1999,2,16,48,155,183,74,47,4,17,19,37,19,7,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2953,Hungary,2000,0,8,24,85,104,58,27,1,7,17,19,22,10,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2954,Hungary,2001,1,11,42,97,133,73,42,0,10,17,31,27,13,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2955,Hungary,2002,1,10,41,102,145,61,39,1,9,27,36,26,14,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2956,Hungary,2003,0,6,30,89,140,70,38,0,16,26,27,30,11,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2957,Hungary,2004,2,7,38,99,145,64,63,2,6,23,25,29,14,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2958,Hungary,2005,0,6,24,67,117,67,39,1,5,13,11,22,15,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2959,Hungary,2006,2,10,31,71,98,54,33,3,17,16,19,28,11,29,1,33,53,98,214,161,127,1,21,45,55,76,59,123,1,0,7,6,15,10,13,1,0,0,7,4,9,13,,,,,,,,,,,,,, +2960,Hungary,2007,0,7,31,48,103,50,35,3,12,22,18,17,6,29,3,11,33,87,175,147,162,1,10,34,48,74,46,126,0,0,5,8,6,8,11,0,0,1,7,9,7,24,,,,,,,,,,,,,, +2961,Hungary,2008,0,12,23,47,86,72,24,0,11,13,15,12,5,25,1,19,39,91,141,146,136,2,22,33,42,52,55,117,1,1,4,7,8,8,11,0,1,4,1,8,3,22,,,,,,,,,,,,,, +2962,Hungary,2009,0,10,14,49,89,56,36,1,4,13,21,22,14,32,0,15,28,56,135,121,116,0,10,34,40,69,55,87,1,2,2,6,10,4,12,3,0,1,3,6,3,12,,,,,,,,,,,,,, +2963,Hungary,2010,1,9,14,36,51,50,23,0,9,16,14,9,15,20,4,34,41,111,159,170,180,4,29,42,65,81,92,123,0,4,4,2,7,10,6,2,2,1,2,8,3,19,,,,,,,,,,,,,, +2964,Hungary,2011,0,11,18,34,46,53,28,0,3,9,8,9,12,29,2,16,52,82,141,135,140,1,28,32,42,70,72,97,0,2,3,2,4,7,10,0,1,2,5,4,5,8,,,,,,,,,,,,,, +2965,Hungary,2012,2,7,15,29,64,41,25,0,8,14,15,11,14,28,5,23,29,73,127,152,99,1,18,24,43,46,71,120,0,1,1,2,4,6,2,0,0,1,3,2,4,9,,,,,,,,,,,,,, +2966,Hungary,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,22,54,81,170,194,137,1,26,34,60,60,89,106 +2967,Iceland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2968,Iceland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2969,Iceland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2970,Iceland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2971,Iceland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2972,Iceland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2973,Iceland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2974,Iceland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2975,Iceland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2976,Iceland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2977,Iceland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2978,Iceland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2979,Iceland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2980,Iceland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2981,Iceland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2982,Iceland,1995,0,0,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2983,Iceland,1996,,,,,,,,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2984,Iceland,1997,0,0,0,0,0,0,1,0,1,0,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2985,Iceland,1998,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2986,Iceland,1999,0,,,1,,,,0,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2987,Iceland,2000,,,,,,,,0,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2988,Iceland,2001,0,1,,,,,1,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2989,Iceland,2002,0,1,0,0,0,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2990,Iceland,2003,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2991,Iceland,2004,0,0,0,0,1,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2992,Iceland,2005,0,0,0,1,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2993,Iceland,2006,0,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,2,1,1,0,1,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +2994,Iceland,2007,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,2,1,0,1,0,0,7,3,0,1,0,0,,0,0,2,0,2,0,0,2,2,0,2,0,,,,,,,,,,,,,, +2995,Iceland,2008,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +2996,Iceland,2009,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +2997,Iceland,2010,0,0,1,0,3,0,0,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,3,3,2,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0,0,,,,,,,,,,,,,, +2998,Iceland,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,,,,,,,,,,,,,, +2999,Iceland,2012,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,,,,,,,,,,,,,, +3000,Iceland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,1,0,1,0,0,0,2,1,0,0,3 +3001,India,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3002,India,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3003,India,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3004,India,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3005,India,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3006,India,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3007,India,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3008,India,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3009,India,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3010,India,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3011,India,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3012,India,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3013,India,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3014,India,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3015,India,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3016,India,1995,16,334,391,287,216,123,68,32,179,169,80,49,30,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3017,India,1996,47,966,1143,934,666,424,213,79,618,571,281,167,103,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3018,India,1997,50,1257,1351,1056,753,499,245,125,861,799,369,187,102,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3019,India,1998,84,1773,2013,1851,1389,885,419,190,1375,1121,670,349,200,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3020,India,1999,327,7058,8856,7900,6172,3864,1982,785,5497,4848,2773,1504,898,436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3021,India,2000,1588,20963,31090,30829,24230,15308,8534,2250,14495,17287,11768,7516,4594,2697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3022,India,2001,1063,22483,30007,29649,23961,14879,7779,2125,15973,16743,10103,5633,3353,1526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3023,India,2002,2551,39923,54719,55829,44532,28199,14960,4200,28573,31946,21378,13233,7636,3814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3024,India,2003,2411,47251,61758,63587,52865,33739,18018,4745,34511,36317,23320,14055,8322,3985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3025,India,2004,3018,57208,72132,74450,62173,40769,22388,5860,41017,42808,27000,16121,9705,5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3026,India,2005,3185,62620,74678,76870,64843,43038,24726,6292,45136,45629,28577,17042,10513,5408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3027,India,2006,3566,68346,79037,82939,71621,49320,28716,6963,47702,47420,31128,18870,11752,6417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3028,India,2007,4305,73947,83850,88045,76408,53414,31922,7575,50289,49519,32407,20316,13195,7395,,,,250051,,,,,,,148811,,,,,,,105825,,,,,,,101015,,,,,,,,,,,,,,,,, +3029,India,2008,4648,77121,83798,90498,78815,56928,36079,8319,51485,49887,33664,21486,14407,8357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3030,India,2009,5001,78177,84003,90830,80097,59163,37419,8576,51945,49747,33754,22032,14929,8944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3031,India,2010,4871,78278,82757,90440,81210,60766,38442,8544,53415,49425,34035,22719,15527,9735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3032,India,2011,4649,78096,82762,89706,82921,63625,42443,8336,53958,49227,34698,23977,17182,10731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3033,India,2012,4697,75502,79594,88111,82356,63814,41322,8260,53975,47511,33378,23267,17300,10502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3034,India,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3035,Indonesia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3036,Indonesia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3037,Indonesia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3038,Indonesia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3039,Indonesia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3040,Indonesia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3041,Indonesia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3042,Indonesia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3043,Indonesia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3044,Indonesia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3045,Indonesia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3046,Indonesia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3047,Indonesia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3048,Indonesia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3049,Indonesia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3050,Indonesia,1995,6,203,297,306,302,228,109,16,160,244,282,192,90,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3051,Indonesia,1996,28,781,1349,1443,1305,1037,510,54,860,1175,1091,915,586,247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3052,Indonesia,1997,46,1320,2139,2221,2122,1461,753,65,1305,1671,1751,1365,788,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3053,Indonesia,1998,78,2732,3873,4054,3486,2654,1517,108,2674,3412,3130,2335,1610,617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3054,Indonesia,1999,106,3741,5277,4999,4401,3267,1697,140,3595,12859,3624,2812,1909,745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3055,Indonesia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3056,Indonesia,2001,298,5400,7279,6241,5538,4076,1914,354,5213,6040,4849,3537,2381,845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3057,Indonesia,2002,569,7826,10248,8760,7668,5332,2891,650,7366,8794,6773,4943,3118,1292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3058,Indonesia,2003,532,9570,12647,10925,9558,6720,3615,608,8734,10127,7889,6085,3907,1649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3059,Indonesia,2004,697,12546,17137,14881,14772,9669,5197,803,11509,13597,10953,9586,5422,2212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3060,Indonesia,2005,846,15215,20906,18401,17847,13509,6390,946,13916,16393,13022,10927,7539,2783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3061,Indonesia,2006,899,16285,22752,20332,20059,15869,7348,985,14377,17628,14421,12376,8786,3203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3062,Indonesia,2007,849,14835,21297,18606,18283,14176,6762,920,13371,16055,13211,11391,7965,2896,9828,8171,11436,8070,7652,7076,4676,8689,8119,9237,6490,5866,4700,2603,741,924,897,401,318,159,143,732,1387,1256,532,299,172,87,,,,,,,,,,,,,, +3063,Indonesia,2008,871,15339,22325,19224,18545,14907,6831,1015,13987,16292,13513,11899,8485,3143,15518,7891,10913,8421,8313,7871,5275,13794,8097,9290,7148,6493,5170,2656,1204,1065,1009,512,349,229,147,1047,1452,1348,677,349,207,78,,,,,,,,,,,,,, +3064,Indonesia,2009,811,15721,23011,19523,19026,15091,6755,1054,14039,16914,13481,12087,8558,3142,13787,7318,10334,7976,8049,7585,5005,12392,7370,8671,6564,6157,4821,2587,1479,1192,1211,672,410,301,168,1139,1540,1484,793,458,253,115,,,,,,,,,,,,,, +3065,Indonesia,2010,714,16501,24645,21090,20977,17329,7910,816,14800,17838,14629,13142,9524,3451,12831,6941,9711,7406,7688,7244,4794,11585,6542,8002,5854,5617,4603,2429,1268,1220,1245,714,454,323,199,1098,1749,1679,821,507,266,116,,,,,,,,,,,,,, +3066,Indonesia,2011,787,17406,25429,22353,22885,19404,9089,927,15840,18703,15900,14533,10556,3985,12340,6828,9696,7588,7541,7734,5183,11129,6916,7585,6044,5793,4848,2525,1518,1554,1539,825,532,401,247,1258,2063,2007,1061,537,348,164,,,,,,,,,,,,,, +3067,Indonesia,2012,824,17304,25460,23057,23751,20204,9554,879,15875,18484,16146,15215,11321,4245,12073,7233,9736,8059,8240,8125,5417,10883,7092,7898,6127,6055,5072,2856,1408,1700,1742,946,634,512,304,1276,2382,2223,1242,768,357,203,,,,,,,,,,,,,, +3068,Indonesia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13416,26056,37102,32925,33737,30440,15298,12638,25691,28125,23714,22172,16978,7290 +3069,Iran (Islamic Republic of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3070,Iran (Islamic Republic of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3071,Iran (Islamic Republic of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3072,Iran (Islamic Republic of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3073,Iran (Islamic Republic of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3074,Iran (Islamic Republic of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3075,Iran (Islamic Republic of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3076,Iran (Islamic Republic of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3077,Iran (Islamic Republic of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3078,Iran (Islamic Republic of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3079,Iran (Islamic Republic of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3080,Iran (Islamic Republic of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3081,Iran (Islamic Republic of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3082,Iran (Islamic Republic of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3083,Iran (Islamic Republic of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3084,Iran (Islamic Republic of),1995,118,751,754,636,494,737,921,234,1039,890,664,613,685,788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3085,Iran (Islamic Republic of),1996,63,390,449,431,274,450,577,113,599,412,347,323,452,534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3086,Iran (Islamic Republic of),1997,54,391,470,420,304,395,608,92,518,393,361,342,341,582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3087,Iran (Islamic Republic of),1998,35,426,492,400,245,363,579,87,561,403,307,290,431,522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3088,Iran (Islamic Republic of),1999,27,370,460,383,260,335,591,51,551,360,277,279,396,637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3089,Iran (Islamic Republic of),2000,29,438,467,387,295,344,642,77,593,410,322,320,407,647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3090,Iran (Islamic Republic of),2001,37,469,529,371,309,299,649,104,621,401,278,327,442,693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3091,Iran (Islamic Republic of),2002,29,457,502,375,322,302,668,77,558,332,275,298,439,732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3092,Iran (Islamic Republic of),2003,32,413,528,396,282,294,673,76,442,282,254,300,440,776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3093,Iran (Islamic Republic of),2004,16,360,542,357,305,298,640,65,419,301,213,293,378,710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3094,Iran (Islamic Republic of),2005,16,352,531,338,281,260,630,45,394,205,186,260,382,701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3095,Iran (Islamic Republic of),2006,12,357,495,365,318,249,686,48,430,236,185,292,336,793,36,84,155,127,101,117,300,43,106,77,94,123,175,328,69,212,237,179,152,95,187,80,250,245,234,195,115,136,,,,,,,,,,,,,, +3096,Iran (Islamic Republic of),2007,10,311,511,330,285,261,680,42,394,236,173,268,387,813,52,67,136,119,118,121,312,51,126,71,67,109,156,325,62,180,219,175,151,110,217,84,270,289,221,222,144,171,,,,,,,,,,,,,, +3097,Iran (Islamic Republic of),2008,11,292,466,330,322,267,706,42,386,254,137,263,367,879,59,90,131,120,103,124,324,50,112,77,62,129,141,343,55,179,243,183,135,121,213,79,292,310,251,218,146,144,,,,,,,,,,,,,, +3098,Iran (Islamic Republic of),2009,15,302,509,305,335,326,753,46,455,276,210,273,396,951,47,92,139,128,100,137,316,71,118,83,86,99,158,352,74,177,227,184,159,128,227,87,245,307,259,251,170,190,,,,,,,,,,,,,, +3099,Iran (Islamic Republic of),2010,18,292,487,354,296,310,760,54,433,288,208,276,398,1014,59,93,134,109,118,123,331,69,125,102,77,106,162,377,79,191,247,231,158,139,241,73,255,354,287,234,186,194,,,,,,,,,,,,,, +3100,Iran (Islamic Republic of),2011,13,289,543,398,315,351,877,37,473,313,184,296,441,1009,61,86,162,124,113,142,331,57,107,97,70,119,149,362,82,204,262,180,196,148,256,95,272,428,304,271,200,178,,,,,,,,,,,,,, +3101,Iran (Islamic Republic of),2012,16,288,601,442,303,317,850,43,434,318,206,252,374,965,90,88,187,141,109,141,352,74,115,113,80,116,200,385,97,182,286,222,174,170,242,81,258,410,323,260,231,169,,,,,,,,,,,,,, +3102,Iran (Islamic Republic of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,193,541,1174,892,652,658,1488,227,795,827,553,616,783,1653 +3103,Iraq,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3104,Iraq,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3105,Iraq,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3106,Iraq,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3107,Iraq,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3108,Iraq,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3109,Iraq,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3110,Iraq,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3111,Iraq,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3112,Iraq,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3113,Iraq,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3114,Iraq,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3115,Iraq,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3116,Iraq,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3117,Iraq,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3118,Iraq,1995,1125,862,1409,1085,863,900,271,725,304,1208,915,800,886,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3119,Iraq,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3120,Iraq,1997,416,791,708,541,832,664,208,384,738,665,499,722,641,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3121,Iraq,1998,453,879,781,583,913,735,242,426,806,740,542,806,712,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3122,Iraq,1999,519,1434,1246,1081,704,632,376,509,1208,978,824,571,527,202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3123,Iraq,2000,21,627,317,297,205,135,101,37,338,241,136,134,103,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3124,Iraq,2001,10,722,737,275,260,200,142,26,362,295,147,171,126,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3125,Iraq,2002,47,706,923,308,284,205,158,45,338,288,172,176,129,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3126,Iraq,2003,30,659,876,355,293,168,143,43,258,241,154,160,143,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3127,Iraq,2004,28,615,770,288,244,183,125,57,334,243,139,162,113,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3128,Iraq,2005,13,424,644,261,245,189,148,44,305,260,151,197,135,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3129,Iraq,2006,14,409,593,278,230,147,107,38,338,264,133,154,111,70,75,165,237,140,141,167,196,122,201,158,127,167,136,147,120,310,321,162,121,69,77,123,281,291,188,142,91,79,,,,,,,,,,,,,, +3130,Iraq,2007,20,319,531,276,223,188,126,34,289,228,154,134,130,74,80,177,249,159,154,183,231,93,195,155,123,187,155,152,120,279,292,178,125,86,91,90,286,270,180,120,101,72,,,,,,,,,,,,,, +3131,Iraq,2008,18,348,525,317,273,224,147,54,377,281,125,175,161,125,110,233,246,154,168,205,325,107,243,201,152,172,210,201,146,286,286,179,114,130,119,161,331,312,206,191,155,102,,,,,,,,,,,,,, +3132,Iraq,2009,33,377,506,340,263,213,196,63,361,294,186,216,158,141,111,216,225,203,170,189,285,125,218,154,167,201,180,222,175,329,315,211,150,120,98,162,317,334,217,215,139,122,,,,,,,,,,,,,, +3133,Iraq,2010,42,370,482,384,276,286,228,73,394,294,198,205,220,166,108,189,204,176,170,215,297,121,201,186,153,210,206,257,191,297,342,210,133,124,134,156,335,328,267,211,174,107,,,,,,,,,,,,,, +3134,Iraq,2011,35,304,395,313,237,223,183,66,368,258,164,159,201,153,117,165,168,146,114,233,269,124,216,156,157,163,213,222,213,294,274,174,145,129,125,172,326,323,245,202,183,152,,,,,,,,,,,,,, +3135,Iraq,2012,27,283,317,263,203,203,180,36,340,225,154,186,174,169,98,154,152,133,147,182,269,113,202,156,123,134,195,257,185,271,288,198,151,142,126,188,390,350,310,269,195,198,,,,,,,,,,,,,, +3136,Iraq,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,321,693,772,675,588,555,612,350,819,781,592,614,577,605 +3137,Ireland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3138,Ireland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3139,Ireland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3140,Ireland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3141,Ireland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3142,Ireland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3143,Ireland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3144,Ireland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3145,Ireland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3146,Ireland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3147,Ireland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3148,Ireland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3149,Ireland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3150,Ireland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3151,Ireland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3152,Ireland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3153,Ireland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3154,Ireland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3155,Ireland,1998,1,11,8,21,8,8,19,0,5,11,1,1,4,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3156,Ireland,1999,0,7,15,10,12,7,19,0,9,9,3,8,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3157,Ireland,2000,0,10,7,7,6,4,12,0,13,8,13,6,7,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3158,Ireland,2001,0,6,12,14,8,7,7,0,4,6,3,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3159,Ireland,2002,0,7,18,13,14,12,6,0,4,3,5,2,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3160,Ireland,2003,0,10,11,13,14,7,11,0,4,7,6,4,1,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3161,Ireland,2004,1,4,17,10,12,7,10,0,10,9,2,2,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3162,Ireland,2005,1,6,10,21,10,7,6,0,9,10,3,3,0,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3163,Ireland,2006,0,8,18,17,11,16,13,0,11,20,8,4,3,3,8,12,21,14,11,11,26,5,20,19,10,4,4,14,2,4,19,15,7,6,9,3,4,11,6,3,2,8,,,,,,,,,,,,,, +3164,Ireland,2007,0,26,49,32,28,26,26,0,14,28,22,14,2,4,41,32,53,52,14,20,51,39,21,53,28,13,9,35,0,16,46,28,8,14,16,2,14,28,24,6,10,10,,,,,,,,,,,,,, +3165,Ireland,2008,2,9,18,6,21,10,13,0,12,16,8,3,3,2,4,4,15,14,12,13,19,6,8,12,2,3,3,9,0,8,10,15,4,3,2,2,6,13,5,6,2,5,,,,,,,,,,,,,, +3166,Ireland,2009,0,5,19,13,12,10,12,3,5,13,7,1,3,3,4,8,15,11,13,11,14,5,2,13,13,6,7,8,4,9,27,12,10,7,9,1,11,11,11,5,4,4,,,,,,,,,,,,,, +3167,Ireland,2010,0,8,17,4,13,5,13,0,8,8,2,2,2,3,10,8,21,15,7,5,10,1,13,8,7,5,4,13,4,7,20,20,5,3,13,2,9,12,9,4,1,6,,,,,,,,,,,,,, +3168,Ireland,2011,0,7,9,12,12,7,6,0,8,7,7,8,2,1,2,5,21,14,10,4,10,6,3,12,6,7,7,4,0,8,15,9,6,1,7,5,3,15,7,4,2,1,,,,,,,,,,,,,, +3169,Ireland,2012,1,7,9,9,9,12,4,1,5,6,6,4,2,2,3,5,9,12,8,6,9,0,13,9,6,6,5,6,1,3,13,10,3,7,8,2,5,10,6,3,0,3,,,,,,,,,,,,,, +3170,Ireland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,19,55,41,38,32,35,5,28,32,34,11,7,13 +3171,Israel,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3172,Israel,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3173,Israel,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3174,Israel,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3175,Israel,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3176,Israel,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3177,Israel,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3178,Israel,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3179,Israel,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3180,Israel,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3181,Israel,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3182,Israel,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3183,Israel,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3184,Israel,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3185,Israel,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3186,Israel,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3187,Israel,1996,1,5,18,21,15,11,33,2,8,4,2,4,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3188,Israel,1997,5,9,27,20,17,19,43,2,16,10,18,7,3,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3189,Israel,1998,1,20,29,35,19,16,30,1,9,10,7,9,9,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3190,Israel,1999,3,19,20,28,19,13,36,2,8,15,7,7,5,26,11,11,19,13,13,11,21,15,6,18,5,5,5,24,11,3,7,10,5,7,20,5,5,5,7,11,11,25,,,,,,,,,,,,,, +3191,Israel,2000,0,20,26,23,23,13,38,3,10,16,6,3,3,32,18,6,17,26,14,16,30,19,7,10,12,6,11,21,6,0,8,5,5,2,12,6,3,7,7,7,6,26,,,,,,,,,,,,,, +3192,Israel,2001,2,13,24,24,20,17,36,1,9,15,14,5,2,24,8,12,27,14,16,12,37,11,5,17,13,8,9,31,3,3,6,7,5,6,16,7,0,6,2,2,2,14,,,,,,,,,,,,,, +3193,Israel,2002,4,10,24,13,17,13,25,3,21,18,13,5,6,20,9,4,17,10,6,12,32,8,11,16,4,9,6,17,2,5,3,3,3,5,19,4,7,6,6,8,6,22,,,,,,,,,,,,,, +3194,Israel,2003,2,9,14,30,12,10,33,2,17,16,18,7,5,14,10,4,19,12,7,7,25,4,3,20,14,7,9,28,0,3,7,12,3,5,13,6,3,7,8,8,7,17,,,,,,,,,,,,,, +3195,Israel,2004,1,5,14,21,17,8,26,1,7,12,12,8,3,16,11,7,17,13,15,14,32,8,4,18,8,19,9,22,0,5,5,6,7,2,9,4,3,11,9,7,6,21,,,,,,,,,,,,,, +3196,Israel,2005,1,4,15,18,15,5,26,0,6,14,7,7,5,19,11,3,11,15,12,16,24,10,6,16,8,4,9,23,5,0,2,4,4,2,8,2,1,4,3,6,4,10,,,,,,,,,,,,,, +3197,Israel,2006,1,4,19,17,6,9,11,0,3,10,7,5,2,14,17,4,15,19,17,6,29,10,7,14,7,7,4,22,1,0,3,2,2,2,4,1,5,2,5,5,6,11,,,,,,,,,,,,,, +3198,Israel,2007,1,7,16,22,11,8,17,1,2,17,3,6,3,12,13,10,20,19,14,15,31,10,7,23,16,10,7,22,1,1,5,5,4,2,6,1,4,3,2,4,3,5,,,,,,,,,,,,,, +3199,Israel,2008,0,13,12,12,7,6,10,1,5,5,7,6,0,11,3,10,26,13,13,9,21,5,2,10,8,5,5,17,2,2,12,4,2,3,16,3,1,11,2,5,3,10,,,,,,,,,,,,,, +3200,Israel,2009,2,7,21,13,10,1,15,0,4,13,10,9,2,12,3,12,15,13,16,9,18,3,4,5,9,3,5,15,0,3,12,6,4,8,12,2,5,14,6,6,4,7,,,,,,,,,,,,,, +3201,Israel,2010,1,13,28,12,8,4,6,0,1,8,10,2,0,10,9,18,33,17,5,14,13,6,4,7,9,6,3,17,3,8,16,3,2,2,10,0,3,7,6,4,4,6,,,,,,,,,,,,,, +3202,Israel,2011,0,29,30,11,5,9,9,0,10,10,7,4,4,7,6,39,54,15,13,11,17,11,5,14,4,4,7,7,2,14,13,8,3,1,1,1,1,7,6,1,2,6,,,,,,,,,,,,,, +3203,Israel,2012,0,9,33,20,3,6,13,0,4,20,11,4,2,17,9,40,70,27,16,11,16,8,11,22,7,4,1,12,0,11,30,8,3,2,5,2,5,9,6,5,6,10,,,,,,,,,,,,,, +3204,Israel,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,34,81,34,14,14,24,7,15,30,17,6,6,18 +3205,Italy,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3206,Italy,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3207,Italy,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3208,Italy,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3209,Italy,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3210,Italy,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3211,Italy,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3212,Italy,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3213,Italy,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3214,Italy,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3215,Italy,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3216,Italy,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3217,Italy,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3218,Italy,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3219,Italy,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3220,Italy,1995,9,59,202,157,94,124,289,7,52,93,57,40,51,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3221,Italy,1996,12,72,196,168,125,155,319,2,53,116,60,33,56,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3222,Italy,1997,14,93,228,244,168,187,381,5,74,129,90,48,68,201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3223,Italy,1998,15,128,327,248,189,226,429,10,105,150,110,58,75,283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3224,Italy,1999,7,78,155,137,114,104,247,8,49,63,63,35,32,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3225,Italy,2000,12,63,96,75,58,54,112,6,38,58,33,13,19,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3226,Italy,2001,4,43,130,98,63,50,99,4,37,77,46,24,14,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3227,Italy,2002,6,51,139,127,74,68,134,6,51,94,55,18,28,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3228,Italy,2003,19,79,219,168,80,61,146,6,63,121,77,24,13,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3229,Italy,2004,34,52,130,115,64,43,123,16,48,73,39,21,19,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3230,Italy,2005,8,93,191,137,101,61,115,3,80,145,56,25,19,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3231,Italy,2006,7,113,201,197,105,75,152,9,88,165,82,48,16,88,40,90,142,132,107,91,254,44,70,120,97,52,43,151,22,71,171,162,58,66,146,35,52,112,81,57,46,200,,,,,,,,,,,,,, +3232,Italy,2007,3,75,170,113,87,48,106,7,74,94,58,31,19,76,25,38,117,103,90,75,189,28,45,95,69,50,32,123,12,47,108,110,62,34,121,14,43,92,77,47,35,123,,,,,,,,,,,,,, +3233,Italy,2008,13,78,148,137,72,42,104,10,65,106,56,24,21,56,69,102,176,165,95,91,197,77,73,141,95,70,55,160,23,70,119,99,59,45,117,19,44,90,61,31,23,97,,,,,,,,,,,,,, +3234,Italy,2009,4,89,168,108,75,34,83,3,68,93,46,31,16,62,38,50,99,61,72,40,124,43,52,82,57,29,20,87,26,52,109,81,44,29,89,15,29,83,48,48,26,107,,,,,,,,,,,,,, +3235,Italy,2010,15,87,161,133,87,42,89,11,80,94,66,29,21,48,49,66,109,81,63,40,96,60,46,94,75,32,25,70,18,46,115,106,44,31,78,32,52,92,68,43,23,105,,,,,,,,,,,,,, +3236,Italy,2011,0,51,88,81,52,24,59,5,41,73,37,18,14,43,52,53,74,82,49,49,85,40,45,67,57,32,25,71,9,27,77,67,40,34,73,15,33,72,53,39,22,79,,,,,,,,,,,,,, +3237,Italy,2012,1,43,90,83,46,13,52,1,27,62,39,14,12,38,28,34,51,31,33,31,61,36,15,40,49,32,12,56,11,27,86,70,31,33,56,12,24,67,55,26,18,65,,,,,,,,,,,,,, +3238,Italy,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63,149,335,258,170,144,244,61,159,217,178,126,81,249 +3239,Jamaica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3240,Jamaica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3241,Jamaica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3242,Jamaica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3243,Jamaica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3244,Jamaica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3245,Jamaica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3246,Jamaica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3247,Jamaica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3248,Jamaica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3249,Jamaica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3250,Jamaica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3251,Jamaica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3252,Jamaica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3253,Jamaica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3254,Jamaica,1995,2,9,14,9,11,8,9,2,7,6,5,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3255,Jamaica,1996,1,9,10,12,12,8,3,1,5,3,5,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3256,Jamaica,1997,1,2,9,16,12,8,1,0,5,6,4,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3257,Jamaica,1998,0,3,19,9,10,7,7,1,8,3,8,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3258,Jamaica,1999,2,10,16,6,6,15,6,2,5,9,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3259,Jamaica,2000,0,6,13,13,15,6,5,1,8,8,7,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3260,Jamaica,2001,3,10,9,21,5,1,1,2,2,7,6,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3261,Jamaica,2002,0,9,11,8,7,7,4,1,3,3,3,1,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3262,Jamaica,2003,1,11,9,14,12,4,6,2,7,8,2,3,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3263,Jamaica,2004,0,9,7,4,13,8,10,0,4,6,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3264,Jamaica,2005,0,4,6,6,10,6,7,0,1,5,4,0,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3265,Jamaica,2006,0,9,10,9,6,6,9,0,2,5,3,1,0,1,0,2,0,2,3,2,1,1,1,2,2,3,0,0,4,2,1,2,1,2,0,0,0,1,0,0,0,0,,,,,,,,,,,,,, +3266,Jamaica,2007,,12,10,7,17,7,3,2,5,2,6,2,2,3,,0,3,2,2,0,0,,0,2,0,2,0,1,,0,0,1,1,0,0,,0,1,1,0,0,0,,,,,,,,,,,,,, +3267,Jamaica,2008,3,2,10,10,11,11,5,1,8,3,3,1,1,6,2,2,2,1,3,3,3,3,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3268,Jamaica,2009,1,5,8,10,7,4,5,7,7,8,7,4,3,1,2,4,2,8,4,8,4,0,3,6,3,0,2,2,0,0,1,0,1,1,0,0,0,1,0,1,0,0,,,,,,,,,,,,,, +3269,Jamaica,2010,1,7,15,15,8,6,7,0,5,4,5,1,0,2,11,0,5,3,5,5,7,3,1,2,1,1,0,2,0,0,1,1,0,0,0,2,0,1,0,0,1,0,,,,,,,,,,,,,, +3270,Jamaica,2011,0,2,6,3,4,4,3,1,3,4,0,3,1,1,6,1,0,5,2,5,6,5,1,1,0,3,1,0,0,2,0,0,0,0,0,0,1,2,0,0,1,1,,,,,,,,,,,,,, +3271,Jamaica,2012,1,10,8,3,5,5,1,1,1,5,4,2,0,0,3,0,3,1,3,4,4,6,2,6,0,1,0,0,0,0,2,0,4,0,0,0,0,1,1,0,0,1,,,,,,,,,,,,,, +3272,Jamaica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,12,18,11,11,6,1,6,6,4,6,7,1,2 +3273,Japan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3274,Japan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3275,Japan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3276,Japan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3277,Japan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3278,Japan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3279,Japan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3280,Japan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3281,Japan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3282,Japan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3283,Japan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3284,Japan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3285,Japan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3286,Japan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3287,Japan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3288,Japan,1995,15,342,627,995,1847,2059,4089,14,258,476,298,476,637,2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3289,Japan,1996,16,309,621,843,1756,1878,3639,7,224,409,262,364,565,1974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3290,Japan,1997,8,304,625,798,1793,1908,4055,11,248,455,237,405,547,2177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3291,Japan,1998,2,306,597,724,1571,1660,3545,6,243,418,233,329,417,1884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3292,Japan,1999,6,290,623,706,1605,1768,4117,7,236,459,253,292,419,2128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3293,Japan,2000,2,246,572,676,1494,1509,3816,5,222,464,213,292,384,1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3294,Japan,2001,3,220,576,632,1319,1513,3840,5,175,437,228,250,330,1880,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3295,Japan,2002,2,191,549,579,1192,1334,3747,3,192,395,259,248,308,1808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3296,Japan,2003,1,210,521,550,1063,1388,3731,2,203,395,246,254,313,1966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3297,Japan,2004,2,193,462,599,934,1363,3759,6,182,364,230,222,294,1861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3298,Japan,2005,9,197,488,605,868,1418,3867,5,187,428,249,224,309,2077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3299,Japan,2006,3,175,436,529,743,1388,3728,5,179,361,280,213,256,1863,23,271,631,556,643,991,2720,24,284,566,379,229,329,1452,15,79,173,220,208,397,1775,12,79,179,148,147,272,1499,,,,,,,,,,,,,, +3300,Japan,2007,1,142,372,512,668,1174,3678,3,134,318,231,156,212,1832,28,271,591,536,549,1000,2748,35,278,554,367,256,359,1479,12,84,196,211,191,351,1740,13,62,158,168,127,271,1558,,,,,,,,,,,,,, +3301,Japan,2008,2,117,339,456,599,1063,3482,1,115,293,230,173,253,1872,27,269,609,535,532,922,2688,27,280,528,398,261,283,1497,21,62,147,199,185,350,1752,14,51,157,158,136,287,1554,,,,,,,,,,,,,, +3302,Japan,2009,1,134,328,410,580,946,3406,3,105,287,254,169,221,2009,14,266,533,511,506,879,2668,24,250,498,396,253,294,1499,12,58,161,182,152,316,1727,13,51,142,148,155,283,1575,,,,,,,,,,,,,, +3303,Japan,2010,1,128,252,382,469,911,3326,6,89,232,194,155,183,1909,23,291,533,522,501,849,2742,31,250,421,391,244,304,1528,15,65,131,164,155,309,1594,9,52,134,131,117,238,1518,,,,,,,,,,,,,, +3304,Japan,2011,0,96,215,367,465,812,3256,5,94,213,203,148,223,1840,18,240,436,501,479,748,2651,35,227,435,353,270,307,1531,17,54,112,171,169,268,1734,5,43,121,162,132,248,1590,,,,,,,,,,,,,, +3305,Japan,2012,2,94,209,309,415,741,3230,2,79,180,169,111,175,1947,23,212,389,471,427,656,2527,17,197,366,325,228,276,1561,8,60,98,169,146,279,1598,8,50,119,131,115,244,1584,,,,,,,,,,,,,, +3306,Japan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,388,674,849,974,1613,7975,35,313,627,618,510,636,5252 +3307,Jordan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3308,Jordan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3309,Jordan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3310,Jordan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3311,Jordan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3312,Jordan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3313,Jordan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3314,Jordan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3315,Jordan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3316,Jordan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3317,Jordan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3318,Jordan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3319,Jordan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3320,Jordan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3321,Jordan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3322,Jordan,1995,0,19,37,17,20,26,11,1,15,4,10,14,12,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3323,Jordan,1996,2,22,30,17,13,21,9,1,8,11,8,16,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3324,Jordan,1997,5,14,18,11,10,19,22,3,8,6,4,4,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3325,Jordan,1998,0,22,26,7,12,10,6,0,7,6,3,3,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3326,Jordan,1999,0,16,19,16,10,8,2,0,8,7,2,2,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3327,Jordan,2000,0,8,16,13,9,14,2,0,8,9,1,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3328,Jordan,2001,2,7,22,10,10,8,7,0,8,6,1,0,9,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3329,Jordan,2002,0,8,9,11,12,11,5,0,9,4,3,2,12,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3330,Jordan,2003,0,19,20,17,8,13,0,1,6,7,2,3,12,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3331,Jordan,2004,0,8,12,14,6,17,0,0,10,4,3,5,12,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3332,Jordan,2005,0,8,17,9,4,6,5,1,6,6,6,5,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3333,Jordan,2006,0,9,23,16,7,4,10,0,8,11,3,5,2,6,13,3,5,4,6,3,6,8,6,3,3,3,2,5,22,11,13,7,4,1,10,9,26,22,20,13,14,9,,,,,,,,,,,,,, +3334,Jordan,2007,0,7,20,14,9,7,5,0,9,12,6,1,12,7,2,9,8,6,0,4,4,5,6,9,6,5,3,3,17,6,19,10,3,8,4,9,20,21,7,12,11,7,,,,,,,,,,,,,, +3335,Jordan,2008,0,13,10,3,5,13,5,0,20,15,6,4,7,3,6,4,8,5,3,7,3,4,8,10,3,1,4,2,16,10,12,8,8,5,7,10,25,17,18,7,12,10,,,,,,,,,,,,,, +3336,Jordan,2009,1,5,15,14,10,7,6,0,7,14,8,3,7,12,1,1,11,3,2,7,4,6,5,10,6,1,3,4,19,18,13,7,6,5,5,13,24,30,11,15,7,17,,,,,,,,,,,,,, +3337,Jordan,2010,2,5,14,10,12,12,6,3,14,24,4,3,5,3,3,4,3,5,3,2,5,11,3,10,6,4,4,6,15,7,6,8,3,4,2,17,18,23,20,12,7,8,,,,,,,,,,,,,, +3338,Jordan,2011,0,9,10,13,8,13,5,0,8,11,8,4,8,6,3,3,9,9,3,7,8,3,11,9,3,2,4,7,15,10,5,3,5,2,5,30,16,11,11,2,9,4,,,,,,,,,,,,,, +3339,Jordan,2012,0,8,12,8,5,7,7,1,9,12,7,1,3,5,2,6,10,5,2,5,6,3,9,7,7,4,4,3,16,6,11,9,6,5,2,13,21,26,23,14,11,9,,,,,,,,,,,,,, +3340,Jordan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,19,39,37,19,10,21,8,43,49,30,19,11,9 +3341,Kazakhstan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3342,Kazakhstan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3343,Kazakhstan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3344,Kazakhstan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3345,Kazakhstan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3346,Kazakhstan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3347,Kazakhstan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3348,Kazakhstan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3349,Kazakhstan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3350,Kazakhstan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3351,Kazakhstan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3352,Kazakhstan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3353,Kazakhstan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3354,Kazakhstan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3355,Kazakhstan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3356,Kazakhstan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3357,Kazakhstan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3358,Kazakhstan,1997,22,68,827,725,475,485,211,47,78,673,423,141,142,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3359,Kazakhstan,1998,34,795,1009,817,628,515,78,62,625,713,457,204,174,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3360,Kazakhstan,1999,34,778,1217,1026,560,368,165,60,822,872,452,226,171,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3361,Kazakhstan,2000,36,1057,1409,1379,923,439,218,84,999,1079,599,275,202,204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3362,Kazakhstan,2001,38,1038,1477,1485,1011,429,211,88,1040,1062,570,263,194,173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3363,Kazakhstan,2002,33,1067,1565,1490,1042,435,212,68,1035,1086,669,348,194,208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3364,Kazakhstan,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3365,Kazakhstan,2004,24,989,1291,1183,899,336,196,62,844,912,517,307,178,189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3366,Kazakhstan,2005,31,917,1142,983,795,274,175,46,751,767,436,286,121,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3367,Kazakhstan,2006,11,888,981,848,744,287,169,30,741,636,370,234,116,150,1025,1717,1608,1250,988,445,237,1080,1800,1644,914,551,193,134,1515,638,332,248,180,89,80,1495,580,396,281,185,93,85,,,,,,,,,,,,,, +3368,Kazakhstan,2007,14,881,976,859,714,279,150,38,782,605,367,249,124,157,669,1690,1579,1096,855,423,209,678,1773,1477,816,487,184,119,483,499,290,187,137,49,51,2,410,272,207,132,53,51,,,,,,,,,,,,,, +3369,Kazakhstan,2008,14,897,968,811,752,306,160,44,710,659,320,230,137,185,120,1759,1440,1049,803,418,187,203,1854,1360,792,454,171,127,329,392,301,185,130,61,40,271,347,260,207,112,53,66,,,,,,,,,,,,,, +3370,Kazakhstan,2009,6,765,812,676,573,252,116,37,662,519,337,200,122,135,133,1588,1249,800,738,329,145,171,1629,1251,672,375,145,93,261,332,244,147,117,58,37,210,262,270,142,97,63,40,,,,,,,,,,,,,, +3371,Kazakhstan,2010,15,675,754,595,511,251,127,33,566,520,263,205,122,132,93,1430,1122,774,636,364,135,162,1424,1235,583,384,167,82,236,317,213,140,97,61,36,194,255,221,147,111,58,41,,,,,,,,,,,,,, +3372,Kazakhstan,2011,6,602,716,516,515,235,91,15,439,495,260,190,109,117,95,1281,1126,775,569,323,118,139,1355,1143,583,353,144,90,191,271,223,134,113,71,40,176,200,216,145,89,76,51,,,,,,,,,,,,,, +3373,Kazakhstan,2012,9,508,586,514,479,233,98,16,415,411,241,177,97,100,92,1164,1009,798,590,355,118,151,1199,1109,514,330,138,109,158,208,244,139,114,70,33,150,197,194,121,91,75,50,,,,,,,,,,,,,, +3374,Kazakhstan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,235,1991,2957,2604,2104,1337,611,276,1712,2005,1154,798,580,594 +3375,Kenya,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3376,Kenya,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3377,Kenya,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3378,Kenya,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3379,Kenya,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3380,Kenya,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3381,Kenya,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3382,Kenya,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3383,Kenya,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3384,Kenya,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3385,Kenya,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3386,Kenya,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3387,Kenya,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3388,Kenya,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3389,Kenya,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3390,Kenya,1995,154,2072,3073,1675,920,485,296,187,1802,1759,741,411,242,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3391,Kenya,1996,151,2492,3820,2097,993,498,311,252,2290,2327,926,462,245,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3392,Kenya,1997,53,2881,4374,2333,1100,482,284,242,2573,2604,1086,499,242,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3393,Kenya,1998,210,3372,5477,2983,1378,626,382,318,3315,3469,1378,656,324,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3394,Kenya,1999,237,3835,6078,3349,1545,645,405,373,3850,3997,1596,760,348,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3395,Kenya,2000,264,3739,6653,3548,1630,630,414,416,3916,4363,1874,831,347,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3396,Kenya,2001,299,4083,7070,3903,1771,723,443,464,4116,4822,2063,935,394,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3397,Kenya,2002,299,4445,7708,4306,2023,807,433,392,4542,5465,2267,996,445,190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3398,Kenya,2003,341,4918,8515,4560,2167,928,567,487,5003,6023,2618,1171,551,309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3399,Kenya,2004,391,5388,9016,5142,2404,973,576,519,5458,6326,2850,1236,558,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3400,Kenya,2005,359,4790,8832,5069,2521,1031,590,577,5144,6521,2781,1266,593,315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3401,Kenya,2006,387,4708,8229,4975,2467,1037,645,583,4953,6052,2792,1343,604,379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3402,Kenya,2007,474,4752,8132,4959,2361,1084,601,599,4594,5979,2774,1180,542,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3403,Kenya,2008,451,4709,8128,4924,2302,1025,583,586,4355,5475,2431,1065,481,296,1490,2154,3927,3516,2117,1104,902,1423,2406,4188,2778,1537,826,647,1076,1040,1839,1416,794,418,257,946,1118,1806,1090,567,301,203,,,,,,,,,,,,,, +3404,Kenya,2009,470,4667,8081,5067,2565,1030,659,662,4306,5387,2512,1104,540,352,1255,2363,4789,4109,2404,1274,1130,1272,2533,4921,3303,1550,977,707,1638,1366,2366,2006,1110,508,407,1346,1412,2394,1491,730,361,303,,,,,,,,,,,,,, +3405,Kenya,2010,357,4698,7945,5077,2509,994,658,549,4044,5112,2372,1056,544,345,1038,2189,4427,4131,2491,1363,1291,1044,2410,4640,3156,1767,1047,848,1485,1341,2383,1975,1101,536,511,1248,1375,2368,1567,743,396,353,,,,,,,,,,,,,, +3406,Kenya,2011,356,4773,8376,5201,2660,1045,665,629,4183,4917,2434,1025,477,344,1000,2279,4279,3957,2453,1296,1220,1008,2309,4162,2979,1641,996,815,1498,1375,2317,2007,1140,571,471,1297,1339,2193,1450,689,387,335,,,,,,,,,,,,,, +3407,Kenya,2012,393,4893,8149,5302,2493,1099,669,603,4097,4975,2363,993,529,379,942,2079,4012,3699,2235,1317,1279,965,2149,3841,2753,1584,882,841,1315,1272,2159,1779,1036,539,458,1150,1227,2091,1394,731,415,368,,,,,,,,,,,,,, +3408,Kenya,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2209,7614,13059,10306,5571,2776,2387,2174,6425,9717,6052,3002,1641,1402 +3409,Kiribati,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3410,Kiribati,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3411,Kiribati,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3412,Kiribati,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3413,Kiribati,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3414,Kiribati,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3415,Kiribati,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3416,Kiribati,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3417,Kiribati,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3418,Kiribati,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3419,Kiribati,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3420,Kiribati,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3421,Kiribati,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3422,Kiribati,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3423,Kiribati,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3424,Kiribati,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3425,Kiribati,1996,0,4,1,2,2,2,2,2,3,3,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3426,Kiribati,1997,1,2,0,0,5,1,1,2,0,0,2,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3427,Kiribati,1998,1,6,10,2,3,2,1,2,7,5,3,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3428,Kiribati,1999,2,6,4,2,4,4,3,1,9,9,6,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3429,Kiribati,2000,2,9,3,3,3,8,2,2,5,6,3,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3430,Kiribati,2001,4,10,7,3,3,5,3,4,7,7,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3431,Kiribati,2002,5,11,1,7,7,7,,5,15,8,8,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3432,Kiribati,2003,5,13,5,9,6,6,0,5,20,4,12,7,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3433,Kiribati,2004,8,17,10,12,10,9,3,7,31,9,12,7,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3434,Kiribati,2005,3,15,15,12,17,4,1,5,22,12,7,7,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3435,Kiribati,2006,3,18,18,16,18,3,7,5,15,5,5,1,8,3,11,10,6,9,11,7,9,20,10,5,2,1,2,1,29,17,5,8,2,4,2,25,9,7,6,3,2,2,,,,,,,,,,,,,, +3436,Kiribati,2007,2,15,7,10,6,10,3,8,13,6,8,9,4,2,12,12,2,8,4,2,4,16,4,3,5,3,3,0,31,24,4,4,2,6,2,36,15,5,11,1,3,3,,,,,,,,,,,,,, +3437,Kiribati,2008,2,30,9,15,10,2,5,4,33,9,12,9,3,4,9,7,4,6,9,4,2,12,8,6,1,1,1,1,15,14,16,8,8,2,2,10,8,3,6,12,1,2,,,,,,,,,,,,,, +3438,Kiribati,2009,6,22,13,12,8,6,6,10,19,12,9,14,5,3,8,9,2,5,4,4,1,10,8,2,6,5,3,3,11,6,3,5,5,1,2,11,6,4,1,3,1,0,,,,,,,,,,,,,, +3439,Kiribati,2010,3,27,13,10,9,6,2,5,15,7,4,8,5,4,8,17,10,7,4,8,0,12,9,3,3,4,4,2,8,10,6,8,5,1,1,14,9,2,3,2,1,1,,,,,,,,,,,,,, +3440,Kiribati,2011,4,17,9,3,10,9,3,6,26,12,9,16,12,4,22,15,2,7,6,3,3,21,11,7,4,1,4,3,21,6,1,4,5,2,3,16,12,5,7,3,2,0,,,,,,,,,,,,,, +3441,Kiribati,2012,4,19,12,16,17,11,5,4,15,11,10,7,2,1,23,18,9,8,8,3,2,18,19,4,4,1,3,2,15,5,7,3,6,5,2,10,9,2,3,0,2,4,,,,,,,,,,,,,, +3442,Kiribati,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,41,41,30,27,17,14,46,36,32,35,19,15,8 +3443,Kuwait,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3444,Kuwait,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3445,Kuwait,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3446,Kuwait,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3447,Kuwait,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3448,Kuwait,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3449,Kuwait,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3450,Kuwait,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3451,Kuwait,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3452,Kuwait,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3453,Kuwait,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3454,Kuwait,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3455,Kuwait,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3456,Kuwait,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3457,Kuwait,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3458,Kuwait,1995,0,15,51,32,17,9,0,0,8,24,9,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3459,Kuwait,1996,0,11,45,16,30,4,1,1,12,17,8,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3460,Kuwait,1997,1,23,38,37,22,6,7,1,17,26,11,7,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3461,Kuwait,1998,0,14,42,42,20,11,5,0,13,14,9,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3462,Kuwait,1999,0,18,49,26,11,10,4,2,9,23,5,6,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3463,Kuwait,2000,0,10,44,32,21,11,5,1,11,24,12,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3464,Kuwait,2001,0,13,37,29,19,1,6,1,13,30,14,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3465,Kuwait,2002,0,14,47,32,26,9,3,0,15,37,11,7,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3466,Kuwait,2003,1,14,39,33,26,11,5,1,16,31,18,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3467,Kuwait,2004,0,20,63,38,22,9,7,0,14,44,12,7,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3468,Kuwait,2005,0,12,45,29,26,8,3,0,13,31,11,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3469,Kuwait,2006,1,19,72,40,37,14,3,0,17,41,23,5,6,6,1,8,28,6,3,0,7,5,7,6,4,1,0,0,3,22,69,45,13,5,2,8,22,44,28,18,3,2,,,,,,,,,,,,,, +3470,Kuwait,2007,1,16,69,25,29,8,5,0,26,53,18,13,7,4,2,7,29,17,4,3,1,4,4,12,8,1,1,1,1,24,62,48,17,6,2,7,16,38,39,14,2,1,,,,,,,,,,,,,, +3471,Kuwait,2008,0,18,90,56,34,11,9,2,33,47,27,7,5,6,3,4,36,31,18,6,3,6,13,21,9,3,2,3,6,24,75,58,16,9,3,4,27,73,44,12,7,5,,,,,,,,,,,,,, +3472,Kuwait,2009,0,26,72,67,36,12,8,1,39,86,18,10,4,7,2,5,41,17,15,8,3,5,9,31,10,5,3,1,4,18,81,33,20,8,3,7,39,80,55,24,12,7,,,,,,,,,,,,,, +3473,Kuwait,2010,1,16,67,50,48,10,11,4,41,78,30,10,11,8,3,10,33,26,15,6,5,4,11,32,11,5,1,1,4,25,65,40,21,9,8,7,32,92,64,25,9,6,,,,,,,,,,,,,, +3474,Kuwait,2011,0,13,41,36,35,11,5,0,23,30,15,9,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3475,Kuwait,2012,0,14,59,49,35,15,3,3,40,73,15,12,6,4,1,6,35,18,16,6,4,3,8,26,11,3,3,0,11,20,38,28,18,8,1,6,13,69,31,18,5,3,,,,,,,,,,,,,, +3476,Kuwait,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,32,97,96,64,30,18,11,70,164,65,24,16,9 +3477,Kyrgyzstan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3478,Kyrgyzstan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3479,Kyrgyzstan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3480,Kyrgyzstan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3481,Kyrgyzstan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3482,Kyrgyzstan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3483,Kyrgyzstan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3484,Kyrgyzstan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3485,Kyrgyzstan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3486,Kyrgyzstan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3487,Kyrgyzstan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3488,Kyrgyzstan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3489,Kyrgyzstan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3490,Kyrgyzstan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3491,Kyrgyzstan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3492,Kyrgyzstan,1995,3,109,171,165,65,38,30,1,70,94,34,18,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3493,Kyrgyzstan,1996,4,148,210,156,86,38,40,8,90,93,55,18,26,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3494,Kyrgyzstan,1997,1,212,381,349,143,90,38,4,115,133,64,22,29,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3495,Kyrgyzstan,1998,4,105,176,141,75,43,21,3,68,89,54,20,22,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3496,Kyrgyzstan,1999,5,216,388,244,142,73,49,8,137,199,75,40,31,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3497,Kyrgyzstan,2000,4,128,227,205,115,52,46,6,128,146,100,41,30,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3498,Kyrgyzstan,2001,0,176,287,217,159,54,44,0,133,183,105,45,30,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3499,Kyrgyzstan,2002,0,202,268,233,137,61,45,0,153,179,116,44,39,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3500,Kyrgyzstan,2003,0,189,298,241,145,63,70,0,178,227,109,61,29,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3501,Kyrgyzstan,2004,3,221,277,265,164,58,69,11,196,228,104,59,34,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3502,Kyrgyzstan,2005,1,247,303,269,194,66,84,15,215,236,141,70,33,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3503,Kyrgyzstan,2006,3,245,298,245,179,75,75,13,228,203,107,75,32,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3504,Kyrgyzstan,2007,3,243,274,186,186,62,63,11,216,213,114,67,47,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3505,Kyrgyzstan,2008,1,261,275,190,155,70,53,13,209,217,104,61,41,62,54,298,239,193,186,99,101,78,242,226,118,98,49,55,251,296,144,76,73,32,12,233,177,118,67,46,22,38,,,,,,,,,,,,,, +3506,Kyrgyzstan,2009,7,251,252,185,168,54,41,14,214,186,97,60,29,51,51,339,255,210,204,120,99,72,319,258,127,101,56,56,222,294,142,97,64,25,30,175,202,117,67,60,33,30,,,,,,,,,,,,,, +3507,Kyrgyzstan,2010,5,261,260,188,141,64,48,5,223,199,98,71,40,42,39,283,249,189,199,120,92,57,264,232,107,86,59,52,239,261,146,68,61,31,26,186,217,153,107,69,40,31,,,,,,,,,,,,,, +3508,Kyrgyzstan,2011,6,225,204,179,168,77,41,13,200,191,84,60,50,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3509,Kyrgyzstan,2012,4,210,255,207,184,86,30,8,195,173,108,55,42,37,56,364,311,267,220,166,85,55,280,259,109,118,94,64,285,321,163,91,62,42,23,232,197,141,94,79,39,40,,,,,,,,,,,,,, +3510,Kyrgyzstan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,301,836,737,488,470,317,170,293,705,604,332,232,199,175 +3511,Lao People's Democratic Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3512,Lao People's Democratic Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3513,Lao People's Democratic Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3514,Lao People's Democratic Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3515,Lao People's Democratic Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3516,Lao People's Democratic Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3517,Lao People's Democratic Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3518,Lao People's Democratic Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3519,Lao People's Democratic Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3520,Lao People's Democratic Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3521,Lao People's Democratic Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3522,Lao People's Democratic Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3523,Lao People's Democratic Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3524,Lao People's Democratic Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3525,Lao People's Democratic Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3526,Lao People's Democratic Republic,1995,6,56,71,68,78,90,55,3,49,49,69,54,52,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3527,Lao People's Democratic Republic,1996,1,42,80,97,131,127,84,4,31,62,80,64,59,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3528,Lao People's Democratic Republic,1997,2,61,91,151,158,156,124,2,60,83,102,102,88,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3529,Lao People's Democratic Republic,1998,4,77,152,150,177,211,152,6,59,121,122,108,90,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3530,Lao People's Democratic Republic,1999,5,91,175,183,213,193,191,9,60,115,142,141,98,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3531,Lao People's Democratic Republic,2000,7,92,128,166,201,177,176,10,59,95,131,122,91,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3532,Lao People's Democratic Republic,2001,10,81,137,176,219,186,164,6,51,99,121,138,104,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3533,Lao People's Democratic Republic,2002,4,86,159,220,223,227,185,2,72,141,151,152,117,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3534,Lao People's Democratic Republic,2003,6,91,180,239,226,207,196,7,77,107,162,156,114,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3535,Lao People's Democratic Republic,2004,14,120,181,231,318,259,268,12,72,137,157,172,164,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3536,Lao People's Democratic Republic,2005,13,136,223,296,373,300,352,7,101,186,205,244,192,178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3537,Lao People's Democratic Republic,2006,12,145,245,340,406,345,354,13,109,196,221,228,222,205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3538,Lao People's Democratic Republic,2007,11,150,258,307,418,361,350,7,126,175,215,293,206,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3539,Lao People's Democratic Republic,2008,6,159,262,329,380,409,373,10,101,165,209,264,220,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3540,Lao People's Democratic Republic,2009,11,159,235,325,382,366,351,6,119,186,205,265,217,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3541,Lao People's Democratic Republic,2010,8,157,254,287,416,385,380,13,133,152,215,269,225,225,9,20,34,43,34,49,41,7,18,39,25,19,18,31,16,24,46,29,30,23,22,7,13,19,30,20,12,22,,,,,,,,,,,,,, +3542,Lao People's Democratic Republic,2011,8,145,275,323,474,416,375,14,141,204,208,267,215,206,5,20,47,46,59,61,68,4,23,45,33,33,27,45,14,28,42,32,34,32,24,7,19,39,24,25,10,19,,,,,,,,,,,,,, +3543,Lao People's Democratic Republic,2012,10,144,236,326,424,381,365,11,119,197,192,246,210,201,7,14,59,49,43,48,70,14,14,47,24,27,29,27,13,26,45,32,27,23,26,12,25,39,30,19,15,19,,,,,,,,,,,,,, +3544,Lao People's Democratic Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,189,358,360,534,523,456,37,152,243,246,307,258,239 +3545,Latvia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3546,Latvia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3547,Latvia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3548,Latvia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3549,Latvia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3550,Latvia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3551,Latvia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3552,Latvia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3553,Latvia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3554,Latvia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3555,Latvia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3556,Latvia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3557,Latvia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3558,Latvia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3559,Latvia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3560,Latvia,1995,0,20,44,71,70,40,30,0,22,49,55,47,27,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3561,Latvia,1996,0,28,69,130,89,67,42,0,32,39,31,22,10,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3562,Latvia,1997,0,47,109,145,106,61,29,1,27,22,37,20,16,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3563,Latvia,1998,0,58,105,129,121,68,35,1,24,45,26,23,15,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3564,Latvia,1999,1,48,87,110,103,57,30,2,28,24,40,29,11,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3565,Latvia,2000,0,53,106,124,111,64,34,2,25,41,27,28,7,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3566,Latvia,2001,0,48,109,138,101,64,32,2,24,33,41,31,18,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3567,Latvia,2002,0,32,98,123,121,64,26,0,37,42,37,23,11,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3568,Latvia,2003,0,36,74,141,106,59,32,0,31,42,42,35,17,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3569,Latvia,2004,0,30,74,119,109,53,38,2,29,32,36,29,12,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3570,Latvia,2005,1,22,71,104,117,55,34,0,17,31,31,23,18,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3571,Latvia,2006,2,27,78,82,105,51,26,0,17,27,33,28,9,13,9,23,72,81,74,52,31,7,17,42,49,33,8,24,26,6,7,7,4,5,4,40,7,5,2,3,2,6,,,,,,,,,,,,,, +3572,Latvia,2007,,33,65,93,102,49,19,1,18,27,32,18,12,9,0,29,70,62,67,38,30,4,25,38,35,29,16,21,50,14,24,12,18,12,14,54,10,12,10,16,10,18,,,,,,,,,,,,,, +3573,Latvia,2008,0,28,54,71,71,47,27,0,11,23,26,21,9,12,7,30,49,67,64,35,34,6,15,30,29,15,10,9,22,7,12,8,2,3,6,13,3,9,6,5,6,16,,,,,,,,,,,,,, +3574,Latvia,2009,0,21,41,67,78,48,20,0,12,17,20,20,9,14,3,23,47,48,53,36,29,11,27,36,24,15,14,11,13,10,2,6,6,4,4,13,6,4,1,3,2,12,,,,,,,,,,,,,, +3575,Latvia,2010,0,20,44,65,71,39,15,0,6,19,25,12,10,13,3,29,52,62,56,30,15,8,29,36,35,14,18,13,16,4,8,4,5,1,4,18,2,6,5,1,3,9,,,,,,,,,,,,,, +3576,Latvia,2011,0,11,42,58,50,33,18,0,7,16,19,14,12,13,15,20,56,62,56,34,14,10,31,32,30,20,16,14,22,7,4,5,6,3,3,14,2,4,3,2,6,4,,,,,,,,,,,,,, +3577,Latvia,2012,0,19,62,67,59,36,15,1,14,15,14,16,15,9,11,35,54,68,60,34,19,14,25,35,26,28,14,15,15,11,8,8,5,1,9,15,5,3,2,9,1,8,,,,,,,,,,,,,, +3578,Latvia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,38,94,143,134,99,54,29,34,58,53,43,40,37 +3579,Lebanon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3580,Lebanon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3581,Lebanon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3582,Lebanon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3583,Lebanon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3584,Lebanon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3585,Lebanon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3586,Lebanon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3587,Lebanon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3588,Lebanon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3589,Lebanon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3590,Lebanon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3591,Lebanon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3592,Lebanon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3593,Lebanon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3594,Lebanon,1995,3,26,32,30,16,16,10,1,16,18,13,8,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3595,Lebanon,1996,4,28,41,18,12,9,19,4,24,13,11,5,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3596,Lebanon,1997,1,18,33,22,19,17,17,3,30,20,6,7,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3597,Lebanon,1998,1,27,33,22,19,17,17,3,23,20,6,7,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3598,Lebanon,1999,3,27,44,35,17,17,11,1,33,26,17,6,9,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3599,Lebanon,2000,5,16,28,20,15,17,14,4,31,26,9,7,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3600,Lebanon,2001,0,22,20,18,16,8,8,3,25,28,7,6,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3601,Lebanon,2002,1,19,25,14,10,7,9,2,17,21,8,9,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3602,Lebanon,2003,0,19,26,22,6,5,7,3,14,12,9,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3603,Lebanon,2004,1,11,25,18,18,8,6,0,18,21,10,5,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3604,Lebanon,2005,0,12,19,15,10,12,8,1,25,14,8,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3605,Lebanon,2006,0,11,12,18,14,10,8,1,16,12,5,2,2,1,5,10,4,8,6,4,8,11,11,6,7,4,3,3,14,11,13,14,3,9,5,7,19,32,15,6,8,26,,,,,,,,,,,,,, +3606,Lebanon,2007,0,12,19,13,12,11,5,1,17,30,13,5,3,2,4,12,17,10,3,3,6,13,17,15,8,5,4,1,17,25,18,8,11,5,7,5,34,43,14,9,10,6,,,,,,,,,,,,,, +3607,Lebanon,2008,1,9,14,12,17,14,6,2,24,32,15,7,3,2,8,4,14,7,10,14,3,8,25,17,6,3,0,4,11,21,19,15,4,5,18,20,38,39,24,5,2,10,,,,,,,,,,,,,, +3608,Lebanon,2009,1,12,22,13,9,12,7,2,28,40,14,2,8,9,6,4,6,8,7,6,4,2,13,21,10,5,2,0,4,17,14,13,10,9,15,23,36,33,17,9,6,12,,,,,,,,,,,,,, +3609,Lebanon,2010,1,8,21,15,12,12,10,0,36,48,17,7,4,3,9,5,9,7,7,4,3,5,14,18,7,5,4,2,14,14,18,6,8,6,12,14,29,32,18,12,11,16,,,,,,,,,,,,,, +3610,Lebanon,2011,1,14,18,13,15,6,8,0,37,51,12,9,1,3,3,7,11,10,10,2,3,2,13,27,4,5,3,1,9,11,15,7,9,9,5,11,44,50,15,12,6,6,,,,,,,,,,,,,, +3611,Lebanon,2012,2,18,21,13,14,12,6,2,48,72,16,9,4,3,8,7,8,8,6,3,5,6,22,33,8,8,4,5,9,16,21,6,12,7,8,18,41,61,19,18,7,7,,,,,,,,,,,,,, +3612,Lebanon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,46,71,50,32,27,25,21,108,158,44,39,13,16 +3613,Lesotho,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3614,Lesotho,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3615,Lesotho,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3616,Lesotho,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3617,Lesotho,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3618,Lesotho,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3619,Lesotho,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3620,Lesotho,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3621,Lesotho,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3622,Lesotho,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3623,Lesotho,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3624,Lesotho,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3625,Lesotho,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3626,Lesotho,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3627,Lesotho,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3628,Lesotho,1995,9,108,214,256,189,96,88,14,106,125,71,49,17,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3629,Lesotho,1996,12,123,272,367,223,149,87,7,164,189,94,44,29,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3630,Lesotho,1997,11,180,392,463,307,173,69,29,216,272,152,71,40,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3631,Lesotho,1998,6,190,407,488,372,190,87,10,200,283,125,65,30,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3632,Lesotho,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3633,Lesotho,2000,8,165,458,517,395,198,76,11,222,336,195,83,36,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3634,Lesotho,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3635,Lesotho,2002,10,218,547,535,347,211,80,14,304,447,207,125,41,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3636,Lesotho,2003,10,219,614,592,466,219,83,32,328,567,313,219,59,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3637,Lesotho,2004,29,286,728,696,448,206,78,22,459,691,364,161,68,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3638,Lesotho,2005,32,395,695,397,148,82,37,19,226,721,616,494,297,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3639,Lesotho,2006,33,228,628,550,440,218,49,50,370,642,430,171,90,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3640,Lesotho,2007,6,32,135,73,87,52,28,4,78,121,106,40,13,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3641,Lesotho,2008,21,223,615,542,380,242,138,24,343,700,358,146,76,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3642,Lesotho,2009,26,217,685,549,411,257,118,30,326,659,409,167,79,43,264,245,674,634,421,348,213,226,293,668,494,294,183,126,65,116,349,298,223,150,102,50,169,370,287,164,92,51,,,,,,,,,,,,,, +3643,Lesotho,2010,16,222,607,497,364,244,133,27,283,597,329,169,64,48,305,217,699,670,467,340,279,264,289,703,495,313,163,127,52,106,337,255,206,154,114,43,148,344,213,152,50,48,,,,,,,,,,,,,, +3644,Lesotho,2011,19,179,584,493,329,245,121,23,311,572,307,185,84,58,271,195,685,691,508,357,233,226,292,709,500,357,205,117,50,90,257,262,186,132,97,51,138,310,253,143,82,38,,,,,,,,,,,,,, +3645,Lesotho,2012,15,204,580,427,295,196,114,30,309,571,296,143,71,47,220,229,810,672,340,249,190,246,333,787,510,304,147,105,41,95,272,236,129,110,84,31,155,300,210,106,65,43,,,,,,,,,,,,,, +3646,Lesotho,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,244,452,1322,1172,780,593,436,229,614,1293,821,486,249,225 +3647,Liberia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3648,Liberia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3649,Liberia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3650,Liberia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3651,Liberia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3652,Liberia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3653,Liberia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3654,Liberia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3655,Liberia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3656,Liberia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3657,Liberia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3658,Liberia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3659,Liberia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3660,Liberia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3661,Liberia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3662,Liberia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3663,Liberia,1996,38,69,105,84,42,33,9,44,72,78,51,24,12,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3664,Liberia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3665,Liberia,1998,18,150,229,158,72,34,11,18,164,160,98,45,17,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3666,Liberia,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3667,Liberia,2000,12,133,196,127,52,17,26,21,140,149,88,28,16,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3668,Liberia,2001,16,111,174,132,63,17,11,18,108,143,77,35,17,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3669,Liberia,2002,20,252,315,295,143,60,44,26,256,250,150,86,41,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3670,Liberia,2003,5,180,215,204,99,49,23,12,148,180,109,43,30,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3671,Liberia,2004,32,333,427,285,198,71,51,39,268,397,183,123,41,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3672,Liberia,2005,26,240,352,333,155,74,65,37,232,297,171,108,52,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3673,Liberia,2006,59,324,442,371,250,125,97,55,292,371,242,125,85,68,70,39,19,99,58,29,14,63,33,24,80,75,31,12,51,77,72,106,84,7,6,32,72,50,118,65,4,2,,,,,,,,,,,,,, +3674,Liberia,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3675,Liberia,2008,107,129,412,532,308,169,98,56,115,237,367,298,170,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3676,Liberia,2009,95,360,591,592,346,135,0,105,354,541,399,222,0,96,24,8,17,20,12,8,0,14,11,37,8,15,0,0,25,13,46,26,55,33,0,27,11,19,17,28,2,0,,,,,,,,,,,,,, +3677,Liberia,2010,90,338,621,510,295,114,21,254,339,488,259,171,151,99,121,132,193,48,69,19,2,145,40,18,351,123,46,78,353,56,38,65,4,12,10,202,45,19,452,23,6,78,,,,,,,,,,,,,, +3678,Liberia,2011,67,382,595,727,440,194,87,67,329,433,517,285,88,50,77,111,190,194,270,104,84,58,199,115,179,129,78,44,162,19,114,85,219,113,168,65,70,145,125,136,110,81,,,,,,,,,,,,,, +3679,Liberia,2012,65,382,627,667,406,129,83,61,354,535,605,292,79,57,172,118,305,139,233,111,89,171,99,96,165,122,76,50,149,50,164,128,212,133,133,64,152,152,135,110,92,75,,,,,,,,,,,,,, +3680,Liberia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,366,660,635,320,198,98,64,316,512,217,242,86,64 +3681,Libya,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3682,Libya,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3683,Libya,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3684,Libya,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3685,Libya,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3686,Libya,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3687,Libya,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3688,Libya,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3689,Libya,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3690,Libya,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3691,Libya,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3692,Libya,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3693,Libya,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3694,Libya,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3695,Libya,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3696,Libya,1995,2,112,212,78,46,22,21,5,34,31,19,20,13,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3697,Libya,1996,4,93,142,82,31,28,19,4,30,35,17,10,9,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3698,Libya,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3699,Libya,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3700,Libya,1999,2,110,257,115,53,36,33,6,43,59,25,15,14,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3701,Libya,2000,5,101,239,86,36,29,32,6,43,35,24,24,16,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3702,Libya,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3703,Libya,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3704,Libya,2003,0,108,266,142,32,25,19,4,43,28,30,25,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3705,Libya,2004,5,113,310,173,53,24,20,1,44,50,20,23,13,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3706,Libya,2005,2,114,293,168,52,19,35,8,36,36,35,21,21,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3707,Libya,2006,1,98,247,150,49,23,23,8,55,34,24,10,12,11,,,,,,,,,,,,,,,49,52,116,51,29,24,36,46,87,94,67,58,50,45,,,,,,,,,,,,,, +3708,Libya,2007,2,61,143,78,26,12,10,4,23,17,12,8,7,11,14,33,58,54,25,17,23,14,16,14,13,11,14,16,45,65,122,73,44,45,32,45,78,79,40,18,35,391,,,,,,,,,,,,,, +3709,Libya,2008,2,116,298,162,85,24,19,6,56,35,22,20,9,17,10,26,64,75,18,20,23,13,21,29,29,15,22,25,33,71,112,67,21,12,24,39,80,89,67,54,36,44,,,,,,,,,,,,,, +3710,Libya,2009,4,131,295,180,73,30,23,11,54,63,26,10,14,22,18,34,78,105,33,11,30,11,27,28,22,22,19,17,27,69,111,68,29,15,21,25,64,83,57,43,40,44,,,,,,,,,,,,,, +3711,Libya,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3712,Libya,2011,5,85,173,148,54,18,21,8,59,47,37,22,25,29,17,16,51,79,32,13,11,7,26,19,16,2,9,7,11,27,52,47,27,13,26,16,46,58,59,29,25,26,,,,,,,,,,,,,, +3713,Libya,2012,2,86,136,136,63,31,22,10,47,37,19,24,18,13,25,27,58,60,40,24,14,24,17,20,17,18,14,14,22,34,65,45,20,19,30,19,51,55,53,43,30,47,,,,,,,,,,,,,, +3714,Libya,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,135,233,204,93,69,66,30,110,124,80,60,56,42 +3715,Lithuania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3716,Lithuania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3717,Lithuania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3718,Lithuania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3719,Lithuania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3720,Lithuania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3721,Lithuania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3722,Lithuania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3723,Lithuania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3724,Lithuania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3725,Lithuania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3726,Lithuania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3727,Lithuania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3728,Lithuania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3729,Lithuania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3730,Lithuania,1995,4,46,132,225,176,90,77,5,6,53,45,32,16,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3731,Lithuania,1996,2,60,133,224,206,133,82,6,37,62,73,40,29,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3732,Lithuania,1997,2,53,136,227,213,146,98,5,40,77,73,38,25,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3733,Lithuania,1998,0,38,77,165,163,81,57,0,27,25,65,22,21,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3734,Lithuania,1999,0,42,90,153,22,91,67,0,32,48,55,25,20,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3735,Lithuania,2000,1,38,97,145,155,74,68,0,20,37,39,32,22,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3736,Lithuania,2001,0,35,112,197,155,88,76,1,33,59,57,35,28,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3737,Lithuania,2002,1,24,95,176,142,88,59,0,30,59,45,32,18,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3738,Lithuania,2003,1,35,116,175,174,107,60,0,35,49,37,38,20,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3739,Lithuania,2004,0,39,100,161,173,92,71,1,21,48,47,47,24,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3740,Lithuania,2005,0,42,118,186,187,108,67,1,25,41,57,49,23,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3741,Lithuania,2006,0,38,120,207,211,107,74,0,25,48,56,52,38,53,5,34,79,109,132,101,66,2,29,33,46,42,23,53,51,18,18,19,26,19,15,46,13,10,16,21,12,32,,,,,,,,,,,,,, +3742,Lithuania,2007,0,31,77,165,235,109,76,0,34,41,48,50,22,37,3,30,85,112,145,90,82,4,23,45,42,49,23,46,35,10,15,18,27,14,16,43,15,9,23,11,13,29,,,,,,,,,,,,,, +3743,Lithuania,2008,0,39,110,162,182,104,71,1,20,51,46,36,18,44,1,25,69,108,140,88,85,1,27,46,37,44,21,52,46,13,14,16,25,11,11,51,8,11,18,9,11,20,,,,,,,,,,,,,, +3744,Lithuania,2009,0,22,91,130,163,100,48,4,25,36,31,33,21,39,2,29,53,102,120,74,77,2,38,38,51,35,29,51,41,10,19,9,19,9,12,25,17,12,16,14,11,19,,,,,,,,,,,,,, +3745,Lithuania,2010,1,34,75,128,157,89,54,1,20,36,31,43,18,32,0,29,64,105,87,82,65,4,32,33,36,44,14,38,54,14,9,14,17,17,10,32,13,7,4,7,5,18,,,,,,,,,,,,,, +3746,Lithuania,2011,1,25,52,126,158,77,55,0,20,31,37,38,16,45,2,28,67,97,96,75,55,4,31,45,43,40,25,56,52,2,10,13,11,7,8,29,10,2,10,9,5,19,,,,,,,,,,,,,, +3747,Lithuania,2012,0,35,73,143,148,91,60,1,8,28,55,36,20,28,2,15,51,73,87,70,57,5,25,34,43,35,21,30,23,14,7,6,11,9,5,25,13,5,7,10,7,14,,,,,,,,,,,,,, +3748,Lithuania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,49,150,254,299,209,160,18,42,76,84,82,57,74 +3749,Luxembourg,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3750,Luxembourg,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3751,Luxembourg,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3752,Luxembourg,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3753,Luxembourg,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3754,Luxembourg,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3755,Luxembourg,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3756,Luxembourg,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3757,Luxembourg,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3758,Luxembourg,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3759,Luxembourg,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3760,Luxembourg,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3761,Luxembourg,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3762,Luxembourg,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3763,Luxembourg,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3764,Luxembourg,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3765,Luxembourg,1996,0,5,3,4,2,3,2,1,3,2,0,1,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3766,Luxembourg,1997,1,2,2,7,3,2,3,1,3,0,1,0,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3767,Luxembourg,1998,0,3,6,7,4,2,0,1,0,1,2,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3768,Luxembourg,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3769,Luxembourg,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3770,Luxembourg,2001,0,0,1,0,0,0,2,0,2,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3771,Luxembourg,2002,0,0,1,3,3,2,1,0,0,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3772,Luxembourg,2003,0,2,10,7,1,2,2,0,2,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3773,Luxembourg,2004,0,1,0,4,3,1,1,0,0,5,5,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3774,Luxembourg,2005,0,0,2,2,1,1,2,0,0,2,1,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3775,Luxembourg,2006,0,0,3,2,3,2,3,0,2,3,2,0,1,1,0,0,1,1,0,1,1,0,1,1,1,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3776,Luxembourg,2007,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,5,6,4,1,6,0,1,4,1,1,1,2,0,0,0,2,0,0,2,2,0,0,0,0,2,0,,,,,,,,,,,,,, +3777,Luxembourg,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3778,Luxembourg,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3779,Luxembourg,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,4,1,0,1,1,1,1,3,0,0,0,1,0,1,0,0,2,0,0,1,1,0,0,0,,,,,,,,,,,,,, +3780,Luxembourg,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3781,Luxembourg,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3782,Luxembourg,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,8,6,5,2,0,0,2,4,3,1,1,2 +3783,Madagascar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3784,Madagascar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3785,Madagascar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3786,Madagascar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3787,Madagascar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3788,Madagascar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3789,Madagascar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3790,Madagascar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3791,Madagascar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3792,Madagascar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3793,Madagascar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3794,Madagascar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3795,Madagascar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3796,Madagascar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3797,Madagascar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3798,Madagascar,1995,79,791,1289,1173,630,423,242,100,799,1108,744,340,230,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3799,Madagascar,1996,68,888,1325,1271,673,484,285,106,808,1031,744,393,197,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3800,Madagascar,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3801,Madagascar,1998,70,827,1545,1420,829,485,282,108,852,1193,824,430,253,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3802,Madagascar,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3803,Madagascar,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3804,Madagascar,2001,103,1033,1588,1625,1094,613,404,190,1010,1349,1094,546,289,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3805,Madagascar,2002,94,1023,1594,1563,1174,609,398,163,983,1372,1000,598,234,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3806,Madagascar,2003,123,1249,1830,1839,1413,723,438,216,1164,1578,1240,743,326,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3807,Madagascar,2004,118,1025,1593,1482,1026,495,300,130,950,1130,841,513,220,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3808,Madagascar,2005,98,1159,1867,1732,1349,582,333,150,1012,1451,1047,614,248,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3809,Madagascar,2006,117,1500,2391,2220,1714,766,458,208,1458,1944,1444,874,353,166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3810,Madagascar,2007,196,1473,2353,2097,1671,823,438,223,1456,1810,1354,880,378,192,155,58,106,178,39,38,25,128,86,133,220,62,56,37,512,224,242,687,221,147,96,421,197,213,605,195,128,85,,,,,,,,,,,,,, +3811,Madagascar,2008,142,1499,2294,2113,1669,836,465,251,1433,1846,1352,911,383,171,215,,,,,,,,,,,,,,1215,,,,,,,,,,,,,,,,,,,,,,,,,,, +3812,Madagascar,2009,150,1463,2377,2132,1662,942,433,230,1527,1886,1428,906,390,187,303,1332,,,,,,,,,,,,,1225,2762,,,,,,,,,,,,,,,,,,,,,,,,,, +3813,Madagascar,2010,204,1721,1621,2525,1782,960,485,323,1621,1943,1376,946,397,192,285,1372,,,,,,,,,,,,,1314,3237,,,,,,,,,,,,,,,,,,,,,,,,,, +3814,Madagascar,2011,146,1807,2764,2495,1938,1044,522,252,1726,2031,1503,978,462,188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3815,Madagascar,2012,177,1725,2474,2460,1927,1059,490,242,1720,1848,1420,914,474,199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3816,Madagascar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3817,Malawi,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3818,Malawi,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3819,Malawi,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3820,Malawi,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3821,Malawi,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3822,Malawi,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3823,Malawi,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3824,Malawi,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3825,Malawi,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3826,Malawi,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3827,Malawi,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3828,Malawi,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3829,Malawi,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3830,Malawi,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3831,Malawi,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3832,Malawi,1995,25,493,1195,833,519,215,89,65,802,1028,573,294,108,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3833,Malawi,1996,27,562,1388,937,529,224,110,92,887,1187,715,347,133,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3834,Malawi,1997,47,578,1418,995,521,254,101,84,1009,1307,767,347,123,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3835,Malawi,1998,46,677,1581,1158,643,281,151,85,1131,1585,867,437,148,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3836,Malawi,1999,43,588,1475,1083,588,239,126,80,1052,1487,777,376,154,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3837,Malawi,2000,50,653,1476,1113,585,245,114,66,1038,1481,831,401,148,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3838,Malawi,2001,37,704,1486,1025,591,230,129,74,1070,1520,862,384,139,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3839,Malawi,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3840,Malawi,2003,43,596,1374,936,489,209,128,76,963,1531,790,374,155,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3841,Malawi,2004,47,647,1505,1081,508,264,124,78,1009,1694,910,412,191,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3842,Malawi,2005,58,622,1653,1031,549,279,157,84,913,1598,859,386,180,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3843,Malawi,2006,42,584,1647,1054,491,256,182,80,848,1545,813,348,183,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3844,Malawi,2007,61,614,1454,954,473,233,158,109,768,1497,715,342,146,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3845,Malawi,2008,56,570,1562,982,502,280,176,166,707,1327,727,365,172,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3846,Malawi,2009,53,565,1645,1066,503,278,199,75,691,1246,706,318,174,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3847,Malawi,2010,50,565,1509,985,485,275,187,103,610,1196,661,314,198,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3848,Malawi,2011,70,519,1486,1050,440,238,201,79,601,1119,660,283,161,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3849,Malawi,2012,52,495,1537,1051,471,292,204,71,538,1057,609,298,156,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3850,Malawi,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,977,1047,2950,1601,1348,752,685,850,1053,2219,1556,833,529,395 +3851,Malaysia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3852,Malaysia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3853,Malaysia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3854,Malaysia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3855,Malaysia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3856,Malaysia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3857,Malaysia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3858,Malaysia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3859,Malaysia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3860,Malaysia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3861,Malaysia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3862,Malaysia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3863,Malaysia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3864,Malaysia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3865,Malaysia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3866,Malaysia,1995,59,640,879,775,788,374,1072,58,446,448,345,316,149,339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3867,Malaysia,1996,45,720,1026,894,838,671,868,77,457,463,371,327,242,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3868,Malaysia,1997,44,701,1036,961,816,380,1123,51,535,485,383,338,141,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3869,Malaysia,1998,31,670,1090,1050,872,426,1282,45,519,526,398,330,157,406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3870,Malaysia,1999,27,692,1147,1152,977,902,880,32,513,558,422,351,286,268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3871,Malaysia,2000,32,694,1138,1177,908,814,891,41,464,564,424,367,356,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3872,Malaysia,2001,48,713,1198,1221,1011,934,738,36,510,506,445,374,353,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3873,Malaysia,2002,22,562,1106,1182,997,758,844,30,421,524,415,485,319,293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3874,Malaysia,2003,216,1211,2010,2073,1798,1438,1601,196,969,1044,857,669,584,626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3875,Malaysia,2004,191,1195,2105,2189,1890,1440,1535,227,925,1014,852,694,605,532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3876,Malaysia,2005,244,1179,2218,2277,1980,1427,1507,208,1044,1061,947,816,586,572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3877,Malaysia,2006,15,507,855,734,678,443,496,3,30,300,403,321,257,161,63,122,130,181,175,132,108,30,72,80,118,102,67,52,42,104,100,78,85,57,65,18,78,79,49,40,46,48,,,,,,,,,,,,,, +3878,Malaysia,2007,216,1291,2224,2082,1839,1394,1395,226,1098,1101,849,782,585,514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3879,Malaysia,2008,221,1436,2445,2318,2169,1599,1543,240,1161,1283,906,878,648,657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3880,Malaysia,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3881,Malaysia,2010,129,884,1438,1599,1453,967,981,152,704,881,592,542,425,388,35,282,653,708,440,370,367,52,245,389,295,181,172,149,44,212,294,323,358,255,245,31,205,147,96,128,108,99,,,,,,,,,,,,,, +3882,Malaysia,2011,63,948,1564,1559,1594,1245,1054,77,837,876,584,599,459,403,110,338,553,541,519,448,471,103,299,317,200,221,188,193,97,205,393,354,267,222,147,90,246,299,195,148,132,93,,,,,,,,,,,,,, +3883,Malaysia,2012,74,1060,1575,1677,1762,1409,1260,105,903,1010,710,693,590,483,174,371,644,520,504,506,570,142,318,362,241,220,217,204,96,243,376,369,270,207,164,96,242,306,173,168,129,106,,,,,,,,,,,,,, +3884,Malaysia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,309,1871,2756,2737,2850,2347,2158,335,1718,1798,1228,1179,1060,989 +3885,Maldives,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3886,Maldives,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3887,Maldives,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3888,Maldives,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3889,Maldives,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3890,Maldives,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3891,Maldives,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3892,Maldives,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3893,Maldives,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3894,Maldives,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3895,Maldives,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3896,Maldives,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3897,Maldives,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3898,Maldives,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3899,Maldives,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3900,Maldives,1995,1,28,11,10,8,10,6,1,13,8,4,6,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3901,Maldives,1996,0,24,9,3,5,14,8,1,12,9,5,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3902,Maldives,1997,1,13,6,2,13,9,8,3,15,8,9,4,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3903,Maldives,1998,1,19,18,8,4,6,2,1,13,5,1,6,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3904,Maldives,1999,0,14,8,9,7,7,8,3,10,6,3,6,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3905,Maldives,2000,0,9,10,2,5,5,3,0,11,4,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3906,Maldives,2001,1,12,5,3,5,7,1,1,10,3,2,6,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3907,Maldives,2002,0,11,9,0,1,5,8,1,8,5,4,5,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3908,Maldives,2003,1,14,7,4,9,9,4,0,8,5,1,5,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3909,Maldives,2004,0,13,11,3,8,5,6,0,8,3,2,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3910,Maldives,2005,0,9,8,5,6,6,5,1,10,7,1,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3911,Maldives,2006,0,8,9,3,4,3,6,0,6,3,4,3,2,2,1,1,0,2,0,2,1,1,2,1,2,0,2,1,3,6,1,1,0,0,1,2,4,1,4,3,0,0,,,,,,,,,,,,,, +3912,Maldives,2007,0,14,4,6,5,6,5,1,5,2,5,5,0,1,2,4,3,3,4,2,1,4,2,3,3,2,3,2,4,1,4,2,0,2,1,3,3,4,2,2,0,1,,,,,,,,,,,,,, +3913,Maldives,2008,,9,11,3,5,6,3,,7,1,3,,3,2,1,3,5,2,2,3,5,1,0,2,3,1,3,1,2,3,6,1,5,3,3,1,1,3,2,0,1,2,,,,,,,,,,,,,, +3914,Maldives,2009,0,16,5,1,4,0,5,0,4,4,2,2,2,0,3,1,,,2,1,1,,1,,,,1,3,,2,7,4,1,3,3,3,3,10,3,1,1,,,,,,,,,,,,,,, +3915,Maldives,2010,0,8,6,0,4,5,6,1,2,3,4,1,0,1,1,1,2,2,2,0,6,1,1,0,1,1,3,0,5,3,4,6,0,0,0,3,4,3,2,2,1,1,,,,,,,,,,,,,, +3916,Maldives,2011,0,12,7,3,8,1,3,0,4,3,1,2,1,2,0,4,1,1,0,0,1,1,0,2,0,0,2,0,3,3,2,1,3,1,2,1,2,4,0,2,3,1,,,,,,,,,,,,,, +3917,Maldives,2012,0,8,6,2,4,5,4,0,7,6,3,3,2,2,3,0,1,2,3,0,3,2,0,0,1,0,1,1,1,2,4,0,2,3,2,4,3,8,4,0,4,4,,,,,,,,,,,,,, +3918,Maldives,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,20,20,4,9,9,5,6,11,8,4,7,4,3 +3919,Mali,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3920,Mali,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3921,Mali,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3922,Mali,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3923,Mali,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3924,Mali,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3925,Mali,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3926,Mali,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3927,Mali,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3928,Mali,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3929,Mali,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3930,Mali,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3931,Mali,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3932,Mali,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3933,Mali,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3934,Mali,1995,27,72,357,294,181,138,102,31,132,184,128,107,61,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3935,Mali,1996,19,182,408,364,226,157,136,21,153,197,128,95,51,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3936,Mali,1997,16,226,559,493,357,255,164,15,178,264,167,111,60,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3937,Mali,1998,13,193,501,428,308,205,130,11,173,237,164,88,79,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3938,Mali,1999,19,235,475,429,315,216,129,21,180,226,171,120,96,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3939,Mali,2000,23,206,430,396,297,235,144,14,174,232,152,106,75,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3940,Mali,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3941,Mali,2002,20,209,547,447,430,151,72,39,141,250,166,190,71,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3942,Mali,2003,32,348,619,438,330,201,115,29,172,278,212,123,73,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3943,Mali,2004,28,302,584,473,316,219,147,29,191,284,183,151,105,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3944,Mali,2005,26,350,628,539,365,263,193,33,208,348,245,152,101,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3945,Mali,2006,28,361,679,550,436,272,216,30,250,371,249,168,116,76,16,370,,,,,,,,,,,,,580,,,,,,,,,,,,,,,,,,,,,,,,,,, +3946,Mali,2007,29,369,696,570,422,291,213,30,263,385,258,160,113,95,15,376,,,,,,,,,,,,,,668,,,,,,,,,,,,,,,,,,,,,,,,,, +3947,Mali,2008,22,453,809,640,503,314,250,37,332,516,320,245,172,121,14,,,,,,,7,,,,,,,55,,,,,,,23,,,,,,,,,,,,,,,,,,,, +3948,Mali,2009,37,489,978,758,510,379,275,44,365,494,384,211,135,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3949,Mali,2010,94,381,707,526,354,227,207,31,265,337,247,144,96,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3950,Mali,2011,25,370,772,515,352,267,230,42,255,393,223,147,118,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3951,Mali,2012,25,405,731,547,377,257,211,34,253,344,239,137,89,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3952,Mali,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,375,750,551,401,244,230,27,284,351,266,144,95,74 +3953,Malta,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3954,Malta,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3955,Malta,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3956,Malta,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3957,Malta,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3958,Malta,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3959,Malta,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3960,Malta,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3961,Malta,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3962,Malta,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3963,Malta,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3964,Malta,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3965,Malta,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3966,Malta,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3967,Malta,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3968,Malta,1995,0,0,0,1,0,0,0,0,0,1,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3969,Malta,1996,0,0,0,0,1,2,1,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3970,Malta,1997,0,1,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3971,Malta,1998,0,1,0,0,1,0,3,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3972,Malta,1999,0,0,1,0,0,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3973,Malta,2000,0,1,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3974,Malta,2001,0,,,,1,,1,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3975,Malta,2002,0,1,0,1,0,1,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3976,Malta,2003,0,0,1,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3977,Malta,2004,0,0,0,0,1,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3978,Malta,2005,0,1,1,1,1,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3979,Malta,2006,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,6,4,1,2,1,5,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,2,,,,,,,,,,,,,, +3980,Malta,2007,0,0,2,0,0,1,3,0,2,0,0,0,0,0,0,3,5,0,1,2,6,0,0,0,0,0,1,0,1,3,2,2,0,1,0,1,1,0,0,0,0,0,,,,,,,,,,,,,, +3981,Malta,2008,0,3,6,2,0,0,0,0,1,1,0,0,0,2,0,7,4,2,1,0,3,0,0,0,0,1,0,1,0,2,3,1,1,0,1,0,1,2,0,1,0,0,,,,,,,,,,,,,, +3982,Malta,2009,0,4,3,1,1,1,1,0,0,1,0,0,0,0,0,4,4,0,0,1,0,0,0,1,0,0,0,1,0,4,3,0,1,0,3,0,3,3,1,0,0,0,,,,,,,,,,,,,, +3983,Malta,2010,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,1,0,1,0,0,0,0,0,0,1,5,0,0,1,0,0,0,2,0,0,0,1,,,,,,,,,,,,,, +3984,Malta,2011,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,1,3,0,0,0,2,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,2,0,1,,,,,,,,,,,,,, +3985,Malta,2012,1,2,2,2,0,0,0,0,1,1,0,0,0,0,0,5,4,1,1,0,5,1,2,1,0,0,0,0,0,3,3,0,0,1,0,0,4,0,1,0,0,0,,,,,,,,,,,,,, +3986,Malta,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,22,6,4,0,0,3,0,2,8,1,0,0,4 +3987,Marshall Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3988,Marshall Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3989,Marshall Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3990,Marshall Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3991,Marshall Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3992,Marshall Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3993,Marshall Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3994,Marshall Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3995,Marshall Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3996,Marshall Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3997,Marshall Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3998,Marshall Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3999,Marshall Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4000,Marshall Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4001,Marshall Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4002,Marshall Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4003,Marshall Islands,1996,7,8,3,3,5,3,0,12,7,3,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4004,Marshall Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4005,Marshall Islands,1998,0,2,0,1,1,1,0,0,1,3,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4006,Marshall Islands,1999,5,10,3,4,1,6,0,2,10,7,2,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4007,Marshall Islands,2000,3,5,4,1,3,5,3,7,7,3,0,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4008,Marshall Islands,2001,3,8,4,2,4,2,0,5,6,4,7,8,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4009,Marshall Islands,2002,0,1,2,1,3,2,2,0,2,0,0,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4010,Marshall Islands,2003,6,4,2,7,7,2,2,4,9,2,4,6,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4011,Marshall Islands,2004,2,5,4,3,3,2,,1,7,5,3,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4012,Marshall Islands,2005,2,4,4,5,6,1,1,1,9,2,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4013,Marshall Islands,2006,,4,3,4,6,3,2,2,2,3,3,7,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4014,Marshall Islands,2007,0,1,1,2,5,1,0,1,3,3,2,3,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4015,Marshall Islands,2008,1,1,1,2,3,0,0,2,3,2,4,5,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4016,Marshall Islands,2009,1,12,5,2,5,4,0,1,5,5,4,5,2,1,10,3,3,3,6,5,2,10,6,3,6,7,2,4,2,1,1,1,2,0,0,2,1,0,1,0,0,0,,,,,,,,,,,,,, +4017,Marshall Islands,2010,0,10,1,4,6,6,2,5,9,2,2,4,8,0,15,7,2,3,6,6,2,5,9,4,4,1,0,0,16,9,8,3,2,2,1,8,3,6,3,3,1,0,,,,,,,,,,,,,, +4018,Marshall Islands,2011,1,7,2,3,3,3,1,1,5,8,2,5,2,1,6,2,3,2,1,2,3,4,0,1,2,4,0,0,14,4,5,1,3,0,0,15,6,4,3,2,0,0,,,,,,,,,,,,,, +4019,Marshall Islands,2012,0,3,8,6,9,2,2,0,5,7,2,5,3,2,8,7,2,2,2,1,1,11,5,4,3,3,2,2,7,4,2,2,1,1,1,8,1,1,0,1,0,0,,,,,,,,,,,,,, +4020,Marshall Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,6,15,10,12,16,1,14,12,17,8,12,5,2 +4021,Mauritania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4022,Mauritania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4023,Mauritania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4024,Mauritania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4025,Mauritania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4026,Mauritania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4027,Mauritania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4028,Mauritania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4029,Mauritania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4030,Mauritania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4031,Mauritania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4032,Mauritania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4033,Mauritania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4034,Mauritania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4035,Mauritania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4036,Mauritania,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4037,Mauritania,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4038,Mauritania,1997,188,165,321,341,613,232,185,125,131,319,230,484,384,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4039,Mauritania,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4040,Mauritania,1999,15,290,450,262,177,113,92,7,157,97,110,76,43,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4041,Mauritania,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4042,Mauritania,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4043,Mauritania,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4044,Mauritania,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4045,Mauritania,2004,15,204,343,235,154,129,108,14,102,114,114,58,44,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4046,Mauritania,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4047,Mauritania,2006,12,197,294,203,150,106,96,16,109,114,86,49,29,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4048,Mauritania,2007,14,206,355,261,144,139,83,21,103,152,92,64,38,42,4,59,103,75,41,40,24,6,30,44,26,18,11,13,5,72,126,92,51,49,29,7,36,54,32,23,13,14,,,,,,,,,,,,,, +4049,Mauritania,2008,10,199,292,249,172,107,90,16,127,111,97,44,51,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4050,Mauritania,2009,25,217,328,198,150,116,85,24,111,127,76,49,27,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4051,Mauritania,2010,17,192,295,206,137,99,76,14,90,104,82,52,29,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4052,Mauritania,2011,36,165,185,131,106,58,55,28,68,72,47,36,19,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4053,Mauritania,2012,22,204,302,195,139,114,114,25,112,81,88,73,46,28,13,21,31,19,24,31,25,2,7,17,17,7,9,5,11,33,42,47,35,22,32,12,22,22,27,5,15,14,,,,,,,,,,,,,, +4054,Mauritania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,293,426,294,230,170,169,37,170,153,137,105,83,69 +4055,Mauritius,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4056,Mauritius,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4057,Mauritius,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4058,Mauritius,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4059,Mauritius,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4060,Mauritius,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4061,Mauritius,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4062,Mauritius,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4063,Mauritius,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4064,Mauritius,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4065,Mauritius,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4066,Mauritius,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4067,Mauritius,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4068,Mauritius,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4069,Mauritius,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4070,Mauritius,1995,2,17,13,22,27,13,8,2,4,12,10,8,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4071,Mauritius,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4072,Mauritius,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4073,Mauritius,1998,1,12,10,21,19,10,19,0,9,5,4,3,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4074,Mauritius,1999,0,7,20,15,13,12,12,0,13,7,7,8,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4075,Mauritius,2000,2,6,9,18,19,14,8,1,5,8,8,6,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4076,Mauritius,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4077,Mauritius,2002,1,12,6,21,12,7,4,1,3,8,7,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4078,Mauritius,2003,0,9,12,10,17,11,9,1,6,8,4,4,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4079,Mauritius,2004,1,13,13,24,20,4,5,0,6,8,10,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4080,Mauritius,2005,,10,15,21,20,10,6,,4,5,5,11,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4081,Mauritius,2006,0,4,9,22,10,12,6,1,3,7,3,4,1,3,0,1,2,0,2,0,1,0,1,0,3,1,0,0,1,0,3,0,2,0,0,1,1,2,1,1,1,2,,,,,,,,,,,,,, +4082,Mauritius,2007,0,9,9,12,15,9,6,0,4,7,3,5,4,3,0,2,3,1,1,0,1,0,0,1,2,1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,,,,,,,,,,,,,, +4083,Mauritius,2008,0,11,15,14,15,7,8,0,2,3,2,5,2,1,0,1,1,3,3,1,1,0,0,1,2,0,1,0,0,0,0,2,0,0,0,0,0,1,1,0,1,0,,,,,,,,,,,,,, +4084,Mauritius,2009,0,5,7,10,19,10,9,0,6,10,7,5,6,4,0,1,1,0,1,0,1,0,2,0,0,1,0,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,,,,,,,,,,,,,, +4085,Mauritius,2010,0,9,9,13,23,15,7,0,7,9,4,4,3,2,0,0,0,0,2,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,,,,,,,,,,,,,, +4086,Mauritius,2011,0,10,13,9,17,10,8,0,7,12,2,3,6,3,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,2,2,0,0,,,,,,,,,,,,,, +4087,Mauritius,2012,2,11,14,16,17,11,7,0,11,7,8,2,8,4,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,,,,,,,,,,,,,, +4088,Mauritius,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,10,15,20,27,8,9,0,10,4,8,9,3,6 +4089,Mexico,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4090,Mexico,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4091,Mexico,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4092,Mexico,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4093,Mexico,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4094,Mexico,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4095,Mexico,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4096,Mexico,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4097,Mexico,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4098,Mexico,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4099,Mexico,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4100,Mexico,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4101,Mexico,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4102,Mexico,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4103,Mexico,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4104,Mexico,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4105,Mexico,1996,198,936,1021,940,721,708,469,243,685,681,627,482,472,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4106,Mexico,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4107,Mexico,1998,229,1031,1330,1200,1241,813,892,268,856,829,874,742,583,585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4108,Mexico,1999,143,1013,1141,1093,1022,880,1128,151,773,795,641,665,592,710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4109,Mexico,2000,214,1079,1387,1162,1235,972,1126,176,663,828,698,832,595,709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4110,Mexico,2001,130,1448,1639,1683,1606,1229,1566,146,1131,993,845,952,787,948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4111,Mexico,2002,154,1090,1292,1301,1146,986,1144,149,769,754,716,700,621,733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4112,Mexico,2003,187,1207,1461,1417,1313,1005,1352,184,850,826,734,813,743,841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4113,Mexico,2004,86,1053,1276,1181,1201,958,1209,102,760,649,693,695,626,725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4114,Mexico,2005,100,1095,1376,1314,1238,1042,1288,125,771,733,710,784,637,784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4115,Mexico,2006,129,986,1320,1333,1275,1012,1215,153,696,774,662,794,722,803,108,196,266,243,232,181,253,108,133,154,146,151,127,170,202,170,318,233,173,117,144,205,243,252,199,184,164,147,,,,,,,,,,,,,, +4116,Mexico,2007,145,981,1286,1286,1266,942,1226,140,645,742,694,748,642,788,136,270,344,346,311,212,316,122,207,209,166,202,166,206,205,237,307,268,177,154,147,185,220,274,233,182,143,137,,,,,,,,,,,,,, +4117,Mexico,2008,124,966,1292,1314,1267,1004,1213,126,752,826,710,774,699,836,54,82,125,113,112,61,104,50,63,65,51,62,52,68,204,245,350,312,244,159,184,224,224,280,242,190,152,165,,,,,,,,,,,,,, +4118,Mexico,2009,103,1030,1262,1401,1360,1024,1252,131,741,712,665,788,608,785,8,81,98,109,107,80,98,10,63,61,57,67,52,67,217,249,368,308,234,169,181,196,239,292,221,180,188,151,,,,,,,,,,,,,, +4119,Mexico,2010,125,1081,1375,1380,1392,1119,1303,112,791,763,730,852,713,836,130,250,331,300,287,238,293,106,159,138,140,123,141,176,225,286,407,339,231,196,188,223,244,306,257,202,173,187,,,,,,,,,,,,,, +4120,Mexico,2011,128,1124,1440,1503,1532,1112,1299,136,776,765,698,889,734,824,124,222,324,290,251,189,220,99,135,140,109,141,101,152,205,267,384,364,244,170,191,194,298,333,271,229,192,187,,,,,,,,,,,,,, +4121,Mexico,2012,133,1153,1480,1522,1484,1153,1284,134,778,743,686,840,824,824,143,248,295,282,253,211,252,121,143,132,141,165,130,165,208,268,468,387,275,204,238,212,299,352,289,250,187,202,,,,,,,,,,,,,, +4122,Mexico,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,429,1797,2230,2409,2289,1736,1940,376,1262,1315,1230,1307,1156,1232 +4123,Micronesia (Federated States of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4124,Micronesia (Federated States of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4125,Micronesia (Federated States of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4126,Micronesia (Federated States of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4127,Micronesia (Federated States of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4128,Micronesia (Federated States of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4129,Micronesia (Federated States of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4130,Micronesia (Federated States of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4131,Micronesia (Federated States of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4132,Micronesia (Federated States of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4133,Micronesia (Federated States of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4134,Micronesia (Federated States of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4135,Micronesia (Federated States of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4136,Micronesia (Federated States of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4137,Micronesia (Federated States of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4138,Micronesia (Federated States of),1995,0,1,0,3,1,0,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4139,Micronesia (Federated States of),1996,0,1,0,0,1,2,0,0,1,1,1,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4140,Micronesia (Federated States of),1997,0,0,0,0,2,0,0,1,1,1,2,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4141,Micronesia (Federated States of),1998,4,5,3,4,1,0,5,2,1,0,1,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4142,Micronesia (Federated States of),1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4143,Micronesia (Federated States of),2000,0,2,0,1,0,0,1,4,3,1,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4144,Micronesia (Federated States of),2001,0,2,0,0,2,1,0,1,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4145,Micronesia (Federated States of),2002,2,0,1,1,1,1,0,3,5,1,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4146,Micronesia (Federated States of),2003,0,3,2,2,0,2,1,4,4,4,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4147,Micronesia (Federated States of),2004,0,4,0,2,0,2,1,3,4,4,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4148,Micronesia (Federated States of),2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4149,Micronesia (Federated States of),2006,14,21,3,6,8,6,1,5,23,5,7,4,6,4,3,8,1,2,1,1,0,0,7,0,1,2,2,1,1,2,1,1,2,1,0,1,1,1,1,0,0,0,,,,,,,,,,,,,, +4150,Micronesia (Federated States of),2007,1,8,5,4,0,1,0,5,11,6,2,2,2,0,5,4,0,1,1,2,0,3,4,3,1,1,0,2,3,0,0,0,0,0,0,1,0,2,0,0,0,0,,,,,,,,,,,,,, +4151,Micronesia (Federated States of),2008,1,9,3,1,3,1,0,1,10,2,5,1,0,0,6,5,5,4,5,3,4,14,5,3,1,2,0,0,4,6,0,0,3,2,0,3,5,3,1,2,0,0,,,,,,,,,,,,,, +4152,Micronesia (Federated States of),2009,5,7,5,5,2,1,2,8,6,9,4,4,1,1,18,8,3,6,3,6,0,8,7,8,3,0,3,2,8,3,0,2,1,1,0,8,3,3,4,0,1,0,,,,,,,,,,,,,, +4153,Micronesia (Federated States of),2010,3,8,1,2,4,4,0,5,8,9,3,4,2,0,16,8,6,3,2,5,4,11,5,4,3,5,3,4,5,3,1,4,2,0,0,4,2,2,1,0,1,0,,,,,,,,,,,,,, +4154,Micronesia (Federated States of),2011,4,8,5,6,2,0,1,5,5,2,3,1,2,1,12,5,7,4,6,5,3,14,2,1,2,3,8,1,5,3,3,4,2,1,0,1,2,3,1,0,0,0,,,,,,,,,,,,,, +4155,Micronesia (Federated States of),2012,3,8,5,4,2,0,1,5,6,2,3,1,3,0,14,6,6,4,6,3,3,15,3,1,3,3,7,2,2,4,3,2,2,1,0,1,2,3,2,0,0,0,,,,,,,,,,,,,, +4156,Micronesia (Federated States of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4157,Monaco,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4158,Monaco,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4159,Monaco,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4160,Monaco,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4161,Monaco,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4162,Monaco,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4163,Monaco,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4164,Monaco,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4165,Monaco,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4166,Monaco,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4167,Monaco,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4168,Monaco,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4169,Monaco,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4170,Monaco,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4171,Monaco,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4172,Monaco,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4173,Monaco,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4174,Monaco,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4175,Monaco,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4176,Monaco,1999,0,0,0,0,1,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4177,Monaco,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4178,Monaco,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4179,Monaco,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4180,Monaco,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4181,Monaco,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4182,Monaco,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4183,Monaco,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4184,Monaco,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4185,Monaco,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4186,Monaco,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4187,Monaco,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +4188,Monaco,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4189,Monaco,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4190,Monaco,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4191,Mongolia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4192,Mongolia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4193,Mongolia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4194,Mongolia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4195,Mongolia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4196,Mongolia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4197,Mongolia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4198,Mongolia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4199,Mongolia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4200,Mongolia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4201,Mongolia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4202,Mongolia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4203,Mongolia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4204,Mongolia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4205,Mongolia,1994,1,23,40,25,19,6,1,10,27,24,13,8,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4206,Mongolia,1995,37,99,111,68,19,13,15,30,70,78,33,15,9,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4207,Mongolia,1996,8,103,150,91,42,24,19,17,98,114,45,27,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4208,Mongolia,1997,6,173,298,204,72,32,17,12,109,134,71,21,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4209,Mongolia,1998,17,213,251,158,65,32,22,32,162,221,115,32,21,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4210,Mongolia,1999,12,213,314,178,63,34,26,25,205,252,113,43,18,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4211,Mongolia,2000,6,181,260,171,68,38,23,32,200,213,113,41,26,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4212,Mongolia,2001,13,236,269,179,86,45,36,25,253,260,125,48,28,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4213,Mongolia,2002,9,242,272,184,94,57,47,16,263,253,133,55,22,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4214,Mongolia,2003,10,206,217,171,93,55,39,19,254,233,148,45,32,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4215,Mongolia,2004,6,287,256,229,112,54,43,18,283,249,162,62,24,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4216,Mongolia,2005,7,271,253,232,147,52,36,15,320,270,145,63,32,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4217,Mongolia,2006,7,317,335,241,157,64,41,16,372,265,180,81,24,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4218,Mongolia,2007,4,280,270,232,158,48,34,23,273,250,139,80,36,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4219,Mongolia,2008,7,289,260,235,151,59,36,18,283,229,127,86,32,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4220,Mongolia,2009,2,280,264,199,157,64,27,20,306,235,140,61,27,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4221,Mongolia,2010,3,285,255,231,154,50,40,12,296,246,112,83,42,28,82,85,50,39,48,25,24,92,103,76,30,26,8,13,111,263,201,117,92,36,22,84,254,204,120,98,34,39,,,,,,,,,,,,,, +4222,Mongolia,2011,2,246,289,205,170,71,41,10,250,192,121,61,40,25,95,79,50,47,44,25,25,81,85,70,29,26,16,12,105,268,206,118,69,28,28,77,221,211,115,87,25,20,,,,,,,,,,,,,, +4223,Mongolia,2012,7,257,268,191,184,63,37,11,250,208,97,82,28,33,63,70,66,56,47,21,18,65,77,60,25,18,16,15,89,250,230,121,86,39,37,76,258,169,106,84,38,28,,,,,,,,,,,,,, +4224,Mongolia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,174,621,576,457,334,166,101,185,579,541,241,181,92,83 +4225,Montenegro,2005,0,3,5,7,15,4,8,0,0,7,3,4,0,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4226,Montenegro,2006,0,0,7,7,12,9,3,,3,4,4,4,3,2,,5,2,10,15,7,9,1,2,2,3,3,4,11,,3,2,1,2,4,0,,1,2,0,0,0,2,,,,,,,,,,,,,, +4227,Montenegro,2007,0,0,6,3,10,1,3,0,3,3,4,3,3,1,2,4,3,6,15,9,15,0,4,6,7,1,3,3,0,2,3,1,2,0,2,0,1,2,2,1,1,1,,,,,,,,,,,,,, +4228,Montenegro,2008,0,2,7,10,5,5,1,0,4,5,5,10,4,7,0,2,4,1,4,3,3,1,3,1,3,3,3,7,0,0,0,3,1,1,4,0,3,1,2,2,3,0,,,,,,,,,,,,,, +4229,Montenegro,2009,0,1,5,6,10,5,9,1,1,5,3,2,2,3,0,3,1,8,5,2,5,1,4,1,2,5,4,2,0,1,1,1,2,0,2,0,0,1,0,3,1,0,,,,,,,,,,,,,, +4230,Montenegro,2010,0,1,1,4,4,7,1,1,3,3,2,3,1,8,1,1,2,2,7,7,9,0,5,2,3,1,3,6,1,1,1,2,3,0,0,0,1,1,1,0,1,2,,,,,,,,,,,,,, +4231,Montenegro,2011,0,1,2,8,11,7,3,1,4,2,4,3,1,1,0,1,6,3,6,1,4,1,6,1,3,5,1,2,0,1,0,0,0,1,0,1,1,1,2,1,1,3,,,,,,,,,,,,,, +4232,Montenegro,2012,0,3,4,5,10,3,4,0,4,5,1,2,1,3,0,0,2,5,3,4,9,0,1,6,1,1,4,0,0,0,0,2,1,2,0,0,0,1,1,2,1,3,,,,,,,,,,,,,, +4233,Montenegro,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,8,8,17,16,11,14,1,6,6,7,6,8,11 +4234,Montserrat,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4235,Montserrat,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4236,Montserrat,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4237,Montserrat,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4238,Montserrat,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4239,Montserrat,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4240,Montserrat,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4241,Montserrat,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4242,Montserrat,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4243,Montserrat,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4244,Montserrat,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4245,Montserrat,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4246,Montserrat,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4247,Montserrat,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4248,Montserrat,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4249,Montserrat,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4250,Montserrat,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4251,Montserrat,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4252,Montserrat,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4253,Montserrat,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4254,Montserrat,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4255,Montserrat,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4256,Montserrat,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4257,Montserrat,2003,0,0,1,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4258,Montserrat,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4259,Montserrat,2005,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4260,Montserrat,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4261,Montserrat,2007,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4262,Montserrat,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4263,Montserrat,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4264,Montserrat,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4265,Montserrat,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4266,Montserrat,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4267,Montserrat,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4268,Morocco,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4269,Morocco,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4270,Morocco,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4271,Morocco,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4272,Morocco,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4273,Morocco,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4274,Morocco,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4275,Morocco,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4276,Morocco,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4277,Morocco,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4278,Morocco,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4279,Morocco,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4280,Morocco,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4281,Morocco,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4282,Morocco,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4283,Morocco,1995,142,2508,2872,1737,819,573,553,191,1708,1288,703,461,317,299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4284,Morocco,1996,118,2618,2844,1721,772,602,583,217,1697,1300,677,437,400,292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4285,Morocco,1997,119,2328,2891,1659,761,591,557,238,1799,1331,745,416,424,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4286,Morocco,1998,116,2308,2573,1744,843,560,527,182,1600,1150,679,412,402,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4287,Morocco,1999,78,2296,2696,1641,815,559,562,156,1654,1143,691,446,351,332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4288,Morocco,2000,99,2061,2423,1705,855,485,595,170,1530,1121,672,398,406,352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4289,Morocco,2001,85,2200,2256,1731,929,561,606,156,1477,1046,596,402,399,360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4290,Morocco,2002,79,2190,2341,1647,941,525,577,144,1483,1088,713,443,357,386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4291,Morocco,2003,91,2225,2347,1667,1004,525,550,168,1455,1029,633,431,366,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4292,Morocco,2004,68,2081,2397,1676,1114,533,539,149,1196,981,517,373,331,325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4293,Morocco,2005,79,2222,2515,1583,1057,580,591,167,1330,943,546,403,343,398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4294,Morocco,2006,73,2104,2373,1498,1036,527,551,155,1273,1025,597,426,335,307,72,273,249,173,162,113,149,85,214,166,126,90,82,101,1125,1694,1263,684,470,294,394,984,1517,1284,796,582,360,317,,,,,,,,,,,,,, +4295,Morocco,2007,74,2098,2370,1545,1165,545,529,123,1177,837,444,354,306,370,50,259,254,185,177,128,159,82,220,166,97,91,69,122,948,1600,1253,625,448,286,456,876,1571,1302,844,575,380,402,,,,,,,,,,,,,, +4296,Morocco,2008,51,1992,2372,1514,1179,633,589,124,1081,803,479,360,290,358,45,289,253,169,171,117,160,58,185,146,104,113,83,109,990,1494,1263,644,464,321,437,921,1446,1388,863,637,379,399,,,,,,,,,,,,,, +4297,Morocco,2009,63,1960,2412,1428,1140,639,510,132,1195,889,450,410,333,346,65,262,242,182,163,138,152,58,199,154,112,103,88,103,992,1626,1330,675,534,371,430,954,1486,1400,840,648,421,424,,,,,,,,,,,,,, +4298,Morocco,2010,51,1982,2553,1611,1273,712,515,117,1098,841,426,386,310,364,41,307,295,202,190,117,176,69,202,162,118,89,89,117,949,1711,1427,684,490,366,432,932,1723,1510,878,775,435,418,,,,,,,,,,,,,, +4299,Morocco,2011,79,1929,2450,1479,1175,682,518,100,1153,794,433,371,324,335,47,325,341,199,180,144,148,64,221,160,118,124,85,116,1004,1662,1413,698,522,400,527,948,1765,1663,980,796,483,470,,,,,,,,,,,,,, +4300,Morocco,2012,54,1840,2426,1423,1183,672,561,77,1162,832,408,306,286,342,45,331,332,225,187,165,151,56,227,176,115,103,88,142,863,1807,1503,704,534,440,491,905,1822,1592,1016,803,563,479,,,,,,,,,,,,,, +4301,Morocco,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,966,4109,4164,2383,1946,1389,1185,1085,3097,2569,1572,1174,1006,921 +4302,Mozambique,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4303,Mozambique,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4304,Mozambique,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4305,Mozambique,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4306,Mozambique,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4307,Mozambique,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4308,Mozambique,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4309,Mozambique,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4310,Mozambique,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4311,Mozambique,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4312,Mozambique,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4313,Mozambique,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4314,Mozambique,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4315,Mozambique,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4316,Mozambique,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4317,Mozambique,1995,187,1136,1475,1338,1022,664,320,226,994,1314,1016,551,234,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4318,Mozambique,1996,141,1163,1507,1367,980,639,275,205,1060,1357,938,533,239,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4319,Mozambique,1997,163,1194,1608,1439,1076,666,313,187,1147,1381,1002,606,265,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4320,Mozambique,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4321,Mozambique,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4322,Mozambique,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4323,Mozambique,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4324,Mozambique,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4325,Mozambique,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4326,Mozambique,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4327,Mozambique,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4328,Mozambique,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4329,Mozambique,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4330,Mozambique,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4331,Mozambique,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4332,Mozambique,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4333,Mozambique,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4334,Mozambique,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4335,Mozambique,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4336,Myanmar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4337,Myanmar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4338,Myanmar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4339,Myanmar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4340,Myanmar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4341,Myanmar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4342,Myanmar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4343,Myanmar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4344,Myanmar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4345,Myanmar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4346,Myanmar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4347,Myanmar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4348,Myanmar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4349,Myanmar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4350,Myanmar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4351,Myanmar,1995,42,713,1423,1401,977,677,298,58,535,729,729,450,343,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4352,Myanmar,1996,58,767,1511,1535,1110,798,400,55,577,938,817,558,408,184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4353,Myanmar,1997,56,676,1452,1405,1061,753,441,54,535,883,715,492,308,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4354,Myanmar,1998,64,798,1491,1584,1187,763,438,73,650,997,856,577,382,229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4355,Myanmar,1999,37,936,1800,1805,1366,833,540,58,737,1076,919,647,420,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4356,Myanmar,2000,88,1459,2636,2781,2161,1235,836,72,1040,1592,1397,987,592,378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4357,Myanmar,2001,69,1800,3253,3353,2624,1443,931,98,1306,1918,1568,1186,650,487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4358,Myanmar,2002,64,2125,3986,4016,3022,1671,1067,109,1563,2044,1758,1348,845,544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4359,Myanmar,2003,107,2536,4408,4427,3269,1974,1296,154,1781,2442,2003,1491,943,617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4360,Myanmar,2004,96,2777,5025,4966,4081,2271,1567,120,2020,2622,2228,1800,1122,713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4361,Myanmar,2005,132,3401,5877,5888,4585,2557,1764,147,2376,3047,2563,2101,1218,885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4362,Myanmar,2006,113,3572,6328,6536,5143,2988,2033,171,2453,3338,2820,2282,1448,1016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4363,Myanmar,2007,127,3591,6569,6826,5507,3152,2155,159,2719,3500,2998,2486,1601,1198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4364,Myanmar,2008,118,3416,6311,6396,5327,3312,2235,180,2526,3474,2850,2357,1644,1102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4365,Myanmar,2009,127,3259,6371,6633,5319,3435,2248,165,2559,3298,2745,2463,1679,1100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4366,Myanmar,2010,106,3043,6578,6688,5607,3632,2308,196,2452,3454,2752,2525,1838,1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4367,Myanmar,2011,120,2923,6182,6319,5680,3954,2500,187,2401,3317,2760,2554,2010,1407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4368,Myanmar,2012,146,2898,6263,6469,5837,3945,2626,192,2357,3368,2721,2600,2023,1464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4369,Myanmar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4370,Namibia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4371,Namibia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4372,Namibia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4373,Namibia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4374,Namibia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4375,Namibia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4376,Namibia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4377,Namibia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4378,Namibia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4379,Namibia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4380,Namibia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4381,Namibia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4382,Namibia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4383,Namibia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4384,Namibia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4385,Namibia,1995,0,68,235,113,55,21,6,5,49,78,50,16,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4386,Namibia,1996,16,205,613,472,230,137,101,17,249,330,245,87,72,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4387,Namibia,1997,18,232,791,479,296,161,93,23,249,401,275,104,56,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4388,Namibia,1998,21,270,816,541,267,148,111,34,300,536,310,117,62,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4389,Namibia,1999,20,247,908,613,260,135,110,25,339,540,336,114,77,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4390,Namibia,2000,18,269,874,665,300,147,81,16,352,654,348,161,76,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4391,Namibia,2001,20,322,993,732,318,150,116,32,394,729,404,168,91,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4392,Namibia,2002,19,301,1033,750,326,146,96,42,357,795,484,182,91,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4393,Namibia,2003,31,364,1109,838,419,196,108,47,451,927,571,216,108,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4394,Namibia,2004,31,319,1092,866,371,159,131,30,400,819,554,203,106,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4395,Namibia,2005,98,355,1027,874,365,146,120,105,399,809,525,213,95,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4396,Namibia,2006,86,347,1052,799,386,174,146,74,485,875,521,239,92,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4397,Namibia,2007,57,370,1018,786,346,149,120,69,417,826,513,242,102,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4398,Namibia,2008,30,387,1033,757,346,149,132,73,466,702,437,226,110,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4399,Namibia,2009,41,357,936,689,348,166,121,84,384,678,407,214,97,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4400,Namibia,2010,36,359,852,680,287,146,126,67,429,685,382,206,122,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4401,Namibia,2011,48,337,844,660,361,152,138,78,427,653,410,185,100,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4402,Namibia,2012,61,358,810,686,292,157,137,81,394,582,396,198,84,97,386,153,477,516,268,162,135,339,200,379,306,183,98,90,180,126,228,261,138,46,55,163,116,219,177,84,25,47,,,,,,,,,,,,,, +4403,Namibia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,603,612,1496,1404,723,392,309,491,688,1137,747,408,220,202 +4404,Nauru,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4405,Nauru,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4406,Nauru,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4407,Nauru,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4408,Nauru,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4409,Nauru,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4410,Nauru,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4411,Nauru,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4412,Nauru,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4413,Nauru,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4414,Nauru,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4415,Nauru,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4416,Nauru,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4417,Nauru,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4418,Nauru,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4419,Nauru,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4420,Nauru,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4421,Nauru,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4422,Nauru,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4423,Nauru,1999,0,0,0,0,1,1,0,0,0,1,3,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4424,Nauru,2000,,,,,1,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4425,Nauru,2001,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4426,Nauru,2002,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4427,Nauru,2003,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4428,Nauru,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4429,Nauru,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4430,Nauru,2006,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,1,0,1,0,,,,,,,,,,,,,, +4431,Nauru,2007,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4432,Nauru,2008,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4433,Nauru,2009,0,0,0,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,0,0,0,0,0,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +4434,Nauru,2010,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4435,Nauru,2011,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4436,Nauru,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4437,Nauru,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4438,Nepal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4439,Nepal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4440,Nepal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4441,Nepal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4442,Nepal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4443,Nepal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4444,Nepal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4445,Nepal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4446,Nepal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4447,Nepal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4448,Nepal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4449,Nepal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4450,Nepal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4451,Nepal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4452,Nepal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4453,Nepal,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4454,Nepal,1996,91,1451,1285,1221,1035,738,407,155,853,734,534,288,190,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4455,Nepal,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4456,Nepal,1998,133,1621,1522,1500,1292,884,480,173,1112,838,621,407,219,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4457,Nepal,1999,150,1872,1800,1703,1545,1161,799,185,1239,1133,754,553,316,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4458,Nepal,2000,170,1904,1763,1713,1491,1294,772,176,1267,1078,833,575,419,228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4459,Nepal,2001,155,1957,1709,1743,1491,1300,775,171,1295,1060,838,573,375,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4460,Nepal,2002,129,1980,1707,1686,1579,1465,758,202,1203,1041,796,544,426,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4461,Nepal,2003,122,2039,1658,1619,1769,1639,735,189,1283,1107,873,609,486,220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4462,Nepal,2004,121,1991,1749,1652,1710,1739,763,188,1282,1138,849,677,540,215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4463,Nepal,2005,148,1946,1685,1722,1806,1759,820,195,1208,1111,797,658,532,230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4464,Nepal,2006,125,1914,1651,1640,1688,1695,808,179,1164,1001,788,613,519,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4465,Nepal,2007,150,2025,1591,1636,1720,1715,919,175,1149,1027,793,619,578,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4466,Nepal,2008,81,150,1409,1558,1706,1515,792,107,832,820,704,630,523,226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4467,Nepal,2009,149,1991,1864,1761,1897,1871,1067,181,1223,1022,845,675,579,317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4468,Nepal,2010,165,2110,1832,1724,1856,1857,1126,192,1177,1036,819,681,642,352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4469,Nepal,2011,245,1914,1755,1723,1732,1710,1180,247,1182,978,752,624,604,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4470,Nepal,2012,250,1906,1756,1644,1708,1773,1203,210,1227,1036,666,638,643,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4471,Nepal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,186,1889,1768,1525,1690,1675,1415,223,1203,1007,737,660,691,430 +4472,Netherlands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4473,Netherlands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4474,Netherlands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4475,Netherlands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4476,Netherlands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4477,Netherlands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4478,Netherlands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4479,Netherlands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4480,Netherlands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4481,Netherlands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4482,Netherlands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4483,Netherlands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4484,Netherlands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4485,Netherlands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4486,Netherlands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4487,Netherlands,1995,22,79,119,75,28,9,10,24,56,50,13,10,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4488,Netherlands,1996,8,48,65,46,26,21,34,1,24,40,14,5,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4489,Netherlands,1997,3,33,65,47,32,12,31,4,17,31,10,12,4,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4490,Netherlands,1998,2,31,40,41,21,11,26,2,19,25,17,4,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4491,Netherlands,1999,5,44,67,32,24,12,19,5,26,39,16,2,1,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4492,Netherlands,2000,0,34,63,41,25,10,21,4,29,22,16,9,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4493,Netherlands,2001,1,51,51,33,29,12,24,1,26,32,19,9,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4494,Netherlands,2002,1,40,54,39,33,7,20,5,27,32,12,13,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4495,Netherlands,2003,2,35,50,38,17,15,15,0,16,30,12,10,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4496,Netherlands,2004,6,36,54,37,26,22,31,4,20,33,15,4,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4497,Netherlands,2005,0,23,42,23,26,14,19,3,14,19,11,9,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4498,Netherlands,2006,0,25,23,31,23,17,19,3,15,17,12,5,3,10,13,40,65,48,25,16,49,19,23,40,28,24,15,36,5,22,39,26,29,15,30,8,19,37,33,23,23,32,,,,,,,,,,,,,, +4499,Netherlands,2007,1,10,22,28,21,15,15,1,12,22,17,6,5,12,12,27,40,37,27,20,49,6,25,31,23,13,12,41,16,31,42,35,26,19,29,12,27,31,19,26,19,34,,,,,,,,,,,,,, +4500,Netherlands,2008,0,16,24,26,19,18,19,2,13,19,14,6,6,7,5,45,34,43,29,25,33,14,31,42,22,13,11,24,19,26,50,37,23,13,23,10,35,55,32,23,13,29,,,,,,,,,,,,,, +4501,Netherlands,2009,1,28,21,25,22,13,14,1,21,24,7,8,4,13,12,53,58,42,31,23,41,7,19,31,14,17,16,27,16,62,52,48,19,19,34,20,29,59,36,30,36,36,,,,,,,,,,,,,, +4502,Netherlands,2010,0,23,29,22,20,11,18,1,9,14,13,6,4,11,10,30,44,37,25,26,35,4,28,50,23,10,15,33,9,35,72,40,30,15,28,10,36,50,47,30,29,25,,,,,,,,,,,,,, +4503,Netherlands,2011,2,22,35,19,24,13,13,2,13,14,7,7,4,3,9,32,41,24,23,26,39,9,31,38,16,22,19,28,17,21,71,38,21,20,24,16,26,55,37,30,23,21,,,,,,,,,,,,,, +4504,Netherlands,2012,1,15,31,14,18,9,15,4,7,18,15,4,6,6,8,27,42,25,19,21,31,8,17,31,20,20,13,18,12,24,59,45,27,20,40,16,31,61,26,28,20,35,,,,,,,,,,,,,, +4505,Netherlands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,71,129,82,76,46,76,14,47,90,46,48,34,54 +4506,Netherlands Antilles,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4507,Netherlands Antilles,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4508,Netherlands Antilles,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4509,Netherlands Antilles,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4510,Netherlands Antilles,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4511,Netherlands Antilles,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4512,Netherlands Antilles,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4513,Netherlands Antilles,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4514,Netherlands Antilles,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4515,Netherlands Antilles,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4516,Netherlands Antilles,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4517,Netherlands Antilles,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4518,Netherlands Antilles,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4519,Netherlands Antilles,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4520,Netherlands Antilles,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4521,Netherlands Antilles,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4522,Netherlands Antilles,1996,0,0,0,0,1,1,1,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4523,Netherlands Antilles,1997,0,0,1,1,0,1,3,0,0,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4524,Netherlands Antilles,1998,0,0,0,0,0,1,2,0,1,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4525,Netherlands Antilles,1999,0,0,1,0,1,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4526,Netherlands Antilles,2000,0,0,1,2,0,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4527,Netherlands Antilles,2001,0,0,1,5,0,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4528,Netherlands Antilles,2002,0,1,1,3,2,3,1,0,1,0,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4529,Netherlands Antilles,2003,0,0,2,1,0,0,3,0,0,1,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4530,Netherlands Antilles,2004,1,1,0,4,3,0,1,0,0,,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4531,Netherlands Antilles,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4532,Netherlands Antilles,2006,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4533,Netherlands Antilles,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4534,Netherlands Antilles,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4535,Netherlands Antilles,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4536,New Caledonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4537,New Caledonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4538,New Caledonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4539,New Caledonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4540,New Caledonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4541,New Caledonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4542,New Caledonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4543,New Caledonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4544,New Caledonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4545,New Caledonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4546,New Caledonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4547,New Caledonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4548,New Caledonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4549,New Caledonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4550,New Caledonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4551,New Caledonia,1995,3,2,3,4,2,2,3,2,1,1,3,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4552,New Caledonia,1996,1,3,1,3,5,8,3,0,2,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4553,New Caledonia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4554,New Caledonia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4555,New Caledonia,1999,0,0,6,1,2,1,7,0,0,4,1,0,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4556,New Caledonia,2000,1,1,3,4,2,3,4,1,8,1,1,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4557,New Caledonia,2001,0,1,8,1,5,6,6,1,1,2,1,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4558,New Caledonia,2002,0,2,2,1,1,1,3,0,4,2,2,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4559,New Caledonia,2003,0,1,1,1,1,1,3,0,0,2,2,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4560,New Caledonia,2004,0,2,1,3,2,1,2,0,2,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4561,New Caledonia,2005,0,2,1,0,0,3,0,0,1,2,1,2,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4562,New Caledonia,2006,0,0,3,1,1,,1,0,1,0,0,0,0,2,1,1,1,1,2,2,5,0,0,0,2,1,2,4,0,1,0,0,2,0,0,0,1,0,0,3,1,2,,,,,,,,,,,,,, +4563,New Caledonia,2007,0,1,1,2,1,3,2,0,0,0,1,0,0,1,1,1,1,1,0,4,3,0,1,0,0,0,1,2,0,2,1,0,1,3,3,0,0,0,0,3,2,1,,,,,,,,,,,,,, +4564,New Caledonia,2008,0,1,1,0,2,1,2,0,0,1,0,0,0,1,0,0,1,0,4,3,4,1,0,0,1,1,0,4,0,0,0,1,0,3,1,0,0,0,0,1,1,2,,,,,,,,,,,,,, +4565,New Caledonia,2009,0,0,0,0,1,0,5,0,1,1,3,0,2,2,3,2,0,3,0,4,4,1,1,0,2,1,3,2,2,0,0,1,1,0,1,0,0,0,1,2,2,3,,,,,,,,,,,,,, +4566,New Caledonia,2010,0,1,2,3,1,4,3,0,1,0,1,0,1,3,0,1,1,3,0,1,2,1,0,1,0,1,0,5,1,0,0,0,2,2,2,0,0,0,1,0,1,4,,,,,,,,,,,,,, +4567,New Caledonia,2011,0,0,0,3,1,2,3,0,0,1,1,0,1,1,5,0,0,2,1,1,3,2,1,2,1,0,0,0,0,2,2,2,2,3,4,0,0,0,1,1,0,2,,,,,,,,,,,,,, +4568,New Caledonia,2012,,,2,,3,2,1,,,,,1,1,1,,1,,1,1,2,1,,,,1,,,3,,,,,,,2,,,,,1,3,,,,,,,,,,,,,,, +4569,New Caledonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4570,New Zealand,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4571,New Zealand,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4572,New Zealand,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4573,New Zealand,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4574,New Zealand,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4575,New Zealand,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4576,New Zealand,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4577,New Zealand,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4578,New Zealand,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4579,New Zealand,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4580,New Zealand,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4581,New Zealand,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4582,New Zealand,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4583,New Zealand,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4584,New Zealand,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4585,New Zealand,1995,0,4,3,3,5,7,7,1,2,3,4,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4586,New Zealand,1996,2,4,3,9,10,3,12,2,6,9,3,6,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4587,New Zealand,1997,0,3,6,3,4,4,7,0,4,6,5,2,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4588,New Zealand,1998,1,8,10,8,7,7,4,0,11,6,8,2,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4589,New Zealand,1999,1,10,8,4,3,8,15,1,6,7,2,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4590,New Zealand,2000,0,6,5,6,8,10,7,1,6,6,5,0,4,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4591,New Zealand,2001,1,7,2,7,4,2,12,3,9,14,3,1,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4592,New Zealand,2002,0,10,14,5,6,4,10,1,15,8,4,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4593,New Zealand,2003,5,9,10,6,6,8,9,7,18,8,1,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4594,New Zealand,2004,3,10,13,10,6,5,16,0,10,15,4,4,1,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4595,New Zealand,2005,4,6,10,6,6,5,10,1,11,9,6,6,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4596,New Zealand,2006,5,14,5,8,4,3,7,1,12,12,12,3,6,4,13,13,6,6,6,8,12,7,7,9,5,5,0,3,2,10,7,6,5,3,5,1,6,20,11,8,7,13,,,,,,,,,,,,,, +4597,New Zealand,2007,0,11,1,7,4,4,8,1,14,7,8,6,6,4,10,6,10,5,5,7,10,9,9,10,9,6,2,10,0,5,8,5,3,6,5,2,5,10,7,6,7,6,,,,,,,,,,,,,, +4598,New Zealand,2008,0,9,4,9,5,10,18,1,8,13,9,3,3,9,8,7,8,4,6,10,8,7,11,8,3,4,1,6,0,4,9,11,6,6,9,0,4,15,9,4,7,8,,,,,,,,,,,,,, +4599,New Zealand,2009,1,8,11,10,5,7,10,0,6,10,5,5,7,5,5,3,10,9,4,5,9,8,9,7,9,4,4,4,3,4,7,8,12,7,5,2,4,16,13,7,4,10,,,,,,,,,,,,,, +4600,New Zealand,2010,0,6,13,4,6,5,11,2,12,7,6,5,3,6,3,5,3,9,3,2,5,3,5,7,4,3,7,9,4,8,19,10,12,7,7,1,8,23,12,9,6,8,,,,,,,,,,,,,, +4601,New Zealand,2011,1,12,5,5,7,7,11,4,8,8,4,5,3,8,3,11,8,5,3,5,8,7,5,7,6,1,7,5,2,10,16,12,3,5,6,3,13,13,13,9,10,6,,,,,,,,,,,,,, +4602,New Zealand,2012,0,7,9,2,4,6,14,3,4,8,2,3,1,5,5,6,7,7,7,6,15,3,11,10,3,3,4,11,1,7,14,19,2,5,3,1,11,23,9,6,3,8,,,,,,,,,,,,,, +4603,New Zealand,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,16,40,23,18,13,29,4,19,32,17,17,14,24 +4604,Nicaragua,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4605,Nicaragua,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4606,Nicaragua,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4607,Nicaragua,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4608,Nicaragua,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4609,Nicaragua,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4610,Nicaragua,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4611,Nicaragua,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4612,Nicaragua,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4613,Nicaragua,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4614,Nicaragua,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4615,Nicaragua,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4616,Nicaragua,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4617,Nicaragua,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4618,Nicaragua,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4619,Nicaragua,1995,23,178,172,175,126,96,92,24,176,215,98,83,64,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4620,Nicaragua,1996,27,231,200,191,120,94,94,33,200,199,137,77,63,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4621,Nicaragua,1997,18,211,210,163,115,90,83,37,212,223,117,77,61,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4622,Nicaragua,1998,24,221,193,155,106,94,110,34,202,215,114,64,61,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4623,Nicaragua,1999,26,217,212,167,125,75,85,27,194,168,108,73,42,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4624,Nicaragua,2000,18,194,174,147,108,64,90,34,188,173,98,76,46,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4625,Nicaragua,2001,24,213,203,139,93,75,95,32,188,173,92,67,52,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4626,Nicaragua,2002,22,168,180,140,101,73,74,26,149,135,91,72,45,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4627,Nicaragua,2003,14,179,210,135,103,68,65,42,174,150,91,71,54,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4628,Nicaragua,2004,24,161,179,105,104,87,72,23,159,154,90,75,44,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4629,Nicaragua,2005,17,163,159,116,106,61,79,23,135,122,103,61,54,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4630,Nicaragua,2006,15,162,151,129,98,90,72,25,168,144,90,65,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4631,Nicaragua,2007,16,172,194,144,130,77,91,27,158,168,100,76,45,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,40,30,10,10,5,0,20,52,20,5,10,5,,,,,,,,,,,,,, +4632,Nicaragua,2008,20,174,190,130,108,90,67,38,165,164,93,54,54,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,20,10,20,10,20,0,10,10,10,10,10,15,,,,,,,,,,,,,, +4633,Nicaragua,2009,,,,,,,,,,,,,,,33,166,168,121,98,79,77,35,122,139,80,60,52,47,33,166,168,121,98,79,77,35,122,139,80,60,52,47,,,,,,,,,,,,,, +4634,Nicaragua,2010,22,157,189,141,115,82,108,27,154,149,92,75,50,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4635,Nicaragua,2011,10,273,235,156,108,61,94,4,61,145,161,108,64,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4636,Nicaragua,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4637,Nicaragua,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,206,171,143,116,52,38,31,203,161,146,121,85,39 +4638,Niger,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4639,Niger,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4640,Niger,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4641,Niger,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4642,Niger,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4643,Niger,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4644,Niger,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4645,Niger,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4646,Niger,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4647,Niger,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4648,Niger,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4649,Niger,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4650,Niger,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4651,Niger,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4652,Niger,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4653,Niger,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4654,Niger,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4655,Niger,1997,4,148,395,215,92,58,25,7,70,112,67,58,14,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4656,Niger,1998,4,218,511,399,234,159,61,14,92,160,126,86,46,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4657,Niger,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4658,Niger,2000,29,270,174,441,252,151,78,31,123,206,168,151,63,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4659,Niger,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4660,Niger,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4661,Niger,2003,41,485,1051,779,512,299,169,30,201,356,279,177,83,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4662,Niger,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4663,Niger,2005,35,557,1204,819,497,350,198,34,214,388,330,223,131,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4664,Niger,2006,25,537,1265,909,487,359,217,37,270,427,306,207,149,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4665,Niger,2007,40,571,1380,958,577,405,249,57,287,412,323,248,157,109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4666,Niger,2008,35,659,1453,852,562,429,333,57,259,414,307,237,146,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4667,Niger,2009,52,602,1552,1019,654,478,328,36,248,464,339,239,209,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4668,Niger,2010,44,669,1587,988,615,415,342,39,272,418,347,238,174,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4669,Niger,2011,50,709,1673,1025,646,436,347,50,285,449,323,278,189,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4670,Niger,2012,40,702,1752,1133,747,444,360,48,260,485,302,237,214,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4671,Niger,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,749,1834,1151,677,515,405,47,287,487,353,253,216,151 +4672,Nigeria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4673,Nigeria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4674,Nigeria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4675,Nigeria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4676,Nigeria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4677,Nigeria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4678,Nigeria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4679,Nigeria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4680,Nigeria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4681,Nigeria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4682,Nigeria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4683,Nigeria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4684,Nigeria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4685,Nigeria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4686,Nigeria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4687,Nigeria,1995,450,845,921,937,557,611,515,404,842,795,770,724,654,451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4688,Nigeria,1996,234,2097,2557,1791,853,486,309,411,1954,2175,1253,871,458,215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4689,Nigeria,1997,116,1518,2095,1177,734,436,338,156,1556,1517,753,458,261,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4690,Nigeria,1998,125,1798,2543,1282,889,451,369,169,1856,1808,881,560,298,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4691,Nigeria,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4692,Nigeria,2000,157,2173,3164,1836,1091,566,463,239,2934,2434,1110,676,344,231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4693,Nigeria,2001,164,2196,3281,2076,1283,654,488,272,2619,2510,1201,715,387,251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4694,Nigeria,2002,163,2274,3719,2283,1352,696,534,242,2633,2884,1368,787,420,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4695,Nigeria,2003,267,3263,5388,3590,2106,1139,719,356,3394,3956,1973,1159,536,327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4696,Nigeria,2004,408,3679,6252,4262,2614,1310,1267,469,3768,4463,2220,1495,981,567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4697,Nigeria,2005,325,3824,6758,4544,2863,1464,950,482,3996,4884,2448,1350,745,415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4698,Nigeria,2006,247,4488,8145,5517,3330,1431,897,385,4029,5430,2516,1894,1049,545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4699,Nigeria,2007,503,4251,8541,5776,3767,1853,1341,685,4522,5944,3088,1926,1194,625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4700,Nigeria,2008,579,4518,8910,6210,3821,1987,1267,745,4431,6391,3351,2057,1099,660,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4701,Nigeria,2009,711,4342,8649,5975,3766,2057,1269,804,4199,6100,3473,1872,1023,623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4702,Nigeria,2010,521,4457,9186,6218,3804,1974,1363,595,4182,6117,3431,1846,1040,682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4703,Nigeria,2011,529,4549,9520,6550,4230,2248,1443,578,4198,6168,3574,2014,1112,724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4704,Nigeria,2012,538,5026,10382,7684,4589,2449,1686,649,4652,6762,4084,2243,1290,867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4705,Nigeria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3008,7843,16463,13958,8853,5140,4256,2768,7278,11994,8295,5172,2939,2434 +4706,Niue,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4707,Niue,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4708,Niue,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4709,Niue,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4710,Niue,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4711,Niue,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4712,Niue,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4713,Niue,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4714,Niue,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4715,Niue,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4716,Niue,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4717,Niue,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4718,Niue,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4719,Niue,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4720,Niue,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4721,Niue,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4722,Niue,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4723,Niue,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4724,Niue,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4725,Niue,1999,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4726,Niue,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4727,Niue,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4728,Niue,2002,,,,,,,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4729,Niue,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4730,Niue,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4731,Niue,2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4732,Niue,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4733,Niue,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4734,Niue,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4735,Niue,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4736,Niue,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4737,Niue,2011,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4738,Niue,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4739,Niue,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4740,Northern Mariana Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4741,Northern Mariana Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4742,Northern Mariana Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4743,Northern Mariana Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4744,Northern Mariana Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4745,Northern Mariana Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4746,Northern Mariana Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4747,Northern Mariana Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4748,Northern Mariana Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4749,Northern Mariana Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4750,Northern Mariana Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4751,Northern Mariana Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4752,Northern Mariana Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4753,Northern Mariana Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4754,Northern Mariana Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4755,Northern Mariana Islands,1995,1,1,3,5,10,3,3,0,0,2,6,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4756,Northern Mariana Islands,1996,0,2,8,5,3,1,1,1,1,1,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4757,Northern Mariana Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4758,Northern Mariana Islands,1998,0,0,6,3,5,2,2,0,3,4,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4759,Northern Mariana Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4760,Northern Mariana Islands,2000,1,4,8,9,9,3,2,0,10,17,7,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4761,Northern Mariana Islands,2001,0,1,3,0,4,2,0,0,5,4,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4762,Northern Mariana Islands,2002,1,2,3,7,10,5,2,0,9,10,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4763,Northern Mariana Islands,2003,0,2,2,2,1,0,2,1,3,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4764,Northern Mariana Islands,2004,0,0,2,2,4,1,0,0,1,2,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4765,Northern Mariana Islands,2005,0,0,1,3,4,1,2,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4766,Northern Mariana Islands,2006,0,0,2,3,1,0,0,0,2,2,3,1,0,1,1,0,1,7,5,2,1,0,6,4,1,1,3,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,,,,,,,,,,,,,, +4767,Northern Mariana Islands,2007,0,0,0,3,4,0,2,0,0,2,1,1,1,2,1,1,3,8,0,4,0,0,1,3,4,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4768,Northern Mariana Islands,2008,0,1,0,1,5,0,3,0,0,0,2,0,1,0,0,0,0,5,2,1,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +4769,Northern Mariana Islands,2009,0,0,1,4,4,3,1,0,1,0,0,1,1,0,0,0,1,1,2,5,0,0,2,1,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,4,0,0,,,,,,,,,,,,,, +4770,Northern Mariana Islands,2010,0,2,0,0,3,3,0,0,2,0,1,3,2,1,0,1,1,1,2,2,2,0,0,2,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4771,Northern Mariana Islands,2011,0,0,0,0,1,5,3,0,0,1,0,2,3,0,0,0,0,2,3,6,0,0,1,0,1,2,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,, +4772,Northern Mariana Islands,2012,0,0,0,3,1,1,0,0,0,3,1,0,0,0,0,1,1,6,3,2,2,0,0,4,3,1,0,1,0,0,0,0,1,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4773,Northern Mariana Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,1,3,5,2,0,1,4,2,6,4,1 +4774,Norway,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4775,Norway,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4776,Norway,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4777,Norway,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4778,Norway,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4779,Norway,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4780,Norway,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4781,Norway,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4782,Norway,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4783,Norway,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4784,Norway,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4785,Norway,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4786,Norway,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4787,Norway,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4788,Norway,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4789,Norway,1995,0,4,8,6,3,5,12,0,4,7,2,0,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4790,Norway,1996,3,8,7,14,6,2,24,1,4,10,5,2,0,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4791,Norway,1997,3,6,10,7,6,2,27,0,3,4,8,4,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4792,Norway,1998,0,1,4,3,1,2,17,0,8,2,3,1,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4793,Norway,1999,0,2,5,3,2,1,1,0,3,2,2,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4794,Norway,2000,0,1,9,3,6,2,4,1,3,1,,,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4795,Norway,2001,0,6,8,8,4,1,8,1,6,9,1,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4796,Norway,2002,0,4,4,4,2,0,4,0,3,5,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4797,Norway,2003,0,3,3,4,4,2,2,0,4,9,4,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4798,Norway,2004,1,5,6,6,1,1,2,0,3,8,4,2,1,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4799,Norway,2005,0,9,4,6,4,4,3,0,4,7,2,1,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4800,Norway,2006,0,5,10,5,3,3,1,1,5,5,2,2,1,3,6,11,10,9,7,6,14,8,12,24,8,4,5,7,2,12,13,9,4,4,2,5,13,12,14,5,0,4,,,,,,,,,,,,,, +4801,Norway,2007,,4,12,2,3,1,2,1,4,2,5,1,,1,5,14,17,16,3,3,8,4,13,20,5,5,2,13,2,12,11,14,6,0,8,7,11,19,10,4,2,10,,,,,,,,,,,,,, +4802,Norway,2008,1,10,8,7,2,4,3,0,1,6,4,0,1,6,1,14,13,3,4,2,8,6,10,12,12,3,1,2,7,5,22,5,4,3,6,5,5,23,8,3,2,10,,,,,,,,,,,,,, +4803,Norway,2009,0,6,14,5,1,2,0,1,2,5,4,1,1,3,6,24,25,9,5,4,6,4,10,20,8,1,3,4,1,11,21,12,1,3,2,1,16,13,12,4,1,3,,,,,,,,,,,,,, +4804,Norway,2010,0,9,9,7,1,4,2,0,5,7,3,2,0,1,4,15,20,10,3,2,7,1,8,19,10,2,6,3,2,11,27,10,4,4,1,5,8,22,12,5,4,1,,,,,,,,,,,,,, +4805,Norway,2011,0,3,7,3,3,1,1,0,14,7,0,1,0,1,5,23,20,10,7,4,10,4,12,25,4,3,1,4,1,21,26,7,8,2,3,6,14,26,11,5,4,3,,,,,,,,,,,,,, +4806,Norway,2012,1,8,15,5,8,5,2,0,2,8,1,4,1,1,5,25,15,10,8,5,7,5,12,22,11,4,4,7,3,10,23,11,3,1,3,4,14,25,17,6,3,5,,,,,,,,,,,,,, +4807,Norway,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,54,57,30,13,14,11,10,46,60,26,10,8,16 +4808,Oman,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4809,Oman,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4810,Oman,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4811,Oman,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4812,Oman,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4813,Oman,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4814,Oman,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4815,Oman,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4816,Oman,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4817,Oman,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4818,Oman,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4819,Oman,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4820,Oman,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4821,Oman,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4822,Oman,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4823,Oman,1995,1,7,12,7,7,10,11,2,18,13,5,5,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4824,Oman,1996,0,15,14,8,11,8,11,3,18,4,3,5,1,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4825,Oman,1997,0,18,16,14,10,11,10,2,14,7,4,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4826,Oman,1998,0,18,9,8,14,9,12,3,14,6,6,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4827,Oman,1999,2,10,11,23,15,7,10,3,16,4,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4828,Oman,2000,1,8,9,11,12,9,11,2,17,5,7,5,11,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4829,Oman,2001,1,10,8,12,6,8,8,4,17,8,5,9,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4830,Oman,2002,7,22,18,20,16,26,20,16,41,15,12,13,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4831,Oman,2003,5,28,32,31,29,13,15,10,26,18,12,13,11,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4832,Oman,2004,1,15,12,23,30,12,14,0,0,9,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4833,Oman,2005,1,21,11,24,15,19,5,2,13,5,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4834,Oman,2006,6,18,19,18,18,12,2,2,21,22,7,13,12,14,10,17,23,14,8,6,9,11,19,7,3,8,8,7,7,11,16,9,4,4,5,6,17,8,4,8,5,4,,,,,,,,,,,,,, +4835,Oman,2007,0,16,25,25,20,13,8,3,22,13,11,10,7,14,6,3,4,1,1,2,5,1,4,2,0,2,1,1,3,9,8,10,6,2,4,7,17,8,8,5,10,5,,,,,,,,,,,,,, +4836,Oman,2008,0,18,28,28,28,14,10,1,20,10,4,4,5,1,4,5,7,9,1,3,4,0,6,2,2,3,0,2,2,14,17,10,5,6,1,6,26,13,7,8,12,2,,,,,,,,,,,,,, +4837,Oman,2009,0,28,35,23,13,10,11,2,11,14,4,6,1,6,2,6,6,4,2,6,4,0,2,0,0,0,2,2,4,11,14,11,3,8,7,7,12,26,6,11,3,4,,,,,,,,,,,,,, +4838,Oman,2010,2,12,27,15,16,8,10,3,18,22,6,4,4,5,2,1,5,2,2,3,5,2,3,1,0,1,0,1,1,8,16,7,8,8,6,4,18,21,9,8,4,6,,,,,,,,,,,,,, +4839,Oman,2011,1,17,25,12,23,10,11,5,20,21,9,13,7,6,0,3,7,3,1,1,4,0,3,4,2,0,1,3,5,11,16,9,4,6,4,7,17,15,9,12,6,1,,,,,,,,,,,,,, +4840,Oman,2012,0,18,33,23,12,8,19,0,20,37,10,10,9,6,3,6,5,3,2,2,1,2,3,5,2,2,1,2,4,12,18,11,14,5,9,5,9,18,7,7,6,6,,,,,,,,,,,,,, +4841,Oman,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,32,49,44,19,20,21,10,41,42,14,11,12,9 +4842,Pakistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4843,Pakistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4844,Pakistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4845,Pakistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4846,Pakistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4847,Pakistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4848,Pakistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4849,Pakistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4850,Pakistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4851,Pakistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4852,Pakistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4853,Pakistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4854,Pakistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4855,Pakistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4856,Pakistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4857,Pakistan,1995,29,274,230,178,140,124,95,85,375,381,267,178,143,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4858,Pakistan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4859,Pakistan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4860,Pakistan,1998,59,633,449,328,335,194,137,159,735,507,260,209,90,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4861,Pakistan,1999,49,229,178,65,211,162,113,33,259,373,97,146,243,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4862,Pakistan,2000,55,498,387,256,232,153,130,130,591,416,274,163,103,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4863,Pakistan,2001,139,1191,891,673,664,496,306,241,1007,915,650,421,252,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4864,Pakistan,2002,225,1964,1734,1270,1113,864,554,512,2401,1917,1283,809,539,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4865,Pakistan,2003,284,2605,2346,1851,1652,1288,870,622,3007,2471,1669,1280,845,503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4866,Pakistan,2004,363,3812,3309,2676,2329,2057,1581,950,4281,3656,2452,1794,1350,837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4867,Pakistan,2005,621,5278,4759,4263,3834,3332,2453,1447,6463,5611,3987,2866,2060,1338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4868,Pakistan,2006,820,7290,6896,5594,5427,4392,3439,1941,8410,7030,5404,3913,2802,1950,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4869,Pakistan,2007,1017,9598,8790,7717,7237,6258,5156,2443,11522,9162,7352,5496,4065,2934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4870,Pakistan,2008,1213,10521,9889,8428,8284,6890,5959,2696,12838,10489,8146,6387,4750,3547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4871,Pakistan,2009,1052,11090,10035,8472,8366,7053,5981,2595,13734,10512,8174,6332,4786,3492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4872,Pakistan,2010,1548,11860,10462,8320,7969,6934,6066,3212,14481,10513,7749,6410,4879,4338,5631,0,0,0,0,0,0,6562,0,0,0,0,0,0,3293,0,0,0,0,0,0,4228,0,0,0,0,0,0,,,,,,,,,,,,,, +4873,Pakistan,2011,1216,12143,10515,8435,8608,7320,6323,2679,14652,10684,7880,6590,4977,3711,7094,,,,,,,7048,,,,,,,3346,,,,,,,4350,,,,,,,,,,,,,,,,,,,, +4874,Pakistan,2012,1317,12605,10838,8848,9026,7753,6492,2630,15445,10902,8263,6876,5494,4056,6391,,,,,,,7493,,,,,,,3673,,,,,,,4655,,,,,,,,,,,,,,,,,,,, +4875,Pakistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12467,,,,,,,15646,,,,,, +4876,Palau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4877,Palau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4878,Palau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4879,Palau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4880,Palau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4881,Palau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4882,Palau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4883,Palau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4884,Palau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4885,Palau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4886,Palau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4887,Palau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4888,Palau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4889,Palau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4890,Palau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4891,Palau,1995,0,2,3,0,2,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4892,Palau,1996,0,1,0,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4893,Palau,1997,0,0,1,2,0,2,0,0,0,0,2,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4894,Palau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4895,Palau,1999,0,2,2,5,1,2,1,0,1,3,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4896,Palau,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4897,Palau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4898,Palau,2002,1,0,1,1,2,2,1,0,0,3,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4899,Palau,2003,0,0,1,1,1,1,0,1,0,0,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4900,Palau,2004,,,,,1,2,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4901,Palau,2005,,,2,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4902,Palau,2006,1,0,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,,,,,,,,,,,,,, +4903,Palau,2007,0,0,1,0,2,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4904,Palau,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4905,Palau,2009,0,0,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,1,0,2,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4906,Palau,2010,0,1,2,1,1,1,1,1,0,1,1,0,0,0,0,1,2,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4907,Palau,2011,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4908,Palau,2012,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4909,Palau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,2,1,0,2,0,0,0,0,0,0,1,2 +4910,Panama,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4911,Panama,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4912,Panama,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4913,Panama,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4914,Panama,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4915,Panama,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4916,Panama,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4917,Panama,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4918,Panama,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4919,Panama,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4920,Panama,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4921,Panama,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4922,Panama,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4923,Panama,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4924,Panama,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4925,Panama,1995,86,155,193,112,126,42,83,72,120,111,75,57,16,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4926,Panama,1996,52,68,132,87,65,44,45,58,62,76,59,36,35,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4927,Panama,1997,41,79,173,117,75,70,39,23,45,86,46,23,26,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4928,Panama,1998,2,14,14,10,4,3,5,1,9,13,7,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4929,Panama,1999,38,107,209,134,106,81,72,53,83,100,62,52,43,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4930,Panama,2000,3,44,78,61,37,27,26,6,43,34,35,19,12,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4931,Panama,2001,7,58,109,89,73,50,39,9,45,70,46,27,12,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4932,Panama,2002,7,89,108,101,76,68,68,7,50,54,59,29,18,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4933,Panama,2003,10,91,122,81,74,61,67,14,51,77,50,30,24,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4934,Panama,2004,16,89,123,118,91,65,50,9,98,66,59,33,34,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4935,Panama,2005,5,76,129,129,84,57,49,11,73,81,62,33,30,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4936,Panama,2006,7,100,134,107,88,48,57,14,64,83,52,45,26,33,75,59,96,96,57,41,34,75,47,38,37,22,18,23,16,20,50,35,21,11,12,12,19,17,15,10,5,11,,,,,,,,,,,,,, +4937,Panama,2007,7,106,139,116,81,50,61,7,56,74,59,33,21,23,49,39,51,57,48,30,25,46,22,27,31,14,20,11,11,24,40,33,13,13,18,11,11,20,18,4,8,14,,,,,,,,,,,,,, +4938,Panama,2008,9,102,123,99,114,63,65,10,59,76,58,48,30,27,42,35,45,48,39,26,33,36,15,26,14,11,18,7,18,19,37,40,23,9,20,15,18,17,16,7,7,16,,,,,,,,,,,,,, +4939,Panama,2009,10,58,101,110,69,57,63,6,59,68,68,43,24,32,56,31,52,49,34,21,25,55,18,28,26,10,12,19,14,34,43,33,16,24,24,19,19,21,15,11,6,8,,,,,,,,,,,,,, +4940,Panama,2010,6,70,123,81,65,61,51,6,55,55,46,43,24,31,65,43,48,41,32,32,37,50,17,21,15,24,6,14,22,29,51,54,18,19,15,25,15,18,14,8,6,8,,,,,,,,,,,,,, +4941,Panama,2011,10,100,108,94,105,62,48,10,57,65,63,46,43,50,48,28,54,62,33,28,27,46,20,25,22,9,8,30,13,18,33,39,19,19,13,13,19,14,5,9,7,13,,,,,,,,,,,,,, +4942,Panama,2012,19,88,103,104,67,51,61,9,62,57,45,46,22,44,72,39,57,32,35,28,23,35,20,23,27,16,13,14,21,35,50,29,17,14,15,8,11,13,12,7,6,10,,,,,,,,,,,,,, +4943,Panama,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,142,217,161,150,74,114,59,89,103,80,64,47,70 +4944,Papua New Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4945,Papua New Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4946,Papua New Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4947,Papua New Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4948,Papua New Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4949,Papua New Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4950,Papua New Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4951,Papua New Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4952,Papua New Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4953,Papua New Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4954,Papua New Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4955,Papua New Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4956,Papua New Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4957,Papua New Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4958,Papua New Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4959,Papua New Guinea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4960,Papua New Guinea,1996,11,31,25,18,4,3,2,11,41,30,11,10,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4961,Papua New Guinea,1997,2,9,8,5,2,2,0,1,11,5,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4962,Papua New Guinea,1998,9,69,57,30,25,14,4,11,94,51,27,21,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4963,Papua New Guinea,1999,1,33,25,9,8,3,0,0,32,20,13,6,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4964,Papua New Guinea,2000,8,87,70,30,21,12,5,6,77,45,21,15,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4965,Papua New Guinea,2001,4,101,72,29,26,9,4,7,91,64,32,17,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4966,Papua New Guinea,2002,18,139,133,74,62,37,6,22,160,149,60,47,18,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4967,Papua New Guinea,2003,17,190,153,96,65,32,7,28,193,171,59,29,20,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4968,Papua New Guinea,2004,28,153,138,90,61,43,6,30,164,161,66,38,18,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4969,Papua New Guinea,2005,28,183,205,108,94,48,12,38,200,204,124,65,35,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4970,Papua New Guinea,2006,32,221,220,122,84,48,3,41,226,215,142,75,24,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4971,Papua New Guinea,2007,16,178,171,112,67,50,6,32,148,153,84,36,15,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4972,Papua New Guinea,2008,65,250,207,160,95,58,12,71,261,230,113,75,48,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4973,Papua New Guinea,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4974,Papua New Guinea,2010,37,279,260,196,135,87,27,64,313,292,191,97,52,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4975,Papua New Guinea,2011,50,278,265,152,122,71,18,53,302,272,146,97,55,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4976,Papua New Guinea,2012,54,415,387,250,182,121,37,55,398,395,208,156,95,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4977,Papua New Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4978,Paraguay,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4979,Paraguay,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4980,Paraguay,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4981,Paraguay,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4982,Paraguay,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4983,Paraguay,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4984,Paraguay,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4985,Paraguay,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4986,Paraguay,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4987,Paraguay,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4988,Paraguay,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4989,Paraguay,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4990,Paraguay,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4991,Paraguay,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4992,Paraguay,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4993,Paraguay,1995,18,64,71,96,74,57,61,13,65,49,46,35,34,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4994,Paraguay,1996,17,84,100,79,91,63,49,16,80,91,50,50,48,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4995,Paraguay,1997,25,100,82,75,76,58,74,27,91,72,58,48,50,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4996,Paraguay,1998,14,100,101,96,82,66,85,17,87,55,37,36,34,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4997,Paraguay,1999,19,113,157,111,114,69,67,22,84,72,56,43,48,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4998,Paraguay,2000,16,112,103,105,86,80,71,12,69,86,41,41,30,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4999,Paraguay,2001,18,114,106,85,89,74,73,22,91,71,46,51,31,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5000,Paraguay,2002,20,119,127,112,105,78,78,12,88,83,50,36,55,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5001,Paraguay,2003,11,163,174,109,123,81,91,28,87,71,77,50,40,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5002,Paraguay,2004,18,160,132,120,107,103,121,21,106,87,69,63,50,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5003,Paraguay,2005,23,168,185,136,117,87,99,31,89,98,69,52,29,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5004,Paraguay,2006,20,188,221,143,150,124,116,16,130,79,73,55,63,66,131,40,46,35,45,51,59,149,36,30,25,33,20,41,21,13,18,24,7,14,15,14,11,11,7,9,1,9,,,,,,,,,,,,,, +5005,Paraguay,2007,14,171,221,152,135,94,100,15,100,98,46,46,34,47,153,36,47,43,49,41,51,126,20,27,23,16,27,24,16,28,19,20,24,10,22,16,12,13,13,6,4,11,,,,,,,,,,,,,, +5006,Paraguay,2008,11,238,227,138,138,91,90,10,92,87,60,61,42,56,77,44,37,45,45,42,66,63,33,28,12,14,13,33,15,22,29,31,22,18,22,20,12,15,6,11,5,12,,,,,,,,,,,,,, +5007,Paraguay,2009,15,203,263,173,155,120,102,15,121,101,53,62,41,57,74,20,37,29,37,23,27,87,19,14,11,14,10,23,18,32,34,28,28,13,30,14,21,23,13,13,7,9,,,,,,,,,,,,,, +5008,Paraguay,2010,18,163,244,129,143,103,99,18,106,99,39,50,46,45,80,28,28,32,29,36,55,73,23,24,8,27,13,33,14,23,41,26,22,22,25,16,11,20,12,10,9,14,,,,,,,,,,,,,, +5009,Paraguay,2011,9,182,238,135,151,124,103,14,110,103,55,39,36,62,114,26,39,36,31,38,33,68,30,19,17,24,14,17,16,26,39,35,18,19,13,13,17,21,15,2,7,8,,,,,,,,,,,,,, +5010,Paraguay,2012,4,180,230,158,143,116,129,16,95,98,60,55,38,60,108,27,34,30,31,32,36,83,23,27,7,25,11,17,15,20,29,23,23,13,21,10,15,20,10,6,9,7,,,,,,,,,,,,,, +5011,Paraguay,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,99,266,380,226,237,168,184,84,152,141,91,85,52,78 +5012,Peru,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5013,Peru,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5014,Peru,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5015,Peru,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5016,Peru,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5017,Peru,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5018,Peru,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5019,Peru,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5020,Peru,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5021,Peru,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5022,Peru,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5023,Peru,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5024,Peru,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5025,Peru,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5026,Peru,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5027,Peru,1995,147,1311,849,454,322,200,216,149,1005,660,373,259,162,152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5028,Peru,1996,151,1351,789,420,261,190,167,169,896,561,290,171,132,144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5029,Peru,1997,745,6913,3853,1971,1174,842,748,864,4560,2784,1224,734,590,496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5030,Peru,1998,704,6271,3987,2095,1337,831,889,862,4560,2894,1431,686,537,623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5031,Peru,1999,712,4861,3007,1586,852,624,714,700,4783,2958,1560,838,613,703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5032,Peru,2000,552,5290,2875,1546,1041,801,796,633,3686,2472,1156,609,499,624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5033,Peru,2001,11,5591,2887,1550,979,843,696,11,4015,2382,1117,626,480,497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5034,Peru,2002,65,983,622,298,194,164,138,62,688,496,251,129,96,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5035,Peru,2003,101,758,506,355,206,139,165,107,659,380,228,138,106,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5036,Peru,2004,385,3860,2085,1357,894,747,675,410,3258,1935,1094,678,440,471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5037,Peru,2005,371,3802,2670,1513,1075,641,708,375,2674,2111,1046,699,333,472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5038,Peru,2006,400,4071,2470,1494,1106,884,869,435,2713,1852,1082,762,557,556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5039,Peru,2007,395,3436,2239,1585,1152,654,702,335,2684,1603,1127,813,402,669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5040,Peru,2008,84,3406,2233,1564,1121,608,921,52,2644,1599,1112,791,373,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5041,Peru,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5042,Peru,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5043,Peru,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5044,Peru,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5045,Peru,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,960,5129,3521,2319,1655,1443,1738,854,2945,2219,1387,1372,860,1102 +5046,Philippines,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5047,Philippines,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5048,Philippines,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5049,Philippines,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5050,Philippines,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5051,Philippines,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5052,Philippines,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5053,Philippines,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5054,Philippines,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5055,Philippines,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5056,Philippines,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5057,Philippines,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5058,Philippines,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5059,Philippines,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5060,Philippines,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5061,Philippines,1995,2,43,56,61,46,47,26,1,20,32,26,20,19,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5062,Philippines,1996,1,26,47,58,50,28,28,1,11,20,19,15,5,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5063,Philippines,1997,5,136,273,303,262,238,129,6,80,111,131,110,98,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5064,Philippines,1998,2,157,292,356,256,206,81,4,76,109,119,106,69,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5065,Philippines,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5066,Philippines,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5067,Philippines,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5068,Philippines,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5069,Philippines,2003,356,6360,9302,11458,10713,6445,3648,300,3218,4551,4761,4000,2858,2018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5070,Philippines,2004,312,6792,10328,12229,11413,7526,4289,291,3507,5090,5008,4327,3210,2183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5071,Philippines,2005,482,7358,11275,13253,12531,7646,4279,374,3710,5268,5565,4603,3274,2029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5072,Philippines,2006,419,7878,11697,13478,12733,8074,4640,379,4337,5746,5630,5007,3485,2237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5073,Philippines,2007,466,8524,11781,13810,12846,8481,4862,380,4389,5594,5291,4612,3313,2217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5074,Philippines,2008,369,8735,11741,13529,12808,8249,4348,341,4529,5452,5123,4527,3086,2188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5075,Philippines,2009,487,9348,12430,13712,13111,8585,4617,412,4895,5724,5516,4628,3203,2138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5076,Philippines,2010,511,9320,12224,13716,13651,8923,4742,454,4825,5489,5301,4643,3329,2070,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5077,Philippines,2011,573,9725,12804,14474,14002,9568,4845,448,5155,5848,5521,4880,3501,2236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5078,Philippines,2012,583,9754,12576,14140,13996,9676,5097,466,5104,5954,5584,5068,3605,2380,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5079,Philippines,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1207,10305,12591,14203,14282,9871,5561,858,5466,5798,5555,5127,3835,2562 +5080,Poland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5081,Poland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5082,Poland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5083,Poland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5084,Poland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5085,Poland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5086,Poland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5087,Poland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5088,Poland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5089,Poland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5090,Poland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5091,Poland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5092,Poland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5093,Poland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5094,Poland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5095,Poland,1995,3,122,295,795,565,369,377,4,129,163,225,111,107,414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5096,Poland,1996,10,248,545,1365,1128,687,724,9,180,324,415,202,159,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5097,Poland,1997,3,104,278,781,594,374,359,7,91,155,205,96,94,345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5098,Poland,1998,4,99,266,752,647,311,367,5,102,161,219,127,81,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5099,Poland,1999,0,84,219,681,654,305,306,10,95,113,178,129,81,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5100,Poland,2000,1,99,303,812,782,361,434,1,99,158,211,170,82,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5101,Poland,2001,5,78,242,603,662,275,322,4,99,148,170,124,63,360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5102,Poland,2002,4,100,206,515,687,264,309,7,90,135,157,148,70,368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5103,Poland,2003,2,93,234,436,653,305,349,3,91,108,152,132,65,358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5104,Poland,2004,1,85,225,425,664,243,292,2,92,136,126,118,79,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5105,Poland,2005,3,109,199,389,639,292,310,3,95,142,112,151,63,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5106,Poland,2006,1,92,215,390,649,357,285,1,83,142,112,118,72,318,14,122,210,387,710,514,655,10,115,200,197,283,185,500,23,27,36,42,74,58,93,20,22,32,44,43,52,124,,,,,,,,,,,,,, +5107,Poland,2007,2,85,213,395,677,344,285,4,65,149,120,132,79,277,13,127,238,344,759,548,635,14,122,211,219,250,191,479,21,24,27,50,72,48,74,17,10,25,35,39,53,97,,,,,,,,,,,,,, +5108,Poland,2008,6,66,175,397,653,355,239,3,65,106,112,132,77,264,19,104,240,331,620,575,604,13,78,168,155,235,228,465,14,19,40,29,63,59,86,21,20,31,25,40,46,83,,,,,,,,,,,,,, +5109,Poland,2009,2,84,207,340,594,410,256,5,60,129,86,136,76,273,16,103,195,348,682,585,668,13,102,181,181,261,228,484,25,21,32,50,54,57,64,38,11,22,23,37,46,83,,,,,,,,,,,,,, +5110,Poland,2010,3,70,205,310,574,393,237,2,59,118,82,104,82,245,8,81,212,312,571,608,574,9,104,165,171,163,222,425,17,11,29,33,59,65,73,22,15,16,22,36,40,63,,,,,,,,,,,,,, +5111,Poland,2011,5,69,187,314,560,439,275,1,67,96,90,130,99,255,27,111,230,324,653,728,731,27,99,208,167,245,288,506,29,20,25,32,57,73,84,22,16,24,27,21,46,108,,,,,,,,,,,,,, +5112,Poland,2012,1,82,183,306,471,438,267,1,54,96,106,102,100,226,20,121,200,301,554,632,586,29,102,128,140,211,233,472,22,20,23,27,36,64,73,21,17,12,28,25,42,93,,,,,,,,,,,,,, +5113,Poland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,182,441,669,1119,1297,1061,65,145,246,284,333,372,778 +5114,Portugal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5115,Portugal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5116,Portugal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5117,Portugal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5118,Portugal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5119,Portugal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5120,Portugal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5121,Portugal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5122,Portugal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5123,Portugal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5124,Portugal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5125,Portugal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5126,Portugal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5127,Portugal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5128,Portugal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5129,Portugal,1995,11,215,363,328,200,173,164,7,139,172,87,33,42,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5130,Portugal,1996,12,176,359,331,192,158,203,6,114,177,76,31,37,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5131,Portugal,1997,8,135,313,303,217,130,84,4,105,141,77,27,23,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5132,Portugal,1998,8,154,367,362,232,141,173,5,132,160,123,44,33,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5133,Portugal,1999,13,113,288,378,232,146,189,9,98,134,86,30,28,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5134,Portugal,2000,8,147,375,349,208,140,140,5,114,154,87,41,25,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5135,Portugal,2001,9,156,329,356,218,109,140,13,110,160,83,36,30,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5136,Portugal,2002,12,156,342,411,272,129,171,5,99,141,87,33,29,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5137,Portugal,2003,11,134,297,333,227,99,148,7,99,163,82,39,27,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5138,Portugal,2004,4,97,258,336,216,98,115,3,89,122,65,22,16,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5139,Portugal,2005,5,85,227,284,181,90,93,7,67,109,66,29,11,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5140,Portugal,2006,7,80,211,259,190,94,108,4,56,107,85,33,22,41,28,46,115,134,100,57,129,15,36,87,67,34,32,74,17,32,98,116,69,43,105,23,25,61,48,40,43,92,,,,,,,,,,,,,, +5141,Portugal,2007,4,69,178,268,188,82,112,2,49,95,61,27,12,26,20,51,113,148,104,64,106,17,44,72,67,32,15,55,14,31,88,104,47,41,95,12,19,52,65,41,41,85,,,,,,,,,,,,,, +5142,Portugal,2008,2,51,155,212,179,80,84,3,54,86,55,38,15,39,13,41,89,143,112,76,126,18,47,88,56,40,24,80,12,38,61,75,52,45,93,10,18,40,39,35,33,80,,,,,,,,,,,,,, +5143,Portugal,2009,2,74,141,204,184,81,89,2,56,91,55,26,15,39,17,33,76,115,88,79,115,24,33,75,51,39,24,58,14,24,71,80,56,42,103,14,31,60,58,41,38,83,,,,,,,,,,,,,, +5144,Portugal,2010,4,53,120,221,172,81,81,3,55,64,57,38,12,31,11,28,77,116,96,70,124,11,42,52,46,41,25,53,15,36,68,68,60,59,94,14,19,44,47,51,32,100,,,,,,,,,,,,,, +5145,Portugal,2011,2,60,91,187,188,82,78,4,43,59,59,31,12,28,10,52,55,114,125,89,109,17,27,53,52,30,24,60,13,27,50,68,77,48,84,3,28,29,46,39,51,87,,,,,,,,,,,,,, +5146,Portugal,2012,1,56,103,187,153,79,75,6,52,62,66,28,19,32,23,39,62,101,114,81,111,15,39,67,42,49,16,45,10,26,44,61,67,40,112,15,29,41,48,42,36,98,,,,,,,,,,,,,, +5147,Portugal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,128,186,310,346,211,290,26,84,131,178,122,98,203 +5148,Puerto Rico,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5149,Puerto Rico,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5150,Puerto Rico,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5151,Puerto Rico,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5152,Puerto Rico,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5153,Puerto Rico,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5154,Puerto Rico,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5155,Puerto Rico,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5156,Puerto Rico,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5157,Puerto Rico,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5158,Puerto Rico,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5159,Puerto Rico,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5160,Puerto Rico,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5161,Puerto Rico,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5162,Puerto Rico,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5163,Puerto Rico,1995,4,3,12,20,15,9,19,1,2,6,5,7,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5164,Puerto Rico,1996,2,1,20,18,15,10,16,0,5,5,5,6,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5165,Puerto Rico,1997,1,4,13,18,19,13,18,0,3,6,3,5,14,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5166,Puerto Rico,1998,1,9,11,16,12,14,12,1,0,5,6,4,9,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5167,Puerto Rico,1999,0,5,9,22,9,11,20,1,4,5,3,6,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5168,Puerto Rico,2000,0,1,4,19,9,10,14,1,4,5,3,7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5169,Puerto Rico,2001,0,5,4,11,12,6,11,0,3,1,4,9,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5170,Puerto Rico,2002,2,4,7,12,10,9,7,0,1,5,9,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5171,Puerto Rico,2003,0,3,5,8,10,12,9,0,3,2,3,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5172,Puerto Rico,2004,0,2,7,8,7,12,7,0,2,3,4,6,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5173,Puerto Rico,2005,0,4,4,7,9,7,7,0,3,2,5,4,1,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5174,Puerto Rico,2006,1,4,7,6,13,9,7,1,4,3,6,3,2,3,0,0,2,5,1,7,9,5,0,1,1,1,2,2,0,0,0,0,0,3,2,1,0,0,0,0,0,1,,,,,,,,,,,,,, +5175,Puerto Rico,2007,0,6,2,9,8,10,6,0,0,2,4,7,1,1,2,0,3,0,4,1,8,2,0,1,0,1,2,5,0,0,0,3,1,2,0,0,1,0,1,1,0,4,,,,,,,,,,,,,, +5176,Puerto Rico,2008,0,2,4,3,13,11,6,0,1,4,3,2,3,0,0,0,1,4,4,2,6,2,1,2,0,2,1,5,0,0,2,1,2,0,1,0,0,0,0,1,2,4,,,,,,,,,,,,,, +5177,Puerto Rico,2009,0,0,0,7,6,3,2,0,2,3,1,2,1,3,0,0,1,3,2,6,7,1,0,1,2,0,0,2,1,1,1,0,1,0,2,0,0,0,1,0,0,1,,,,,,,,,,,,,, +5178,Puerto Rico,2010,0,0,3,2,4,5,8,0,1,0,2,6,2,4,1,0,2,2,5,2,12,1,1,2,3,2,1,1,0,0,0,0,2,0,1,0,0,1,0,0,0,0,,,,,,,,,,,,,, +5179,Puerto Rico,2011,0,1,4,3,6,6,2,0,1,1,1,0,3,1,0,0,1,0,1,1,4,0,0,3,0,0,0,3,1,0,0,1,2,1,1,0,0,0,1,0,1,0,,,,,,,,,,,,,, +5180,Puerto Rico,2012,0,1,5,1,6,8,10,0,0,3,1,2,3,1,0,0,3,0,1,1,7,1,1,0,0,1,0,2,0,0,1,2,2,1,2,0,0,0,1,0,0,1,,,,,,,,,,,,,, +5181,Puerto Rico,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,5,13,7,8,0,2,1,3,1,3,3 +5182,Qatar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5183,Qatar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5184,Qatar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5185,Qatar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5186,Qatar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5187,Qatar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5188,Qatar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5189,Qatar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5190,Qatar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5191,Qatar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5192,Qatar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5193,Qatar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5194,Qatar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5195,Qatar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5196,Qatar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5197,Qatar,1995,0,8,12,11,13,4,4,1,2,3,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5198,Qatar,1996,0,2,7,16,10,3,1,0,0,1,0,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5199,Qatar,1997,0,8,11,7,3,4,0,0,2,1,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5200,Qatar,1998,0,10,17,8,10,4,2,1,4,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5201,Qatar,1999,0,5,15,12,12,3,2,0,2,3,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5202,Qatar,2000,0,7,19,9,7,2,1,0,0,4,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5203,Qatar,2001,1,2,0,3,4,0,3,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5204,Qatar,2002,,8,12,9,8,1,3,,6,13,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5205,Qatar,2003,1,10,27,17,16,5,5,0,4,6,0,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5206,Qatar,2004,0,9,13,13,8,10,1,0,6,5,4,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5207,Qatar,2005,,19,15,17,19,5,1,,5,10,2,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5208,Qatar,2006,0,22,21,17,22,6,1,0,6,11,7,1,0,1,6,32,69,33,14,5,3,5,14,22,13,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5209,Qatar,2007,0,26,38,19,10,4,0,1,4,6,5,3,0,0,,,,,,,,,,,,,,,0,45,69,23,16,2,3,0,11,21,7,5,1,0,,,,,,,,,,,,,, +5210,Qatar,2008,1,47,67,26,18,10,2,0,4,14,6,2,0,2,2,21,31,16,6,4,3,0,10,13,2,2,0,2,2,56,109,41,5,3,1,4,9,8,8,3,2,3,,,,,,,,,,,,,, +5211,Qatar,2009,0,41,83,32,16,6,2,2,9,18,7,2,1,1,0,26,32,11,7,1,0,0,7,13,3,2,0,0,0,65,111,48,9,5,2,0,12,28,10,4,2,1,,,,,,,,,,,,,, +5212,Qatar,2010,0,59,72,38,22,5,0,0,7,16,2,1,1,0,2,27,32,17,3,0,1,0,8,8,1,1,1,0,0,49,101,33,7,4,3,0,13,27,12,4,3,0,,,,,,,,,,,,,, +5213,Qatar,2011,0,36,64,36,14,10,3,0,9,15,6,1,2,1,1,24,44,13,8,0,2,1,6,14,6,0,0,2,4,39,93,39,14,5,2,0,4,25,8,2,1,0,,,,,,,,,,,,,, +5214,Qatar,2012,0,34,52,45,21,8,0,2,6,9,1,1,0,1,3,30,39,16,5,3,0,1,9,9,5,2,0,0,1,34,82,39,12,3,0,3,4,22,11,3,2,1,,,,,,,,,,,,,, +5215,Qatar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5216,Republic of Korea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5217,Republic of Korea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5218,Republic of Korea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5219,Republic of Korea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5220,Republic of Korea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5221,Republic of Korea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5222,Republic of Korea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5223,Republic of Korea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5224,Republic of Korea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5225,Republic of Korea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5226,Republic of Korea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5227,Republic of Korea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5228,Republic of Korea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5229,Republic of Korea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5230,Republic of Korea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5231,Republic of Korea,1995,27,1131,1613,1425,1207,1307,1225,46,908,863,431,296,408,867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5232,Republic of Korea,1996,31,1150,1587,1457,1118,1216,1116,32,950,827,460,297,340,839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5233,Republic of Korea,1997,24,935,1276,1221,982,1069,1099,31,790,685,445,234,359,807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5234,Republic of Korea,1998,19,977,1334,1329,999,1074,1119,37,765,708,455,238,393,912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5235,Republic of Korea,1999,27,884,1205,1180,871,962,1136,40,704,653,402,256,306,933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5236,Republic of Korea,2000,19,821,1085,988,853,731,901,25,546,544,393,220,295,795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5237,Republic of Korea,2001,23,942,1415,1419,1293,1103,1361,45,839,890,489,326,390,1270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5238,Republic of Korea,2002,20,806,1333,1374,1265,1029,1390,19,759,854,456,334,377,1329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5239,Republic of Korea,2003,22,732,1208,1265,1207,992,1472,32,681,793,501,365,381,1325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5240,Republic of Korea,2004,18,709,1276,1364,1248,1017,1595,26,659,847,496,340,360,1516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5241,Republic of Korea,2005,22,687,1171,1326,1336,1005,1669,27,590,842,491,370,373,1729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5242,Republic of Korea,2006,19,652,1109,1223,1406,955,1698,27,579,859,507,403,371,1705,119,1746,2130,1656,1783,1460,2342,114,1459,1649,943,806,693,1904,54,354,503,443,397,281,588,51,299,476,370,363,271,594,,,,,,,,,,,,,, +5243,Republic of Korea,2007,16,589,953,1144,1308,906,1684,34,570,807,466,387,347,1716,119,1722,1956,1721,1833,1437,2368,108,1429,1636,1002,853,679,1915,50,309,456,387,473,289,557,47,309,455,365,363,302,643,,,,,,,,,,,,,, +5244,Republic of Korea,2008,21,492,865,1093,1400,958,1848,32,483,722,483,402,360,1889,89,1472,1800,1586,1711,1333,2252,83,1239,1470,940,779,612,1926,52,372,524,495,487,344,680,44,324,489,406,467,317,812,,,,,,,,,,,,,, +5245,Republic of Korea,2009,25,567,803,1059,1417,992,1904,26,506,685,525,441,360,1975,101,1528,1693,1610,1722,1303,2359,102,1183,1524,969,814,634,2092,46,415,602,579,606,441,773,48,390,556,525,508,420,1014,,,,,,,,,,,,,, +5246,Republic of Korea,2010,22,537,705,1049,1496,1029,1997,23,472,686,509,487,368,2216,104,1575,1731,1570,1904,1589,2628,104,1125,1409,1005,904,769,2243,62,511,646,690,687,571,1088,56,439,685,644,780,584,1352,,,,,,,,,,,,,, +5247,Republic of Korea,2011,13,491,712,1019,1414,1145,2132,37,446,688,520,432,421,2244,114,1460,1614,1544,1892,1569,2585,117,1138,1459,942,908,743,2301,59,575,779,686,787,618,1163,62,416,727,721,802,628,1434,,,,,,,,,,,,,, +5248,Republic of Korea,2012,11,500,699,956,1562,1238,2255,22,436,664,444,377,397,2569,83,1289,1587,1628,2025,1790,2931,87,951,1387,946,846,805,2567,60,450,643,601,693,578,1105,37,369,574,632,728,620,1371,,,,,,,,,,,,,, +5249,Republic of Korea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,106,2003,2836,3250,4664,4116,7470,120,1570,2554,2156,2196,1883,6649 +5250,Republic of Moldova,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5251,Republic of Moldova,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5252,Republic of Moldova,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5253,Republic of Moldova,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5254,Republic of Moldova,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5255,Republic of Moldova,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5256,Republic of Moldova,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5257,Republic of Moldova,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5258,Republic of Moldova,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5259,Republic of Moldova,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5260,Republic of Moldova,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5261,Republic of Moldova,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5262,Republic of Moldova,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5263,Republic of Moldova,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5264,Republic of Moldova,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5265,Republic of Moldova,1995,0,55,115,166,95,65,15,2,42,38,31,19,10,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5266,Republic of Moldova,1996,0,26,33,55,34,9,5,2,10,14,18,4,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5267,Republic of Moldova,1997,0,51,65,86,47,35,13,0,24,32,16,14,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5268,Republic of Moldova,1998,2,72,67,116,56,36,16,2,34,20,34,10,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5269,Republic of Moldova,1999,1,89,123,144,84,29,14,3,31,32,27,19,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5270,Republic of Moldova,2000,2,52,31,36,13,13,6,1,16,32,45,23,14,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5271,Republic of Moldova,2001,1,152,197,230,158,62,32,6,58,61,46,33,14,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5272,Republic of Moldova,2002,5,159,220,237,181,49,33,11,71,76,41,32,23,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5273,Republic of Moldova,2003,1,152,201,252,206,62,25,1,101,71,64,40,16,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5274,Republic of Moldova,2004,8,210,277,284,267,89,42,11,91,97,57,53,28,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5275,Republic of Moldova,2005,2,211,337,345,313,106,31,3,97,92,57,61,23,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5276,Republic of Moldova,2006,2,175,302,349,312,106,32,7,91,108,72,67,25,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5277,Republic of Moldova,2007,0,181,281,343,314,107,35,2,97,85,57,58,25,25,15,222,286,315,331,154,86,13,169,140,113,93,67,39,83,55,45,45,31,24,8,63,38,33,26,24,26,12,,,,,,,,,,,,,, +5278,Republic of Moldova,2008,1,167,271,314,317,105,32,4,85,81,57,52,22,25,9,196,330,268,296,145,72,9,174,163,97,95,49,39,85,43,33,40,31,26,7,52,31,30,31,33,25,9,,,,,,,,,,,,,, +5279,Republic of Moldova,2009,3,155,220,255,256,91,30,2,69,85,61,55,21,15,13,205,298,263,340,169,85,19,159,143,100,111,73,37,68,40,45,42,37,16,12,56,36,31,30,33,13,12,,,,,,,,,,,,,, +5280,Republic of Moldova,2010,0,119,243,244,248,113,21,6,47,90,46,47,23,20,10,194,344,320,323,179,66,15,153,163,106,101,57,42,58,42,32,25,33,19,9,48,30,34,24,21,17,13,,,,,,,,,,,,,, +5281,Republic of Moldova,2011,2,94,257,250,267,107,21,3,66,79,51,41,20,14,16,187,340,283,348,207,66,19,144,201,115,97,70,47,67,29,41,49,28,26,10,52,26,22,25,19,17,13,,,,,,,,,,,,,, +5282,Republic of Moldova,2012,0,99,234,256,284,131,31,3,58,95,48,56,26,25,4,159,295,311,316,234,73,13,122,181,126,109,77,42,63,35,36,29,32,15,16,62,23,24,19,14,15,13,,,,,,,,,,,,,, +5283,Republic of Moldova,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,250,679,773,787,528,157,63,194,310,234,182,166,91 +5284,Romania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5285,Romania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5286,Romania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5287,Romania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5288,Romania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5289,Romania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5290,Romania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5291,Romania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5292,Romania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5293,Romania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5294,Romania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5295,Romania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5296,Romania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5297,Romania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5298,Romania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5299,Romania,1995,387,1662,2322,3608,2587,1751,784,355,1352,1240,871,479,396,417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5300,Romania,1996,35,851,1640,2606,1901,1236,500,48,749,630,547,302,237,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5301,Romania,1997,31,1073,1618,2535,1990,1116,461,53,735,745,545,318,200,245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5302,Romania,1998,21,895,1624,2327,1762,1011,522,43,725,692,448,300,219,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5303,Romania,1999,34,842,1524,2043,1653,918,472,48,732,709,496,318,198,317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5304,Romania,2000,46,832,1508,1799,1684,916,533,53,701,766,484,341,207,321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5305,Romania,2001,60,790,1670,1925,2000,975,685,70,713,825,497,391,228,347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5306,Romania,2002,102,742,1682,1854,1914,854,605,74,669,839,435,370,202,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5307,Romania,2003,37,750,1565,1695,1953,836,594,58,667,770,470,412,196,404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5308,Romania,2004,31,718,1582,1798,1999,917,629,59,682,797,546,458,230,432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5309,Romania,2005,36,752,1511,1786,1999,952,638,55,758,780,493,374,219,442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5310,Romania,2006,30,748,1306,1624,1738,847,580,37,669,763,448,334,224,465,237,633,752,762,946,575,591,240,632,604,417,292,209,364,278,489,299,272,285,194,234,231,361,264,203,210,145,200,,,,,,,,,,,,,, +5311,Romania,2007,25,706,1149,1559,1704,889,611,34,665,634,439,332,230,448,230,505,593,737,840,564,577,231,567,518,328,297,171,386,280,450,254,257,253,175,184,205,344,220,182,173,124,183,,,,,,,,,,,,,, +5312,Romania,2008,22,671,1124,1656,1713,977,625,37,557,567,518,320,225,499,197,485,574,645,805,570,510,214,489,480,336,273,161,354,224,468,254,240,229,200,208,222,324,183,177,164,121,156,,,,,,,,,,,,,, +5313,Romania,2009,24,726,969,1592,1599,1016,637,28,575,564,421,290,216,455,153,447,465,613,709,590,499,168,440,398,290,227,168,323,328,415,185,221,242,185,219,252,328,189,174,151,117,165,,,,,,,,,,,,,, +5314,Romania,2010,21,673,873,1343,1310,896,571,40,509,481,407,277,173,442,135,403,438,608,585,517,475,131,434,377,268,198,149,318,256,378,191,259,204,193,178,228,309,167,148,127,113,137,,,,,,,,,,,,,, +5315,Romania,2011,19,624,813,1194,1103,839,542,25,475,514,408,215,197,427,151,368,410,492,436,461,447,117,401,331,283,169,164,286,239,347,203,190,152,170,196,208,240,145,155,102,107,173,,,,,,,,,,,,,, +5316,Romania,2012,14,545,757,1282,1035,823,487,22,428,426,365,186,182,435,99,377,368,452,472,484,503,106,345,338,250,171,143,321,233,347,173,172,137,179,164,239,222,131,124,86,123,142,,,,,,,,,,,,,, +5317,Romania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,355,1143,1372,2035,2175,1998,1298,340,1010,940,827,515,542,973 +5318,Russian Federation,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5319,Russian Federation,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5320,Russian Federation,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5321,Russian Federation,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5322,Russian Federation,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5323,Russian Federation,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5324,Russian Federation,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5325,Russian Federation,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5326,Russian Federation,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5327,Russian Federation,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5328,Russian Federation,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5329,Russian Federation,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5330,Russian Federation,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5331,Russian Federation,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5332,Russian Federation,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5333,Russian Federation,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5334,Russian Federation,1996,0,12,46,69,55,36,17,0,8,6,9,9,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5335,Russian Federation,1997,0,38,100,150,114,77,39,0,20,30,30,20,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5336,Russian Federation,1998,0,45,89,161,131,81,34,2,24,24,33,20,15,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5337,Russian Federation,1999,17,1858,4138,5037,3992,1618,859,33,761,1022,989,600,313,507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5338,Russian Federation,2000,1,295,526,596,402,151,54,1,43,73,74,38,31,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5339,Russian Federation,2001,26,2124,4317,5912,5435,2026,941,37,1019,1315,1374,1040,442,598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5340,Russian Federation,2002,0,2081,4497,6003,5810,2074,1061,0,1120,1496,1492,1100,452,632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5341,Russian Federation,2003,0,2128,4812,5979,5924,2014,1058,0,1156,1753,1537,1281,462,698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5342,Russian Federation,2004,18,2355,5079,6165,6053,2167,1184,45,1399,2051,1695,1415,528,736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5343,Russian Federation,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5344,Russian Federation,2006,18,2445,5774,5923,6342,2440,1120,40,1514,2207,1703,1492,560,757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5345,Russian Federation,2007,20,2492,6008,5874,6363,2491,1291,40,1444,2418,1684,1454,653,871,231,7272,14334,10846,10714,7884,2797,308,4925,6230,4014,3421,1505,1624,1430,1031,1537,928,828,415,337,1393,713,918,610,574,397,593,,,,,,,,,,,,,, +5346,Russian Federation,2008,12,2495,6475,6005,6300,2687,1147,33,1467,2569,1707,1530,687,835,224,7841,15551,11311,10958,5032,2541,302,4716,6743,4114,3327,1539,1576,1316,841,1455,787,797,468,358,1316,654,960,591,593,420,555,,,,,,,,,,,,,, +5347,Russian Federation,2009,22,2510,6544,5722,5952,2822,1014,33,1464,2602,1739,1390,713,824,192,7371,14965,10885,9969,5180,2241,260,4641,6746,4064,3222,1688,1507,1320,756,1582,860,793,462,314,1284,657,891,549,530,435,512,,,,,,,,,,,,,, +5348,Russian Federation,2010,8,2228,6276,5571,5361,2787,920,28,1247,2554,1719,1182,745,790,229,6571,14047,10430,8885,5056,2035,295,4094,6399,3841,2942,1698,1372,134,158,367,268,286,268,209,137,171,406,231,271,307,300,,,,,,,,,,,,,, +5349,Russian Federation,2011,15,1826,5726,5338,4928,2664,845,36,1139,2394,1643,1166,719,752,260,5545,13832,10353,8372,4780,1773,333,3850,6410,3869,2646,1765,1318,1506,588,1315,933,581,433,236,1395,434,880,507,405,386,424,,,,,,,,,,,,,, +5350,Russian Federation,2012,17,1568,5472,5115,4446,2629,839,31,997,2292,1595,1081,637,748,331,4711,13041,9560,7328,4586,1755,399,3154,6253,3727,2383,1560,1270,1445,593,1465,930,525,363,249,1465,421,870,534,376,388,393,,,,,,,,,,,,,, +5351,Russian Federation,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1626,5827,18096,15635,11218,7255,2677,1672,3740,8705,5501,3630,2589,2256 +5352,Rwanda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5353,Rwanda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5354,Rwanda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5355,Rwanda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5356,Rwanda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5357,Rwanda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5358,Rwanda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5359,Rwanda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5360,Rwanda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5361,Rwanda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5362,Rwanda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5363,Rwanda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5364,Rwanda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5365,Rwanda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5366,Rwanda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5367,Rwanda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5368,Rwanda,1996,48,222,398,325,124,85,24,45,229,278,161,47,23,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5369,Rwanda,1997,78,284,633,537,209,87,40,78,274,343,175,67,37,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5370,Rwanda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5371,Rwanda,1999,93,245,530,424,224,70,31,59,189,262,166,49,31,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5372,Rwanda,2000,155,466,974,824,393,129,56,105,396,473,309,109,52,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5373,Rwanda,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5374,Rwanda,2002,13,96,167,184,79,38,13,15,98,113,58,22,15,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5375,Rwanda,2003,32,364,517,424,270,83,48,36,312,340,161,79,41,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5376,Rwanda,2004,52,561,722,595,353,171,64,73,460,469,293,150,53,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5377,Rwanda,2005,45,494,713,592,408,142,71,73,483,442,262,157,60,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5378,Rwanda,2006,25,598,769,591,407,182,100,80,494,467,259,139,72,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5379,Rwanda,2007,51,523,805,556,352,168,91,81,477,468,245,131,70,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5380,Rwanda,2008,33,528,811,573,373,191,125,65,439,472,280,161,82,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5381,Rwanda,2009,25,519,829,650,390,196,114,46,388,464,266,184,70,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5382,Rwanda,2010,48,430,741,526,325,202,126,48,399,448,261,128,65,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5383,Rwanda,2011,42,423,795,500,376,210,124,50,358,398,235,146,87,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5384,Rwanda,2012,22,375,768,519,341,214,123,40,327,393,208,116,66,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5385,Rwanda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,207,498,1017,684,533,393,252,199,433,569,364,261,161,131 +5386,Saint Kitts and Nevis,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5387,Saint Kitts and Nevis,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5388,Saint Kitts and Nevis,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5389,Saint Kitts and Nevis,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5390,Saint Kitts and Nevis,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5391,Saint Kitts and Nevis,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5392,Saint Kitts and Nevis,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5393,Saint Kitts and Nevis,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5394,Saint Kitts and Nevis,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5395,Saint Kitts and Nevis,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5396,Saint Kitts and Nevis,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5397,Saint Kitts and Nevis,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5398,Saint Kitts and Nevis,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5399,Saint Kitts and Nevis,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5400,Saint Kitts and Nevis,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5401,Saint Kitts and Nevis,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5402,Saint Kitts and Nevis,1996,0,0,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5403,Saint Kitts and Nevis,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5404,Saint Kitts and Nevis,1998,0,0,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5405,Saint Kitts and Nevis,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5406,Saint Kitts and Nevis,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5407,Saint Kitts and Nevis,2001,,,,,,,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5408,Saint Kitts and Nevis,2002,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5409,Saint Kitts and Nevis,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5410,Saint Kitts and Nevis,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5411,Saint Kitts and Nevis,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5412,Saint Kitts and Nevis,2006,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5413,Saint Kitts and Nevis,2007,,1,1,1,,,,,,,,,1,,0,,,,,,,0,,,,,,,0,,,,,,,0,,,,,,,,,,,,,,,,,,,, +5414,Saint Kitts and Nevis,2008,0,0,0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5415,Saint Kitts and Nevis,2009,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5416,Saint Kitts and Nevis,2010,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5417,Saint Kitts and Nevis,2011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5418,Saint Kitts and Nevis,2012,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5419,Saint Kitts and Nevis,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5420,Saint Lucia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5421,Saint Lucia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5422,Saint Lucia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5423,Saint Lucia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5424,Saint Lucia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5425,Saint Lucia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5426,Saint Lucia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5427,Saint Lucia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5428,Saint Lucia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5429,Saint Lucia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5430,Saint Lucia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5431,Saint Lucia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5432,Saint Lucia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5433,Saint Lucia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5434,Saint Lucia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5435,Saint Lucia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5436,Saint Lucia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5437,Saint Lucia,1997,0,0,1,2,0,1,1,1,1,3,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5438,Saint Lucia,1998,0,2,1,1,0,0,1,0,3,2,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5439,Saint Lucia,1999,,1,,,3,3,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5440,Saint Lucia,2000,0,0,0,1,0,1,2,0,1,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5441,Saint Lucia,2001,0,1,1,0,1,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5442,Saint Lucia,2002,,,1,1,1,2,1,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5443,Saint Lucia,2003,0,0,0,1,2,2,2,0,1,1,0,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5444,Saint Lucia,2004,0,0,0,1,2,2,2,0,2,3,0,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5445,Saint Lucia,2005,0,0,0,0,2,1,2,1,1,0,1,1,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5446,Saint Lucia,2006,,,,,3,5,5,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5447,Saint Lucia,2007,,,3,3,2,4,3,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5448,Saint Lucia,2008,0,2,0,2,2,2,1,1,0,1,3,2,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +5449,Saint Lucia,2009,0,1,0,2,1,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5450,Saint Lucia,2010,0,0,1,2,0,1,2,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5451,Saint Lucia,2011,0,0,1,1,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5452,Saint Lucia,2012,0,2,0,1,4,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5453,Saint Lucia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,0,0,1,0,1,1,2,1,0,0 +5454,Saint Vincent and the Grenadines,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5455,Saint Vincent and the Grenadines,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5456,Saint Vincent and the Grenadines,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5457,Saint Vincent and the Grenadines,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5458,Saint Vincent and the Grenadines,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5459,Saint Vincent and the Grenadines,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5460,Saint Vincent and the Grenadines,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5461,Saint Vincent and the Grenadines,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5462,Saint Vincent and the Grenadines,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5463,Saint Vincent and the Grenadines,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5464,Saint Vincent and the Grenadines,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5465,Saint Vincent and the Grenadines,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5466,Saint Vincent and the Grenadines,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5467,Saint Vincent and the Grenadines,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5468,Saint Vincent and the Grenadines,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5469,Saint Vincent and the Grenadines,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5470,Saint Vincent and the Grenadines,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5471,Saint Vincent and the Grenadines,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5472,Saint Vincent and the Grenadines,1998,0,0,2,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5473,Saint Vincent and the Grenadines,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5474,Saint Vincent and the Grenadines,2000,0,1,0,4,2,0,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5475,Saint Vincent and the Grenadines,2001,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5476,Saint Vincent and the Grenadines,2002,,,,1,1,2,2,,,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5477,Saint Vincent and the Grenadines,2003,,,,2,,1,,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5478,Saint Vincent and the Grenadines,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5479,Saint Vincent and the Grenadines,2005,0,0,0,2,1,0,2,0,0,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5480,Saint Vincent and the Grenadines,2006,,,,,,4,2,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5481,Saint Vincent and the Grenadines,2007,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5482,Saint Vincent and the Grenadines,2008,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5483,Saint Vincent and the Grenadines,2009,,,,2,1,,,,,,,,,,,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5484,Saint Vincent and the Grenadines,2010,0,0,1,0,3,0,2,0,0,1,0,0,1,0,0,0,0,2,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5485,Saint Vincent and the Grenadines,2011,0,0,2,2,2,0,0,0,0,1,0,1,0,0,1,0,0,2,2,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5486,Saint Vincent and the Grenadines,2012,0,1,5,1,3,5,4,0,1,3,1,3,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5487,Saint Vincent and the Grenadines,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,1,,,,,,,, +5488,Samoa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5489,Samoa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5490,Samoa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5491,Samoa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5492,Samoa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5493,Samoa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5494,Samoa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5495,Samoa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5496,Samoa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5497,Samoa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5498,Samoa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5499,Samoa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5500,Samoa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5501,Samoa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5502,Samoa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5503,Samoa,1995,0,1,1,1,0,3,2,1,2,2,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5504,Samoa,1996,0,0,0,0,0,1,2,0,0,3,2,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5505,Samoa,1997,0,1,4,1,0,1,1,0,2,1,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5506,Samoa,1998,1,1,1,0,1,1,0,0,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5507,Samoa,1999,0,1,2,0,1,1,4,0,3,2,1,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5508,Samoa,2000,0,3,1,1,1,2,1,0,2,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5509,Samoa,2001,1,3,1,1,0,0,1,0,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5510,Samoa,2002,0,1,2,0,1,1,1,1,4,5,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5511,Samoa,2003,,2,,,,1,,,2,2,2,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5512,Samoa,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5513,Samoa,2005,0,4,0,1,1,0,0,0,2,0,2,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5514,Samoa,2006,,3,2,1,1,1,2,,3,,,1,,,,,,1,,,,,,,2,1,,1,,,,1,,1,,,,,,,,,,,,,,,,,,,,,, +5515,Samoa,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5516,Samoa,2008,0,1,0,0,0,1,0,0,1,1,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5517,Samoa,2009,,,,1,,111,111,,,,1,11,11,1111,0,0,0,0,0,0,1,0,1,0,0,0,1,3,0,0,0,0,0,1,0,0,1,0,0,0,0,1,,,,,,,,,,,,,, +5518,Samoa,2010,,1,1,,,1,,,,,2,,1,,,1,1,,,,,,,,,2,1,,,,,,,1,,,,1,,1,,,,,,,,,,,,,,,, +5519,Samoa,2011,0,1,0,0,0,0,0,0,2,1,0,1,0,1,1,0,0,0,1,1,5,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5520,Samoa,2012,0,4,3,1,1,1,0,1,1,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,,,,,,,,,,,,,, +5521,Samoa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,2,1,3,3,3,0,3,0,0,0,1,2 +5522,San Marino,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5523,San Marino,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5524,San Marino,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5525,San Marino,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5526,San Marino,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5527,San Marino,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5528,San Marino,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5529,San Marino,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5530,San Marino,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5531,San Marino,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5532,San Marino,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5533,San Marino,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5534,San Marino,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5535,San Marino,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5536,San Marino,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5537,San Marino,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5538,San Marino,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5539,San Marino,1997,,,,,,,,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5540,San Marino,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5541,San Marino,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5542,San Marino,2000,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5543,San Marino,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5544,San Marino,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5545,San Marino,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5546,San Marino,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5547,San Marino,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5548,San Marino,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5549,San Marino,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5550,San Marino,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5551,San Marino,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5552,San Marino,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5553,San Marino,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5554,San Marino,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5555,San Marino,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5556,Sao Tome and Principe,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5557,Sao Tome and Principe,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5558,Sao Tome and Principe,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5559,Sao Tome and Principe,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5560,Sao Tome and Principe,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5561,Sao Tome and Principe,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5562,Sao Tome and Principe,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5563,Sao Tome and Principe,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5564,Sao Tome and Principe,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5565,Sao Tome and Principe,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5566,Sao Tome and Principe,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5567,Sao Tome and Principe,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5568,Sao Tome and Principe,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5569,Sao Tome and Principe,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5570,Sao Tome and Principe,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5571,Sao Tome and Principe,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5572,Sao Tome and Principe,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5573,Sao Tome and Principe,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5574,Sao Tome and Principe,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5575,Sao Tome and Principe,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5576,Sao Tome and Principe,2000,1,5,11,4,7,3,10,3,7,15,5,7,4,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5577,Sao Tome and Principe,2001,0,7,14,6,6,5,12,1,4,10,4,8,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5578,Sao Tome and Principe,2002,1,7,6,2,2,2,2,0,6,5,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5579,Sao Tome and Principe,2003,1,2,4,5,3,0,1,0,3,7,8,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5580,Sao Tome and Principe,2004,3,5,7,6,5,2,3,1,4,5,5,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5581,Sao Tome and Principe,2005,2,5,7,6,4,5,2,1,4,5,3,2,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5582,Sao Tome and Principe,2006,0,5,8,4,2,1,2,1,4,7,0,0,1,1,3,10,25,16,8,5,2,2,8,15,11,6,4,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +5583,Sao Tome and Principe,2007,0,4,12,8,4,4,0,0,9,6,3,3,5,0,0,1,2,3,3,4,1,0,3,1,5,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,,,,,,,,,,,,,, +5584,Sao Tome and Principe,2008,1,5,13,5,6,1,0,2,5,6,6,2,0,0,0,0,4,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5585,Sao Tome and Principe,2009,0,2,10,8,4,6,0,1,4,10,4,2,1,0,2,0,2,1,3,1,1,0,1,2,3,2,2,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,,,,,,,,,,,,,, +5586,Sao Tome and Principe,2010,0,10,14,7,1,0,1,0,5,4,3,2,0,0,6,3,11,6,7,2,4,2,5,10,3,2,0,2,1,1,2,0,1,0,0,1,3,0,1,0,0,0,,,,,,,,,,,,,, +5587,Sao Tome and Principe,2011,0,5,9,8,7,1,4,2,2,10,4,1,0,0,2,4,2,5,4,2,5,0,3,5,5,4,3,5,2,2,4,3,1,0,0,1,2,4,0,3,4,2,,,,,,,,,,,,,, +5588,Sao Tome and Principe,2012,1,6,11,8,8,2,0,0,6,10,6,0,0,1,4,3,4,8,1,1,1,4,0,4,4,2,0,1,4,1,2,0,1,0,1,2,1,1,0,1,1,1,,,,,,,,,,,,,, +5589,Sao Tome and Principe,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,12,14,16,17,4,8,9,10,9,15,9,9,6 +5590,Saudi Arabia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5591,Saudi Arabia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5592,Saudi Arabia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5593,Saudi Arabia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5594,Saudi Arabia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5595,Saudi Arabia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5596,Saudi Arabia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5597,Saudi Arabia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5598,Saudi Arabia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5599,Saudi Arabia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5600,Saudi Arabia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5601,Saudi Arabia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5602,Saudi Arabia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5603,Saudi Arabia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5604,Saudi Arabia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5605,Saudi Arabia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5606,Saudi Arabia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5607,Saudi Arabia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5608,Saudi Arabia,1998,2,76,140,96,65,45,62,16,82,86,32,27,28,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5609,Saudi Arabia,1999,5,155,314,245,152,103,143,39,182,201,94,74,73,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5610,Saudi Arabia,2000,0,131,268,213,158,86,107,28,172,182,79,51,50,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5611,Saudi Arabia,2001,7,141,221,163,135,62,106,28,161,163,88,44,39,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5612,Saudi Arabia,2002,11,148,309,211,138,104,110,28,186,194,72,60,51,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5613,Saudi Arabia,2003,5,150,285,200,145,102,107,18,210,181,75,58,51,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5614,Saudi Arabia,2004,4,202,289,217,163,89,85,24,204,171,80,53,47,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5615,Saudi Arabia,2005,8,182,276,201,175,70,107,31,205,184,98,73,51,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5616,Saudi Arabia,2006,10,256,323,229,169,94,101,39,226,211,107,56,37,56,39,67,91,51,41,29,49,47,76,59,37,30,22,25,35,100,163,97,43,48,47,71,123,187,85,37,33,27,,,,,,,,,,,,,, +5617,Saudi Arabia,2007,8,246,312,219,187,111,92,30,298,197,110,71,39,64,34,45,61,46,41,25,53,37,67,45,35,26,25,42,52,115,219,129,54,43,55,50,130,218,86,60,40,46,,,,,,,,,,,,,, +5618,Saudi Arabia,2008,16,295,334,184,153,93,102,33,274,271,137,85,48,83,22,75,52,22,13,17,27,20,63,87,34,35,28,50,51,135,188,107,67,44,43,60,127,193,98,67,33,53,,,,,,,,,,,,,, +5619,Saudi Arabia,2009,15,280,386,257,200,129,105,43,260,245,112,61,55,53,27,65,98,39,31,27,42,32,65,52,28,25,16,31,26,137,200,99,64,35,46,46,136,160,102,54,28,37,,,,,,,,,,,,,, +5620,Saudi Arabia,2010,14,335,458,242,210,116,102,33,239,271,105,70,49,58,19,90,112,47,45,38,48,29,67,83,32,23,20,34,48,134,243,133,78,43,59,38,115,178,111,58,35,32,,,,,,,,,,,,,, +5621,Saudi Arabia,2011,4,227,406,225,225,113,106,35,200,245,110,64,49,46,13,74,83,63,35,26,35,18,60,70,37,20,18,34,29,136,249,105,73,51,60,43,97,170,98,49,40,27,,,,,,,,,,,,,, +5622,Saudi Arabia,2012,13,228,394,214,210,133,96,28,207,236,107,50,49,63,13,63,88,51,30,34,46,17,57,57,27,20,22,24,31,104,209,128,64,32,48,26,70,123,78,43,31,35,,,,,,,,,,,,,, +5623,Saudi Arabia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,400,743,399,317,204,177,63,298,388,143,92,72,98 +5624,Senegal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5625,Senegal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5626,Senegal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5627,Senegal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5628,Senegal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5629,Senegal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5630,Senegal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5631,Senegal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5632,Senegal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5633,Senegal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5634,Senegal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5635,Senegal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5636,Senegal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5637,Senegal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5638,Senegal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5639,Senegal,1995,94,717,1219,813,408,300,213,84,428,461,283,203,126,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5640,Senegal,1996,74,773,1281,973,474,277,264,89,450,549,341,209,121,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5641,Senegal,1997,64,753,1151,876,467,267,215,75,421,509,292,191,87,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5642,Senegal,1998,90,781,1208,856,453,250,215,84,412,447,307,178,98,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5643,Senegal,1999,50,721,1070,749,424,233,185,58,441,434,298,184,106,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5644,Senegal,2000,60,772,1297,857,470,279,189,77,521,540,376,217,107,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5645,Senegal,2001,77,908,1331,890,498,258,226,90,540,531,333,204,113,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5646,Senegal,2002,58,815,1271,813,488,279,212,61,545,523,317,210,118,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5647,Senegal,2003,50,1005,1438,896,531,293,250,77,629,600,398,212,122,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5648,Senegal,2004,60,1085,1464,915,506,264,213,73,620,485,324,211,139,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5649,Senegal,2005,71,1050,1561,904,533,274,236,83,709,568,351,185,116,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5650,Senegal,2006,60,1124,1606,919,553,292,230,74,676,572,360,204,124,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5651,Senegal,2007,57,1053,1722,875,549,329,251,73,761,603,378,241,121,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5652,Senegal,2008,67,1274,1767,907,593,351,228,79,816,659,368,230,148,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5653,Senegal,2009,66,1362,1790,1035,638,335,250,108,815,660,352,231,127,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5654,Senegal,2010,81,1351,1793,972,590,329,221,81,835,643,332,217,136,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5655,Senegal,2011,75,1264,1835,981,582,335,214,88,807,664,362,208,144,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5656,Senegal,2012,84,1454,2036,1121,597,365,224,125,836,715,383,263,155,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5657,Senegal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5658,Serbia,2005,3,62,96,118,156,112,132,6,69,76,55,49,22,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5659,Serbia,2006,6,87,91,107,167,83,144,7,78,74,43,44,44,152,2,21,47,54,104,66,171,6,23,25,25,48,25,129,4,15,16,26,11,27,31,3,14,16,25,23,21,43,,,,,,,,,,,,,, +5660,Serbia,2007,0,42,59,102,163,94,106,2,38,52,43,43,26,135,9,16,33,42,81,61,118,10,17,26,44,27,36,120,6,20,8,13,19,8,45,1,9,12,12,22,18,36,,,,,,,,,,,,,, +5661,Serbia,2008,3,66,89,111,149,135,139,3,68,66,46,51,37,169,9,17,26,25,74,58,85,7,20,26,32,32,27,82,2,11,8,17,22,17,31,0,12,12,20,13,18,30,,,,,,,,,,,,,, +5662,Serbia,2009,1,76,67,111,119,105,145,5,63,59,55,38,44,167,7,20,18,34,52,69,95,6,22,22,27,23,28,65,4,17,13,14,14,14,27,2,13,7,5,17,16,34,,,,,,,,,,,,,, +5663,Serbia,2010,2,76,70,93,116,83,109,5,66,74,46,39,34,164,6,20,17,42,49,50,74,4,15,20,25,18,20,71,0,22,10,13,14,18,25,2,12,6,10,12,16,42,,,,,,,,,,,,,, +5664,Serbia,2011,2,60,73,74,122,112,101,5,46,59,43,30,20,129,6,11,25,23,53,49,62,4,16,13,18,21,25,70,1,4,10,6,15,18,19,1,9,9,13,9,9,32,,,,,,,,,,,,,, +5665,Serbia,2012,1,70,72,77,98,86,77,4,46,66,38,31,35,118,4,14,20,25,47,49,71,8,12,20,21,15,19,58,2,15,9,9,8,15,14,1,6,4,8,5,11,23,,,,,,,,,,,,,, +5666,Serbia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,43,66,99,134,161,207,9,46,63,60,53,45,170 +5667,Serbia & Montenegro,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5668,Serbia & Montenegro,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5669,Serbia & Montenegro,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5670,Serbia & Montenegro,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5671,Serbia & Montenegro,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5672,Serbia & Montenegro,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5673,Serbia & Montenegro,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5674,Serbia & Montenegro,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5675,Serbia & Montenegro,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5676,Serbia & Montenegro,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5677,Serbia & Montenegro,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5678,Serbia & Montenegro,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5679,Serbia & Montenegro,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5680,Serbia & Montenegro,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5681,Serbia & Montenegro,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5682,Serbia & Montenegro,1995,10,108,204,317,296,350,386,11,127,167,133,83,158,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5683,Serbia & Montenegro,1996,45,207,310,461,396,389,474,57,192,159,183,152,217,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5684,Serbia & Montenegro,1997,45,136,310,450,415,410,463,30,146,274,254,170,239,399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5685,Serbia & Montenegro,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5686,Serbia & Montenegro,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5687,Serbia & Montenegro,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5688,Serbia & Montenegro,2001,3,52,48,44,34,31,18,5,49,46,23,25,23,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5689,Serbia & Montenegro,2002,7,37,53,44,29,22,33,9,46,48,19,17,19,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5690,Serbia & Montenegro,2003,1,51,64,70,113,54,61,1,44,58,38,28,20,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5691,Serbia & Montenegro,2004,4,61,106,125,182,128,157,3,66,89,75,48,41,145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5692,Seychelles,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5693,Seychelles,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5694,Seychelles,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5695,Seychelles,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5696,Seychelles,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5697,Seychelles,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5698,Seychelles,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5699,Seychelles,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5700,Seychelles,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5701,Seychelles,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5702,Seychelles,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5703,Seychelles,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5704,Seychelles,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5705,Seychelles,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5706,Seychelles,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5707,Seychelles,1995,0,2,0,1,1,2,1,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5708,Seychelles,1996,0,0,1,3,1,1,0,0,1,0,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5709,Seychelles,1997,0,1,2,2,1,1,1,0,1,0,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5710,Seychelles,1998,0,0,1,3,2,1,1,0,0,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5711,Seychelles,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5712,Seychelles,2000,,,2,4,1,1,,,,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5713,Seychelles,2001,0,0,2,4,0,2,2,0,0,2,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5714,Seychelles,2002,0,1,3,1,0,1,1,0,0,0,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5715,Seychelles,2003,0,1,0,0,1,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5716,Seychelles,2004,0,0,2,0,3,2,0,0,0,1,2,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5717,Seychelles,2005,0,2,1,2,1,0,0,0,0,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5718,Seychelles,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5719,Seychelles,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5720,Seychelles,2008,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5721,Seychelles,2009,0,0,4,1,1,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5722,Seychelles,2010,0,0,0,6,0,0,1,0,2,0,0,0,0,0,0,0,3,0,1,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5723,Seychelles,2011,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,2,4,13,2,0,0,0,0,1,0,1,0,0,0,2,1,0,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5724,Seychelles,2012,0,0,1,2,2,0,0,0,0,1,1,1,0,1,0,1,0,1,1,1,0,0,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +5725,Seychelles,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,5,3,3,5,1,0,2,1,1,0,1,2 +5726,Sierra Leone,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5727,Sierra Leone,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5728,Sierra Leone,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5729,Sierra Leone,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5730,Sierra Leone,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5731,Sierra Leone,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5732,Sierra Leone,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5733,Sierra Leone,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5734,Sierra Leone,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5735,Sierra Leone,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5736,Sierra Leone,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5737,Sierra Leone,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5738,Sierra Leone,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5739,Sierra Leone,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5740,Sierra Leone,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5741,Sierra Leone,1995,10,184,305,201,99,47,22,18,165,193,110,65,24,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5742,Sierra Leone,1996,23,249,450,310,180,79,51,35,201,278,218,89,49,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5743,Sierra Leone,1997,14,230,470,359,182,89,47,21,207,328,228,67,39,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5744,Sierra Leone,1998,14,226,445,338,191,78,42,36,235,294,217,86,43,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5745,Sierra Leone,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5746,Sierra Leone,2000,18,287,486,361,190,113,47,27,249,298,225,92,49,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5747,Sierra Leone,2001,19,268,546,406,230,123,51,36,279,292,234,120,61,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5748,Sierra Leone,2002,23,317,561,427,246,102,58,31,300,382,284,133,48,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5749,Sierra Leone,2003,19,351,564,481,264,149,77,26,308,394,249,122,77,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5750,Sierra Leone,2004,19,417,659,581,364,153,130,40,304,440,319,170,89,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5751,Sierra Leone,2005,45,490,792,651,397,226,124,54,393,518,312,207,114,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5752,Sierra Leone,2006,43,485,851,709,446,216,166,68,375,536,357,207,111,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5753,Sierra Leone,2007,45,538,1032,797,520,258,172,74,398,568,468,255,143,79,1081,2116,,,,,,,,,,,,,337,369,,,,,,,,,,,,,,,,,,,,,,,,,, +5754,Sierra Leone,2008,,625,1062,938,573,265,188,,460,609,501,269,153,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5755,Sierra Leone,2009,44,737,1073,905,621,280,195,66,524,645,506,260,146,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5756,Sierra Leone,2010,64,718,1176,1076,663,320,254,77,648,742,556,293,180,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5757,Sierra Leone,2011,75,825,1224,1099,781,334,287,115,678,796,543,343,219,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5758,Sierra Leone,2012,70,858,1324,1213,841,416,274,80,703,861,667,391,201,132,811,,,,,,,634,,,,,,,112,,,,,,,103,,,,,,,,,,,,,,,,,,,, +5759,Sierra Leone,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,810,1231,1109,791,384,233,52,618,785,618,351,229,128 +5760,Singapore,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5761,Singapore,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5762,Singapore,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5763,Singapore,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5764,Singapore,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5765,Singapore,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5766,Singapore,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5767,Singapore,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5768,Singapore,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5769,Singapore,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5770,Singapore,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5771,Singapore,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5772,Singapore,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5773,Singapore,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5774,Singapore,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5775,Singapore,1995,0,9,40,60,62,70,94,1,8,18,21,22,19,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5776,Singapore,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5777,Singapore,1997,0,8,27,49,60,88,101,0,11,16,12,16,12,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5778,Singapore,1998,1,9,36,70,63,81,104,2,6,18,11,20,25,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5779,Singapore,1999,0,18,23,41,72,55,124,0,12,21,18,23,17,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5780,Singapore,2000,1,8,9,34,51,26,64,1,9,8,7,9,5,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5781,Singapore,2001,1,6,19,39,70,66,76,1,5,7,19,15,9,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5782,Singapore,2002,0,14,28,73,88,65,130,2,10,15,30,32,24,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5783,Singapore,2003,1,17,28,68,96,80,133,0,6,26,30,20,20,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5784,Singapore,2004,1,12,32,56,83,75,119,0,6,15,18,17,19,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5785,Singapore,2005,0,8,25,61,94,96,118,0,5,20,33,29,20,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5786,Singapore,2006,2,7,31,67,107,75,106,0,19,22,22,22,27,31,3,21,35,42,56,69,137,7,16,33,31,13,20,42,10,5,13,22,12,13,25,5,8,10,14,17,16,13,,,,,,,,,,,,,, +5787,Singapore,2007,0,15,18,63,98,80,105,1,13,13,25,23,11,39,2,29,38,50,69,53,130,7,32,29,17,29,21,58,1,10,11,18,14,22,21,1,8,18,14,14,18,11,,,,,,,,,,,,,, +5788,Singapore,2008,0,10,21,46,106,94,127,0,9,16,20,26,17,33,1,45,42,64,88,74,173,1,25,35,24,21,29,50,3,12,18,20,23,16,31,3,10,15,20,19,20,30,,,,,,,,,,,,,, +5789,Singapore,2009,0,16,27,56,100,92,131,0,15,22,24,18,23,28,5,31,33,63,99,112,151,5,17,35,23,27,23,31,3,9,13,28,28,13,30,4,7,23,17,19,20,21,,,,,,,,,,,,,, +5790,Singapore,2010,0,11,21,38,105,86,120,1,15,21,26,21,21,44,5,35,46,61,87,102,156,10,22,60,25,43,28,55,2,8,13,17,18,32,33,2,7,11,15,19,14,22,,,,,,,,,,,,,, +5791,Singapore,2011,0,21,21,44,108,119,126,0,11,25,23,23,20,51,2,28,49,64,112,102,150,4,26,29,34,29,35,53,0,7,21,22,25,17,29,3,13,14,19,21,13,20,,,,,,,,,,,,,, +5792,Singapore,2012,1,31,36,54,106,124,143,0,26,46,27,26,19,39,1,76,144,124,130,125,156,5,45,196,82,46,44,45,1,25,37,33,18,15,31,1,16,53,18,22,16,20,,,,,,,,,,,,,, +5793,Singapore,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,99,199,201,256,262,352,4,85,289,143,64,72,130 +5794,Sint Maarten (Dutch part),2010,,,1,,,,,,,,,2,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5795,Sint Maarten (Dutch part),2011,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5796,Sint Maarten (Dutch part),2012,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5797,Sint Maarten (Dutch part),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,1 +5798,Slovakia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5799,Slovakia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5800,Slovakia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5801,Slovakia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5802,Slovakia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5803,Slovakia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5804,Slovakia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5805,Slovakia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5806,Slovakia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5807,Slovakia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5808,Slovakia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5809,Slovakia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5810,Slovakia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5811,Slovakia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5812,Slovakia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5813,Slovakia,1995,4,18,44,123,108,63,152,5,16,17,22,24,33,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5814,Slovakia,1996,2,16,42,64,105,61,134,4,23,28,24,17,17,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5815,Slovakia,1997,1,2,24,54,38,31,40,0,10,11,10,3,9,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5816,Slovakia,1998,0,5,30,53,50,37,35,0,5,3,16,6,5,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5817,Slovakia,1999,1,2,19,42,51,19,29,0,8,10,7,7,8,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5818,Slovakia,2000,2,6,15,31,50,16,32,0,5,9,7,5,4,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5819,Slovakia,2001,0,8,13,30,48,26,22,1,4,9,12,8,4,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5820,Slovakia,2002,0,4,18,35,40,21,26,0,6,9,7,3,5,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5821,Slovakia,2003,1,6,8,31,36,19,25,1,8,9,10,3,4,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5822,Slovakia,2004,0,2,17,30,30,12,21,1,1,2,3,6,4,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5823,Slovakia,2005,0,3,13,16,25,25,20,0,1,8,9,5,6,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5824,Slovakia,2006,4,8,11,18,27,29,17,0,6,6,7,4,3,20,9,13,11,27,46,43,66,7,4,9,7,19,16,67,3,6,4,10,11,11,18,0,1,4,1,17,13,23,,,,,,,,,,,,,, +5825,Slovakia,2007,0,8,10,18,51,15,23,1,5,3,5,6,3,28,5,9,14,26,43,36,48,5,9,9,14,18,10,43,4,4,7,4,11,16,15,1,2,6,8,9,8,25,,,,,,,,,,,,,, +5826,Slovakia,2008,0,2,7,16,46,10,11,1,2,4,4,5,1,17,4,5,17,17,42,29,56,3,6,15,6,15,18,52,3,5,2,5,6,10,14,3,3,5,2,6,9,26,,,,,,,,,,,,,, +5827,Slovakia,2009,0,3,14,19,22,18,9,0,0,5,6,2,5,18,3,11,9,15,26,28,35,4,1,6,7,10,11,36,2,0,2,7,9,14,9,0,3,3,0,8,6,20,,,,,,,,,,,,,, +5828,Slovakia,2010,1,7,7,18,17,17,15,0,1,6,7,2,3,11,8,3,13,26,26,19,33,2,4,6,3,13,8,26,0,2,2,0,7,10,7,0,2,3,2,4,6,14,,,,,,,,,,,,,, +5829,Slovakia,2011,0,6,8,6,20,16,13,0,2,3,4,6,1,11,5,11,10,11,27,18,22,6,4,5,8,7,9,27,2,3,0,3,5,3,8,4,3,3,2,4,4,13,,,,,,,,,,,,,, +5830,Slovakia,2012,0,2,9,17,20,12,7,0,2,3,4,6,1,13,10,6,5,7,14,22,26,5,5,6,0,9,12,17,1,0,1,4,2,7,8,1,3,3,2,0,3,4,,,,,,,,,,,,,, +5831,Slovakia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,17,20,28,52,68,50,20,12,11,10,15,21,56 +5832,Slovenia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5833,Slovenia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5834,Slovenia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5835,Slovenia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5836,Slovenia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5837,Slovenia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5838,Slovenia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5839,Slovenia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5840,Slovenia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5841,Slovenia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5842,Slovenia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5843,Slovenia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5844,Slovenia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5845,Slovenia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5846,Slovenia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5847,Slovenia,1995,1,13,39,63,36,26,27,0,7,24,11,9,5,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5848,Slovenia,1996,0,5,27,46,37,28,13,0,8,15,9,7,7,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5849,Slovenia,1997,0,4,16,33,19,15,20,0,8,15,8,1,4,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5850,Slovenia,1998,0,5,22,27,19,13,14,0,8,12,10,7,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5851,Slovenia,1999,0,3,21,40,27,11,15,0,0,5,6,5,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5852,Slovenia,2000,0,3,11,36,22,14,17,0,3,9,3,4,3,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5853,Slovenia,2001,0,4,11,30,27,11,7,0,5,11,11,3,5,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5854,Slovenia,2002,0,8,11,25,26,14,9,0,3,7,6,1,3,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5855,Slovenia,2003,0,3,9,23,22,7,15,0,5,5,4,3,4,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5856,Slovenia,2004,0,5,7,10,10,8,13,0,4,6,4,3,2,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5857,Slovenia,2005,0,4,10,16,15,11,14,0,4,4,6,5,4,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5858,Slovenia,2006,0,3,5,9,12,7,6,0,5,7,4,2,4,19,5,6,1,5,4,10,16,2,0,6,2,5,1,18,1,1,4,4,0,3,5,0,1,2,0,1,1,15,,,,,,,,,,,,,, +5859,Slovenia,2007,0,0,7,15,14,12,9,0,1,5,6,2,3,16,1,3,6,3,6,6,15,2,3,2,1,3,5,15,3,2,1,1,1,,10,0,1,3,2,1,1,11,,,,,,,,,,,,,, +5860,Slovenia,2008,0,3,12,9,17,12,3,0,2,7,2,5,2,7,1,3,5,5,12,7,14,1,1,3,1,4,0,26,0,1,1,1,1,5,9,1,2,1,1,1,0,9,,,,,,,,,,,,,, +5861,Slovenia,2009,0,3,8,13,14,6,7,0,3,6,4,1,3,17,3,4,6,5,6,7,5,2,1,4,6,6,2,13,1,1,3,1,1,1,7,0,0,0,0,2,1,7,,,,,,,,,,,,,, +5862,Slovenia,2010,0,4,7,10,9,6,12,0,1,5,2,4,1,3,0,2,3,9,3,7,11,3,4,6,0,1,3,15,0,1,3,4,1,2,4,0,1,1,0,3,2,8,,,,,,,,,,,,,, +5863,Slovenia,2011,0,3,9,16,12,8,5,0,0,5,4,2,1,17,0,2,10,4,5,7,13,2,0,5,5,3,3,14,0,0,3,2,2,3,3,2,1,0,1,0,5,4,,,,,,,,,,,,,, +5864,Slovenia,2012,0,2,6,4,8,6,5,0,2,3,0,1,1,9,3,0,2,1,5,4,16,2,2,3,2,4,3,17,0,0,2,2,0,1,2,0,0,2,0,2,1,1,,,,,,,,,,,,,, +5865,Slovenia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,12,5,18,13,19,1,2,7,3,10,6,39 +5866,Solomon Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5867,Solomon Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5868,Solomon Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5869,Solomon Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5870,Solomon Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5871,Solomon Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5872,Solomon Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5873,Solomon Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5874,Solomon Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5875,Solomon Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5876,Solomon Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5877,Solomon Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5878,Solomon Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5879,Solomon Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5880,Solomon Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5881,Solomon Islands,1995,2,14,6,5,7,9,3,3,17,11,7,12,13,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5882,Solomon Islands,1996,4,9,9,3,7,4,6,5,5,9,8,12,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5883,Solomon Islands,1997,2,20,8,6,9,4,5,3,19,14,10,8,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5884,Solomon Islands,1998,3,15,9,14,18,7,12,2,14,16,10,11,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5885,Solomon Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5886,Solomon Islands,2000,3,13,4,8,8,10,6,8,15,13,7,7,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5887,Solomon Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5888,Solomon Islands,2002,3,16,12,9,9,7,4,0,16,15,4,2,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5889,Solomon Islands,2003,4,14,9,12,14,8,0,9,14,14,16,13,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5890,Solomon Islands,2004,6,11,12,8,11,9,5,10,22,20,13,14,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5891,Solomon Islands,2005,4,14,18,9,15,12,11,9,23,21,12,11,9,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5892,Solomon Islands,2006,1,13,11,4,4,14,8,4,16,14,9,14,8,4,21,8,14,11,13,16,9,26,7,4,10,15,9,5,18,4,4,3,2,3,2,14,9,7,3,2,3,0,,,,,,,,,,,,,, +5893,Solomon Islands,2007,5,15,16,12,9,8,6,5,12,25,9,10,5,5,17,9,4,9,14,14,9,12,12,14,6,14,11,2,20,13,10,9,6,0,4,16,3,10,5,2,1,0,,,,,,,,,,,,,, +5894,Solomon Islands,2008,3,17,12,11,10,11,7,4,13,23,11,13,3,2,18,9,6,7,11,9,11,16,6,5,14,8,14,2,11,10,13,10,7,7,0,11,8,7,5,3,4,1,,,,,,,,,,,,,, +5895,Solomon Islands,2009,3,11,17,8,8,8,6,9,19,19,9,11,7,3,7,2,6,4,6,9,6,14,1,7,7,6,9,2,29,8,5,7,12,7,4,22,7,13,8,5,7,3,,,,,,,,,,,,,, +5896,Solomon Islands,2010,4,16,18,16,8,3,3,4,19,17,11,5,4,5,11,7,6,7,9,3,8,15,7,4,3,7,7,4,15,17,6,6,4,3,2,21,11,7,2,8,3,0,,,,,,,,,,,,,, +5897,Solomon Islands,2011,3,15,22,12,7,8,6,3,13,27,15,10,16,2,14,6,7,6,3,11,4,20,7,5,7,9,6,3,28,14,9,5,3,0,5,25,7,10,10,6,4,1,,,,,,,,,,,,,, +5898,Solomon Islands,2012,3,20,19,10,12,8,6,5,20,18,11,8,12,5,9,4,4,3,5,6,9,10,8,8,9,4,4,4,19,15,10,5,4,4,6,15,12,10,4,4,4,0,,,,,,,,,,,,,, +5899,Solomon Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33,39,36,24,26,24,12,33,47,30,14,22,10,10 +5900,Somalia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5901,Somalia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5902,Somalia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5903,Somalia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5904,Somalia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5905,Somalia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5906,Somalia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5907,Somalia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5908,Somalia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5909,Somalia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5910,Somalia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5911,Somalia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5912,Somalia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5913,Somalia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5914,Somalia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5915,Somalia,1995,46,334,730,201,127,278,109,38,158,139,97,40,25,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5916,Somalia,1996,45,439,557,263,153,82,63,49,221,224,108,50,38,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5917,Somalia,1997,72,565,658,311,187,172,112,63,296,313,173,82,56,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5918,Somalia,1998,99,541,599,337,198,145,126,77,270,321,176,78,74,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5919,Somalia,1999,136,643,678,383,175,175,124,131,302,302,190,100,74,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5920,Somalia,2000,113,740,724,408,254,195,142,85,354,319,219,110,72,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5921,Somalia,2001,125,899,880,476,310,257,196,91,439,413,259,129,97,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5922,Somalia,2002,119,922,821,478,307,219,176,112,468,447,302,172,111,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5923,Somalia,2003,118,1054,850,513,319,250,214,106,535,462,333,171,161,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5924,Somalia,2004,175,1228,1059,610,419,326,278,129,676,618,428,266,157,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5925,Somalia,2005,125,1343,1114,725,458,330,319,169,752,636,436,292,212,157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5926,Somalia,2006,166,1377,1121,647,436,309,336,170,668,628,432,269,171,131,198,394,375,222,210,111,77,96,205,204,145,126,87,29,187,325,316,187,167,76,44,83,190,183,120,88,54,14,,,,,,,,,,,,,, +5927,Somalia,2007,125,1239,1008,578,407,296,289,135,602,520,378,243,181,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5928,Somalia,2008,116,1273,1067,635,422,314,298,138,604,587,439,285,191,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5929,Somalia,2009,175,1118,974,585,410,314,305,129,560,524,396,231,185,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5930,Somalia,2010,109,1036,886,496,355,266,277,91,467,444,341,188,137,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5931,Somalia,2011,113,1147,1047,587,398,330,277,114,495,465,348,260,168,135,842,,,,,,,640,,,,,,,300,,,,,,,240,,,,,,,,,,,,,,,,,,,, +5932,Somalia,2012,129,1147,1014,560,449,296,307,121,553,554,396,267,165,169,918,,,,,,,712,,,,,,,269,,,,,,,215,,,,,,,,,,,,,,,,,,,, +5933,Somalia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,150,1138,1124,578,450,309,337,122,621,588,430,303,199,189 +5934,South Africa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5935,South Africa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5936,South Africa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5937,South Africa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5938,South Africa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5939,South Africa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5940,South Africa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5941,South Africa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5942,South Africa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5943,South Africa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5944,South Africa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5945,South Africa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5946,South Africa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5947,South Africa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5948,South Africa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5949,South Africa,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5950,South Africa,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5951,South Africa,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5952,South Africa,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5953,South Africa,1999,52,624,1697,1834,966,434,221,75,972,1384,779,314,159,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5954,South Africa,2000,116,723,1999,2135,1146,435,212,122,1283,1716,933,423,167,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5955,South Africa,2001,163,1490,3844,3540,1838,690,255,275,2237,3220,1748,781,295,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5956,South Africa,2002,3081,5147,13681,13215,7038,2342,942,3261,7081,11312,6080,2611,1076,600,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5957,South Africa,2003,1769,10107,20392,17862,9540,3604,1495,2341,12600,16867,9207,4080,1972,1172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5958,South Africa,2004,2269,11030,22120,19675,10653,3908,1580,2810,14166,18975,10839,4887,2182,1174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5959,South Africa,2005,2035,10422,20576,19465,11143,4124,1705,2561,13632,19343,11338,5416,2352,1348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5960,South Africa,2006,2062,10498,21273,19743,11752,4392,1862,2579,14073,20387,12656,5767,2550,1505,17471,3225,9340,8706,5329,2361,1313,16172,5632,11104,6888,3153,1497,1023,2673,2207,6848,6476,3372,1391,730,2457,3966,8576,5384,2297,901,571,,,,,,,,,,,,,, +5961,South Africa,2007,1909,10514,21948,20076,12164,4792,2021,2511,14410,21049,13190,6245,2964,1811,12766,7211,10979,8905,5788,4096,3014,12568,9170,11383,8114,5787,3217,2633,4026,4539,6925,3752,2198,1578,828,3750,3290,5267,4439,2553,1726,867,,,,,,,,,,,,,, +5962,South Africa,2008,1863,10172,21706,20699,12724,5169,2246,2360,14010,21579,13778,7146,3234,2117,14640,9870,14816,10644,6879,5636,3345,14856,10888,15868,9880,7988,4719,2943,4265,4694,7148,3998,2345,1686,942,3964,3389,5575,4670,2694,1894,987,,,,,,,,,,,,,, +5963,South Africa,2009,1685,8609,22620,21164,12949,5256,2207,2358,14361,21944,13777,7114,3320,2106,15312,10950,15950,11747,7448,6790,4437,15641,12877,16885,10925,8744,5633,3848,7869,8558,11843,9382,5875,3957,2120,6960,7866,9999,8697,6759,4684,2548,,,,,,,,,,,,,, +5964,South Africa,2010,1496,9925,20855,19842,12386,5155,2211,1933,13023,20205,12910,6873,3165,2128,22355,5489,17584,18741,11895,5981,3175,21406,10406,22281,15293,8186,3695,2633,1810,2485,8500,8270,4444,1948,1154,1474,4716,10759,12277,3423,1498,1007,,,,,,,,,,,,,, +5965,South Africa,2011,1472,9772,20487,19360,12111,5220,2164,1932,12751,19250,12807,6955,3266,2223,16381,3682,12442,13486,8520,4565,2412,15699,6853,15343,10678,5872,2909,1971,1272,1730,5673,5501,3038,1414,709,1127,2871,6670,4651,2244,992,636,,,,,,,,,,,,,, +5966,South Africa,2012,1132,9074,19894,18510,11331,5054,2085,1545,11547,17452,11430,5939,2846,2059,17218,4510,14507,15734,10171,5340,2885,16383,7489,16536,11769,6378,3214,2497,1246,1854,6304,6323,3495,1591,859,1081,3072,7290,4952,2491,1118,791,,,,,,,,,,,,,, +5967,South Africa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18617,16120,43685,45922,28497,13923,6639,18054,21166,41071,29297,15910,7807,5672 +5968,South Sudan,2011,39,251,599,402,259,135,57,60,181,318,239,172,59,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5969,South Sudan,2012,42,356,753,462,267,135,87,58,212,302,221,139,62,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5970,South Sudan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,371,721,447,247,118,87,68,185,302,204,146,67,26 +5971,Spain,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5972,Spain,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5973,Spain,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5974,Spain,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5975,Spain,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5976,Spain,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5977,Spain,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5978,Spain,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5979,Spain,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5980,Spain,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5981,Spain,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5982,Spain,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5983,Spain,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5984,Spain,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5985,Spain,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5986,Spain,1995,22,132,337,242,150,112,228,23,90,129,64,39,34,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5987,Spain,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5988,Spain,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5989,Spain,1998,25,186,361,294,195,114,205,3,149,167,61,27,25,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5990,Spain,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5991,Spain,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5992,Spain,2001,13,160,355,351,215,134,232,15,140,237,116,37,21,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5993,Spain,2002,22,189,392,405,300,192,337,17,194,265,131,56,29,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5994,Spain,2003,7,153,334,305,219,132,222,6,138,218,113,51,29,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5995,Spain,2004,14,140,301,312,229,142,227,9,158,202,125,48,22,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5996,Spain,2005,13,166,394,367,230,140,230,10,142,252,151,63,24,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5997,Spain,2006,18,142,332,311,232,105,175,17,122,264,137,48,19,77,228,241,495,572,388,248,513,212,248,383,241,112,77,224,32,88,166,146,100,81,185,25,55,118,86,58,48,186,,,,,,,,,,,,,, +5998,Spain,2007,10,184,375,379,257,128,191,12,164,291,136,63,23,93,180,313,357,431,289,220,438,187,172,302,182,83,77,227,32,79,173,163,74,73,158,35,95,139,90,50,57,177,,,,,,,,,,,,,, +5999,Spain,2008,18,179,355,349,268,157,200,13,168,294,173,68,16,73,225,190,315,337,260,187,300,199,158,240,163,87,60,124,45,117,213,187,100,77,177,42,83,137,111,58,51,179,,,,,,,,,,,,,, +6000,Spain,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6001,Spain,2010,8,160,373,349,357,172,207,18,157,290,170,69,26,84,194,102,265,249,232,139,306,153,93,197,120,72,59,149,53,81,231,195,115,87,197,41,94,154,124,73,75,234,,,,,,,,,,,,,, +6002,Spain,2011,14,136,329,304,282,168,199,16,143,255,163,80,30,99,209,116,202,230,196,138,300,172,99,167,148,74,54,127,60,79,221,178,110,71,215,59,66,109,125,100,60,213,,,,,,,,,,,,,, +6003,Spain,2012,10,112,259,299,276,156,220,15,101,202,161,70,24,74,125,92,172,175,166,133,297,120,72,141,118,70,50,114,35,71,164,162,104,85,196,38,71,138,140,75,54,173,,,,,,,,,,,,,, +6004,Spain,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198,259,524,614,545,352,620,179,228,490,409,220,159,427 +6005,Sri Lanka,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6006,Sri Lanka,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6007,Sri Lanka,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6008,Sri Lanka,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6009,Sri Lanka,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6010,Sri Lanka,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6011,Sri Lanka,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6012,Sri Lanka,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6013,Sri Lanka,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6014,Sri Lanka,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6015,Sri Lanka,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6016,Sri Lanka,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6017,Sri Lanka,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6018,Sri Lanka,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6019,Sri Lanka,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6020,Sri Lanka,1995,10,163,361,519,521,365,261,15,207,206,142,122,81,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6021,Sri Lanka,1996,10,163,327,491,523,355,253,18,197,168,147,133,111,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6022,Sri Lanka,1997,11,215,390,596,623,396,271,23,245,217,173,176,89,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6023,Sri Lanka,1998,7,237,430,628,663,445,304,22,228,235,169,173,119,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6024,Sri Lanka,1999,8,255,406,621,646,440,325,10,264,231,168,148,126,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6025,Sri Lanka,2000,25,266,459,695,793,484,360,23,312,264,176,202,144,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6026,Sri Lanka,2001,6,284,446,713,779,528,336,18,296,247,194,174,156,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6027,Sri Lanka,2002,11,287,411,682,788,551,366,19,320,248,205,151,151,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6028,Sri Lanka,2003,12,311,467,694,791,495,389,14,305,218,186,187,132,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6029,Sri Lanka,2004,6,358,472,664,800,521,371,18,263,237,192,176,122,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6030,Sri Lanka,2005,9,341,520,724,918,657,424,19,295,261,189,200,154,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6031,Sri Lanka,2006,8,342,496,600,816,563,402,13,301,248,178,189,157,129,55,67,125,152,244,266,292,47,85,85,85,116,125,139,127,157,206,171,132,120,100,100,161,195,160,150,84,71,,,,,,,,,,,,,, +6032,Sri Lanka,2007,10,288,477,664,802,649,412,16,279,228,183,182,176,111,65,90,145,174,251,254,270,71,95,90,92,119,129,121,87,161,207,168,170,134,94,77,161,200,178,158,113,67,,,,,,,,,,,,,, +6033,Sri Lanka,2008,11,283,488,717,810,649,415,26,298,288,183,173,172,133,75,98,146,177,284,272,305,65,90,91,105,160,137,126,101,171,239,187,204,124,113,101,174,232,180,145,117,73,,,,,,,,,,,,,, +6034,Sri Lanka,2009,10,328,576,703,860,689,414,24,244,241,172,186,163,144,72,81,110,149,280,287,269,61,98,96,92,116,119,156,126,158,264,194,202,195,140,99,182,247,160,176,134,75,,,,,,,,,,,,,, +6035,Sri Lanka,2010,14,268,539,602,884,683,448,15,255,233,171,183,186,154,68,86,121,162,277,282,316,59,103,109,91,124,168,179,119,179,273,254,249,207,158,117,175,210,187,187,131,102,,,,,,,,,,,,,, +6036,Sri Lanka,2011,12,246,459,585,828,653,479,13,270,217,191,192,191,154,64,104,145,198,267,351,329,91,109,106,99,146,202,194,100,179,295,263,243,209,164,72,185,248,190,200,150,114,,,,,,,,,,,,,, +6037,Sri Lanka,2012,7,243,420,504,799,672,456,17,242,200,162,211,200,136,35,78,115,120,255,334,282,62,74,70,74,107,130,153,112,157,255,227,238,190,136,76,153,182,181,189,151,102,,,,,,,,,,,,,, +6038,Sri Lanka,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,158,502,869,1007,1295,1175,986,152,482,500,417,511,538,418 +6039,Sudan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6040,Sudan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6041,Sudan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6042,Sudan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6043,Sudan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6044,Sudan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6045,Sudan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6046,Sudan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6047,Sudan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6048,Sudan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6049,Sudan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6050,Sudan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6051,Sudan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6052,Sudan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6053,Sudan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6054,Sudan,1995,250,604,796,634,486,362,337,359,490,613,299,403,342,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6055,Sudan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6056,Sudan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6057,Sudan,1998,805,1079,1533,1133,820,523,453,680,875,1036,723,528,356,247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6058,Sudan,1999,842,1100,1456,1270,978,841,839,903,1035,1111,1104,817,594,615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6059,Sudan,2000,785,1028,1511,1351,1119,638,677,817,925,1134,905,771,327,323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6060,Sudan,2001,732,1018,1368,1085,777,462,301,590,787,910,715,467,212,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6061,Sudan,2002,559,1171,1494,1168,852,511,405,498,865,1007,840,523,275,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6062,Sudan,2003,489,1195,1644,1271,856,645,473,443,881,1052,879,562,384,219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6063,Sudan,2004,537,1377,1791,1465,1035,697,467,426,978,1187,897,601,400,237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6064,Sudan,2005,425,1358,1990,1541,1151,724,493,381,1102,1203,978,729,411,244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6065,Sudan,2006,297,1351,1890,1504,1102,710,532,312,965,1108,948,763,442,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6066,Sudan,2007,288,1355,1903,1540,1102,729,556,334,992,1318,990,729,467,324,1214,129,221,243,192,98,42,970,91,108,121,97,66,26,84,92,108,151,56,28,21,61,75,81,76,42,19,13,,,,,,,,,,,,,, +6067,Sudan,2008,317,1241,1740,1301,903,610,534,321,850,962,841,601,344,235,959,3202,,,,,,571,2095,,,,,,315,1857,,,,,,239,1437,,,,,,,,,,,,,,,,,,, +6068,Sudan,2009,288,1279,1757,1281,904,606,477,236,806,983,800,557,334,233,965,3269,,,,,,827,2122,,,,,,463,2082,,,,,,357,1584,,,,,,,,,,,,,,,,,,, +6069,Sudan,2010,209,1185,1781,1335,863,497,391,195,761,979,772,520,279,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6070,Sudan,2011,107,899,1359,981,689,386,372,113,512,620,513,352,188,175,941,3184,0,0,0,0,0,686,1935,0,0,0,0,0,416,2210,0,0,0,0,0,321,1677,0,0,0,0,0,,,,,,,,,,,,,, +6071,Sudan,2012,117,869,1274,802,466,404,331,115,536,562,470,299,170,172,823,,,,,,,691,,,,,,,424,,,,,,,299,,,,,,,,,,,,,,,,,,,, +6072,Sudan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1205,,,,,,,976,,,,,, +6073,Suriname,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6074,Suriname,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6075,Suriname,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6076,Suriname,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6077,Suriname,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6078,Suriname,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6079,Suriname,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6080,Suriname,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6081,Suriname,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6082,Suriname,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6083,Suriname,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6084,Suriname,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6085,Suriname,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6086,Suriname,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6087,Suriname,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6088,Suriname,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6089,Suriname,1996,1,5,11,11,0,4,6,2,3,6,5,0,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6090,Suriname,1997,0,6,7,3,2,0,2,0,4,1,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6091,Suriname,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6092,Suriname,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6093,Suriname,2000,1,6,6,3,2,0,4,2,3,6,3,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6094,Suriname,2001,1,2,7,3,2,4,5,0,2,5,3,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6095,Suriname,2002,2,1,12,10,2,3,2,0,3,2,4,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6096,Suriname,2003,0,5,1,13,6,1,6,1,4,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6097,Suriname,2004,0,6,8,14,6,2,4,0,3,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6098,Suriname,2005,0,7,8,12,6,3,4,0,3,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6099,Suriname,2006,5,6,13,9,4,1,7,2,1,4,1,8,0,2,0,2,4,3,8,2,8,1,1,3,3,1,4,3,0,2,0,3,0,2,1,1,1,3,3,0,0,0,,,,,,,,,,,,,, +6100,Suriname,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6101,Suriname,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6102,Suriname,2009,2,11,17,21,20,11,10,1,5,13,11,11,11,5,0,1,0,1,1,3,1,1,2,0,2,1,1,0,0,1,0,2,0,2,1,0,1,1,1,0,0,0,,,,,,,,,,,,,, +6103,Suriname,2010,0,5,21,35,19,5,10,1,4,6,10,6,2,8,1,1,6,6,5,4,3,2,2,4,3,3,0,1,3,2,2,1,0,0,0,0,0,1,1,2,1,1,,,,,,,,,,,,,, +6104,Suriname,2011,0,4,7,15,18,3,5,0,1,1,5,2,2,1,1,0,5,5,4,1,4,0,0,6,3,2,2,1,1,0,3,6,2,0,1,0,0,1,4,0,0,2,,,,,,,,,,,,,, +6105,Suriname,2012,0,6,7,15,14,9,7,2,1,7,5,7,1,0,2,2,2,6,1,3,1,1,1,1,1,0,3,0,0,1,2,5,1,1,1,1,0,0,0,0,0,1,,,,,,,,,,,,,, +6106,Suriname,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,18,28,28,13,3,6,5,13,6,4,1,1 +6107,Swaziland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6108,Swaziland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6109,Swaziland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6110,Swaziland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6111,Swaziland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6112,Swaziland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6113,Swaziland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6114,Swaziland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6115,Swaziland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6116,Swaziland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6117,Swaziland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6118,Swaziland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6119,Swaziland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6120,Swaziland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6121,Swaziland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6122,Swaziland,1995,4,59,117,130,98,40,16,5,52,57,39,29,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6123,Swaziland,1996,79,39,250,335,263,200,120,64,78,352,204,114,58,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6124,Swaziland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6125,Swaziland,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6126,Swaziland,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6127,Swaziland,2000,11,130,352,249,138,37,17,10,198,298,62,62,24,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6128,Swaziland,2001,16,180,468,374,238,70,34,22,362,474,196,74,18,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6129,Swaziland,2002,1,94,244,182,117,33,10,9,236,274,127,50,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6130,Swaziland,2003,15,120,298,171,96,48,19,14,242,325,145,60,20,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6131,Swaziland,2004,6,152,316,245,140,53,21,17,271,381,182,74,19,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6132,Swaziland,2005,9,162,406,285,139,57,27,14,318,453,207,73,21,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6133,Swaziland,2006,32,187,452,268,164,91,45,35,367,464,245,107,48,25,399,199,493,400,249,132,91,360,301,523,324,148,111,74,55,107,276,188,111,86,26,53,157,277,140,56,32,15,,,,,,,,,,,,,, +6134,Swaziland,2007,,223,479,344,182,57,27,,411,576,232,98,39,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6135,Swaziland,2008,29,231,552,357,193,80,35,39,427,663,309,114,57,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6136,Swaziland,2009,26,221,637,417,208,109,45,54,459,759,353,121,57,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6137,Swaziland,2010,30,207,537,369,192,109,50,51,354,662,276,104,54,16,740,156,540,492,266,197,126,690,380,630,390,216,152,89,65,78,293,230,104,79,29,57,142,279,174,54,29,18,,,,,,,,,,,,,, +6138,Swaziland,2011,16,161,459,318,158,69,46,35,281,495,220,86,40,24,71,69,232,218,124,86,90,82,148,327,175,90,66,52,44,64,254,192,87,49,25,39,95,298,133,61,29,25,,,,,,,,,,,,,, +6139,Swaziland,2012,18,163,479,332,168,84,38,39,284,535,242,88,51,27,362,99,411,349,197,143,102,298,194,446,253,119,72,66,34,46,222,171,82,46,29,34,93,234,131,50,17,20,,,,,,,,,,,,,, +6140,Swaziland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,340,302,1088,952,480,302,194,331,517,1087,562,267,156,113 +6141,Sweden,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6142,Sweden,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6143,Sweden,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6144,Sweden,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6145,Sweden,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6146,Sweden,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6147,Sweden,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6148,Sweden,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6149,Sweden,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6150,Sweden,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6151,Sweden,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6152,Sweden,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6153,Sweden,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6154,Sweden,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6155,Sweden,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6156,Sweden,1995,1,5,12,8,5,4,27,0,10,13,5,5,4,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6157,Sweden,1996,1,11,8,3,5,5,17,1,4,10,4,1,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6158,Sweden,1997,0,6,9,13,5,0,16,2,10,8,9,2,3,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6159,Sweden,1998,2,6,9,3,8,3,15,1,10,15,5,0,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6160,Sweden,1999,0,13,18,12,5,2,22,1,7,14,7,3,2,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6161,Sweden,2000,0,9,10,12,11,4,25,1,9,8,10,2,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6162,Sweden,2001,1,10,15,5,3,1,23,1,4,12,8,2,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6163,Sweden,2002,0,6,15,10,8,7,8,0,11,14,8,7,2,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6164,Sweden,2003,0,8,14,12,4,5,20,0,10,18,6,2,0,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6165,Sweden,2004,1,10,19,8,8,12,13,0,11,11,13,2,3,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6166,Sweden,2005,0,7,21,16,10,5,16,1,10,15,12,5,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6167,Sweden,2006,0,4,15,14,5,3,16,1,12,14,9,1,2,10,10,12,23,16,9,5,38,8,15,23,7,4,9,24,7,8,28,14,7,1,16,2,15,25,20,10,6,17,,,,,,,,,,,,,, +6168,Sweden,2007,0,7,20,10,5,3,9,1,5,11,8,4,1,12,17,15,18,9,12,11,16,9,17,25,14,7,5,23,4,9,26,17,8,2,11,0,12,23,23,11,7,7,,,,,,,,,,,,,, +6169,Sweden,2008,0,14,15,9,5,7,6,0,12,13,5,4,1,6,3,16,18,11,10,6,10,7,16,18,16,6,9,15,2,14,28,16,13,7,7,5,17,30,28,9,6,17,,,,,,,,,,,,,, +6170,Sweden,2009,0,14,16,10,7,5,11,1,9,10,6,5,2,11,8,19,28,10,13,9,16,4,14,15,13,5,9,14,8,17,40,17,8,5,9,4,31,26,23,8,10,18,,,,,,,,,,,,,, +6171,Sweden,2010,1,10,28,8,5,5,13,2,9,16,11,4,2,3,13,33,33,15,3,8,17,14,29,27,8,6,1,16,4,24,37,19,8,4,6,3,18,36,13,12,5,17,,,,,,,,,,,,,, +6172,Sweden,2011,1,14,15,12,8,3,8,0,12,9,10,2,2,3,13,22,40,12,4,4,15,9,14,15,11,6,6,9,4,26,33,13,7,5,2,2,13,31,17,11,5,1,,,,,,,,,,,,,, +6173,Sweden,2012,0,8,16,8,9,8,13,0,11,10,3,7,2,6,9,39,30,12,10,9,22,8,23,23,17,14,7,10,3,34,43,21,6,8,5,4,18,36,20,11,13,7,,,,,,,,,,,,,, +6174,Sweden,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,94,93,40,20,25,34,30,48,90,33,39,16,30 +6175,Switzerland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6176,Switzerland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6177,Switzerland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6178,Switzerland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6179,Switzerland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6180,Switzerland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6181,Switzerland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6182,Switzerland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6183,Switzerland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6184,Switzerland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6185,Switzerland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6186,Switzerland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6187,Switzerland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6188,Switzerland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6189,Switzerland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6190,Switzerland,1995,0,12,23,26,23,13,27,1,13,20,9,1,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6191,Switzerland,1996,1,12,28,27,17,17,22,0,6,18,4,4,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6192,Switzerland,1997,0,16,20,15,11,7,25,0,14,14,6,2,2,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6193,Switzerland,1998,0,15,30,26,12,10,23,1,11,15,6,4,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6194,Switzerland,1999,1,9,9,11,2,3,3,0,6,11,6,0,1,3,2,20,20,15,20,8,22,9,10,24,13,5,7,25,0,3,13,11,2,1,10,2,9,11,9,7,3,16,,,,,,,,,,,,,, +6195,Switzerland,2000,0,5,17,10,7,6,6,1,8,11,7,2,1,5,5,17,19,21,16,17,34,1,13,23,22,4,4,20,1,7,9,8,5,4,8,2,14,13,11,3,4,12,,,,,,,,,,,,,, +6196,Switzerland,2001,0,7,16,12,6,9,5,0,4,9,3,2,1,6,5,20,15,19,18,13,26,4,13,28,11,3,5,27,1,8,4,7,5,5,6,2,11,17,9,3,6,12,,,,,,,,,,,,,, +6197,Switzerland,2002,0,10,16,10,16,4,7,0,12,14,5,4,0,4,8,31,21,20,7,14,22,10,20,34,11,6,4,23,1,9,17,8,5,6,9,1,8,10,12,5,5,9,,,,,,,,,,,,,, +6198,Switzerland,2003,0,10,7,20,7,4,9,1,9,9,3,0,5,1,10,24,23,18,19,12,20,7,11,17,11,7,8,23,1,10,14,4,2,1,7,1,13,15,8,13,3,14,,,,,,,,,,,,,, +6199,Switzerland,2004,0,12,11,11,9,7,11,0,6,13,6,3,3,5,5,17,22,24,17,10,23,3,15,20,15,7,9,18,1,8,13,14,2,5,7,1,8,16,10,8,1,11,,,,,,,,,,,,,, +6200,Switzerland,2005,2,8,10,11,11,2,7,0,6,11,8,3,1,4,6,16,25,15,18,7,17,8,13,21,10,5,3,23,1,8,11,14,9,3,14,0,11,14,8,6,3,8,,,,,,,,,,,,,, +6201,Switzerland,2006,1,7,14,6,7,6,7,1,7,14,6,3,0,0,2,13,14,14,15,13,24,4,13,20,19,9,6,21,1,3,12,6,2,3,5,0,4,9,14,5,4,7,,,,,,,,,,,,,, +6202,Switzerland,2007,0,9,7,7,5,4,8,1,8,13,3,0,2,5,3,12,13,15,14,6,17,8,7,23,8,6,7,12,2,10,7,5,2,2,14,1,4,16,8,8,5,6,,,,,,,,,,,,,, +6203,Switzerland,2008,0,8,13,5,4,3,4,1,3,13,6,2,1,1,3,14,24,13,9,8,16,5,6,19,15,7,6,11,1,4,13,13,3,5,3,1,7,17,13,4,2,13,,,,,,,,,,,,,, +6204,Switzerland,2009,0,11,10,12,7,2,4,1,1,10,8,5,1,2,5,15,20,15,13,10,12,5,9,21,12,7,9,10,2,13,11,5,6,4,4,3,5,12,8,7,5,12,,,,,,,,,,,,,, +6205,Switzerland,2010,0,6,12,9,6,5,8,0,7,15,6,4,1,3,5,11,16,14,10,9,17,6,13,22,11,4,3,8,1,9,10,11,4,6,2,0,3,13,11,7,4,10,,,,,,,,,,,,,, +6206,Switzerland,2011,2,8,16,10,13,7,3,2,6,13,2,4,2,2,6,14,21,15,19,12,15,8,13,10,10,9,5,13,0,12,16,14,3,5,10,1,2,16,13,17,0,10,,,,,,,,,,,,,, +6207,Switzerland,2012,0,3,18,8,6,5,11,0,7,15,7,1,2,4,5,9,20,15,8,6,6,6,3,18,9,5,4,10,1,10,11,7,0,3,11,1,7,8,11,5,2,7,,,,,,,,,,,,,, +6208,Switzerland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,39,53,42,23,27,39,7,26,65,54,16,23,37 +6209,Syrian Arab Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6210,Syrian Arab Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6211,Syrian Arab Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6212,Syrian Arab Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6213,Syrian Arab Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6214,Syrian Arab Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6215,Syrian Arab Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6216,Syrian Arab Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6217,Syrian Arab Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6218,Syrian Arab Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6219,Syrian Arab Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6220,Syrian Arab Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6221,Syrian Arab Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6222,Syrian Arab Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6223,Syrian Arab Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6224,Syrian Arab Republic,1995,13,332,255,111,70,59,50,22,158,97,53,44,37,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6225,Syrian Arab Republic,1996,11,390,290,110,90,69,60,12,200,107,57,51,45,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6226,Syrian Arab Republic,1997,6,337,295,118,74,52,52,23,201,112,47,31,36,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6227,Syrian Arab Republic,1998,5,335,293,111,93,48,50,20,197,99,43,49,18,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6228,Syrian Arab Republic,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6229,Syrian Arab Republic,2000,8,359,289,125,86,76,55,23,195,101,53,46,38,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6230,Syrian Arab Republic,2001,8,317,248,134,108,64,47,26,210,116,56,50,42,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6231,Syrian Arab Republic,2002,12,359,278,121,80,62,61,23,182,116,53,43,31,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6232,Syrian Arab Republic,2003,10,343,279,127,98,75,64,26,242,99,68,48,33,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6233,Syrian Arab Republic,2004,13,318,308,115,113,77,50,20,230,121,46,56,59,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6234,Syrian Arab Republic,2005,9,266,237,111,112,62,63,27,182,108,59,59,32,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6235,Syrian Arab Republic,2006,8,225,267,137,110,71,44,18,195,109,42,53,39,34,36,65,47,31,35,40,42,51,76,25,25,34,29,27,171,288,188,70,63,58,69,154,298,225,130,104,80,52,,,,,,,,,,,,,, +6236,Syrian Arab Republic,2007,7,198,222,123,74,49,59,14,148,106,41,43,30,41,31,73,86,56,52,26,45,44,103,52,37,26,42,33,188,288,202,90,57,56,75,198,345,244,133,120,95,78,,,,,,,,,,,,,, +6237,Syrian Arab Republic,2008,18,170,212,128,82,61,52,30,149,80,48,32,29,25,32,80,77,55,40,40,52,37,68,59,35,26,30,36,171,227,188,75,57,38,80,152,285,238,126,105,83,63,,,,,,,,,,,,,, +6238,Syrian Arab Republic,2009,10,172,212,121,97,74,47,17,167,82,41,44,34,25,21,76,65,53,54,47,55,43,81,39,38,40,31,32,155,203,179,92,67,61,77,164,336,273,154,126,82,67,,,,,,,,,,,,,, +6239,Syrian Arab Republic,2010,7,170,212,101,80,65,49,16,164,105,47,41,38,27,14,62,61,37,32,42,50,38,62,51,20,22,23,30,189,191,175,79,62,43,67,157,293,263,152,124,83,70,,,,,,,,,,,,,, +6240,Syrian Arab Republic,2011,8,139,195,116,81,49,45,20,113,97,56,35,36,37,23,39,51,30,33,31,31,19,52,30,14,21,8,11,267,172,181,58,64,44,47,215,247,254,126,109,61,70,,,,,,,,,,,,,, +6241,Syrian Arab Republic,2012,7,91,146,90,85,46,41,5,104,75,35,33,32,19,18,41,34,25,37,24,24,21,40,34,25,15,14,12,245,121,128,65,47,37,41,192,249,238,147,84,70,38,,,,,,,,,,,,,, +6242,Syrian Arab Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,211,273,304,201,180,127,113,192,344,320,197,150,103,80 +6243,Tajikistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6244,Tajikistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6245,Tajikistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6246,Tajikistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6247,Tajikistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6248,Tajikistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6249,Tajikistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6250,Tajikistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6251,Tajikistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6252,Tajikistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6253,Tajikistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6254,Tajikistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6255,Tajikistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6256,Tajikistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6257,Tajikistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6258,Tajikistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6259,Tajikistan,1996,4,22,25,23,12,12,4,5,18,26,46,20,11,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6260,Tajikistan,1997,8,16,38,26,18,12,8,7,17,33,24,17,12,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6261,Tajikistan,1998,9,67,90,48,18,22,10,2,33,60,37,21,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6262,Tajikistan,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6263,Tajikistan,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6264,Tajikistan,2001,8,129,152,89,43,17,16,0,61,83,62,25,11,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6265,Tajikistan,2002,7,134,133,66,45,28,19,6,69,84,46,29,15,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6266,Tajikistan,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6267,Tajikistan,2004,7,146,90,58,34,12,10,11,77,59,41,23,17,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6268,Tajikistan,2005,8,308,279,164,104,54,48,26,225,185,151,89,43,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6269,Tajikistan,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6270,Tajikistan,2007,13,413,361,194,132,63,65,21,329,243,154,92,61,87,61,444,320,186,122,54,51,65,235,220,135,103,71,53,228,386,167,96,52,27,36,197,172,150,90,69,40,23,,,,,,,,,,,,,, +6271,Tajikistan,2008,7,437,358,165,113,52,64,25,290,211,121,101,40,73,70,447,343,194,149,69,71,61,258,229,158,121,68,47,222,435,191,114,77,27,27,162,162,119,90,72,50,25,,,,,,,,,,,,,, +6272,Tajikistan,2009,4,407,322,173,107,78,58,12,253,223,111,92,60,72,59,461,363,182,108,60,56,47,257,258,141,104,74,38,188,389,174,95,80,30,33,146,178,130,93,71,41,36,,,,,,,,,,,,,, +6273,Tajikistan,2010,12,398,366,214,129,93,74,23,320,272,111,109,87,82,51,432,283,174,119,64,62,62,251,216,122,96,62,44,189,262,173,88,72,40,31,154,249,165,78,68,35,27,,,,,,,,,,,,,, +6274,Tajikistan,2011,8,343,365,181,128,75,77,31,314,229,104,100,105,114,71,417,309,188,124,84,62,66,248,227,116,114,67,55,241,321,151,78,60,32,32,152,158,148,82,68,56,34,,,,,,,,,,,,,, +6275,Tajikistan,2012,8,346,320,169,124,75,72,16,243,243,105,99,94,127,50,380,325,163,104,68,59,42,192,193,120,100,72,43,138,301,157,92,61,47,33,106,186,164,85,81,46,35,,,,,,,,,,,,,, +6276,Tajikistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,205,949,779,399,280,207,176,184,621,564,295,258,224,165 +6277,Thailand,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6278,Thailand,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6279,Thailand,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6280,Thailand,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6281,Thailand,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6282,Thailand,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6283,Thailand,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6284,Thailand,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6285,Thailand,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6286,Thailand,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6287,Thailand,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6288,Thailand,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6289,Thailand,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6290,Thailand,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6291,Thailand,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6292,Thailand,1995,59,1191,2936,2948,2434,2607,2346,52,741,888,782,936,1175,1178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6293,Thailand,1996,54,1088,2857,2496,1935,2004,1772,50,598,844,683,718,918,980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6294,Thailand,1997,53,864,2336,2101,1488,1434,1326,38,545,725,504,475,633,690,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6295,Thailand,1998,11,427,1153,1098,892,945,985,17,297,401,317,386,475,558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6296,Thailand,1999,20,791,2123,2015,1702,1705,1795,30,511,771,676,750,879,1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6297,Thailand,2000,27,859,2570,2380,2117,1908,2213,32,624,1035,780,873,1016,1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6298,Thailand,2001,37,1868,5192,4516,3269,2617,2912,58,999,1550,1231,1251,1265,1777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6299,Thailand,2002,35,1352,3805,3699,3155,2556,3077,61,897,1525,1212,1143,1307,1769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6300,Thailand,2003,41,1636,4615,4259,3497,2740,3241,49,944,1678,1350,1279,1264,1866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6301,Thailand,2004,46,1421,4211,4542,3831,2787,3379,50,951,1602,1335,1217,1203,1846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6302,Thailand,2005,44,1344,3814,4393,4003,2831,3407,57,907,1662,1334,1367,1259,1938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6303,Thailand,2006,43,1276,3732,4664,4055,3084,3732,65,884,1542,1379,1349,1287,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6304,Thailand,2007,48,1261,3398,4487,4168,3122,3748,50,885,1481,1418,1302,1281,1938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6305,Thailand,2008,66,1222,3374,4425,4164,3167,3836,77,865,1513,1345,1407,1276,2051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6306,Thailand,2009,43,1348,3484,4692,4921,3597,4282,80,1137,2032,1781,1633,1493,2287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6307,Thailand,2010,55,1506,3695,5253,5042,3625,4189,82,1087,1930,1749,1467,1494,2276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6308,Thailand,2011,38,1546,3650,5139,5140,3734,4080,76,1214,1773,1658,1586,1402,2133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6309,Thailand,2012,35,1444,3277,4705,4867,3780,3863,82,995,1491,1613,1424,1364,2058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6310,Thailand,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6311,The Former Yugoslav Republic of Macedonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6312,The Former Yugoslav Republic of Macedonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6313,The Former Yugoslav Republic of Macedonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6314,The Former Yugoslav Republic of Macedonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6315,The Former Yugoslav Republic of Macedonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6316,The Former Yugoslav Republic of Macedonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6317,The Former Yugoslav Republic of Macedonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6318,The Former Yugoslav Republic of Macedonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6319,The Former Yugoslav Republic of Macedonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6320,The Former Yugoslav Republic of Macedonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6321,The Former Yugoslav Republic of Macedonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6322,The Former Yugoslav Republic of Macedonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6323,The Former Yugoslav Republic of Macedonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6324,The Former Yugoslav Republic of Macedonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6325,The Former Yugoslav Republic of Macedonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6326,The Former Yugoslav Republic of Macedonia,1995,2,15,42,45,33,29,24,2,32,30,20,11,17,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6327,The Former Yugoslav Republic of Macedonia,1996,5,17,20,35,16,25,22,3,15,25,17,9,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6328,The Former Yugoslav Republic of Macedonia,1997,1,8,21,25,24,21,21,1,14,19,13,6,7,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6329,The Former Yugoslav Republic of Macedonia,1998,3,14,19,56,18,21,13,5,16,18,8,8,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6330,The Former Yugoslav Republic of Macedonia,1999,1,11,10,19,27,15,5,1,7,9,5,1,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6331,The Former Yugoslav Republic of Macedonia,2000,5,8,14,20,19,20,14,1,15,14,17,5,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6332,The Former Yugoslav Republic of Macedonia,2001,1,10,17,17,15,21,16,1,17,18,14,7,3,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6333,The Former Yugoslav Republic of Macedonia,2002,2,20,17,28,31,22,7,3,18,24,12,4,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6334,The Former Yugoslav Republic of Macedonia,2003,1,20,23,35,28,17,17,0,16,16,9,9,1,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6335,The Former Yugoslav Republic of Macedonia,2004,2,12,18,19,33,21,15,0,15,20,19,6,3,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6336,The Former Yugoslav Republic of Macedonia,2005,2,14,20,23,20,18,13,2,17,13,10,7,5,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6337,The Former Yugoslav Republic of Macedonia,2006,0,15,15,25,37,18,7,3,16,9,9,6,7,11,32,20,7,13,23,12,29,29,13,7,8,8,6,11,6,10,8,6,7,7,7,8,11,11,18,8,12,14,,,,,,,,,,,,,, +6338,The Former Yugoslav Republic of Macedonia,2007,1,12,22,27,46,21,19,4,11,12,9,4,4,8,32,12,14,15,21,16,16,7,10,6,6,7,6,9,5,12,7,6,8,5,9,6,8,14,11,8,5,13,,,,,,,,,,,,,, +6339,The Former Yugoslav Republic of Macedonia,2008,1,18,21,13,25,15,15,2,24,15,14,8,7,10,13,12,9,8,8,10,16,19,11,3,5,5,6,8,3,16,11,6,5,7,8,2,5,11,9,5,11,8,,,,,,,,,,,,,, +6340,The Former Yugoslav Republic of Macedonia,2009,1,28,24,30,23,13,14,2,14,16,10,4,5,14,8,6,9,11,6,3,11,11,9,9,6,2,5,7,4,15,9,6,7,1,9,5,14,10,5,11,9,11,,,,,,,,,,,,,, +6341,The Former Yugoslav Republic of Macedonia,2010,0,6,19,24,24,12,11,0,9,12,7,7,4,6,6,10,12,10,17,12,14,14,9,7,5,8,4,7,9,8,6,7,3,1,9,4,4,9,7,7,10,8,,,,,,,,,,,,,, +6342,The Former Yugoslav Republic of Macedonia,2011,3,17,11,19,21,10,6,1,14,9,6,3,1,11,12,5,5,4,8,8,11,8,7,10,1,3,7,10,3,8,0,3,9,2,7,6,4,6,5,6,8,9,,,,,,,,,,,,,, +6343,The Former Yugoslav Republic of Macedonia,2012,0,16,14,12,19,15,13,0,12,14,9,6,10,7,10,3,8,5,12,7,12,13,7,3,3,6,1,5,3,11,3,6,8,8,9,3,8,4,4,3,0,8,,,,,,,,,,,,,, +6344,The Former Yugoslav Republic of Macedonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,14,30,32,46,39,41,11,12,15,14,15,17,20 +6345,Timor-Leste,2002,13,119,145,119,107,58,35,20,118,124,88,91,40,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6346,Timor-Leste,2003,5,130,135,107,98,66,41,13,98,116,76,76,43,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6347,Timor-Leste,2004,5,133,134,95,99,65,48,19,109,116,83,51,27,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6348,Timor-Leste,2005,8,136,149,116,119,52,47,8,127,90,76,60,18,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6349,Timor-Leste,2006,1,128,115,103,75,48,49,8,102,76,82,63,34,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6350,Timor-Leste,2007,4,128,129,89,77,69,65,10,120,98,89,76,36,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6351,Timor-Leste,2008,6,115,88,93,73,52,54,4,87,72,85,67,35,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6352,Timor-Leste,2009,8,158,120,94,88,75,106,9,124,127,105,69,63,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6353,Timor-Leste,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6354,Timor-Leste,2011,14,199,177,137,114,99,146,16,176,182,113,85,77,75,366,,,,,,,282,,,,,,,51,,,,,,,55,,,,,,,,,,,,,,,,,,,, +6355,Timor-Leste,2012,7,196,172,128,119,114,129,12,154,143,120,75,84,92,171,,,,,,,163,,,,,,,62,,,,,,,56,,,,,,,,,,,,,,,,,,,, +6356,Timor-Leste,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,167,,,,,,,173,,,,,, +6357,Togo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6358,Togo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6359,Togo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6360,Togo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6361,Togo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6362,Togo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6363,Togo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6364,Togo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6365,Togo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6366,Togo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6367,Togo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6368,Togo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6369,Togo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6370,Togo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6371,Togo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6372,Togo,1995,7,95,151,123,82,64,49,9,80,96,45,38,23,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6373,Togo,1996,11,95,153,134,89,37,50,12,89,117,45,45,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6374,Togo,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6375,Togo,1998,13,85,177,136,86,48,36,15,95,113,52,36,17,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6376,Togo,1999,11,92,169,124,80,42,37,7,88,123,64,32,25,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6377,Togo,2000,4,101,168,144,109,48,39,13,107,124,50,36,24,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6378,Togo,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6379,Togo,2002,10,140,239,166,104,55,40,12,125,148,79,43,29,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6380,Togo,2003,10,126,229,192,120,66,57,15,102,149,80,55,26,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6381,Togo,2004,9,145,286,233,143,69,66,12,150,205,103,55,37,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6382,Togo,2005,11,177,320,283,125,79,69,23,157,236,146,67,41,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6383,Togo,2006,15,174,358,344,183,94,79,29,214,268,170,96,58,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6384,Togo,2007,7,156,309,276,170,73,66,17,184,256,150,67,35,30,194,,,,,,,,,,,,,,356,,,,,,,,,,,,,,,,,,,,,,,,,,, +6385,Togo,2008,15,194,379,338,214,113,78,29,202,302,170,94,47,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6386,Togo,2009,15,168,378,331,233,130,89,27,197,288,166,86,42,46,8,7,19,29,24,16,14,11,13,28,13,15,10,6,17,20,40,41,36,22,13,17,20,21,30,33,15,0,,,,,,,,,,,,,, +6387,Togo,2010,21,150,350,358,217,116,80,39,163,285,148,78,62,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6388,Togo,2011,15,169,340,350,234,123,85,11,167,277,146,89,50,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6389,Togo,2012,9,171,338,341,237,121,87,17,165,287,154,109,48,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6390,Togo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,216,401,412,307,158,92,44,191,300,190,125,70,53 +6391,Tokelau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6392,Tokelau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6393,Tokelau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6394,Tokelau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6395,Tokelau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6396,Tokelau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6397,Tokelau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6398,Tokelau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6399,Tokelau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6400,Tokelau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6401,Tokelau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6402,Tokelau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6403,Tokelau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6404,Tokelau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6405,Tokelau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6406,Tokelau,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6407,Tokelau,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6408,Tokelau,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6409,Tokelau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6410,Tokelau,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6411,Tokelau,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6412,Tokelau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6413,Tokelau,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6414,Tokelau,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6415,Tokelau,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6416,Tokelau,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6417,Tokelau,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6418,Tokelau,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6419,Tokelau,2008,,0,0,0,0,0,,,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6420,Tokelau,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6421,Tokelau,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6422,Tokelau,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6423,Tokelau,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6424,Tokelau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6425,Tonga,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6426,Tonga,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6427,Tonga,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6428,Tonga,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6429,Tonga,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6430,Tonga,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6431,Tonga,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6432,Tonga,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6433,Tonga,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6434,Tonga,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6435,Tonga,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6436,Tonga,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6437,Tonga,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6438,Tonga,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6439,Tonga,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6440,Tonga,1995,0,1,0,0,0,1,2,0,0,1,1,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6441,Tonga,1996,0,1,1,2,0,6,0,0,1,1,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6442,Tonga,1997,0,2,1,1,0,1,2,0,4,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6443,Tonga,1998,0,2,3,1,2,1,2,1,1,0,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6444,Tonga,1999,0,1,0,0,1,3,2,0,1,0,0,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6445,Tonga,2000,,2,1,1,,1,5,,1,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6446,Tonga,2001,0,0,1,0,0,2,1,0,0,2,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6447,Tonga,2002,,1,,,4,,10,,1,1,1,,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6448,Tonga,2003,0,1,1,1,1,0,2,0,1,0,1,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6449,Tonga,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6450,Tonga,2005,0,2,1,0,2,1,0,0,2,1,0,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6451,Tonga,2006,0,1,0,0,1,2,4,0,1,1,2,0,0,2,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6452,Tonga,2007,0,2,1,0,0,1,5,0,3,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6453,Tonga,2008,0,2,0,2,2,1,1,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,, +6454,Tonga,2009,0,0,0,1,1,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6455,Tonga,2010,0,0,0,1,0,1,3,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,, +6456,Tonga,2011,0,0,1,0,0,0,1,2,0,1,1,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6457,Tonga,2012,0,0,0,0,2,0,2,0,2,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +6458,Tonga,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,0,0,1,1,0,0,0,3,1,2 +6459,Trinidad and Tobago,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6460,Trinidad and Tobago,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6461,Trinidad and Tobago,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6462,Trinidad and Tobago,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6463,Trinidad and Tobago,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6464,Trinidad and Tobago,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6465,Trinidad and Tobago,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6466,Trinidad and Tobago,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6467,Trinidad and Tobago,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6468,Trinidad and Tobago,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6469,Trinidad and Tobago,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6470,Trinidad and Tobago,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6471,Trinidad and Tobago,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6472,Trinidad and Tobago,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6473,Trinidad and Tobago,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6474,Trinidad and Tobago,1995,2,6,15,10,12,7,4,0,6,4,2,5,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6475,Trinidad and Tobago,1996,0,4,7,9,9,6,6,0,5,5,5,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6476,Trinidad and Tobago,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6477,Trinidad and Tobago,1998,0,9,12,21,14,9,8,1,5,3,5,2,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6478,Trinidad and Tobago,1999,0,11,18,13,8,5,6,0,4,6,7,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6479,Trinidad and Tobago,2000,0,7,18,27,17,7,7,0,5,7,9,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6480,Trinidad and Tobago,2001,5,10,21,36,24,17,18,5,10,11,15,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6481,Trinidad and Tobago,2002,0,8,13,20,12,12,3,0,4,11,3,2,0,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6482,Trinidad and Tobago,2003,0,9,13,10,13,10,6,1,2,2,0,8,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6483,Trinidad and Tobago,2004,,3,10,24,7,10,7,2,3,8,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6484,Trinidad and Tobago,2005,0,10,11,13,21,10,3,0,4,9,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6485,Trinidad and Tobago,2006,2,7,27,23,20,16,12,1,3,10,5,4,8,23,3,2,10,11,14,8,1,3,1,1,3,2,,1,,,3,5,3,,2,,,3,1,,,,,,,,,,,,,,,,, +6486,Trinidad and Tobago,2007,1,10,16,21,28,18,5,0,5,7,7,4,3,5,2,2,2,9,10,9,9,3,2,1,1,2,1,1,1,2,2,4,2,3,0,0,0,0,2,2,1,0,,,,,,,,,,,,,, +6487,Trinidad and Tobago,2008,2,9,15,19,34,29,14,1,11,12,4,8,4,7,9,4,13,7,14,12,15,1,5,6,2,5,3,1,0,0,0,4,2,0,1,0,0,1,0,1,0,0,,,,,,,,,,,,,, +6488,Trinidad and Tobago,2009,2,6,18,26,20,25,13,2,4,11,9,9,4,5,3,3,6,10,21,7,14,7,5,2,4,4,2,3,1,0,2,1,7,2,1,2,0,1,1,1,0,0,,,,,,,,,,,,,, +6489,Trinidad and Tobago,2010,0,11,21,17,32,20,8,0,4,7,7,5,2,2,5,2,7,6,9,10,2,0,2,4,1,3,1,6,3,1,3,1,1,2,0,0,3,2,1,2,1,0,,,,,,,,,,,,,, +6490,Trinidad and Tobago,2011,1,14,27,13,15,16,7,1,6,7,3,4,2,5,4,3,12,11,7,9,6,1,4,2,3,9,1,5,0,2,4,2,2,0,0,0,4,0,1,2,1,1,,,,,,,,,,,,,, +6491,Trinidad and Tobago,2012,0,7,31,22,28,12,11,2,9,11,10,8,4,12,2,2,7,9,12,14,17,0,1,5,4,4,2,2,2,2,1,1,2,2,0,1,1,3,1,0,1,2,,,,,,,,,,,,,, +6492,Trinidad and Tobago,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,14,48,41,36,26,24,7,5,14,7,5,7,10 +6493,Tunisia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6494,Tunisia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6495,Tunisia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6496,Tunisia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6497,Tunisia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6498,Tunisia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6499,Tunisia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6500,Tunisia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6501,Tunisia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6502,Tunisia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6503,Tunisia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6504,Tunisia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6505,Tunisia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6506,Tunisia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6507,Tunisia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6508,Tunisia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6509,Tunisia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6510,Tunisia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6511,Tunisia,1998,11,134,206,155,108,88,95,12,80,65,43,39,43,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6512,Tunisia,1999,18,137,221,181,106,88,129,15,80,76,62,40,29,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6513,Tunisia,2000,16,139,208,156,109,65,101,7,68,59,43,21,21,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6514,Tunisia,2001,23,141,185,157,103,83,100,9,62,42,47,30,42,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6515,Tunisia,2002,1,112,184,153,99,67,65,6,55,50,36,28,34,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6516,Tunisia,2003,3,100,164,129,95,66,74,7,57,56,36,34,24,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6517,Tunisia,2004,9,100,181,128,123,62,91,7,44,55,39,47,19,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6518,Tunisia,2005,5,103,172,133,115,53,81,7,66,61,39,36,16,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6519,Tunisia,2006,5,125,174,119,111,58,85,3,53,52,33,33,33,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6520,Tunisia,2007,1,124,171,117,104,71,75,11,69,54,42,28,29,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6521,Tunisia,2008,6,130,188,118,125,80,59,7,68,57,35,24,18,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6522,Tunisia,2009,6,80,175,122,134,71,81,7,52,55,43,42,18,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6523,Tunisia,2010,9,115,194,170,125,93,88,4,64,64,39,34,40,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6524,Tunisia,2011,6,110,194,118,126,108,63,10,60,60,50,44,35,47,1,24,29,19,19,23,34,0,20,14,17,21,11,14,59,107,127,75,88,49,66,67,165,209,191,155,142,113,,,,,,,,,,,,,, +6525,Tunisia,2012,10,88,191,149,114,93,88,7,51,56,46,48,46,72,2,19,39,35,23,30,31,4,13,16,18,16,16,20,87,124,123,99,105,74,80,94,200,225,189,186,162,105,,,,,,,,,,,,,, +6526,Tunisia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,210,360,288,216,182,177,105,239,349,230,228,189,171 +6527,Turkey,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6528,Turkey,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6529,Turkey,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6530,Turkey,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6531,Turkey,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6532,Turkey,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6533,Turkey,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6534,Turkey,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6535,Turkey,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6536,Turkey,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6537,Turkey,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6538,Turkey,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6539,Turkey,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6540,Turkey,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6541,Turkey,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6542,Turkey,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6543,Turkey,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6544,Turkey,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6545,Turkey,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6546,Turkey,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6547,Turkey,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6548,Turkey,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6549,Turkey,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6550,Turkey,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6551,Turkey,2004,0,50,38,50,41,28,19,2,24,21,8,4,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6552,Turkey,2005,33,1148,1295,1028,963,534,429,50,699,474,243,175,166,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6553,Turkey,2006,40,1212,1391,1003,1045,575,473,56,769,507,235,155,149,256,271,727,693,511,426,321,346,272,531,365,194,120,122,170,227,759,581,349,265,210,266,247,610,576,446,386,339,348,,,,,,,,,,,,,, +6554,Turkey,2007,50,1091,1245,984,978,571,512,63,708,531,246,165,128,255,239,649,636,419,390,251,301,207,516,332,172,135,96,149,201,735,601,347,267,212,288,192,597,613,466,473,415,383,,,,,,,,,,,,,, +6555,Turkey,2008,48,940,1090,953,947,607,453,57,653,485,233,152,139,236,227,617,600,379,344,287,281,226,459,339,170,121,109,166,211,591,535,319,278,232,274,180,510,588,461,431,409,423,,,,,,,,,,,,,, +6556,Turkey,2009,34,817,986,729,865,500,432,36,479,469,171,137,127,225,211,554,558,375,384,260,310,248,452,341,174,137,121,164,210,563,505,321,288,232,295,201,545,586,458,513,463,467,,,,,,,,,,,,,, +6557,Turkey,2010,23,631,779,703,778,514,407,33,485,384,193,141,101,203,246,476,500,362,367,273,313,222,450,359,140,138,147,198,205,502,478,363,301,275,335,150,490,587,458,509,475,489,,,,,,,,,,,,,, +6558,Turkey,2011,22,550,693,608,696,482,412,25,409,385,195,117,121,212,212,441,452,343,331,314,310,212,380,298,150,127,159,196,140,519,468,311,307,325,353,133,426,602,496,501,493,491,,,,,,,,,,,,,, +6559,Turkey,2012,20,507,655,575,650,476,398,30,369,308,168,97,105,227,170,396,434,330,334,340,363,174,349,288,175,118,133,225,151,449,462,346,298,261,293,127,364,544,419,474,442,491,,,,,,,,,,,,,, +6560,Turkey,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,282,1276,1313,1175,1378,1114,1151,299,998,1136,743,663,682,960 +6561,Turkmenistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6562,Turkmenistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6563,Turkmenistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6564,Turkmenistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6565,Turkmenistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6566,Turkmenistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6567,Turkmenistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6568,Turkmenistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6569,Turkmenistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6570,Turkmenistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6571,Turkmenistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6572,Turkmenistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6573,Turkmenistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6574,Turkmenistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6575,Turkmenistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6576,Turkmenistan,1995,1,11,188,0,79,30,0,2,15,146,0,47,25,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6577,Turkmenistan,1996,0,15,114,101,44,37,23,2,12,75,72,25,19,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6578,Turkmenistan,1997,2,14,208,77,90,69,10,0,10,95,75,47,45,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6579,Turkmenistan,1998,0,100,210,131,64,48,12,2,59,69,43,28,16,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6580,Turkmenistan,1999,5,129,225,174,77,43,17,2,51,103,65,32,27,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6581,Turkmenistan,2000,16,103,185,144,127,31,21,19,73,140,76,31,34,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6582,Turkmenistan,2001,1,169,295,196,93,46,21,3,113,137,70,40,32,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6583,Turkmenistan,2002,2,164,249,224,112,38,21,3,113,143,74,57,34,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6584,Turkmenistan,2003,3,148,265,212,112,37,14,5,94,139,84,42,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6585,Turkmenistan,2004,0,129,250,174,123,37,12,2,90,128,68,45,26,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6586,Turkmenistan,2005,2,148,181,146,97,51,13,3,100,101,72,46,27,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6587,Turkmenistan,2006,0,140,273,191,120,33,18,5,107,115,72,34,24,23,8,140,180,126,71,35,12,7,87,100,62,24,24,12,9,38,42,28,15,14,4,9,18,23,30,12,10,4,,,,,,,,,,,,,, +6588,Turkmenistan,2007,2,176,272,224,137,56,23,6,129,132,81,69,36,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6589,Turkmenistan,2008,3,176,235,201,164,56,24,4,126,146,81,56,29,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6590,Turkmenistan,2009,0,178,223,221,155,59,32,5,146,119,90,65,47,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6591,Turkmenistan,2010,1,130,212,183,141,51,26,2,112,112,74,46,38,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6592,Turkmenistan,2011,0,117,179,167,134,91,23,1,113,115,94,50,33,20,26,93,151,149,123,71,15,24,103,95,79,42,20,12,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6593,Turkmenistan,2012,1,111,200,171,135,62,20,0,137,120,56,64,37,33,22,204,170,131,93,43,11,21,112,142,61,63,37,7,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6594,Turkmenistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6595,Turks and Caicos Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6596,Turks and Caicos Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6597,Turks and Caicos Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6598,Turks and Caicos Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6599,Turks and Caicos Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6600,Turks and Caicos Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6601,Turks and Caicos Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6602,Turks and Caicos Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6603,Turks and Caicos Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6604,Turks and Caicos Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6605,Turks and Caicos Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6606,Turks and Caicos Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6607,Turks and Caicos Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6608,Turks and Caicos Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6609,Turks and Caicos Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6610,Turks and Caicos Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6611,Turks and Caicos Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6612,Turks and Caicos Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6613,Turks and Caicos Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6614,Turks and Caicos Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6615,Turks and Caicos Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6616,Turks and Caicos Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6617,Turks and Caicos Islands,2002,,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6618,Turks and Caicos Islands,2003,0,0,2,0,0,0,0,0,0,2,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6619,Turks and Caicos Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6620,Turks and Caicos Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6621,Turks and Caicos Islands,2006,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6622,Turks and Caicos Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6623,Turks and Caicos Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6624,Turks and Caicos Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6625,Turks and Caicos Islands,2010,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6626,Turks and Caicos Islands,2011,0,2,3,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6627,Turks and Caicos Islands,2012,0,0,,2,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +6628,Turks and Caicos Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,, +6629,Tuvalu,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6630,Tuvalu,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6631,Tuvalu,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6632,Tuvalu,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6633,Tuvalu,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6634,Tuvalu,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6635,Tuvalu,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6636,Tuvalu,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6637,Tuvalu,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6638,Tuvalu,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6639,Tuvalu,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6640,Tuvalu,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6641,Tuvalu,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6642,Tuvalu,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6643,Tuvalu,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6644,Tuvalu,1995,1,0,1,0,0,1,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6645,Tuvalu,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6646,Tuvalu,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6647,Tuvalu,1998,1,,3,2,,1,1,6,,1,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6648,Tuvalu,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6649,Tuvalu,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6650,Tuvalu,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6651,Tuvalu,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6652,Tuvalu,2003,4,2,0,1,6,0,0,0,3,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6653,Tuvalu,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6654,Tuvalu,2005,,,,,1,1,,,1,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6655,Tuvalu,2006,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6656,Tuvalu,2007,1,1,0,2,0,0,2,2,0,0,0,1,3,0,,,,,,,,,1,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,, +6657,Tuvalu,2008,2,2,1,0,1,0,0,0,1,2,2,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,, +6658,Tuvalu,2009,,1,,1,,,,1,,,1,2,1,1,,,,,,,,,,,,,,,3,2,,1,,,,1,1,,1,,,,,,,,,,,,,,,,, +6659,Tuvalu,2010,0,1,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,, +6660,Tuvalu,2011,1,1,,,,1,,,,,,1,,,,,,2,1,,,1,,,,,,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,, +6661,Tuvalu,2012,,1,,1,1,,,2,1,,,2,,,,,,,1,,1,,,,,,,,2,1,1,1,1,,1,,,1,,,1,,,,,,,,,,,,,,, +6662,Tuvalu,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,4,1,0,2,2,2,1,2,1,0,3,0,0 +6663,Uganda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6664,Uganda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6665,Uganda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6666,Uganda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6667,Uganda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6668,Uganda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6669,Uganda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6670,Uganda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6671,Uganda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6672,Uganda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6673,Uganda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6674,Uganda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6675,Uganda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6676,Uganda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6677,Uganda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6678,Uganda,1995,370,1193,2491,1797,1115,602,323,402,1376,1845,1104,635,312,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6679,Uganda,1996,372,1271,2706,2026,1252,646,353,455,1482,2099,1246,728,379,160,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6680,Uganda,1997,340,1485,3278,2919,1439,733,353,375,1700,2489,1368,812,379,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6681,Uganda,1998,334,1512,3672,2491,1429,676,428,467,1682,2760,1441,744,395,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6682,Uganda,1999,310,1510,3475,2526,1354,613,413,434,1654,2591,1415,680,331,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6683,Uganda,2000,283,1511,3497,2479,1279,607,395,400,1649,2782,1510,671,316,163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6684,Uganda,2001,231,1461,3483,2540,1242,638,392,334,1603,2656,1528,703,292,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6685,Uganda,2002,259,1503,3783,2865,1399,723,465,371,1689,3011,1708,765,374,184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6686,Uganda,2003,261,1643,4142,3011,1578,719,501,377,1770,3176,1815,749,356,214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6687,Uganda,2004,284,1803,4222,3269,1599,810,525,371,1803,3110,1780,812,358,193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6688,Uganda,2005,257,1598,4075,3209,1576,725,539,371,1811,3099,1800,818,389,257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6689,Uganda,2006,255,1624,4084,3391,1591,718,511,363,1792,2909,1736,812,332,238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6690,Uganda,2007,234,1741,4406,3551,1681,766,505,343,1874,3008,1742,824,382,246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6691,Uganda,2008,269,1953,4697,3922,1981,875,565,382,2006,2985,1749,862,314,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6692,Uganda,2009,250,1853,4816,4115,2089,901,578,372,2151,2919,1673,811,369,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6693,Uganda,2010,268,2055,4735,4133,2214,905,613,401,1964,2923,1691,924,365,248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6694,Uganda,2011,295,2075,5044,4613,2466,994,604,400,2092,2853,1809,973,409,313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6695,Uganda,2012,272,2174,5029,4493,2479,1015,633,364,2194,2912,1733,864,419,281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6696,Uganda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,263,2135,5323,4624,2490,1026,714,386,2160,2830,1756,910,450,341 +6697,Ukraine,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6698,Ukraine,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6699,Ukraine,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6700,Ukraine,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6701,Ukraine,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6702,Ukraine,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6703,Ukraine,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6704,Ukraine,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6705,Ukraine,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6706,Ukraine,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6707,Ukraine,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6708,Ukraine,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6709,Ukraine,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6710,Ukraine,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6711,Ukraine,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6712,Ukraine,1995,10,385,1076,2064,1515,1087,437,21,314,380,327,182,185,280,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6713,Ukraine,1996,9,569,1199,2318,1704,1264,544,13,379,410,397,196,192,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6714,Ukraine,1997,12,623,1310,2107,1718,1141,555,22,383,474,359,256,126,377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6715,Ukraine,1998,24,687,1500,2460,1873,1140,576,36,468,556,431,248,194,393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6716,Ukraine,1999,11,661,1463,2351,1825,1067,557,25,485,577,478,297,222,393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6717,Ukraine,2000,21,693,1552,2385,2007,1062,532,41,487,590,447,298,218,405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6718,Ukraine,2001,9,757,1721,2720,2393,1050,559,18,544,649,525,354,235,418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6719,Ukraine,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6720,Ukraine,2003,10,850,2033,2808,2634,983,617,29,514,745,557,363,221,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6721,Ukraine,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6722,Ukraine,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6723,Ukraine,2006,8,926,2522,2979,2714,1087,568,16,600,909,704,446,246,481,,,,,,,,,,,,,,,256,398,553,474,379,216,191,183,295,359,280,283,173,254,,,,,,,,,,,,,, +6724,Ukraine,2007,14,1556,4507,5206,5024,2130,1090,7,982,1661,1314,855,438,861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6725,Ukraine,2008,9,901,2696,2859,2769,1140,574,24,585,979,762,544,255,477,72,1373,2961,2720,2722,1353,912,104,1072,1515,1029,746,391,535,221,311,530,427,342,195,154,151,199,315,255,192,156,212,,,,,,,,,,,,,, +6726,Ukraine,2009,15,953,2506,2656,2384,1073,570,15,531,986,717,470,254,502,91,1340,2761,2442,2170,1251,802,112,991,1433,955,701,377,508,176,253,626,499,353,208,141,171,218,327,287,233,163,203,,,,,,,,,,,,,, +6727,Ukraine,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,175,233,509,439,289,178,138,127,183,327,246,186,161,164,,,,,,,,,,,,,, +6728,Ukraine,2011,8,539,1991,2209,1796,881,377,11,348,741,603,388,230,380,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6729,Ukraine,2012,9,546,2028,2393,1926,965,389,10,334,771,609,401,218,431,99,1020,2949,2713,2190,1310,749,105,891,1617,1162,722,440,492,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6730,Ukraine,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,324,1500,5578,6555,5255,2994,1435,314,1274,2906,2309,1506,953,1241 +6731,United Arab Emirates,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6732,United Arab Emirates,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6733,United Arab Emirates,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6734,United Arab Emirates,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6735,United Arab Emirates,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6736,United Arab Emirates,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6737,United Arab Emirates,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6738,United Arab Emirates,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6739,United Arab Emirates,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6740,United Arab Emirates,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6741,United Arab Emirates,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6742,United Arab Emirates,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6743,United Arab Emirates,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6744,United Arab Emirates,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6745,United Arab Emirates,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6746,United Arab Emirates,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6747,United Arab Emirates,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6748,United Arab Emirates,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6749,United Arab Emirates,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6750,United Arab Emirates,1999,4,9,3,2,4,6,5,9,11,5,3,0,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6751,United Arab Emirates,2000,2,4,4,6,5,12,10,3,16,1,3,0,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6752,United Arab Emirates,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6753,United Arab Emirates,2002,1,2,0,6,6,10,0,3,3,8,3,4,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6754,United Arab Emirates,2003,2,10,8,12,3,2,10,4,9,5,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6755,United Arab Emirates,2004,1,7,6,7,3,1,7,3,6,2,7,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6756,United Arab Emirates,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6757,United Arab Emirates,2006,0,5,3,7,3,1,4,2,6,4,5,3,4,5,2,1,0,3,1,1,0,5,1,1,2,0,1,0,0,0,4,0,0,2,1,3,0,3,0,1,1,1,,,,,,,,,,,,,, +6758,United Arab Emirates,2007,2,5,6,3,4,3,10,1,8,6,3,2,0,0,1,2,0,0,0,3,5,2,1,2,1,1,1,1,1,1,1,0,1,0,1,4,2,1,2,1,0,1,,,,,,,,,,,,,, +6759,United Arab Emirates,2008,0,6,1,7,5,3,6,0,10,4,1,1,3,3,1,2,2,0,0,0,1,3,1,2,0,1,1,3,4,4,0,1,0,3,0,1,1,4,0,3,1,3,,,,,,,,,,,,,, +6760,United Arab Emirates,2009,2,8,9,8,6,4,4,0,8,5,2,7,0,6,3,0,0,2,1,1,1,4,0,2,0,0,0,1,5,2,3,2,3,0,1,2,3,4,0,2,0,3,,,,,,,,,,,,,, +6761,United Arab Emirates,2010,1,7,13,7,3,4,4,1,2,4,1,5,1,3,3,1,5,0,2,3,3,4,4,0,0,0,0,3,3,3,4,4,0,4,2,6,6,8,4,0,0,3,,,,,,,,,,,,,, +6762,United Arab Emirates,2011,0,3,7,3,5,1,3,4,6,6,3,2,1,2,2,5,5,3,3,1,2,1,1,2,0,0,0,2,2,4,3,2,1,2,4,0,5,0,2,2,1,2,,,,,,,,,,,,,, +6763,United Arab Emirates,2012,0,2,4,4,5,5,2,0,5,2,2,3,4,4,0,0,3,1,1,1,2,1,4,0,0,1,0,1,2,1,3,3,0,0,2,0,4,2,1,1,0,1,,,,,,,,,,,,,, +6764,United Arab Emirates,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,9,9,6,5,10,5,4,9,3,3,1,6 +6765,United Kingdom of Great Britain and Northern Ireland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6766,United Kingdom of Great Britain and Northern Ireland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6767,United Kingdom of Great Britain and Northern Ireland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6768,United Kingdom of Great Britain and Northern Ireland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6769,United Kingdom of Great Britain and Northern Ireland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6770,United Kingdom of Great Britain and Northern Ireland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6771,United Kingdom of Great Britain and Northern Ireland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6772,United Kingdom of Great Britain and Northern Ireland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6773,United Kingdom of Great Britain and Northern Ireland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6774,United Kingdom of Great Britain and Northern Ireland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6775,United Kingdom of Great Britain and Northern Ireland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6776,United Kingdom of Great Britain and Northern Ireland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6777,United Kingdom of Great Britain and Northern Ireland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6778,United Kingdom of Great Britain and Northern Ireland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6779,United Kingdom of Great Britain and Northern Ireland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6780,United Kingdom of Great Britain and Northern Ireland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6781,United Kingdom of Great Britain and Northern Ireland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6782,United Kingdom of Great Britain and Northern Ireland,1997,2,68,87,90,84,60,107,8,67,64,43,34,24,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6783,United Kingdom of Great Britain and Northern Ireland,1998,11,103,164,141,108,105,225,9,105,103,71,44,39,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6784,United Kingdom of Great Britain and Northern Ireland,1999,8,68,93,68,53,51,126,6,55,80,60,29,30,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6785,United Kingdom of Great Britain and Northern Ireland,2000,8,86,130,96,87,75,138,9,95,114,60,31,31,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6786,United Kingdom of Great Britain and Northern Ireland,2001,10,99,135,105,96,81,117,15,74,104,57,54,38,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6787,United Kingdom of Great Britain and Northern Ireland,2002,6,94,142,132,98,90,153,6,82,131,66,44,33,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6788,United Kingdom of Great Britain and Northern Ireland,2003,13,101,182,128,81,59,92,14,108,148,88,47,17,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6789,United Kingdom of Great Britain and Northern Ireland,2004,10,118,203,148,103,85,94,13,126,176,85,47,33,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6790,United Kingdom of Great Britain and Northern Ireland,2005,9,135,200,166,95,95,124,14,115,163,80,39,28,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6791,United Kingdom of Great Britain and Northern Ireland,2006,9,173,244,213,148,88,191,22,168,192,112,60,42,97,103,230,391,240,175,153,320,113,223,292,184,117,86,198,48,266,589,382,186,141,176,81,261,502,310,220,155,236,,,,,,,,,,,,,, +6792,United Kingdom of Great Britain and Northern Ireland,2007,13,183,286,223,169,97,202,20,145,222,91,58,45,138,145,224,379,248,204,218,274,142,210,322,180,113,133,198,202,548,1000,590,366,261,457,225,432,782,478,303,248,402,,,,,,,,,,,,,, +6793,United Kingdom of Great Britain and Northern Ireland,2008,5,125,188,155,111,61,99,16,134,181,90,27,28,62,108,172,317,192,143,110,202,104,154,245,145,108,65,146,64,222,513,330,186,92,154,80,172,426,277,211,118,177,,,,,,,,,,,,,, +6794,United Kingdom of Great Britain and Northern Ireland,2009,4,136,207,142,96,64,95,18,111,159,77,39,24,48,93,261,343,246,167,135,239,114,179,257,156,131,84,162,63,202,528,390,203,114,177,50,198,438,299,206,152,181,,,,,,,,,,,,,, +6795,United Kingdom of Great Britain and Northern Ireland,2010,7,132,170,132,109,59,106,15,112,128,82,43,39,55,95,237,372,226,176,168,232,106,193,266,166,110,85,176,53,242,619,426,206,126,174,57,204,423,296,209,142,174,,,,,,,,,,,,,, +6796,United Kingdom of Great Britain and Northern Ireland,2011,3,146,205,147,110,79,102,19,136,139,78,48,27,50,100,279,388,266,202,145,295,115,179,300,165,111,114,170,65,288,695,410,236,146,195,70,200,503,345,231,149,177,,,,,,,,,,,,,, +6797,United Kingdom of Great Britain and Northern Ireland,2012,8,156,184,137,118,88,88,17,109,141,81,55,17,52,121,272,401,230,199,150,259,112,181,259,179,120,91,177,49,260,702,464,230,144,166,68,191,505,315,215,152,215,,,,,,,,,,,,,, +6798,United Kingdom of Great Britain and Northern Ireland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,155,588,1158,858,590,378,558,156,404,839,552,406,280,462 +6799,United Republic of Tanzania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6800,United Republic of Tanzania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6801,United Republic of Tanzania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6802,United Republic of Tanzania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6803,United Republic of Tanzania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6804,United Republic of Tanzania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6805,United Republic of Tanzania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6806,United Republic of Tanzania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6807,United Republic of Tanzania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6808,United Republic of Tanzania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6809,United Republic of Tanzania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6810,United Republic of Tanzania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6811,United Republic of Tanzania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6812,United Republic of Tanzania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6813,United Republic of Tanzania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6814,United Republic of Tanzania,1995,183,2108,4091,2916,1754,1007,640,201,1904,2532,1324,735,380,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6815,United Republic of Tanzania,1996,171,2176,4275,3107,1843,1109,656,221,2087,2885,1461,806,472,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6816,United Republic of Tanzania,1997,188,2210,4538,3066,1090,1134,699,251,2146,2876,1502,908,501,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6817,United Republic of Tanzania,1998,198,2528,4910,3400,1973,1112,767,240,2234,3243,1686,835,466,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6818,United Republic of Tanzania,1999,170,2422,4887,3401,2068,1160,823,230,2160,3469,1724,876,501,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6819,United Republic of Tanzania,2000,200,2357,4836,3430,2022,1202,834,257,2106,3426,1738,868,494,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6820,United Republic of Tanzania,2001,212,2302,4912,3545,2031,1136,930,312,2117,3609,1847,891,522,319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6821,United Republic of Tanzania,2002,187,2309,4814,3525,2075,1211,944,241,1927,3511,1706,907,475,304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6822,United Republic of Tanzania,2003,181,2172,4964,3728,2166,1237,1025,244,2063,3504,1833,929,509,344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6823,United Republic of Tanzania,2004,208,2216,5203,3884,2254,1272,1129,280,1996,3537,1960,1011,544,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6824,United Republic of Tanzania,2005,190,2062,4939,4025,2310,1279,1054,271,1852,3521,1892,968,547,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6825,United Republic of Tanzania,2006,204,2060,4926,3832,2154,1348,1029,293,1745,3326,1970,995,507,335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6826,United Republic of Tanzania,2007,189,2021,4665,3855,2231,1317,1066,238,1735,3388,1945,947,535,388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6827,United Republic of Tanzania,2008,191,1963,4595,3874,2349,1230,1077,233,1663,3152,1901,964,564,415,,,21935,,,,,,,,,,,,,,,12784,,,,,,,,,,,,,,,,,,,,,,,, +6828,United Republic of Tanzania,2009,196,2081,4581,4125,2388,1293,1123,247,1639,3102,2080,1060,564,416,1371,,10964,,,,,1134,,8281,,,,,1262,,6036,,,,,986,,5121,,,,,,,,,,,,,,,,,, +6829,United Republic of Tanzania,2010,232,1975,4493,4141,2427,1309,1161,248,1689,2988,2013,1044,578,471,1369,10589,,,,,,1030,8206,,,,,,1234,6056,,,,,,1103,5322,,,,,,,,,,,,,,,,,,, +6830,United Republic of Tanzania,2011,190,1975,4405,4073,2402,1211,1127,221,1660,2896,2140,944,490,381,1255,,,,,,,1062,,,,,,,1188,,,,,,,967,,,,,,,,,,,,,,,,,,,, +6831,United Republic of Tanzania,2012,209,2091,4721,4409,2462,1304,1121,284,1652,2917,2115,1024,508,424,1379,,,,,,,1138,,,,,,,1235,,,,,,,1070,,,,,,,,,,,,,,,,,,,, +6832,United Republic of Tanzania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3589,,,,,,,3069,,,,,, +6833,United States of America,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6834,United States of America,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6835,United States of America,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6836,United States of America,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6837,United States of America,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6838,United States of America,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6839,United States of America,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6840,United States of America,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6841,United States of America,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6842,United States of America,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6843,United States of America,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6844,United States of America,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6845,United States of America,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6846,United States of America,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6847,United States of America,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6848,United States of America,1995,19,355,876,1417,1121,742,1099,26,280,579,499,285,202,591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6849,United States of America,1996,15,333,815,1219,1073,678,1007,21,289,487,478,279,217,541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6850,United States of America,1997,12,330,701,1127,979,679,944,28,269,449,447,254,201,514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6851,United States of America,1998,10,321,663,1009,1007,628,914,15,269,425,424,267,179,492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6852,United States of America,1999,18,331,616,1011,930,601,801,16,232,391,394,245,244,444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6853,United States of America,2000,6,365,602,906,904,577,738,14,246,376,349,253,152,396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6854,United States of America,2001,17,320,613,824,876,524,649,21,239,410,346,247,176,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6855,United States of America,2002,14,343,562,813,795,490,592,15,233,423,362,255,167,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6856,United States of America,2003,11,365,526,754,828,487,650,12,277,353,310,269,169,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6857,United States of America,2004,12,362,547,728,829,504,582,19,265,339,302,252,166,344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6858,United States of America,2005,14,383,535,666,767,499,624,11,241,348,276,242,161,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6859,United States of America,2006,12,388,568,659,759,531,596,11,257,384,263,212,146,303,292,331,476,541,655,499,772,276,269,397,321,272,209,481,114,150,286,265,220,163,267,102,143,290,245,212,174,256,,,,,,,,,,,,,, +6860,United States of America,2007,12,414,490,572,744,533,562,12,257,338,260,225,135,308,286,362,511,469,630,476,724,286,260,384,294,279,267,497,90,137,284,227,208,155,215,93,148,263,219,211,176,270,,,,,,,,,,,,,, +6861,United States of America,2008,11,375,513,495,725,526,561,22,220,329,269,224,172,300,311,323,486,505,605,449,692,260,246,334,303,283,233,483,82,146,284,242,225,147,232,97,129,261,219,181,162,231,,,,,,,,,,,,,, +6862,United States of America,2009,11,299,446,431,564,452,496,6,203,288,221,211,135,247,248,279,452,452,489,428,662,217,234,340,284,258,225,413,77,121,231,206,176,144,232,80,120,271,205,165,141,210,,,,,,,,,,,,,, +6863,United States of America,2010,5,246,360,371,505,403,466,9,195,265,183,165,130,223,243,245,428,436,533,425,640,203,202,278,245,270,193,410,62,114,233,204,140,123,166,70,104,214,162,133,126,177,,,,,,,,,,,,,, +6864,United States of America,2011,12,235,403,374,557,434,486,15,160,254,199,150,138,269,227,231,365,376,437,459,607,185,195,303,245,214,212,426,69,94,203,176,184,163,208,64,93,198,195,167,132,205,,,,,,,,,,,,,, +6865,United States of America,2012,10,239,322,333,502,455,529,14,161,262,169,175,148,243,180,225,378,346,383,443,628,173,198,295,218,216,200,373,53,88,217,169,163,141,214,54,100,226,180,156,127,212,,,,,,,,,,,,,, +6866,United States of America,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,249,529,829,793,937,926,1259,229,415,693,528,470,463,786 +6867,Uruguay,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6868,Uruguay,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6869,Uruguay,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6870,Uruguay,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6871,Uruguay,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6872,Uruguay,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6873,Uruguay,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6874,Uruguay,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6875,Uruguay,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6876,Uruguay,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6877,Uruguay,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6878,Uruguay,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6879,Uruguay,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6880,Uruguay,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6881,Uruguay,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6882,Uruguay,1995,4,28,40,35,49,38,50,2,21,26,18,12,9,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6883,Uruguay,1996,4,34,43,58,59,53,42,4,24,35,17,21,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6884,Uruguay,1997,3,37,44,53,53,55,53,5,26,28,29,12,8,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6885,Uruguay,1998,2,30,47,52,47,38,39,2,30,29,15,14,6,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6886,Uruguay,1999,1,45,48,42,46,48,41,4,20,25,33,14,11,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6887,Uruguay,2000,0,36,48,45,41,30,34,2,28,22,21,13,12,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6888,Uruguay,2001,2,33,38,49,42,31,44,4,25,31,7,15,3,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6889,Uruguay,2002,1,33,33,37,36,23,32,1,25,25,20,10,11,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6890,Uruguay,2003,3,46,50,35,42,38,26,1,28,24,13,13,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6891,Uruguay,2004,1,38,59,53,48,26,40,2,34,25,12,17,11,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6892,Uruguay,2005,1,42,48,39,45,34,36,1,33,30,17,9,8,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6893,Uruguay,2006,1,38,53,34,30,38,29,4,21,19,11,6,11,10,1,9,23,20,17,11,21,4,7,10,4,10,4,11,2,10,6,6,6,8,2,4,2,4,5,4,2,9,,,,,,,,,,,,,, +6894,Uruguay,2007,1,39,69,37,50,39,39,1,23,26,22,14,7,13,4,7,20,11,20,12,13,3,9,10,8,6,0,9,3,5,8,4,4,5,7,1,1,8,1,4,1,5,,,,,,,,,,,,,, +6895,Uruguay,2008,1,49,71,64,45,28,34,4,26,35,26,15,13,13,4,9,20,15,13,14,16,5,10,15,8,16,3,11,1,6,12,8,3,0,4,3,8,5,6,5,3,5,,,,,,,,,,,,,, +6896,Uruguay,2009,1,43,64,50,57,42,38,4,21,32,22,14,6,15,11,11,26,19,22,15,17,5,10,12,12,12,10,10,6,4,9,8,6,2,8,1,2,4,5,4,2,5,,,,,,,,,,,,,, +6897,Uruguay,2010,1,46,70,35,46,33,31,3,24,36,12,10,5,16,12,4,11,15,19,7,15,9,8,5,17,7,9,16,3,6,9,5,5,6,4,4,4,8,2,5,3,6,,,,,,,,,,,,,, +6898,Uruguay,2011,0,58,93,55,45,36,37,1,29,55,19,12,11,16,17,19,31,28,17,20,19,28,8,18,9,9,14,12,1,3,11,5,1,4,3,3,2,3,1,5,1,5,,,,,,,,,,,,,, +6899,Uruguay,2012,3,38,98,56,52,39,29,2,25,26,21,15,13,15,22,20,28,30,30,13,22,18,19,18,9,12,12,16,2,1,8,10,8,5,1,1,2,5,3,5,3,5,,,,,,,,,,,,,, +6900,Uruguay,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,80,142,102,100,83,66,30,35,71,44,31,40,35 +6901,US Virgin Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6902,US Virgin Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6903,US Virgin Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6904,US Virgin Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6905,US Virgin Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6906,US Virgin Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6907,US Virgin Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6908,US Virgin Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6909,US Virgin Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6910,US Virgin Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6911,US Virgin Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6912,US Virgin Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6913,US Virgin Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6914,US Virgin Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6915,US Virgin Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6916,US Virgin Islands,1995,0,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6917,US Virgin Islands,1996,0,0,1,1,0,1,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6918,US Virgin Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6919,US Virgin Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6920,US Virgin Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6921,US Virgin Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6922,US Virgin Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6923,US Virgin Islands,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6924,US Virgin Islands,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6925,US Virgin Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6926,US Virgin Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6927,US Virgin Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6928,US Virgin Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6929,US Virgin Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6930,US Virgin Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6931,US Virgin Islands,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6932,US Virgin Islands,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6933,US Virgin Islands,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6934,US Virgin Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6935,Uzbekistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6936,Uzbekistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6937,Uzbekistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6938,Uzbekistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6939,Uzbekistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6940,Uzbekistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6941,Uzbekistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6942,Uzbekistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6943,Uzbekistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6944,Uzbekistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6945,Uzbekistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6946,Uzbekistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6947,Uzbekistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6948,Uzbekistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6949,Uzbekistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6950,Uzbekistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6951,Uzbekistan,1996,2,96,1042,650,0,196,0,5,87,799,324,0,149,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6952,Uzbekistan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6953,Uzbekistan,1998,0,6,5,0,1,1,0,0,9,9,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6954,Uzbekistan,1999,4,429,926,519,262,146,100,11,346,647,339,186,136,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6955,Uzbekistan,2000,6,351,749,510,346,213,107,11,261,547,288,213,112,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6956,Uzbekistan,2001,7,390,905,523,396,253,133,21,337,631,338,267,216,181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6957,Uzbekistan,2002,10,330,481,318,178,87,111,18,277,394,214,127,96,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6958,Uzbekistan,2003,9,487,828,595,412,253,220,29,360,588,353,210,172,174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6959,Uzbekistan,2004,23,512,835,607,502,275,252,31,430,600,341,274,211,226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6960,Uzbekistan,2005,25,596,831,723,522,263,313,40,538,597,375,288,217,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6961,Uzbekistan,2006,19,568,807,717,565,268,329,41,544,597,346,327,224,421,273,696,923,731,685,400,493,193,575,659,501,387,284,401,1385,595,445,316,236,106,161,922,351,320,297,211,111,144,,,,,,,,,,,,,, +6962,Uzbekistan,2007,18,569,768,579,583,282,380,25,485,507,342,255,235,436,187,738,957,746,689,383,548,198,516,649,428,391,294,443,1320,589,467,301,217,119,137,835,307,321,232,189,124,122,,,,,,,,,,,,,, +6963,Uzbekistan,2008,10,515,688,572,544,287,369,23,427,479,309,273,227,394,124,713,907,765,646,361,489,139,477,590,397,333,305,394,1038,499,378,248,164,91,119,674,222,262,194,154,84,87,,,,,,,,,,,,,, +6964,Uzbekistan,2009,12,541,615,566,513,294,319,23,429,501,296,227,241,382,167,755,889,686,619,419,443,141,571,715,415,395,317,411,1213,499,411,264,190,129,129,707,236,300,224,167,120,78,,,,,,,,,,,,,, +6965,Uzbekistan,2010,8,487,574,529,479,293,297,22,365,512,308,248,239,350,155,733,861,664,597,399,453,145,562,673,408,363,335,387,992,451,393,277,207,127,108,556,254,308,195,203,121,96,,,,,,,,,,,,,, +6966,Uzbekistan,2011,8,378,493,453,440,306,253,11,335,418,233,245,293,332,146,594,739,625,588,414,425,103,434,543,348,327,339,333,836,381,345,235,173,132,105,488,258,267,204,185,129,101,,,,,,,,,,,,,, +6967,Uzbekistan,2012,10,360,506,403,449,313,273,9,319,367,237,201,261,322,112,572,796,643,588,423,434,109,421,572,353,373,363,378,833,415,336,265,243,139,126,488,207,289,212,182,134,96,,,,,,,,,,,,,, +6968,Uzbekistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1194,1560,2371,2587,2119,1711,1144,766,1096,1617,1338,1127,1062,1120 +6969,Vanuatu,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6970,Vanuatu,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6971,Vanuatu,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6972,Vanuatu,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6973,Vanuatu,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6974,Vanuatu,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6975,Vanuatu,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6976,Vanuatu,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6977,Vanuatu,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6978,Vanuatu,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6979,Vanuatu,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6980,Vanuatu,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6981,Vanuatu,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6982,Vanuatu,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6983,Vanuatu,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6984,Vanuatu,1995,0,6,2,5,3,4,0,0,5,0,2,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6985,Vanuatu,1996,2,4,2,6,4,4,1,2,10,3,5,3,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6986,Vanuatu,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6987,Vanuatu,1998,2,4,5,1,0,2,2,2,5,9,4,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6988,Vanuatu,1999,0,0,4,1,2,0,0,0,2,10,4,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6989,Vanuatu,2000,2,7,5,1,10,5,2,5,3,15,7,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6990,Vanuatu,2001,1,7,5,4,8,6,1,1,10,4,3,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6991,Vanuatu,2002,0,7,2,3,10,2,1,0,3,1,5,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6992,Vanuatu,2003,1,2,4,7,5,2,3,0,4,4,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6993,Vanuatu,2004,1,7,11,2,6,3,5,3,5,8,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6994,Vanuatu,2005,1,4,5,5,0,4,1,0,5,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6995,Vanuatu,2006,1,5,3,1,4,4,0,2,7,9,2,4,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6996,Vanuatu,2007,1,3,2,4,2,2,2,1,6,8,1,6,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6997,Vanuatu,2008,,4,4,3,5,4,3,,3,4,1,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6998,Vanuatu,2009,0,6,3,3,1,3,2,2,3,5,3,5,4,1,2,0,1,2,3,3,2,2,1,0,1,3,4,1,16,6,6,1,6,1,1,14,2,3,3,2,1,0,,,,,,,,,,,,,, +6999,Vanuatu,2010,4,6,3,1,5,2,0,3,5,3,3,5,3,1,2,0,6,0,5,6,2,3,1,0,1,2,2,3,11,1,0,4,2,1,2,4,2,2,2,3,1,0,,,,,,,,,,,,,, +7000,Vanuatu,2011,2,3,4,6,5,4,2,0,5,7,5,4,2,0,0,1,2,0,2,3,1,0,2,0,1,0,0,2,10,3,3,6,2,1,3,6,2,2,3,2,2,1,,,,,,,,,,,,,, +7001,Vanuatu,2012,0,4,3,4,2,2,2,3,12,5,5,4,2,3,3,1,2,2,0,0,1,3,3,3,3,0,1,0,10,4,8,4,4,1,1,9,5,2,0,2,1,0,,,,,,,,,,,,,, +7002,Vanuatu,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,9,7,11,13,3,17,10,12,3,5,11,7 +7003,Venezuela (Bolivarian Republic of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7004,Venezuela (Bolivarian Republic of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7005,Venezuela (Bolivarian Republic of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7006,Venezuela (Bolivarian Republic of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7007,Venezuela (Bolivarian Republic of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7008,Venezuela (Bolivarian Republic of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7009,Venezuela (Bolivarian Republic of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7010,Venezuela (Bolivarian Republic of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7011,Venezuela (Bolivarian Republic of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7012,Venezuela (Bolivarian Republic of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7013,Venezuela (Bolivarian Republic of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7014,Venezuela (Bolivarian Republic of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7015,Venezuela (Bolivarian Republic of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7016,Venezuela (Bolivarian Republic of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7017,Venezuela (Bolivarian Republic of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7018,Venezuela (Bolivarian Republic of),1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7019,Venezuela (Bolivarian Republic of),1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7020,Venezuela (Bolivarian Republic of),1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7021,Venezuela (Bolivarian Republic of),1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7022,Venezuela (Bolivarian Republic of),1999,32,378,452,420,368,283,346,28,283,315,195,169,134,267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7023,Venezuela (Bolivarian Republic of),2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7024,Venezuela (Bolivarian Republic of),2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7025,Venezuela (Bolivarian Republic of),2002,19,339,429,425,380,246,313,42,274,280,218,158,123,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7026,Venezuela (Bolivarian Republic of),2003,39,361,459,453,405,284,316,46,340,355,240,204,140,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7027,Venezuela (Bolivarian Republic of),2004,24,373,454,459,407,272,316,36,311,324,239,184,135,242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7028,Venezuela (Bolivarian Republic of),2005,35,312,395,413,402,265,332,37,351,299,267,183,146,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7029,Venezuela (Bolivarian Republic of),2006,10,323,405,413,422,267,320,42,322,297,188,173,140,225,213,105,112,140,119,126,180,229,87,103,56,71,83,120,65,125,127,122,84,69,84,68,75,85,84,60,40,69,,,,,,,,,,,,,, +7030,Venezuela (Bolivarian Republic of),2007,17,324,382,390,389,272,295,40,276,271,199,160,147,230,210,86,124,97,126,91,148,177,81,85,74,78,57,101,74,111,127,98,93,61,80,65,94,84,82,73,48,58,,,,,,,,,,,,,, +7031,Venezuela (Bolivarian Republic of),2008,18,364,358,326,389,271,285,25,309,272,228,171,146,182,149,123,144,135,144,98,160,172,73,96,65,70,66,104,49,117,127,93,94,60,86,64,80,92,80,58,57,59,,,,,,,,,,,,,, +7032,Venezuela (Bolivarian Republic of),2009,26,372,385,344,352,258,298,33,284,312,217,212,162,181,159,114,146,140,136,111,125,161,94,116,75,91,70,127,54,98,133,119,97,71,91,53,74,92,77,57,45,51,,,,,,,,,,,,,, +7033,Venezuela (Bolivarian Republic of),2010,22,320,376,333,391,253,288,26,269,306,188,145,147,188,160,108,154,119,142,127,193,160,101,122,81,83,69,139,58,92,112,111,84,69,72,64,75,83,80,71,49,57,,,,,,,,,,,,,, +7034,Venezuela (Bolivarian Republic of),2011,28,340,353,303,363,307,241,25,252,316,178,178,150,190,180,128,137,131,147,108,139,152,93,104,79,76,75,100,66,117,148,112,107,90,86,44,85,97,80,61,57,46,,,,,,,,,,,,,, +7035,Venezuela (Bolivarian Republic of),2012,23,379,405,353,375,319,273,32,276,281,203,167,161,199,152,111,133,117,142,104,127,157,97,101,84,106,82,104,76,113,129,105,84,74,71,64,82,89,88,60,43,65,,,,,,,,,,,,,, +7036,Venezuela (Bolivarian Republic of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,232,631,739,582,635,536,523,229,465,537,354,407,283,402 +7037,Viet Nam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7038,Viet Nam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7039,Viet Nam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7040,Viet Nam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7041,Viet Nam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7042,Viet Nam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7043,Viet Nam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7044,Viet Nam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7045,Viet Nam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7046,Viet Nam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7047,Viet Nam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7048,Viet Nam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7049,Viet Nam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7050,Viet Nam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7051,Viet Nam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7052,Viet Nam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7053,Viet Nam,1996,92,1994,5716,7137,5170,5839,6292,91,1127,2606,3045,2504,3360,3938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7054,Viet Nam,1997,103,2162,6427,8363,5820,5892,6989,73,1163,2809,3302,2590,3614,4340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7055,Viet Nam,1998,56,2441,6567,8765,6143,5925,7274,60,1344,2749,3102,2576,3296,4575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7056,Viet Nam,1999,58,2254,6355,8392,6465,5530,7371,68,1361,2511,3029,2549,3034,4828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7057,Viet Nam,2000,51,2367,6147,8209,6713,5150,7712,64,1334,2320,2754,2594,2847,4907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7058,Viet Nam,2001,39,2756,6319,8457,7054,5205,7643,48,1390,2357,2656,2574,2530,5174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7059,Viet Nam,2002,57,3250,6762,8855,8040,5162,8184,68,1571,2357,2508,2619,2409,4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7060,Viet Nam,2003,49,3475,7036,8486,7965,5066,7793,66,1659,2262,2327,2574,2283,4896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7061,Viet Nam,2004,54,3486,7364,9110,8743,5257,8206,66,1740,2398,2218,2551,2226,4970,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7062,Viet Nam,2005,54,3408,7105,8738,8606,4958,7573,47,1747,2293,2116,2298,2023,4604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7063,Viet Nam,2006,49,3761,7549,8931,8717,5037,7408,62,1827,2381,2036,2283,1996,4400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7064,Viet Nam,2007,48,3587,7431,8391,8451,5046,7026,59,1939,2354,1923,2170,1891,4144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7065,Viet Nam,2008,36,3401,7148,8230,8811,5158,6667,48,1993,2416,1820,2087,1858,3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7066,Viet Nam,2009,41,3122,7152,7731,8333,5494,6162,47,1895,2401,1677,1989,1849,3397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7067,Viet Nam,2010,59,3205,7036,7851,8564,5790,6248,53,1870,2454,1681,1864,1863,3751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7068,Viet Nam,2011,61,3099,6677,7763,8474,6107,5821,64,1863,2325,1681,1814,1878,3124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7069,Viet Nam,2012,58,2993,6689,7680,8481,6315,5920,84,1841,2481,1626,1683,1884,3298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7070,Viet Nam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65,2951,6302,7487,8553,6484,5834,78,1916,2487,1671,1715,1954,3110 +7071,Wallis and Futuna Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7072,Wallis and Futuna Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7073,Wallis and Futuna Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7074,Wallis and Futuna Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7075,Wallis and Futuna Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7076,Wallis and Futuna Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7077,Wallis and Futuna Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7078,Wallis and Futuna Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7079,Wallis and Futuna Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7080,Wallis and Futuna Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7081,Wallis and Futuna Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7082,Wallis and Futuna Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7083,Wallis and Futuna Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7084,Wallis and Futuna Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7085,Wallis and Futuna Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7086,Wallis and Futuna Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7087,Wallis and Futuna Islands,1996,0,1,1,0,0,0,0,0,1,3,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7088,Wallis and Futuna Islands,1997,,,,,,,,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7089,Wallis and Futuna Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7090,Wallis and Futuna Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7091,Wallis and Futuna Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7092,Wallis and Futuna Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7093,Wallis and Futuna Islands,2002,,1,,1,1,,1,,,,,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7094,Wallis and Futuna Islands,2003,0,0,2,2,2,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7095,Wallis and Futuna Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7096,Wallis and Futuna Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7097,Wallis and Futuna Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7098,Wallis and Futuna Islands,2007,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7099,Wallis and Futuna Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7100,Wallis and Futuna Islands,2009,,,1,,,,1,,1,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7101,Wallis and Futuna Islands,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7102,Wallis and Futuna Islands,2011,,,,,,2,,,,,,,,,,,,2,1,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7103,Wallis and Futuna Islands,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7104,Wallis and Futuna Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2 +7105,West Bank and Gaza Strip,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7106,West Bank and Gaza Strip,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7107,West Bank and Gaza Strip,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7108,West Bank and Gaza Strip,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7109,West Bank and Gaza Strip,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7110,West Bank and Gaza Strip,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7111,West Bank and Gaza Strip,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7112,West Bank and Gaza Strip,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7113,West Bank and Gaza Strip,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7114,West Bank and Gaza Strip,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7115,West Bank and Gaza Strip,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7116,West Bank and Gaza Strip,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7117,West Bank and Gaza Strip,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7118,West Bank and Gaza Strip,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7119,West Bank and Gaza Strip,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7120,West Bank and Gaza Strip,1995,1,2,0,0,1,0,3,0,1,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7121,West Bank and Gaza Strip,1996,0,2,2,2,2,2,4,1,2,1,2,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7122,West Bank and Gaza Strip,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7123,West Bank and Gaza Strip,1998,,1,1,,2,,1,,,,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7124,West Bank and Gaza Strip,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7125,West Bank and Gaza Strip,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7126,West Bank and Gaza Strip,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7127,West Bank and Gaza Strip,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7128,West Bank and Gaza Strip,2003,0,1,1,1,3,0,2,0,1,0,0,3,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7129,West Bank and Gaza Strip,2004,,1,1,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7130,West Bank and Gaza Strip,2005,,1,,,1,3,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7131,West Bank and Gaza Strip,2006,0,1,3,4,1,1,2,0,0,0,1,1,1,1,0,0,1,2,1,0,2,0,1,0,0,0,0,0,0,1,2,2,2,3,2,1,3,0,1,1,1,0,,,,,,,,,,,,,, +7132,West Bank and Gaza Strip,2007,1,1,3,2,0,3,1,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,3,3,2,0,1,1,0,2,1,1,0,2,2,0,,,,,,,,,,,,,, +7133,West Bank and Gaza Strip,2008,0,1,1,3,2,2,2,0,2,0,0,1,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,2,1,1,2,1,2,0,3,0,1,1,1,2,,,,,,,,,,,,,, +7134,West Bank and Gaza Strip,2009,0,1,3,1,0,0,1,0,0,0,2,0,1,1,0,0,1,1,0,1,3,0,0,0,1,0,2,0,0,1,1,1,0,0,1,2,3,0,1,2,1,2,,,,,,,,,,,,,, +7135,West Bank and Gaza Strip,2010,0,2,0,2,1,1,3,0,0,1,0,1,2,0,0,0,1,1,0,2,1,0,1,0,0,0,0,0,2,2,2,1,1,0,0,1,0,1,1,1,0,0,,,,,,,,,,,,,, +7136,West Bank and Gaza Strip,2011,1,0,1,1,1,0,3,0,0,1,1,0,2,0,0,0,1,0,1,0,1,0,0,0,0,0,0,2,3,0,1,1,3,1,0,2,1,1,0,0,0,0,,,,,,,,,,,,,, +7137,West Bank and Gaza Strip,2012,0,2,2,1,2,4,2,0,1,1,0,0,1,1,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0,2,2,2,0,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,, +7138,West Bank and Gaza Strip,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7139,Yemen,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7140,Yemen,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7141,Yemen,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7142,Yemen,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7143,Yemen,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7144,Yemen,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7145,Yemen,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7146,Yemen,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7147,Yemen,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7148,Yemen,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7149,Yemen,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7150,Yemen,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7151,Yemen,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7152,Yemen,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7153,Yemen,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7154,Yemen,1995,57,400,605,256,201,148,45,83,420,720,348,200,106,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7155,Yemen,1996,15,91,92,71,45,15,12,14,89,100,73,41,14,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7156,Yemen,1997,87,307,1249,329,213,165,34,196,872,449,474,259,71,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7157,Yemen,1998,83,718,698,491,271,160,115,115,689,632,400,294,158,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7158,Yemen,1999,96,552,531,390,245,161,85,111,557,532,426,244,120,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7159,Yemen,2000,110,789,689,493,314,255,127,161,799,627,517,345,247,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7160,Yemen,2001,82,695,631,491,350,252,114,154,647,562,452,293,192,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7161,Yemen,2002,266,650,559,377,265,148,117,163,500,443,334,244,122,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7162,Yemen,2003,40,581,587,399,250,154,103,74,470,426,317,204,114,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7163,Yemen,2004,49,571,559,377,214,139,76,72,442,376,269,160,86,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7164,Yemen,2005,48,493,553,366,242,149,78,44,426,410,265,181,85,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7165,Yemen,2006,29,535,555,358,246,143,103,55,435,358,244,166,73,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7166,Yemen,2007,23,488,626,379,252,165,119,50,430,374,272,189,113,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7167,Yemen,2008,29,547,541,316,241,155,119,57,473,455,265,179,102,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7168,Yemen,2009,32,509,562,359,248,166,121,58,476,437,269,189,90,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7169,Yemen,2010,68,507,569,322,231,164,138,98,471,409,264,174,106,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7170,Yemen,2011,33,406,471,297,193,143,96,85,446,375,251,168,113,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7171,Yemen,2012,30,436,472,315,232,172,122,75,437,381,246,207,115,81,252,216,234,161,175,162,185,221,244,262,186,215,172,123,195,308,366,235,178,174,111,201,445,448,309,248,156,112,,,,,,,,,,,,,, +7172,Yemen,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,560,1011,1113,799,659,503,446,522,1194,1087,825,736,512,360 +7173,Zambia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7174,Zambia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7175,Zambia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7176,Zambia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7177,Zambia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7178,Zambia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7179,Zambia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7180,Zambia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7181,Zambia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7182,Zambia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7183,Zambia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7184,Zambia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7185,Zambia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7186,Zambia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7187,Zambia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7188,Zambia,1995,91,659,1668,1124,487,231,130,129,1125,1779,717,257,117,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7189,Zambia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7190,Zambia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7191,Zambia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7192,Zambia,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7193,Zambia,2000,349,2175,2610,3045,435,261,174,150,932,1118,1305,186,112,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7194,Zambia,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7195,Zambia,2002,1135,1013,3051,2000,788,162,405,1099,1383,2730,1434,657,297,197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7196,Zambia,2003,302,1733,4182,2390,995,386,308,292,2061,3439,1626,680,297,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7197,Zambia,2004,209,1498,3963,2262,968,313,324,247,1811,2961,1646,608,245,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7198,Zambia,2005,135,1240,3166,2160,917,358,321,168,1507,2463,1433,569,235,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7199,Zambia,2006,150,945,3496,1645,684,323,186,224,1500,2834,1257,452,207,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7200,Zambia,2007,152,1235,2971,1848,805,319,204,195,1335,2193,1188,558,244,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7201,Zambia,2008,101,1120,3244,2094,737,299,229,165,1246,2062,1114,498,187,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7202,Zambia,2009,92,1057,3181,2169,792,270,237,145,1051,1935,1151,468,192,126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7203,Zambia,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7204,Zambia,2011,105,1033,2897,2194,810,280,207,151,940,1683,1063,422,162,99,1057,987,3731,3387,1387,672,591,970,1128,2625,1836,849,422,362,800,530,1524,1459,625,226,237,729,648,1320,910,448,256,196,,,,,,,,,,,,,, +7205,Zambia,2012,141,1003,3088,2412,846,319,220,180,1024,1646,1077,376,189,124,852,855,3103,2877,1252,568,536,785,983,2131,1637,777,380,314,744,526,1423,1364,577,272,248,630,616,1196,808,403,209,158,,,,,,,,,,,,,, +7206,Zambia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1637,2428,7808,6918,2950,1286,1112,1517,2709,5157,3752,1754,941,669 +7207,Zimbabwe,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7208,Zimbabwe,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7209,Zimbabwe,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7210,Zimbabwe,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7211,Zimbabwe,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7212,Zimbabwe,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7213,Zimbabwe,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7214,Zimbabwe,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7215,Zimbabwe,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7216,Zimbabwe,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7217,Zimbabwe,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7218,Zimbabwe,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7219,Zimbabwe,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7220,Zimbabwe,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7221,Zimbabwe,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7222,Zimbabwe,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7223,Zimbabwe,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7224,Zimbabwe,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7225,Zimbabwe,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7226,Zimbabwe,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7227,Zimbabwe,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7228,Zimbabwe,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7229,Zimbabwe,2002,191,600,2548,1662,744,315,159,222,914,2185,1095,421,140,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7230,Zimbabwe,2003,133,874,3048,2228,981,367,205,180,1232,2856,1480,565,225,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7231,Zimbabwe,2004,187,833,2908,2298,1056,366,198,225,1140,2858,1565,622,214,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7232,Zimbabwe,2005,210,837,2264,1855,762,295,656,269,1136,2242,1255,578,193,603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7233,Zimbabwe,2006,215,736,2391,1939,896,348,199,237,1020,2424,1355,632,230,96,1558,699,3268,3394,1729,804,543,1458,1217,4013,2806,1400,577,309,288,253,1024,1001,434,177,127,278,403,1129,821,384,148,92,,,,,,,,,,,,,, +7234,Zimbabwe,2007,138,500,3693,0,716,292,153,185,739,3311,0,553,213,90,2347,6460,740,0,222,89,65,3329,7692,748,0,144,82,46,241,2949,98,0,30,18,14,193,2670,120,0,27,12,9,,,,,,,,,,,,,, +7235,Zimbabwe,2008,127,614,0,3316,704,263,185,145,840,0,2890,467,174,105,1364,837,0,5521,1388,613,490,1262,1263,0,5639,1129,490,303,222,252,0,1862,457,183,147,224,394,0,1622,322,142,104,,,,,,,,,,,,,, +7236,Zimbabwe,2009,125,578,,3471,681,293,192,180,873,,3028,419,229,126,1560,860,,6496,1655,882,861,1425,1334,,7023,1551,729,514,244,266,0,1922,491,231,223,210,394,0,1944,438,182,138,,,,,,,,,,,,,, +7237,Zimbabwe,2010,150,710,2208,1682,761,350,252,173,974,2185,1283,490,265,171,1826,821,3342,3270,1545,882,864,1732,1282,4013,2851,1377,789,563,270,243,902,868,418,229,192,220,319,1058,677,338,181,146,,,,,,,,,,,,,, +7238,Zimbabwe,2011,152,784,2467,2071,780,377,278,174,1084,2161,1386,448,274,160,1364,596,2473,2813,1264,702,728,1271,947,2754,2216,962,587,495,250,195,746,796,342,172,172,209,318,802,640,284,137,129,,,,,,,,,,,,,, +7239,Zimbabwe,2012,120,783,2421,2086,796,360,271,173,939,2053,1286,483,231,161,1169,613,2302,2657,1154,708,796,1008,888,2287,1957,829,516,432,233,214,658,789,331,178,182,208,319,710,579,228,140,143,,,,,,,,,,,,,, +7240,Zimbabwe,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1315,1642,5331,5363,2349,1206,1208,1252,2069,4649,3526,1453,811,725 diff --git a/exercises/tabular_tuberculosis/.ipynb_checkpoints/tuberculosis-checkpoint.ipynb b/exercises/tabular_tuberculosis/.ipynb_checkpoints/tuberculosis-checkpoint.ipynb new file mode 100644 index 0000000..a8d372b --- /dev/null +++ b/exercises/tabular_tuberculosis/.ipynb_checkpoints/tuberculosis-checkpoint.ipynb @@ -0,0 +1,776 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "51e34c9b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tuberculosis/tuberculosis.ipynb b/exercises/tabular_tuberculosis/tuberculosis.ipynb new file mode 100644 index 0000000..a8d372b --- /dev/null +++ b/exercises/tabular_tuberculosis/tuberculosis.ipynb @@ -0,0 +1,776 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "e951a26e", + "metadata": {}, + "source": [ + "# Exercise: Analysis of tubercolosis cases by country and year period\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6b181870", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option(\"display.max_colwidth\", None)" + ] + }, + { + "cell_type": "markdown", + "id": "9adcc036", + "metadata": {}, + "source": [ + "# Load the TB data from the World Health Organization" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "5d9e9162", + "metadata": {}, + "outputs": [], + "source": [ + "tb_raw = pd.read_csv('who2.csv', index_col='rownames')" + ] + }, + { + "cell_type": "markdown", + "id": "cf7691e5", + "metadata": {}, + "source": [ + "Only keep data between 2000 and 2012" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "a953d230", + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['country', 'year'] + [c for c in tb_raw.columns if c.startswith('sp')]\n", + "tb_raw = tb_raw.loc[tb_raw['year'].between(2000, 2012), cols]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ba962fb7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2783, 16)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c79a5b8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
5551San Marino2009NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
642Belarus20090.066.0173.0208.0287.0134.054.00.041.052.052.041.025.068.0
7234Zimbabwe2007138.0500.03693.00.0716.0292.0153.0185.0739.03311.00.0553.0213.090.0
3471Kuwait20080.018.090.056.034.011.09.02.033.047.027.07.05.06.0
3336Jordan20091.05.015.014.010.07.06.00.07.014.08.03.07.012.0
2689Grenada2008NaN1.0NaN1.02.0NaN1.0NaNNaNNaNNaNNaNNaNNaN
634Belarus20012.0NaNNaNNaNNaNNaNNaN4.0NaNNaNNaNNaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 \\\n", + "rownames \n", + "5551 San Marino 2009 NaN NaN NaN NaN \n", + "642 Belarus 2009 0.0 66.0 173.0 208.0 \n", + "7234 Zimbabwe 2007 138.0 500.0 3693.0 0.0 \n", + "3471 Kuwait 2008 0.0 18.0 90.0 56.0 \n", + "3336 Jordan 2009 1.0 5.0 15.0 14.0 \n", + "2689 Grenada 2008 NaN 1.0 NaN 1.0 \n", + "634 Belarus 2001 2.0 NaN NaN NaN \n", + "\n", + " sp_m_4554 sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 \\\n", + "rownames \n", + "5551 NaN NaN NaN NaN NaN NaN \n", + "642 287.0 134.0 54.0 0.0 41.0 52.0 \n", + "7234 716.0 292.0 153.0 185.0 739.0 3311.0 \n", + "3471 34.0 11.0 9.0 2.0 33.0 47.0 \n", + "3336 10.0 7.0 6.0 0.0 7.0 14.0 \n", + "2689 2.0 NaN 1.0 NaN NaN NaN \n", + "634 NaN NaN NaN 4.0 NaN NaN \n", + "\n", + " sp_f_3544 sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "5551 NaN NaN NaN NaN \n", + "642 52.0 41.0 25.0 68.0 \n", + "7234 0.0 553.0 213.0 90.0 \n", + "3471 27.0 7.0 5.0 6.0 \n", + "3336 8.0 3.0 7.0 12.0 \n", + "2689 NaN NaN NaN NaN \n", + "634 NaN NaN NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.sample(7, random_state=727)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6e8b1d89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
countryyearsp_m_014sp_m_1524sp_m_2534sp_m_3544sp_m_4554sp_m_5564sp_m_65sp_f_014sp_f_1524sp_f_2534sp_f_3544sp_f_4554sp_f_5564sp_f_65
rownames
191Angola2000186.0999.01003.0912.0482.0312.0194.0247.01142.01091.0844.0417.0200.0120.0
192Angola2001230.0892.0752.0648.0420.0197.0173.0279.0993.0869.0647.0323.0200.0182.0
193Angola2002435.02223.02292.01915.01187.0624.0444.0640.02610.02208.01600.0972.0533.0305.0
194Angola2003409.02355.02598.01908.01090.0512.0361.0591.03078.02641.01747.01157.0395.0129.0
195Angola2004554.02684.02659.01998.01196.0561.0321.0733.03198.02772.01854.01029.0505.0269.0
196Angola2005520.02549.02797.01918.01255.0665.0461.0704.02926.02682.01797.01138.0581.0417.0
197Angola2006540.02632.03049.02182.01397.0729.0428.0689.02851.02892.01990.01223.0583.0314.0
198Angola2007484.02824.03197.02255.01357.0699.0465.0703.02943.02721.01812.01041.0554.0367.0
199Angola2008367.02970.03493.02418.01480.0733.0420.0512.03199.02786.02082.01209.0556.0337.0
200Angola2009392.03054.03600.02420.01590.0748.0463.0568.03152.02798.01790.01069.0572.0272.0
201Angola2010448.02900.03584.02415.01424.0691.0355.0558.02763.02594.01688.0958.0482.0286.0
202Angola2011501.03000.03792.02386.01395.0680.0455.0708.02731.02563.01683.01006.0457.0346.0
203Angola2012390.02804.03627.02529.01427.0732.0424.0592.02501.02540.01617.01028.0529.0384.0
\n", + "
" + ], + "text/plain": [ + " country year sp_m_014 sp_m_1524 sp_m_2534 sp_m_3544 sp_m_4554 \\\n", + "rownames \n", + "191 Angola 2000 186.0 999.0 1003.0 912.0 482.0 \n", + "192 Angola 2001 230.0 892.0 752.0 648.0 420.0 \n", + "193 Angola 2002 435.0 2223.0 2292.0 1915.0 1187.0 \n", + "194 Angola 2003 409.0 2355.0 2598.0 1908.0 1090.0 \n", + "195 Angola 2004 554.0 2684.0 2659.0 1998.0 1196.0 \n", + "196 Angola 2005 520.0 2549.0 2797.0 1918.0 1255.0 \n", + "197 Angola 2006 540.0 2632.0 3049.0 2182.0 1397.0 \n", + "198 Angola 2007 484.0 2824.0 3197.0 2255.0 1357.0 \n", + "199 Angola 2008 367.0 2970.0 3493.0 2418.0 1480.0 \n", + "200 Angola 2009 392.0 3054.0 3600.0 2420.0 1590.0 \n", + "201 Angola 2010 448.0 2900.0 3584.0 2415.0 1424.0 \n", + "202 Angola 2011 501.0 3000.0 3792.0 2386.0 1395.0 \n", + "203 Angola 2012 390.0 2804.0 3627.0 2529.0 1427.0 \n", + "\n", + " sp_m_5564 sp_m_65 sp_f_014 sp_f_1524 sp_f_2534 sp_f_3544 \\\n", + "rownames \n", + "191 312.0 194.0 247.0 1142.0 1091.0 844.0 \n", + "192 197.0 173.0 279.0 993.0 869.0 647.0 \n", + "193 624.0 444.0 640.0 2610.0 2208.0 1600.0 \n", + "194 512.0 361.0 591.0 3078.0 2641.0 1747.0 \n", + "195 561.0 321.0 733.0 3198.0 2772.0 1854.0 \n", + "196 665.0 461.0 704.0 2926.0 2682.0 1797.0 \n", + "197 729.0 428.0 689.0 2851.0 2892.0 1990.0 \n", + "198 699.0 465.0 703.0 2943.0 2721.0 1812.0 \n", + "199 733.0 420.0 512.0 3199.0 2786.0 2082.0 \n", + "200 748.0 463.0 568.0 3152.0 2798.0 1790.0 \n", + "201 691.0 355.0 558.0 2763.0 2594.0 1688.0 \n", + "202 680.0 455.0 708.0 2731.0 2563.0 1683.0 \n", + "203 732.0 424.0 592.0 2501.0 2540.0 1617.0 \n", + "\n", + " sp_f_4554 sp_f_5564 sp_f_65 \n", + "rownames \n", + "191 417.0 200.0 120.0 \n", + "192 323.0 200.0 182.0 \n", + "193 972.0 533.0 305.0 \n", + "194 1157.0 395.0 129.0 \n", + "195 1029.0 505.0 269.0 \n", + "196 1138.0 581.0 417.0 \n", + "197 1223.0 583.0 314.0 \n", + "198 1041.0 554.0 367.0 \n", + "199 1209.0 556.0 337.0 \n", + "200 1069.0 572.0 272.0 \n", + "201 958.0 482.0 286.0 \n", + "202 1006.0 457.0 346.0 \n", + "203 1028.0 529.0 384.0 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw[tb_raw['country'] == 'Angola']" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "116c47ad", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['country', 'year', 'sp_m_014', 'sp_m_1524', 'sp_m_2534', 'sp_m_3544',\n", + " 'sp_m_4554', 'sp_m_5564', 'sp_m_65', 'sp_f_014', 'sp_f_1524',\n", + " 'sp_f_2534', 'sp_f_3544', 'sp_f_4554', 'sp_f_5564', 'sp_f_65'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tb_raw.columns" + ] + }, + { + "cell_type": "markdown", + "id": "9d1f036e", + "metadata": {}, + "source": [ + "# Compute summary tables\n", + "\n", + "1. Compute the number of cases per country and gender" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "51e34c9b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c8e9b0e4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_tuberculosis/who2.csv b/exercises/tabular_tuberculosis/who2.csv new file mode 100644 index 0000000..a1587d0 --- /dev/null +++ b/exercises/tabular_tuberculosis/who2.csv @@ -0,0 +1,7241 @@ +rownames,country,year,sp_m_014,sp_m_1524,sp_m_2534,sp_m_3544,sp_m_4554,sp_m_5564,sp_m_65,sp_f_014,sp_f_1524,sp_f_2534,sp_f_3544,sp_f_4554,sp_f_5564,sp_f_65,sn_m_014,sn_m_1524,sn_m_2534,sn_m_3544,sn_m_4554,sn_m_5564,sn_m_65,sn_f_014,sn_f_1524,sn_f_2534,sn_f_3544,sn_f_4554,sn_f_5564,sn_f_65,ep_m_014,ep_m_1524,ep_m_2534,ep_m_3544,ep_m_4554,ep_m_5564,ep_m_65,ep_f_014,ep_f_1524,ep_f_2534,ep_f_3544,ep_f_4554,ep_f_5564,ep_f_65,rel_m_014,rel_m_1524,rel_m_2534,rel_m_3544,rel_m_4554,rel_m_5564,rel_m_65,rel_f_014,rel_f_1524,rel_f_2534,rel_f_3544,rel_f_4554,rel_f_5564,rel_f_65 +1,Afghanistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Afghanistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Afghanistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Afghanistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Afghanistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Afghanistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Afghanistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Afghanistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Afghanistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Afghanistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Afghanistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Afghanistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Afghanistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Afghanistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Afghanistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Afghanistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Afghanistan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Afghanistan,1997,0,10,6,3,5,2,0,5,38,36,14,8,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Afghanistan,1998,30,129,128,90,89,64,41,45,350,419,194,118,61,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Afghanistan,1999,8,55,55,47,34,21,8,25,139,160,110,50,25,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Afghanistan,2000,52,228,183,149,129,94,80,93,414,565,339,205,99,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Afghanistan,2001,129,379,349,274,204,139,103,146,799,888,586,375,179,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Afghanistan,2002,90,476,481,368,246,241,189,192,1119,1251,792,526,320,218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Afghanistan,2003,127,511,436,284,256,288,203,245,1152,1287,814,462,305,158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Afghanistan,2004,139,537,568,360,358,386,310,256,1360,1561,1096,645,413,256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Afghanistan,2005,151,606,560,472,453,470,419,320,1651,1959,1302,869,471,246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +27,Afghanistan,2006,193,837,791,574,572,572,410,442,2139,2340,1654,1006,630,309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Afghanistan,2007,186,856,840,597,566,630,507,475,2224,2357,1708,1143,771,353,0,0,0,0,0,0,0,,,,,,,,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, +29,Afghanistan,2008,187,941,773,545,570,630,575,428,2094,2449,1614,1149,817,364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Afghanistan,2009,200,906,705,499,491,596,570,439,2173,2186,1541,1014,764,419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Afghanistan,2010,197,986,819,491,490,641,622,445,2107,2263,1455,1112,831,488,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Afghanistan,2011,204,1010,895,613,570,700,692,465,2167,2325,1564,1146,903,535,902,,,,,,,851,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Afghanistan,2012,188,1116,801,586,521,585,651,400,2280,2204,1482,1150,850,505,1265,,,,,,,1190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Afghanistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1705,,,,,,,1749,,,,,, +35,Albania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Albania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Albania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Albania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Albania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Albania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Albania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Albania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Albania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Albania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Albania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Albania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Albania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Albania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Albania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Albania,1995,0,0,0,0,19,40,30,0,1,0,0,13,20,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Albania,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Albania,1997,0,23,43,33,25,21,19,1,16,19,14,9,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Albania,1998,1,17,21,24,18,26,24,2,19,11,12,13,11,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Albania,1999,0,13,23,25,19,15,15,0,5,13,11,5,8,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Albania,2000,2,19,21,14,24,19,16,3,11,10,8,8,5,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Albania,2001,3,13,18,17,19,20,30,1,12,10,5,7,7,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Albania,2002,0,21,27,29,19,23,25,2,20,19,9,6,8,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Albania,2003,0,28,19,32,16,22,19,2,13,8,6,14,12,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Albania,2004,5,12,19,21,24,23,20,2,12,12,8,11,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Albania,2005,0,26,21,16,31,20,37,0,3,9,5,5,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Albania,2006,5,24,19,22,21,19,20,2,12,8,7,7,7,13,15,4,5,2,8,9,25,4,6,3,5,3,5,12,9,19,11,18,12,9,21,7,8,10,9,12,15,15,,,,,,,,,,,,,, +62,Albania,2007,0,19,13,16,24,16,19,2,13,9,7,7,11,9,10,9,4,7,11,13,17,5,5,2,1,6,6,9,9,18,9,10,14,8,19,1,8,9,8,13,12,14,,,,,,,,,,,,,, +63,Albania,2008,1,23,26,13,19,13,16,1,20,10,8,5,5,10,8,8,2,7,5,7,10,6,7,2,7,5,3,10,0,11,12,6,15,13,18,3,12,7,10,12,10,16,,,,,,,,,,,,,, +64,Albania,2009,0,22,21,12,24,15,22,2,15,7,6,9,4,12,7,9,5,9,8,10,20,4,7,3,5,10,2,10,2,16,6,7,14,19,15,2,5,5,11,8,8,18,,,,,,,,,,,,,, +65,Albania,2010,0,28,17,14,16,16,15,2,11,7,6,3,2,8,6,9,7,10,13,13,18,4,4,3,3,6,3,6,4,26,15,16,13,14,21,2,10,6,8,4,9,17,,,,,,,,,,,,,, +66,Albania,2011,0,29,26,18,30,9,22,1,14,10,6,2,1,12,2,11,5,6,13,17,19,0,3,4,4,2,10,9,1,17,10,4,12,15,13,3,9,4,6,12,11,11,,,,,,,,,,,,,, +67,Albania,2012,0,33,34,16,15,11,23,0,17,9,6,3,6,12,1,6,9,7,10,12,19,1,4,8,2,3,7,11,0,15,12,5,13,11,13,1,5,8,2,7,5,9,,,,,,,,,,,,,, +68,Albania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,60,61,32,44,50,67,5,28,34,13,18,14,34 +69,Algeria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Algeria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Algeria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Algeria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Algeria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Algeria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Algeria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Algeria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Algeria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Algeria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Algeria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +80,Algeria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +81,Algeria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +82,Algeria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +83,Algeria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +84,Algeria,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +85,Algeria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +86,Algeria,1997,659,1422,1982,639,357,312,396,92,1102,702,405,242,236,356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +87,Algeria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +88,Algeria,1999,40,1193,1344,556,706,263,315,92,884,621,281,221,243,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +89,Algeria,2000,59,927,1516,610,491,234,299,36,1005,1293,746,314,208,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +90,Algeria,2001,41,1345,1614,708,401,283,390,79,1057,782,352,287,280,334,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +91,Algeria,2002,39,1364,1580,630,406,273,280,71,1840,730,334,224,217,258,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +92,Algeria,2003,40,1316,1633,706,429,231,328,74,1017,702,326,242,241,356,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +93,Algeria,2004,63,1326,1694,758,434,271,373,92,1011,798,320,253,227,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +94,Algeria,2005,53,1309,1841,919,473,314,426,102,1044,820,389,270,229,465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +95,Algeria,2006,41,1173,1573,692,409,251,360,80,971,679,339,223,197,408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +96,Algeria,2007,95,1388,1749,813,494,296,407,109,1031,811,335,273,247,391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +97,Algeria,2008,99,1505,1786,794,447,198,463,150,1263,827,346,256,226,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +98,Algeria,2009,43,1225,1827,898,541,319,364,90,1021,860,363,270,241,340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +99,Algeria,2010,52,1203,1669,825,513,392,397,79,1086,826,417,251,222,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +100,Algeria,2011,42,1147,1513,881,483,345,347,58,1050,787,383,211,202,341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +101,Algeria,2012,29,1102,1467,857,464,354,349,60,917,773,382,198,229,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +102,Algeria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,1021,1288,763,475,324,409,50,861,707,377,267,205,352 +103,American Samoa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +104,American Samoa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +105,American Samoa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +106,American Samoa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +107,American Samoa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +108,American Samoa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +109,American Samoa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +110,American Samoa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +111,American Samoa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +112,American Samoa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +113,American Samoa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +114,American Samoa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +115,American Samoa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +116,American Samoa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +117,American Samoa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +118,American Samoa,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +119,American Samoa,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +120,American Samoa,1997,1,0,0,1,1,1,1,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +121,American Samoa,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +122,American Samoa,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +123,American Samoa,2000,,,,,1,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +124,American Samoa,2001,,,,,,,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +125,American Samoa,2002,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +126,American Samoa,2003,,,,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +127,American Samoa,2004,,,,,,2,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +128,American Samoa,2005,,,,,,,,,,1,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +129,American Samoa,2006,,,,,,,,,,1,,2,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,, +130,American Samoa,2007,,,,,,,,,,,,,,,0,1,0,0,1,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +131,American Samoa,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +132,American Samoa,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,, +133,American Samoa,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +134,American Samoa,2011,,,,,,,,,,,,,,,,,,,1,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +135,American Samoa,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +136,American Samoa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +137,Andorra,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +138,Andorra,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +139,Andorra,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +140,Andorra,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +141,Andorra,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +142,Andorra,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +143,Andorra,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +144,Andorra,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +145,Andorra,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +146,Andorra,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +147,Andorra,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +148,Andorra,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +149,Andorra,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +150,Andorra,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +151,Andorra,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +152,Andorra,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +153,Andorra,1996,0,0,0,4,1,0,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +154,Andorra,1997,0,0,1,2,2,1,6,0,1,2,3,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +155,Andorra,1998,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +156,Andorra,1999,0,0,0,1,1,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +157,Andorra,2000,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +158,Andorra,2001,0,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +159,Andorra,2002,0,0,0,1,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +160,Andorra,2003,0,0,0,1,2,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +161,Andorra,2004,0,0,0,1,1,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +162,Andorra,2005,0,0,1,1,0,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +163,Andorra,2006,0,1,1,2,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,,,,,,,,,,,,,, +164,Andorra,2007,,,,,,,,,,1,,1,,,,,,,,,1,,,,,,,,,,,1,,,,,,,,1,1,,,,,,,,,,,,,,, +165,Andorra,2008,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +166,Andorra,2009,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +167,Andorra,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +168,Andorra,2011,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +169,Andorra,2012,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,,,,,,,,,,,,,, +170,Andorra,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,1,2,1,0,0,0,0,1,0,0,0 +171,Angola,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +172,Angola,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +173,Angola,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +174,Angola,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +175,Angola,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +176,Angola,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +177,Angola,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +178,Angola,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +179,Angola,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +180,Angola,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +181,Angola,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +182,Angola,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +183,Angola,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +184,Angola,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +185,Angola,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +186,Angola,1995,386,724,562,346,224,155,14,371,707,443,264,248,130,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +187,Angola,1996,360,1036,926,1027,469,272,169,388,1066,963,615,370,242,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +188,Angola,1997,419,913,1026,819,507,304,193,431,1165,1007,627,411,234,145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +189,Angola,1998,240,915,950,839,470,219,135,297,1084,970,623,319,169,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +190,Angola,1999,391,1134,1237,973,518,314,234,459,1197,1157,743,474,217,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +191,Angola,2000,186,999,1003,912,482,312,194,247,1142,1091,844,417,200,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +192,Angola,2001,230,892,752,648,420,197,173,279,993,869,647,323,200,182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +193,Angola,2002,435,2223,2292,1915,1187,624,444,640,2610,2208,1600,972,533,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +194,Angola,2003,409,2355,2598,1908,1090,512,361,591,3078,2641,1747,1157,395,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +195,Angola,2004,554,2684,2659,1998,1196,561,321,733,3198,2772,1854,1029,505,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +196,Angola,2005,520,2549,2797,1918,1255,665,461,704,2926,2682,1797,1138,581,417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +197,Angola,2006,540,2632,3049,2182,1397,729,428,689,2851,2892,1990,1223,583,314,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +198,Angola,2007,484,2824,3197,2255,1357,699,465,703,2943,2721,1812,1041,554,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +199,Angola,2008,367,2970,3493,2418,1480,733,420,512,3199,2786,2082,1209,556,337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +200,Angola,2009,392,3054,3600,2420,1590,748,463,568,3152,2798,1790,1069,572,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +201,Angola,2010,448,2900,3584,2415,1424,691,355,558,2763,2594,1688,958,482,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +202,Angola,2011,501,3000,3792,2386,1395,680,455,708,2731,2563,1683,1006,457,346,2466,,,,,,,2165,,,,,,,36,,,,,,,64,,,,,,,,,,,,,,,,,,,, +203,Angola,2012,390,2804,3627,2529,1427,732,424,592,2501,2540,1617,1028,529,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +204,Angola,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,486,2992,3790,2632,1433,735,386,626,2644,2480,1671,991,481,314 +205,Anguilla,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +206,Anguilla,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +207,Anguilla,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +208,Anguilla,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +209,Anguilla,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +210,Anguilla,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +211,Anguilla,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +212,Anguilla,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +213,Anguilla,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +214,Anguilla,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +215,Anguilla,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +216,Anguilla,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +217,Anguilla,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +218,Anguilla,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +219,Anguilla,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +220,Anguilla,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +221,Anguilla,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +222,Anguilla,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +223,Anguilla,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +224,Anguilla,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +225,Anguilla,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +226,Anguilla,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +227,Anguilla,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +228,Anguilla,2003,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +229,Anguilla,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +230,Anguilla,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +231,Anguilla,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +232,Anguilla,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +233,Anguilla,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +234,Anguilla,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +235,Anguilla,2010,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +236,Anguilla,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +237,Anguilla,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +238,Anguilla,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +239,Antigua and Barbuda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +240,Antigua and Barbuda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +241,Antigua and Barbuda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +242,Antigua and Barbuda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +243,Antigua and Barbuda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +244,Antigua and Barbuda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +245,Antigua and Barbuda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +246,Antigua and Barbuda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +247,Antigua and Barbuda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +248,Antigua and Barbuda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +249,Antigua and Barbuda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +250,Antigua and Barbuda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +251,Antigua and Barbuda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +252,Antigua and Barbuda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +253,Antigua and Barbuda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +254,Antigua and Barbuda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +255,Antigua and Barbuda,1996,0,0,0,0,1,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +256,Antigua and Barbuda,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +257,Antigua and Barbuda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +258,Antigua and Barbuda,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +259,Antigua and Barbuda,2000,0,0,0,0,0,0,1,1,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +260,Antigua and Barbuda,2001,,,,,,,,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +261,Antigua and Barbuda,2002,0,0,1,0,0,0,0,2,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +262,Antigua and Barbuda,2003,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +263,Antigua and Barbuda,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +264,Antigua and Barbuda,2005,,,,1,1,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +265,Antigua and Barbuda,2006,,,,,,,,,,,,,,,0,0,1,1,0,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +266,Antigua and Barbuda,2007,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +267,Antigua and Barbuda,2008,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +268,Antigua and Barbuda,2009,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +269,Antigua and Barbuda,2010,0,0,2,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +270,Antigua and Barbuda,2011,0,0,1,1,3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +271,Antigua and Barbuda,2012,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +272,Antigua and Barbuda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,1,1,0,0,0,0,0,0,1 +273,Argentina,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +274,Argentina,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +275,Argentina,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +276,Argentina,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +277,Argentina,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +278,Argentina,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +279,Argentina,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +280,Argentina,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +281,Argentina,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +282,Argentina,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +283,Argentina,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +284,Argentina,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +285,Argentina,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +286,Argentina,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +287,Argentina,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +288,Argentina,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +289,Argentina,1996,113,611,535,338,276,230,286,107,643,591,528,546,520,463,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +290,Argentina,1997,96,580,600,523,489,417,393,133,566,511,336,240,199,234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +291,Argentina,1998,84,578,571,463,476,387,370,94,558,498,271,229,207,276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +292,Argentina,1999,90,490,546,435,464,384,380,108,502,442,292,210,177,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +293,Argentina,2000,97,278,594,402,419,368,330,121,544,479,262,230,179,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +294,Argentina,2001,78,682,611,495,471,404,436,85,674,561,303,242,215,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +295,Argentina,2002,70,612,658,463,477,389,399,117,622,580,301,237,203,255,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +296,Argentina,2003,89,574,565,413,461,366,405,99,516,513,294,241,192,231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +297,Argentina,2004,64,588,543,399,387,332,345,98,519,477,271,237,169,237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +298,Argentina,2005,64,621,530,358,384,340,348,90,530,474,290,198,169,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +299,Argentina,2006,67,519,484,360,351,346,321,74,438,437,235,197,173,213,394,196,235,143,153,176,187,345,187,185,119,75,90,127,32,111,122,94,92,76,91,36,87,91,69,59,46,75,,,,,,,,,,,,,, +300,Argentina,2007,77,656,623,401,415,389,324,70,558,500,246,217,172,246,539,278,214,189,147,159,152,476,234,199,135,111,67,149,64,157,192,122,96,86,95,39,144,140,89,73,46,90,,,,,,,,,,,,,, +301,Argentina,2008,69,633,611,390,416,364,295,66,536,506,252,221,157,204,417,287,238,175,162,125,142,409,207,199,128,81,79,111,51,163,191,155,104,96,109,37,125,158,88,66,58,78,,,,,,,,,,,,,, +302,Argentina,2009,44,546,483,348,327,303,297,63,434,406,257,185,137,199,269,193,226,154,129,136,144,217,189,156,99,99,62,87,25,86,113,93,79,77,70,24,74,90,61,53,32,55,,,,,,,,,,,,,, +303,Argentina,2010,56,536,491,309,302,340,282,59,421,426,233,184,153,176,190,214,196,155,148,126,134,186,171,132,98,82,67,108,23,91,104,86,60,61,66,17,72,68,56,59,44,45,,,,,,,,,,,,,, +304,Argentina,2011,143,664,657,434,397,358,289,142,587,470,279,192,169,213,325,304,270,179,158,119,118,257,250,221,153,98,73,92,72,217,240,134,95,89,72,75,162,158,107,65,62,60,,,,,,,,,,,,,, +305,Argentina,2012,59,533,484,299,180,182,181,67,652,614,375,364,321,322,322,222,173,126,83,69,83,297,258,195,152,115,125,114,40,128,102,107,75,49,63,46,154,153,147,72,63,84,,,,,,,,,,,,,, +306,Argentina,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,462,1124,1094,768,593,581,491,431,927,808,537,395,307,374 +307,Armenia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +308,Armenia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +309,Armenia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +310,Armenia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +311,Armenia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +312,Armenia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +313,Armenia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +314,Armenia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +315,Armenia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +316,Armenia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +317,Armenia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +318,Armenia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +319,Armenia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +320,Armenia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +321,Armenia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +322,Armenia,1995,1,18,16,11,10,8,1,1,1,7,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +323,Armenia,1996,2,53,100,51,43,30,7,0,9,11,9,8,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +324,Armenia,1997,2,85,59,77,51,34,12,3,16,22,17,7,14,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +325,Armenia,1998,2,159,90,79,39,17,15,1,21,20,11,10,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +326,Armenia,1999,4,151,88,115,76,37,20,6,22,15,20,6,9,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +327,Armenia,2000,2,152,130,131,63,26,21,1,24,27,24,8,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +328,Armenia,2001,2,154,120,93,54,24,9,1,40,31,22,10,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +329,Armenia,2002,1,95,63,109,93,21,14,2,16,24,32,36,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +330,Armenia,2003,12,120,98,75,104,49,18,2,29,31,13,12,9,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +331,Armenia,2004,2,130,72,76,62,25,24,1,24,17,12,10,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +332,Armenia,2005,3,170,104,83,84,30,24,3,27,21,10,11,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +333,Armenia,2006,0,113,116,96,98,38,17,3,28,29,16,15,7,4,27,172,64,68,97,44,79,25,36,31,15,16,9,11,25,103,29,24,14,8,17,12,19,25,12,18,8,10,,,,,,,,,,,,,, +334,Armenia,2007,1,81,87,100,92,29,20,2,31,22,11,7,7,7,26,122,78,62,106,59,84,12,36,33,23,22,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +335,Armenia,2008,0,53,103,74,87,37,15,4,44,25,10,14,10,11,18,107,88,76,112,64,79,15,38,45,27,30,12,13,29,51,30,21,33,13,11,19,23,18,14,14,15,5,,,,,,,,,,,,,, +336,Armenia,2009,1,52,76,59,102,36,16,2,33,29,7,9,9,9,6,102,100,85,106,84,69,6,38,42,23,26,16,22,32,61,28,22,21,15,15,18,31,10,12,18,9,7,,,,,,,,,,,,,, +337,Armenia,2010,0,36,75,49,68,27,15,1,24,17,4,7,8,8,6,77,93,72,101,75,49,7,28,52,17,24,23,15,31,53,44,18,23,17,17,14,35,33,14,28,16,8,,,,,,,,,,,,,, +338,Armenia,2011,0,28,65,52,71,42,8,0,19,16,9,7,7,5,5,66,76,64,93,72,69,11,20,27,18,29,18,14,19,43,33,18,19,22,13,12,30,23,15,21,12,9,,,,,,,,,,,,,, +339,Armenia,2012,1,23,67,60,56,34,18,0,13,19,12,2,5,5,8,53,73,64,84,89,58,2,18,32,13,21,22,16,20,34,14,27,29,18,13,6,12,34,15,11,13,9,,,,,,,,,,,,,, +340,Armenia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,116,169,165,254,217,122,17,50,81,48,52,48,33 +341,Aruba,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +342,Aruba,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +343,Aruba,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +344,Aruba,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +345,Aruba,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +346,Aruba,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +347,Aruba,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +348,Aruba,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +349,Aruba,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +350,Aruba,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +351,Aruba,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +352,Aruba,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +353,Aruba,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +354,Aruba,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +355,Aruba,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +356,Aruba,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +357,Aruba,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +358,Aruba,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +359,Aruba,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +360,Aruba,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +361,Aruba,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +362,Aruba,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +363,Aruba,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +364,Aruba,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +365,Aruba,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +366,Aruba,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +367,Aruba,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +368,Aruba,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +369,Aruba,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +370,Aruba,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +371,Aruba,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +372,Aruba,2011,,,,,4,,1,,,1,,,,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,, +373,Aruba,2012,,,,2,3,,,1,4,,2,1,,1,1,1,,2,4,2,,1,5,,3,2,1,1,,,,2,3,,,1,4,,1,,1,1,,,,,,,,,,,,,, +374,Aruba,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,,,1,,,1,2,2 +375,Australia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +376,Australia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +377,Australia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +378,Australia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +379,Australia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +380,Australia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +381,Australia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +382,Australia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +383,Australia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +384,Australia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +385,Australia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +386,Australia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +387,Australia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +388,Australia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +389,Australia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +390,Australia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +391,Australia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +392,Australia,1997,1,8,24,18,13,17,28,0,10,15,9,5,10,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +393,Australia,1998,0,11,22,18,13,15,31,2,19,24,15,8,2,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +394,Australia,1999,0,13,40,54,52,37,49,0,10,16,18,6,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +395,Australia,2000,3,16,35,25,24,19,49,0,15,19,12,15,5,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +396,Australia,2001,1,23,20,18,18,13,35,1,21,27,16,7,8,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +397,Australia,2002,1,15,20,26,19,13,34,0,15,21,15,6,4,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +398,Australia,2003,0,14,10,2,11,5,30,0,9,13,3,5,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +399,Australia,2004,0,18,16,17,15,11,32,0,6,17,5,7,3,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +400,Australia,2005,0,32,27,23,11,12,30,2,18,26,11,10,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +401,Australia,2006,1,33,35,23,21,16,43,2,18,27,14,7,9,21,15,37,50,31,36,20,53,22,20,48,30,18,15,42,11,30,48,33,22,21,45,9,30,61,47,40,17,43,,,,,,,,,,,,,, +402,Australia,2007,3,30,33,20,15,14,37,4,26,37,20,12,7,23,17,30,53,23,33,17,45,16,23,41,21,11,12,30,9,32,68,35,25,22,24,8,17,74,29,36,23,26,,,,,,,,,,,,,, +403,Australia,2008,2,46,33,20,27,23,42,3,27,32,14,6,11,10,12,65,58,34,19,26,37,17,29,42,17,13,12,18,11,30,70,38,25,13,28,7,39,67,47,33,26,29,,,,,,,,,,,,,, +404,Australia,2009,3,30,37,16,24,12,34,4,31,27,14,12,11,12,14,46,51,24,23,18,44,10,41,51,24,19,13,13,15,50,95,49,19,14,26,8,32,86,42,28,21,25,,,,,,,,,,,,,, +405,Australia,2010,2,42,33,22,25,9,27,4,36,43,12,2,5,12,13,54,68,28,25,19,36,9,38,52,23,18,9,16,8,33,97,40,23,10,21,5,40,84,28,30,13,25,,,,,,,,,,,,,, +406,Australia,2011,2,38,44,26,19,12,37,3,26,40,23,7,7,17,11,40,82,29,15,26,42,16,37,60,30,13,9,26,8,42,84,43,31,13,22,7,34,88,36,23,18,14,,,,,,,,,,,,,, +407,Australia,2012,3,26,40,17,25,16,37,1,27,48,15,11,9,15,14,43,46,28,29,22,53,14,28,65,27,12,14,12,8,31,119,38,19,17,30,8,32,76,42,32,20,26,,,,,,,,,,,,,, +408,Australia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,105,206,108,67,68,120,20,95,165,97,62,46,63 +409,Austria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +410,Austria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +411,Austria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +412,Austria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +413,Austria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +414,Austria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +415,Austria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +416,Austria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +417,Austria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +418,Austria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +419,Austria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +420,Austria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +421,Austria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +422,Austria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +423,Austria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +424,Austria,1995,4,37,95,82,89,71,73,6,22,52,32,21,18,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +425,Austria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +426,Austria,1997,24,59,117,170,168,122,185,33,41,93,62,52,52,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +427,Austria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +428,Austria,1999,0,13,40,54,52,37,49,0,10,16,18,6,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +429,Austria,2000,1,17,30,59,42,23,41,1,11,22,12,11,6,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +430,Austria,2001,1,15,27,39,37,37,27,1,8,13,15,4,6,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +431,Austria,2002,1,8,14,32,43,20,25,0,8,13,7,5,7,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +432,Austria,2003,0,19,31,37,43,19,28,2,10,25,12,7,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +433,Austria,2004,1,19,19,38,27,24,21,0,12,15,9,3,3,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +434,Austria,2005,1,32,23,22,41,24,30,0,13,11,8,3,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +435,Austria,2006,1,9,25,36,39,19,19,2,12,12,16,5,3,15,22,27,46,53,60,51,74,26,16,19,25,21,18,49,3,11,9,12,15,5,13,2,7,10,7,10,6,25,,,,,,,,,,,,,, +436,Austria,2007,1,12,15,27,26,18,25,2,10,14,7,11,2,19,13,28,54,51,57,59,70,5,24,31,13,23,19,39,0,8,6,15,15,12,29,4,4,6,5,4,9,18,,,,,,,,,,,,,, +437,Austria,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +438,Austria,2009,0,4,10,13,12,7,13,0,7,8,4,5,1,5,6,14,23,14,28,32,47,8,13,14,16,17,7,27,0,2,8,5,11,2,13,2,4,1,12,3,2,13,,,,,,,,,,,,,, +439,Austria,2010,0,4,4,12,13,8,10,1,5,4,2,2,5,6,6,15,11,19,29,17,33,6,7,13,14,12,7,26,1,3,2,10,2,5,7,2,4,6,6,9,5,7,,,,,,,,,,,,,, +440,Austria,2011,0,8,11,9,13,11,13,0,11,6,4,1,3,4,9,14,21,21,20,25,24,8,12,10,16,12,5,18,0,4,10,9,6,4,10,2,5,8,7,3,4,15,,,,,,,,,,,,,, +441,Austria,2012,1,5,8,7,19,9,13,1,10,8,4,4,1,5,9,18,26,13,26,7,28,9,14,19,11,20,5,13,3,10,14,8,5,6,10,0,1,7,7,3,9,14,,,,,,,,,,,,,, +442,Austria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,44,66,46,68,53,86,8,45,37,36,34,28,58 +443,Azerbaijan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +444,Azerbaijan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +445,Azerbaijan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +446,Azerbaijan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +447,Azerbaijan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +448,Azerbaijan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +449,Azerbaijan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +450,Azerbaijan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +451,Azerbaijan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +452,Azerbaijan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +453,Azerbaijan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +454,Azerbaijan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +455,Azerbaijan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +456,Azerbaijan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +457,Azerbaijan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +458,Azerbaijan,1995,0,13,29,14,6,4,1,0,5,18,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +459,Azerbaijan,1996,0,57,302,231,47,101,16,5,20,154,86,16,13,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +460,Azerbaijan,1997,0,120,244,194,89,12,3,0,42,70,178,23,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +461,Azerbaijan,1998,0,44,47,24,9,4,2,0,7,10,7,6,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +462,Azerbaijan,1999,0,96,46,217,184,49,0,0,4,17,73,58,19,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +463,Azerbaijan,2000,0,9,24,33,42,30,0,0,3,3,6,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +464,Azerbaijan,2001,3,1,3,,,,,2,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +465,Azerbaijan,2002,6,290,433,359,190,72,16,5,48,88,80,34,19,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +466,Azerbaijan,2003,3,212,258,215,113,66,20,1,72,60,62,48,26,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +467,Azerbaijan,2004,8,248,311,222,167,92,83,8,120,65,57,34,33,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +468,Azerbaijan,2005,77,109,297,215,209,187,88,90,64,98,47,32,24,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +469,Azerbaijan,2006,6,241,362,365,120,78,30,2,51,66,66,44,15,8,40,351,448,469,387,96,61,23,114,117,85,52,18,17,107,186,129,60,39,9,4,39,35,41,29,10,3,6,,,,,,,,,,,,,, +470,Azerbaijan,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +471,Azerbaijan,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +472,Azerbaijan,2009,5,229,190,165,151,63,30,11,108,92,37,41,14,19,48,,,,,,,42,,,,,,,105,,,,,,,60,,,,,,,,,,,,,,,,,,,, +473,Azerbaijan,2010,0,328,371,267,280,30,27,3,141,100,57,73,9,18,55,598,316,198,306,57,79,34,175,120,66,80,10,29,97,265,97,67,67,15,12,55,100,64,58,49,8,11,,,,,,,,,,,,,, +474,Azerbaijan,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,106,277,107,69,74,32,17,80,111,107,53,64,30,3,,,,,,,,,,,,,, +475,Azerbaijan,2012,4,230,223,170,176,95,48,8,115,89,35,50,35,23,24,459,400,291,294,158,89,26,182,135,74,82,63,36,91,264,96,80,56,30,15,59,104,74,63,37,29,4,,,,,,,,,,,,,, +476,Azerbaijan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125,958,663,538,556,306,124,90,376,302,145,166,104,75 +477,Bahamas,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +478,Bahamas,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +479,Bahamas,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +480,Bahamas,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +481,Bahamas,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +482,Bahamas,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +483,Bahamas,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +484,Bahamas,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +485,Bahamas,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +486,Bahamas,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +487,Bahamas,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +488,Bahamas,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +489,Bahamas,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +490,Bahamas,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +491,Bahamas,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +492,Bahamas,1995,3,3,5,7,4,2,2,0,1,7,2,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +493,Bahamas,1996,0,1,4,4,5,0,0,0,2,4,4,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +494,Bahamas,1997,0,2,14,11,5,3,2,0,2,5,7,4,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +495,Bahamas,1998,0,3,2,7,5,3,0,1,1,3,5,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +496,Bahamas,1999,1,0,10,8,6,0,0,0,1,3,4,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +497,Bahamas,2000,1,2,7,9,4,3,2,2,5,7,8,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +498,Bahamas,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +499,Bahamas,2002,2,2,2,7,7,3,2,4,1,6,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +500,Bahamas,2003,0,2,5,6,3,1,3,2,2,2,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +501,Bahamas,2004,3,3,6,14,9,0,1,0,3,4,1,0,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +502,Bahamas,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +503,Bahamas,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +504,Bahamas,2007,0,3,3,9,4,1,0,0,3,4,3,1,1,0,0,1,1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,0,0,0,0,2,2,1,0,0,0,0,,,,,,,,,,,,,, +505,Bahamas,2008,0,2,6,5,7,2,0,0,1,4,4,0,0,0,1,0,2,4,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,2,,,,,,,,,,,,,, +506,Bahamas,2009,1,2,7,4,3,1,2,1,2,1,1,0,1,0,2,0,2,1,0,0,1,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,,,,,,,,,,,,,, +507,Bahamas,2010,0,2,3,5,0,2,0,0,5,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,,,,,,,,,,,,,, +508,Bahamas,2011,0,2,3,6,2,2,1,0,1,3,3,0,0,0,1,0,0,4,3,0,1,0,1,2,0,0,0,0,0,0,2,1,0,0,0,1,0,0,1,0,0,0,,,,,,,,,,,,,, +509,Bahamas,2012,0,1,1,6,2,0,2,0,2,5,1,1,0,0,0,0,1,0,4,1,0,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +510,Bahamas,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,6,5,2,2,0,2,1,5,2,0,1 +511,Bahrain,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +512,Bahrain,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +513,Bahrain,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +514,Bahrain,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +515,Bahrain,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +516,Bahrain,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +517,Bahrain,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +518,Bahrain,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +519,Bahrain,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +520,Bahrain,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +521,Bahrain,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +522,Bahrain,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +523,Bahrain,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +524,Bahrain,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +525,Bahrain,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +526,Bahrain,1995,0,0,1,2,3,1,3,0,1,1,2,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +527,Bahrain,1996,0,8,25,24,16,7,6,1,10,11,7,0,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +528,Bahrain,1997,1,11,32,19,10,4,10,0,4,11,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +529,Bahrain,1998,0,3,40,36,20,13,22,3,4,9,7,5,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +530,Bahrain,1999,0,12,19,14,13,5,3,0,6,11,6,0,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +531,Bahrain,2000,0,0,3,2,5,3,4,0,1,2,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +532,Bahrain,2001,0,1,2,2,6,1,6,0,1,2,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +533,Bahrain,2002,0,1,1,2,2,1,5,0,1,1,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +534,Bahrain,2003,0,2,2,1,1,3,4,0,1,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +535,Bahrain,2004,0,0,0,2,2,0,1,0,1,1,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +536,Bahrain,2005,0,0,0,2,3,0,4,1,1,0,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +537,Bahrain,2006,0,10,25,11,18,1,1,0,7,14,4,5,2,0,0,5,16,10,7,1,4,0,4,15,4,2,1,3,0,4,26,8,9,3,7,0,11,14,9,7,2,2,,,,,,,,,,,,,, +538,Bahrain,2007,0,8,26,15,8,4,3,1,10,15,5,3,0,1,0,7,25,7,4,3,4,0,2,8,8,0,1,2,2,10,18,11,8,5,3,5,8,19,7,3,6,3,,,,,,,,,,,,,, +539,Bahrain,2008,0,17,48,27,8,2,3,0,12,16,8,1,0,0,0,3,15,12,5,4,5,0,7,4,3,1,0,0,3,11,25,15,8,1,1,2,7,20,6,5,1,0,,,,,,,,,,,,,, +540,Bahrain,2009,0,13,37,21,13,7,1,0,14,18,3,2,0,2,0,7,22,9,6,0,3,1,14,6,4,0,1,1,2,11,27,18,7,4,1,6,14,18,6,3,3,1,,,,,,,,,,,,,, +541,Bahrain,2010,0,10,16,11,12,4,4,0,8,15,7,1,1,1,2,2,12,12,11,3,4,0,6,4,1,0,0,1,2,4,27,15,6,4,2,1,3,21,8,3,1,1,,,,,,,,,,,,,, +542,Bahrain,2011,1,5,19,13,14,8,2,0,9,5,6,6,0,1,3,3,5,5,3,5,6,0,4,4,3,4,0,2,5,6,24,10,3,2,3,6,5,11,6,4,2,2,,,,,,,,,,,,,, +543,Bahrain,2012,0,9,28,16,11,8,2,1,2,11,8,4,1,0,0,4,5,5,4,1,6,0,2,11,6,1,0,2,0,7,21,9,4,4,1,2,3,14,6,2,4,0,,,,,,,,,,,,,, +544,Bahrain,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,13,25,60,20,10,4,1,8,33,19,5,4,3 +545,Bangladesh,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +546,Bangladesh,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +547,Bangladesh,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +548,Bangladesh,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +549,Bangladesh,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +550,Bangladesh,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +551,Bangladesh,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +552,Bangladesh,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +553,Bangladesh,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +554,Bangladesh,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +555,Bangladesh,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +556,Bangladesh,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +557,Bangladesh,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +558,Bangladesh,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +559,Bangladesh,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +560,Bangladesh,1995,29,505,983,1001,748,648,424,64,309,546,360,236,132,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +561,Bangladesh,1996,45,723,1322,1264,908,737,472,89,434,663,434,268,151,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +562,Bangladesh,1997,201,2639,5013,5226,3926,2901,2003,328,1883,2634,1748,1029,527,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +563,Bangladesh,1998,254,3516,5988,6242,4771,3522,2569,438,2663,3319,2156,1212,649,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +564,Bangladesh,1999,259,3504,5777,6143,4748,3568,2701,405,2753,3276,2180,1315,712,333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +565,Bangladesh,2000,256,3640,5643,5750,4718,3667,2837,495,3029,3238,2247,1315,778,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +566,Bangladesh,2001,283,3976,5834,6257,5172,3682,3039,428,3392,3538,2260,1492,763,371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +567,Bangladesh,2002,449,4490,6288,7038,5981,4493,3682,575,3104,3926,2791,2101,988,865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +568,Bangladesh,2003,320,5166,7275,8058,6947,5501,4142,544,4298,4282,3258,2086,1150,591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +569,Bangladesh,2004,420,6171,8281,8914,8327,6276,5144,589,5081,4869,3758,2518,1434,718,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +570,Bangladesh,2005,524,8170,10443,11423,11038,8476,7453,751,6776,6785,5538,3960,2281,1230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +571,Bangladesh,2006,607,9937,12166,12889,13378,10283,9513,850,8164,8048,6395,5020,2982,1735,1356,3933,4224,3842,3614,2962,3062,1366,4433,3774,2650,1918,1138,709,,,,,,,,,,,,,,,,,,,,,,,,,,,, +572,Bangladesh,2007,523,10210,12442,13003,13307,10653,9830,829,8562,8164,6678,5220,3057,1818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +573,Bangladesh,2008,422,10618,12926,12761,13355,10772,10386,764,9189,8389,6465,5206,3173,1947,1420,4274,4554,3693,3594,2995,3063,1458,4966,3930,2669,1989,1187,759,1421,4272,4554,3695,3595,2995,3061,1457,4967,3931,2666,1987,1186,760,,,,,,,,,,,,,, +574,Bangladesh,2009,,,,,,,,,,,,,,,1747,,,,,,,1719,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +575,Bangladesh,2010,365,10460,12535,11409,12758,11176,11536,653,9221,8279,6185,5458,3484,2250,548,1942,2301,1917,2364,2329,2714,494,1982,1524,1110,1021,775,559,1078,2427,2854,1696,1386,1026,983,1097,3546,3183,1795,1313,702,421,,,,,,,,,,,,,, +576,Bangladesh,2011,309,9606,11616,10152,11728,10746,11301,623,8849,7679,5683,4946,3457,2253,604,1997,2395,1935,2312,2335,2706,548,2036,1549,1159,995,776,574,1300,2882,3198,2027,1632,1249,1125,1283,3963,3674,2139,1513,849,495,,,,,,,,,,,,,, +577,Bangladesh,2012,316,9479,12021,10837,12744,11843,12236,650,9355,8175,6342,6044,4043,2705,534,2109,2527,2154,2637,2755,3158,575,2160,1695,1266,1212,948,721,1400,3108,3494,2169,1831,1378,1194,1367,4545,4251,2469,1786,969,588,,,,,,,,,,,,,, +578,Bangladesh,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2323,14705,18311,16143,19529,19058,20194,2728,16356,15912,12386,11145,7675,5172 +579,Barbados,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +580,Barbados,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +581,Barbados,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +582,Barbados,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +583,Barbados,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +584,Barbados,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +585,Barbados,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +586,Barbados,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +587,Barbados,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +588,Barbados,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +589,Barbados,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +590,Barbados,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +591,Barbados,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +592,Barbados,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +593,Barbados,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +594,Barbados,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +595,Barbados,1996,0,0,1,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +596,Barbados,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +597,Barbados,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +598,Barbados,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +599,Barbados,2000,0,0,0,2,0,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +600,Barbados,2001,0,1,1,1,0,0,1,0,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +601,Barbados,2002,,2,,,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +602,Barbados,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +603,Barbados,2004,,,2,2,6,,4,1,,2,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +604,Barbados,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +605,Barbados,2006,,,2,,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,, +606,Barbados,2007,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,,,,,,,,,,,,,, +607,Barbados,2008,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +608,Barbados,2009,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +609,Barbados,2010,0,0,0,1,2,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +610,Barbados,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +611,Barbados,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +612,Barbados,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,1,1,1,0,0,0,0,0,0,1,0,0 +613,Belarus,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +614,Belarus,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +615,Belarus,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +616,Belarus,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +617,Belarus,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +618,Belarus,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +619,Belarus,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +620,Belarus,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +621,Belarus,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +622,Belarus,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +623,Belarus,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +624,Belarus,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +625,Belarus,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +626,Belarus,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +627,Belarus,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +628,Belarus,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +629,Belarus,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +630,Belarus,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +631,Belarus,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +632,Belarus,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +633,Belarus,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +634,Belarus,2001,2,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +635,Belarus,2002,0,66,133,217,159,75,51,0,12,22,28,17,17,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +636,Belarus,2003,0,67,134,243,226,96,60,0,18,39,43,26,21,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +637,Belarus,2004,,84,170,260,235,83,56,1,31,38,38,35,11,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +638,Belarus,2005,,71,180,273,287,118,62,,25,53,50,43,11,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +639,Belarus,2006,,61,134,217,260,96,71,1,32,38,43,43,18,58,15,237,560,642,695,328,190,15,213,238,190,176,75,135,18,15,14,26,33,28,19,12,18,32,30,34,28,54,,,,,,,,,,,,,, +640,Belarus,2007,,57,142,205,244,110,56,,28,58,41,35,17,58,11,241,518,544,640,307,193,9,180,256,210,140,75,162,5,17,14,19,31,30,22,6,11,35,20,35,36,54,,,,,,,,,,,,,, +641,Belarus,2008,,44,149,207,261,106,69,,26,43,36,34,20,65,3,194,460,474,637,274,154,6,148,214,172,148,58,132,14,26,35,41,39,49,47,15,27,66,29,40,29,43,,,,,,,,,,,,,, +642,Belarus,2009,0,66,173,208,287,134,54,0,41,52,52,41,25,68,,,,,,,,,,,,,,,6,20,33,36,47,39,29,5,15,46,29,39,31,55,,,,,,,,,,,,,, +643,Belarus,2010,0,65,173,224,293,163,58,1,28,52,56,37,28,91,5,153,432,410,501,261,99,10,128,217,159,112,54,106,7,15,28,43,49,38,23,8,11,35,36,34,44,58,,,,,,,,,,,,,, +644,Belarus,2011,1,53,156,228,290,138,48,3,37,67,47,39,27,83,2,164,374,411,458,255,95,6,107,182,152,97,51,85,8,7,28,45,52,39,25,6,5,34,31,20,40,47,,,,,,,,,,,,,, +645,Belarus,2012,0,44,174,250,266,158,73,1,34,64,47,45,28,93,1,98,350,372,413,216,74,7,90,168,131,102,75,87,4,14,23,42,60,32,26,8,11,33,19,29,34,46,,,,,,,,,,,,,, +646,Belarus,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,162,565,803,876,600,226,10,131,280,248,168,141,256 +647,Belgium,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +648,Belgium,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +649,Belgium,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +650,Belgium,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +651,Belgium,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +652,Belgium,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +653,Belgium,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +654,Belgium,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +655,Belgium,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +656,Belgium,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +657,Belgium,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +658,Belgium,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +659,Belgium,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +660,Belgium,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +661,Belgium,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +662,Belgium,1995,3,23,49,63,52,54,102,3,12,24,32,17,10,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +663,Belgium,1996,1,20,43,49,45,32,59,4,9,30,25,11,10,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +664,Belgium,1997,3,18,45,56,43,41,115,2,11,26,22,13,11,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +665,Belgium,1998,3,22,50,58,48,36,78,2,6,30,20,17,13,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +666,Belgium,1999,2,18,40,49,46,38,83,4,20,38,19,22,8,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +667,Belgium,2000,3,20,57,39,55,32,56,6,15,15,19,4,13,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +668,Belgium,2001,8,31,40,47,44,23,54,6,14,21,24,15,7,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +669,Belgium,2002,1,19,56,52,33,19,58,6,21,19,16,9,16,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +670,Belgium,2003,6,27,33,30,40,17,35,5,20,17,15,11,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +671,Belgium,2004,1,26,55,30,37,24,48,6,18,16,20,3,8,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +672,Belgium,2005,1,26,50,32,27,15,47,2,27,31,15,12,4,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +673,Belgium,2006,4,26,52,38,45,27,42,6,25,25,18,6,7,22,20,25,43,33,29,31,48,16,33,29,18,20,12,13,8,22,43,38,25,23,31,9,24,37,19,23,7,21,,,,,,,,,,,,,, +674,Belgium,2007,2,23,55,35,38,18,43,4,13,31,23,7,8,22,25,26,47,45,30,18,53,17,17,27,24,11,10,17,7,17,44,20,11,17,22,11,19,25,28,19,9,17,,,,,,,,,,,,,, +675,Belgium,2008,3,23,40,43,32,24,41,3,17,40,22,8,3,12,18,15,31,29,20,25,43,14,11,24,18,12,10,17,6,20,27,37,18,6,17,7,11,20,15,10,7,12,,,,,,,,,,,,,, +676,Belgium,2009,1,29,33,27,32,24,36,0,21,34,10,7,7,19,22,16,32,17,31,15,34,20,17,22,15,11,8,19,5,12,29,17,15,12,21,11,20,29,18,11,9,19,,,,,,,,,,,,,, +677,Belgium,2010,4,20,39,30,28,20,19,6,13,17,18,11,5,9,23,16,49,37,28,19,43,15,14,25,14,16,6,20,8,16,37,22,19,8,20,5,14,32,14,11,8,12,,,,,,,,,,,,,, +678,Belgium,2011,8,25,50,33,25,16,27,3,13,14,9,3,5,7,17,21,31,20,19,7,40,19,18,25,9,11,12,16,11,20,30,16,5,3,18,6,21,22,6,6,5,17,,,,,,,,,,,,,, +679,Belgium,2012,3,25,33,18,27,22,18,5,23,23,17,9,7,5,18,23,23,24,19,18,26,15,14,10,13,10,8,16,7,22,26,14,14,9,14,9,7,18,17,8,4,10,,,,,,,,,,,,,, +680,Belgium,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,63,135,105,86,57,93,19,58,96,50,31,23,50 +681,Belize,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +682,Belize,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +683,Belize,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +684,Belize,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +685,Belize,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +686,Belize,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +687,Belize,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +688,Belize,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +689,Belize,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +690,Belize,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +691,Belize,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +692,Belize,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +693,Belize,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +694,Belize,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +695,Belize,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +696,Belize,1995,1,1,2,4,0,1,1,0,6,2,0,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +697,Belize,1996,1,3,2,2,2,3,2,0,1,4,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +698,Belize,1997,2,2,6,3,10,3,6,2,3,2,2,0,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +699,Belize,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +700,Belize,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +701,Belize,2000,2,5,7,2,6,3,5,0,2,1,2,4,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +702,Belize,2001,0,0,5,9,7,9,11,0,0,3,4,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +703,Belize,2002,4,7,5,7,11,4,4,3,5,6,3,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +704,Belize,2003,1,4,8,10,3,2,8,2,6,3,3,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +705,Belize,2004,0,4,6,8,6,3,2,1,0,1,1,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +706,Belize,2005,0,8,8,6,8,5,3,0,4,4,4,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +707,Belize,2006,3,4,4,7,5,1,3,2,6,5,3,5,6,6,0,0,0,4,1,0,2,0,0,2,1,5,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +708,Belize,2007,1,6,8,8,7,6,3,0,8,2,5,2,2,3,,,,,,,,,,,,,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,, +709,Belize,2008,1,8,12,15,9,5,8,0,5,0,6,4,3,8,,,,,,,,,,,,,,,0,0,1,0,2,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +710,Belize,2009,2,7,9,12,10,6,8,3,2,7,6,3,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +711,Belize,2010,2,9,16,22,24,11,18,4,5,7,7,9,4,5,2,2,3,6,5,3,6,2,2,3,5,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +712,Belize,2011,0,8,14,9,16,2,0,0,2,0,8,4,1,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +713,Belize,2012,1,2,7,5,4,3,2,0,4,3,4,4,1,0,1,1,4,5,8,3,9,0,0,4,4,2,1,2,0,0,0,3,0,0,0,0,0,1,0,1,0,0,,,,,,,,,,,,,, +714,Belize,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,8,14,13,18,9,12,3,9,7,6,7,6,8 +715,Benin,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +716,Benin,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +717,Benin,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +718,Benin,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +719,Benin,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +720,Benin,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +721,Benin,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +722,Benin,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +723,Benin,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +724,Benin,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +725,Benin,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +726,Benin,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +727,Benin,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +728,Benin,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +729,Benin,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +730,Benin,1995,14,186,352,306,176,101,92,26,148,197,118,69,32,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +731,Benin,1996,17,215,348,277,166,102,77,34,169,218,136,46,42,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +732,Benin,1997,20,215,376,306,180,76,107,26,169,226,124,64,21,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +733,Benin,1998,20,233,367,251,205,113,71,15,189,242,159,65,39,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +734,Benin,1999,14,250,444,293,207,124,85,28,207,254,153,74,39,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +735,Benin,2000,19,277,428,327,213,103,74,36,239,275,149,76,45,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +736,Benin,2001,18,262,429,323,229,107,85,22,230,279,158,94,42,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +737,Benin,2002,16,248,489,304,231,125,94,35,255,298,159,86,47,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +738,Benin,2003,20,266,504,370,188,117,92,32,226,304,150,93,47,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +739,Benin,2004,16,308,529,344,229,125,82,43,263,354,147,73,45,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +740,Benin,2005,21,306,595,396,270,135,87,25,249,331,145,89,51,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +741,Benin,2006,18,298,624,465,247,124,106,32,310,371,158,111,38,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +742,Benin,2007,22,302,580,422,254,156,89,25,253,331,172,81,43,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +743,Benin,2008,20,333,604,439,284,163,100,38,245,386,173,99,52,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +744,Benin,2009,32,284,575,452,323,157,99,39,265,392,178,85,42,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +745,Benin,2010,18,314,631,443,267,164,85,29,265,382,200,98,42,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +746,Benin,2011,21,320,650,497,353,210,107,41,288,385,246,119,42,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +747,Benin,2012,23,314,595,524,329,179,121,39,264,346,221,105,65,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +748,Benin,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,301,591,539,331,156,120,23,251,360,215,120,69,28 +749,Bermuda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +750,Bermuda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +751,Bermuda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +752,Bermuda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +753,Bermuda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +754,Bermuda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +755,Bermuda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +756,Bermuda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +757,Bermuda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +758,Bermuda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +759,Bermuda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +760,Bermuda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +761,Bermuda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +762,Bermuda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +763,Bermuda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +764,Bermuda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +765,Bermuda,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +766,Bermuda,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +767,Bermuda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +768,Bermuda,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +769,Bermuda,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +770,Bermuda,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +771,Bermuda,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +772,Bermuda,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +773,Bermuda,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +774,Bermuda,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +775,Bermuda,2006,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +776,Bermuda,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +777,Bermuda,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +778,Bermuda,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +779,Bermuda,2010,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +780,Bermuda,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +781,Bermuda,2012,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +782,Bermuda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +783,Bhutan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +784,Bhutan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +785,Bhutan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +786,Bhutan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +787,Bhutan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +788,Bhutan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +789,Bhutan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +790,Bhutan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +791,Bhutan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +792,Bhutan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +793,Bhutan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +794,Bhutan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +795,Bhutan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +796,Bhutan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +797,Bhutan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +798,Bhutan,1995,2,42,65,36,35,24,11,12,43,44,25,12,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +799,Bhutan,1996,4,51,45,43,22,12,8,8,42,41,22,14,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +800,Bhutan,1997,4,39,42,36,21,24,8,4,43,34,16,7,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +801,Bhutan,1998,3,45,39,24,24,22,9,7,45,26,25,8,11,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +802,Bhutan,1999,10,27,42,31,29,22,14,9,33,34,23,18,14,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +803,Bhutan,2000,6,65,41,30,24,12,2,7,57,34,31,23,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +804,Bhutan,2001,3,51,50,37,32,10,16,6,58,45,20,12,11,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +805,Bhutan,2002,5,54,51,32,26,22,19,6,54,38,22,20,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +806,Bhutan,2003,9,62,50,20,25,20,13,14,57,39,17,13,15,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +807,Bhutan,2004,1,54,52,28,27,18,23,8,54,35,33,10,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +808,Bhutan,2005,1,47,58,26,23,14,12,9,45,38,13,11,9,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +809,Bhutan,2006,0,65,55,22,20,12,11,5,61,27,10,9,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +810,Bhutan,2007,2,60,44,29,26,17,13,3,59,28,21,10,10,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +811,Bhutan,2008,3,85,46,12,18,13,14,9,151,77,32,33,23,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +812,Bhutan,2009,10,74,53,19,19,21,24,22,92,44,27,12,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +813,Bhutan,2010,,108,50,25,12,26,13,17,104,45,18,18,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +814,Bhutan,2011,2,88,39,26,14,20,19,2,92,40,19,12,4,5,15,16,42,39,12,2,1,10,12,36,37,,1,2,24,32,67,95,43,28,12,18,27,59,87,39,26,16,,,,,,,,,,,,,, +815,Bhutan,2012,6,82,56,30,11,17,11,6,92,58,14,18,9,10,6,12,18,12,8,6,3,4,10,16,12,10,8,2,8,12,56,53,54,40,12,12,18,62,59,58,46,29,,,,,,,,,,,,,, +816,Bhutan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,180,129,70,48,44,48,38,199,134,53,45,41,23 +817,Bolivia (Plurinational State of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +818,Bolivia (Plurinational State of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +819,Bolivia (Plurinational State of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +820,Bolivia (Plurinational State of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +821,Bolivia (Plurinational State of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +822,Bolivia (Plurinational State of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +823,Bolivia (Plurinational State of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +824,Bolivia (Plurinational State of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +825,Bolivia (Plurinational State of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +826,Bolivia (Plurinational State of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +827,Bolivia (Plurinational State of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +828,Bolivia (Plurinational State of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +829,Bolivia (Plurinational State of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +830,Bolivia (Plurinational State of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +831,Bolivia (Plurinational State of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +832,Bolivia (Plurinational State of),1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +833,Bolivia (Plurinational State of),1996,178,1359,887,636,525,321,324,172,841,676,422,244,189,175,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +834,Bolivia (Plurinational State of),1997,150,1214,792,579,485,334,318,202,792,548,380,285,192,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +835,Bolivia (Plurinational State of),1998,167,1254,885,579,488,364,353,202,777,587,274,264,157,230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +836,Bolivia (Plurinational State of),1999,222,1182,862,527,482,379,400,225,798,554,352,263,205,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +837,Bolivia (Plurinational State of),2000,166,1182,797,518,466,340,366,191,831,588,334,254,192,233,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +838,Bolivia (Plurinational State of),2001,165,1235,761,483,489,359,355,241,915,664,302,226,194,283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +839,Bolivia (Plurinational State of),2002,231,1235,787,492,417,356,386,281,938,630,358,238,185,295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +840,Bolivia (Plurinational State of),2003,156,1164,742,501,438,336,442,167,811,549,313,224,196,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +841,Bolivia (Plurinational State of),2004,161,1205,750,505,431,319,399,151,793,555,272,205,186,281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +842,Bolivia (Plurinational State of),2005,157,1320,725,439,391,346,415,160,846,533,276,226,182,262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +843,Bolivia (Plurinational State of),2006,127,1147,699,471,390,333,398,179,764,461,253,177,148,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +844,Bolivia (Plurinational State of),2007,116,1100,604,379,348,328,354,125,736,453,243,193,162,259,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +845,Bolivia (Plurinational State of),2008,128,1253,734,412,391,363,429,147,850,482,237,193,178,251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +846,Bolivia (Plurinational State of),2009,106,1225,703,393,385,343,429,158,795,502,217,225,161,295,,,,,,,,,,,,,,,72,276,212,109,118,131,165,52,178,126,82,62,56,103,,,,,,,,,,,,,, +847,Bolivia (Plurinational State of),2010,95,1150,622,415,395,338,409,119,744,471,238,191,162,264,92,102,66,43,26,29,42,65,38,42,18,9,29,29,63,234,192,121,122,125,171,47,175,161,62,68,60,93,,,,,,,,,,,,,, +848,Bolivia (Plurinational State of),2011,100,1231,685,372,371,302,457,146,778,459,235,183,155,272,75,115,50,46,35,32,56,76,47,34,18,15,20,24,60,289,204,132,125,94,160,55,164,147,66,66,61,98,,,,,,,,,,,,,, +849,Bolivia (Plurinational State of),2012,99,1096,672,368,358,353,380,101,792,480,223,204,193,249,68,100,62,43,29,32,47,57,37,31,16,23,9,17,41,266,198,105,101,141,181,43,173,149,65,60,65,84,,,,,,,,,,,,,, +850,Bolivia (Plurinational State of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,223,1470,978,625,610,556,728,212,945,664,355,277,281,403 +851,"Bonaire, Saint Eustatius and Saba",2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +852,"Bonaire, Saint Eustatius and Saba",2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +853,"Bonaire, Saint Eustatius and Saba",2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +854,"Bonaire, Saint Eustatius and Saba",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +855,Bosnia and Herzegovina,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +856,Bosnia and Herzegovina,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +857,Bosnia and Herzegovina,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +858,Bosnia and Herzegovina,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +859,Bosnia and Herzegovina,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +860,Bosnia and Herzegovina,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +861,Bosnia and Herzegovina,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +862,Bosnia and Herzegovina,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +863,Bosnia and Herzegovina,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +864,Bosnia and Herzegovina,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +865,Bosnia and Herzegovina,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +866,Bosnia and Herzegovina,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +867,Bosnia and Herzegovina,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +868,Bosnia and Herzegovina,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +869,Bosnia and Herzegovina,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +870,Bosnia and Herzegovina,1995,0,15,61,90,140,139,100,0,40,67,64,49,77,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +871,Bosnia and Herzegovina,1996,5,30,48,62,51,60,39,0,23,28,39,16,27,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +872,Bosnia and Herzegovina,1997,5,48,84,99,66,36,74,11,53,42,50,35,65,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +873,Bosnia and Herzegovina,1998,1,28,75,85,75,55,75,3,37,42,27,22,30,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +874,Bosnia and Herzegovina,1999,2,44,76,113,89,60,68,6,49,59,34,24,38,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +875,Bosnia and Herzegovina,2000,4,56,82,99,66,58,77,4,30,46,29,29,48,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +876,Bosnia and Herzegovina,2001,6,39,70,110,89,53,99,7,45,50,34,17,50,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +877,Bosnia and Herzegovina,2002,1,36,48,70,69,33,63,2,22,33,18,19,31,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +878,Bosnia and Herzegovina,2003,4,32,42,49,52,45,50,4,27,37,34,14,30,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +879,Bosnia and Herzegovina,2004,3,66,79,95,82,77,115,3,45,67,43,51,59,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +880,Bosnia and Herzegovina,2005,1,22,58,61,78,44,80,2,35,39,33,28,28,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +881,Bosnia and Herzegovina,2006,0,40,58,47,53,42,66,0,41,50,24,29,20,88,7,22,30,55,73,82,196,10,22,18,34,48,68,243,5,23,11,13,13,10,29,2,14,20,12,15,12,36,,,,,,,,,,,,,, +882,Bosnia and Herzegovina,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +883,Bosnia and Herzegovina,2008,0,20,35,38,84,49,79,3,26,26,20,11,6,112,5,39,47,45,99,80,196,1,19,31,39,40,66,212,4,13,18,23,24,13,33,4,12,12,18,12,18,37,,,,,,,,,,,,,, +884,Bosnia and Herzegovina,2009,2,27,35,75,77,67,99,4,31,30,17,19,13,113,3,28,44,48,103,76,198,2,19,27,27,31,59,197,3,12,12,15,17,17,28,0,12,14,8,14,10,20,,,,,,,,,,,,,, +885,Bosnia and Herzegovina,2010,1,27,37,34,61,46,51,0,27,19,16,10,18,94,6,27,26,41,64,71,154,4,27,19,26,31,41,150,1,12,12,7,15,14,29,1,15,8,8,10,8,21,,,,,,,,,,,,,, +886,Bosnia and Herzegovina,2011,2,33,32,52,75,61,62,3,17,27,17,13,25,128,6,24,34,39,61,91,80,6,19,31,25,31,35,127,1,15,7,9,14,16,25,2,5,9,8,11,20,20,,,,,,,,,,,,,, +887,Bosnia and Herzegovina,2012,1,23,32,58,74,62,92,0,33,26,21,10,25,116,7,19,32,29,59,80,102,2,19,20,9,19,27,105,4,17,14,10,13,14,27,4,9,6,12,13,10,23,,,,,,,,,,,,,, +888,Bosnia and Herzegovina,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,57,73,89,125,136,208,5,53,46,47,50,71,294 +889,Botswana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +890,Botswana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +891,Botswana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +892,Botswana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +893,Botswana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +894,Botswana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +895,Botswana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +896,Botswana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +897,Botswana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +898,Botswana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +899,Botswana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +900,Botswana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +901,Botswana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +902,Botswana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +903,Botswana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +904,Botswana,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +905,Botswana,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +906,Botswana,1997,29,193,509,422,244,143,95,28,291,359,181,97,60,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +907,Botswana,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +908,Botswana,1999,18,177,526,492,274,139,93,46,274,434,225,90,30,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +909,Botswana,2000,25,185,605,488,267,135,96,37,335,469,262,98,57,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +910,Botswana,2001,15,190,539,490,288,116,73,33,328,493,309,116,46,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +911,Botswana,2002,17,226,595,517,244,136,84,45,393,566,290,144,54,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +912,Botswana,2003,22,203,552,446,244,136,78,32,338,524,276,104,52,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +913,Botswana,2004,29,245,490,436,271,122,96,49,358,544,290,110,52,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +914,Botswana,2005,27,260,563,506,272,135,97,45,321,491,253,97,55,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +915,Botswana,2006,36,262,577,490,289,122,104,54,326,507,259,133,55,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +916,Botswana,2007,25,251,535,442,263,120,82,46,347,430,254,123,47,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +917,Botswana,2008,27,254,528,384,220,113,85,42,347,474,226,135,51,30,225,144,492,473,282,152,132,215,227,461,298,131,67,67,90,63,226,204,103,53,52,87,110,274,154,79,21,28,,,,,,,,,,,,,, +918,Botswana,2009,40,262,539,461,271,136,101,63,331,455,256,128,56,45,311,138,442,439,259,149,123,274,217,488,284,142,67,60,81,69,217,188,96,55,43,84,99,226,149,73,24,25,,,,,,,,,,,,,, +919,Botswana,2010,45,256,590,477,239,137,107,68,338,509,301,119,56,53,142,108,266,327,147,90,86,153,120,271,169,80,41,55,57,53,177,144,87,50,34,58,83,196,166,58,19,28,,,,,,,,,,,,,, +920,Botswana,2011,36,220,464,354,206,110,94,65,286,421,211,105,48,49,141,70,259,259,150,105,100,129,163,254,192,83,38,40,63,46,169,149,99,48,52,40,84,227,138,53,21,24,,,,,,,,,,,,,, +921,Botswana,2012,40,207,394,333,190,79,75,63,267,402,193,109,43,31,170,99,283,325,151,91,99,162,125,314,196,102,44,47,54,47,169,174,79,46,47,46,76,189,127,45,30,22,,,,,,,,,,,,,, +922,Botswana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,298,423,908,1024,584,346,328,258,501,898,636,317,146,167 +923,Brazil,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +924,Brazil,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +925,Brazil,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +926,Brazil,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +927,Brazil,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +928,Brazil,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +929,Brazil,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +930,Brazil,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +931,Brazil,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +932,Brazil,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +933,Brazil,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +934,Brazil,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +935,Brazil,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +936,Brazil,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +937,Brazil,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +938,Brazil,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +939,Brazil,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +940,Brazil,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +941,Brazil,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +942,Brazil,1999,301,3662,5401,5827,4630,2634,2121,372,2909,3450,2621,1661,1042,1106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +943,Brazil,2000,1894,7268,11568,11906,8623,5085,4494,1859,6719,7215,5395,3582,2384,2496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +944,Brazil,2001,468,4455,5536,5184,4285,2353,1694,516,3632,3303,2296,1701,1050,1018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +945,Brazil,2002,344,4695,5890,6325,4834,2738,2080,380,3715,3584,2817,1755,1031,535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +946,Brazil,2003,382,4485,5709,6034,4863,2589,2057,401,3582,3542,2540,1676,1001,1022,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +947,Brazil,2004,337,5041,6321,6481,5157,2716,2169,375,3684,3763,2742,1865,1041,1189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +948,Brazil,2005,317,5074,6119,6128,5259,2803,2140,355,3496,3663,2626,1897,1112,1104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +949,Brazil,2006,343,4783,6098,6050,5042,2885,2221,343,3132,3506,2569,1885,1121,1139,781,2046,2804,2990,2643,1606,1645,787,1412,1733,1420,1096,726,896,365,825,1504,1458,1066,567,531,311,672,1026,941,612,399,379,,,,,,,,,,,,,, +950,Brazil,2007,371,4399,5990,5456,4878,2726,2075,344,2952,3250,2327,1727,977,972,789,2092,2879,3097,2687,1725,1630,733,1334,1817,1428,1189,842,823,385,821,1489,1414,1022,570,479,314,587,976,873,618,397,373,,,,,,,,,,,,,, +951,Brazil,2008,298,4436,6173,5305,4854,2650,1905,356,2709,3233,2266,1669,964,879,715,2108,2977,2894,2612,1638,1537,711,1315,1857,1434,1171,767,929,356,790,1477,1388,1043,586,494,296,592,951,814,584,384,367,,,,,,,,,,,,,, +952,Brazil,2009,328,4621,6399,5291,5058,2846,1994,352,2880,3326,2271,1758,1077,1011,750,2037,2908,2728,2547,1696,1512,663,1336,1734,1362,1171,750,915,363,901,1441,1315,1044,576,542,293,577,980,798,657,385,379,,,,,,,,,,,,,, +953,Brazil,2010,298,4405,6381,5293,4762,2875,1947,280,2677,3008,2211,1720,1038,979,675,2081,3206,2795,2609,1783,1663,596,1350,1812,1381,1198,835,993,362,819,1464,1277,1006,597,495,239,579,1004,830,602,374,349,,,,,,,,,,,,,, +954,Brazil,2011,336,4877,6755,5462,5054,3083,2142,356,2815,3131,2230,1779,1164,1069,641,1786,2793,2621,2522,1707,1556,602,1125,1517,1247,1068,821,896,296,801,1485,1288,1011,644,502,284,564,975,757,668,393,379,,,,,,,,,,,,,, +955,Brazil,2012,277,5027,6811,5387,5128,3103,2160,303,2798,3013,2173,1785,1113,1030,643,1937,2916,2449,2350,1730,1380,623,1097,1446,1235,1176,853,853,298,879,1521,1250,1075,659,532,244,590,975,802,664,420,367,,,,,,,,,,,,,, +956,Brazil,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1398,7903,11759,10043,8991,6041,4602,1249,4670,5673,4547,3868,2672,2580 +957,British Virgin Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +958,British Virgin Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +959,British Virgin Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +960,British Virgin Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +961,British Virgin Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +962,British Virgin Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +963,British Virgin Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +964,British Virgin Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +965,British Virgin Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +966,British Virgin Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +967,British Virgin Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +968,British Virgin Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +969,British Virgin Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +970,British Virgin Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +971,British Virgin Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +972,British Virgin Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +973,British Virgin Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +974,British Virgin Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +975,British Virgin Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +976,British Virgin Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +977,British Virgin Islands,2000,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +978,British Virgin Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +979,British Virgin Islands,2002,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +980,British Virgin Islands,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +981,British Virgin Islands,2004,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +982,British Virgin Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +983,British Virgin Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +984,British Virgin Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +985,British Virgin Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +986,British Virgin Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +987,British Virgin Islands,2010,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +988,British Virgin Islands,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +989,British Virgin Islands,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +990,British Virgin Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +991,Brunei Darussalam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +992,Brunei Darussalam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +993,Brunei Darussalam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +994,Brunei Darussalam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +995,Brunei Darussalam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +996,Brunei Darussalam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +997,Brunei Darussalam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +998,Brunei Darussalam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +999,Brunei Darussalam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1000,Brunei Darussalam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1001,Brunei Darussalam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1002,Brunei Darussalam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1003,Brunei Darussalam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1004,Brunei Darussalam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1005,Brunei Darussalam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1006,Brunei Darussalam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1007,Brunei Darussalam,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1008,Brunei Darussalam,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1009,Brunei Darussalam,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1010,Brunei Darussalam,1999,0,16,42,30,11,25,31,1,16,36,16,16,13,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1011,Brunei Darussalam,2000,0,6,4,15,5,7,15,0,4,6,9,6,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1012,Brunei Darussalam,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1013,Brunei Darussalam,2002,2,15,15,7,6,8,14,0,11,9,8,5,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1014,Brunei Darussalam,2003,0,5,25,17,8,8,9,0,9,14,11,4,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1015,Brunei Darussalam,2004,0,10,13,12,16,11,10,0,6,11,12,8,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1016,Brunei Darussalam,2005,0,9,19,19,12,9,0,0,9,11,8,3,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1017,Brunei Darussalam,2006,2,10,11,12,13,10,11,1,5,11,8,11,4,9,,0,3,1,3,3,3,0,2,0,1,3,0,6,,2,2,1,2,4,2,1,1,10,4,3,3,1,,,,,,,,,,,,,, +1018,Brunei Darussalam,2007,0,5,10,15,21,10,17,0,6,6,12,15,9,2,0,1,0,2,1,1,1,0,0,0,1,0,1,1,0,3,7,2,4,2,6,0,3,5,8,7,1,1,,,,,,,,,,,,,, +1019,Brunei Darussalam,2008,0,10,10,12,21,6,23,1,6,11,8,7,7,10,0,2,2,6,2,1,5,0,2,4,1,1,1,1,0,1,3,2,6,4,4,0,5,8,5,2,1,2,,,,,,,,,,,,,, +1020,Brunei Darussalam,2009,1,5,5,16,13,18,29,0,10,12,11,7,3,10,0,0,0,3,2,0,2,0,1,4,3,0,2,1,1,2,3,4,2,2,2,2,4,8,6,7,3,3,,,,,,,,,,,,,, +1021,Brunei Darussalam,2010,0,17,15,13,18,7,18,2,7,15,12,8,4,10,0,2,4,6,4,1,4,0,0,4,1,0,1,3,1,3,3,4,5,4,4,0,2,7,5,2,2,1,,,,,,,,,,,,,, +1022,Brunei Darussalam,2011,0,11,11,11,10,11,13,2,5,9,6,7,3,10,0,6,6,5,12,2,7,0,1,3,5,1,1,3,0,5,10,5,4,2,4,0,5,3,4,2,1,3,,,,,,,,,,,,,, +1023,Brunei Darussalam,2012,0,10,13,15,13,8,19,0,5,6,9,10,6,5,0,4,8,11,8,6,11,0,4,3,6,3,4,11,1,2,1,1,4,3,6,0,3,1,4,3,0,2,,,,,,,,,,,,,, +1024,Brunei Darussalam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,14,20,20,27,16,27,3,9,24,17,12,10,12 +1025,Bulgaria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1026,Bulgaria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1027,Bulgaria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1028,Bulgaria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1029,Bulgaria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1030,Bulgaria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1031,Bulgaria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1032,Bulgaria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1033,Bulgaria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1034,Bulgaria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1035,Bulgaria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1036,Bulgaria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1037,Bulgaria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1038,Bulgaria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1039,Bulgaria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1040,Bulgaria,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1041,Bulgaria,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1042,Bulgaria,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1043,Bulgaria,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1044,Bulgaria,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1045,Bulgaria,2000,0,13,16,20,3,9,10,0,11,14,7,3,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1046,Bulgaria,2001,1,15,20,23,23,18,13,1,11,16,13,5,2,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1047,Bulgaria,2002,2,62,86,116,132,58,56,6,48,73,45,19,9,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1048,Bulgaria,2003,3,99,169,178,200,121,89,7,85,106,63,44,32,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1049,Bulgaria,2004,10,97,156,166,204,153,111,4,84,111,64,49,35,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1050,Bulgaria,2005,9,98,150,195,195,150,136,9,90,111,59,29,37,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1051,Bulgaria,2006,6,86,146,170,184,133,123,12,76,96,86,34,24,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1052,Bulgaria,2007,7,63,122,181,176,131,90,4,63,77,53,38,29,46,17,53,104,83,128,132,164,24,43,71,35,41,45,70,75,46,35,39,41,54,73,67,37,25,31,31,36,63,,,,,,,,,,,,,, +1053,Bulgaria,2008,2,80,145,151,159,127,68,1,57,78,54,31,23,44,11,67,98,103,150,157,172,10,48,56,51,54,44,100,118,36,33,43,31,43,68,83,20,35,27,34,57,59,,,,,,,,,,,,,, +1054,Bulgaria,2009,7,51,93,120,158,96,84,2,65,72,44,44,21,39,10,46,73,72,126,107,144,10,34,46,49,41,58,74,94,52,33,50,39,52,90,79,31,23,26,42,37,92,,,,,,,,,,,,,, +1055,Bulgaria,2010,1,40,115,143,133,90,65,3,42,59,43,23,15,34,6,45,73,69,78,97,117,8,37,44,40,32,35,67,93,34,40,41,42,58,81,102,41,32,31,34,37,81,,,,,,,,,,,,,, +1056,Bulgaria,2011,2,38,100,110,122,92,61,2,41,40,36,28,14,30,6,35,68,78,81,94,97,6,20,44,49,37,36,56,88,33,39,32,32,43,82,69,27,21,20,26,50,66,,,,,,,,,,,,,, +1057,Bulgaria,2012,0,46,89,130,131,82,57,0,37,50,44,24,16,35,6,30,58,62,73,90,93,3,16,40,40,28,32,47,87,31,36,26,37,46,86,80,23,11,21,28,30,64,,,,,,,,,,,,,, +1058,Bulgaria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,89,196,218,247,240,228,82,73,102,111,81,62,137 +1059,Burkina Faso,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1060,Burkina Faso,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1061,Burkina Faso,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1062,Burkina Faso,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1063,Burkina Faso,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1064,Burkina Faso,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1065,Burkina Faso,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1066,Burkina Faso,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1067,Burkina Faso,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1068,Burkina Faso,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1069,Burkina Faso,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1070,Burkina Faso,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1071,Burkina Faso,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1072,Burkina Faso,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1073,Burkina Faso,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1074,Burkina Faso,1995,4,67,133,124,62,48,29,7,76,53,39,26,11,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1075,Burkina Faso,1996,3,47,161,148,115,65,36,10,51,97,67,58,31,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1076,Burkina Faso,1997,3,47,161,148,115,65,36,10,51,97,67,58,31,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1077,Burkina Faso,1998,4,104,270,236,159,89,65,9,83,98,86,82,32,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1078,Burkina Faso,1999,13,85,247,216,118,83,56,8,67,141,92,63,39,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1079,Burkina Faso,2000,12,91,274,252,133,68,65,7,59,128,101,45,38,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1080,Burkina Faso,2001,7,124,283,279,168,122,70,17,80,155,100,49,32,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1081,Burkina Faso,2002,6,123,273,266,156,124,83,12,85,159,104,80,30,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1082,Burkina Faso,2003,14,148,313,321,162,129,80,19,102,131,132,70,46,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1083,Burkina Faso,2004,10,155,375,308,204,138,102,22,109,196,148,72,54,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1084,Burkina Faso,2005,18,181,430,370,273,144,113,15,125,248,174,109,54,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1085,Burkina Faso,2006,13,227,473,433,307,183,140,33,155,252,198,99,99,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1086,Burkina Faso,2007,8,233,442,429,303,176,145,29,157,243,187,129,88,45,42,22,62,68,66,35,50,29,22,52,54,34,24,17,27,49,59,51,53,30,27,20,30,68,44,26,14,15,,,,,,,,,,,,,, +1087,Burkina Faso,2008,8,225,555,448,314,174,146,33,143,250,180,116,107,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1088,Burkina Faso,2009,27,221,592,467,336,230,189,38,156,269,209,154,96,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1089,Burkina Faso,2010,20,231,620,493,328,224,173,33,158,259,198,124,97,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1090,Burkina Faso,2011,22,265,708,582,375,262,196,31,163,277,221,146,110,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1091,Burkina Faso,2012,25,277,769,631,423,250,198,27,160,288,191,156,106,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1092,Burkina Faso,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,274,828,671,416,252,212,32,163,251,190,134,95,76 +1093,Burundi,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1094,Burundi,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1095,Burundi,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1096,Burundi,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1097,Burundi,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1098,Burundi,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1099,Burundi,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1100,Burundi,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1101,Burundi,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1102,Burundi,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1103,Burundi,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1104,Burundi,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1105,Burundi,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1106,Burundi,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1107,Burundi,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1108,Burundi,1995,5,128,238,224,73,32,19,19,109,124,89,33,12,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1109,Burundi,1996,16,217,283,274,116,41,17,18,132,203,112,53,16,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1110,Burundi,1997,21,208,446,431,198,79,32,30,189,265,198,71,39,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1111,Burundi,1998,45,301,527,530,319,102,33,49,265,321,240,126,47,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1112,Burundi,1999,64,349,566,492,281,102,57,66,291,253,236,109,30,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1113,Burundi,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1114,Burundi,2001,34,344,559,469,238,75,39,81,369,364,337,86,30,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1115,Burundi,2002,16,310,470,520,270,97,52,48,243,242,324,152,24,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1116,Burundi,2003,32,348,572,488,260,106,35,75,308,361,276,119,27,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1117,Burundi,2004,24,352,674,468,292,78,48,51,325,370,232,114,40,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1118,Burundi,2005,34,352,591,525,372,111,55,46,298,399,288,122,36,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1119,Burundi,2006,30,347,600,488,320,114,64,41,296,367,242,140,56,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1120,Burundi,2007,26,425,637,542,372,177,88,55,360,392,276,140,67,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1121,Burundi,2008,30,430,684,526,459,175,80,38,335,340,264,139,72,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1122,Burundi,2009,34,452,717,584,468,240,117,50,326,397,309,157,83,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1123,Burundi,2010,56,481,773,651,570,270,157,78,390,421,332,225,99,87,43,57,108,131,119,78,43,33,55,84,84,77,29,22,245,125,191,182,153,70,44,214,117,197,143,86,43,16,,,,,,,,,,,,,, +1124,Burundi,2011,37,484,743,620,504,235,98,56,345,374,263,180,81,40,18,49,81,107,103,60,60,17,53,63,57,45,36,36,188,132,199,177,135,64,43,159,118,171,128,67,43,25,,,,,,,,,,,,,, +1125,Burundi,2012,45,447,801,667,461,233,103,74,338,367,283,162,64,30,22,56,121,90,82,63,34,19,46,46,67,41,32,27,188,141,229,195,173,96,53,177,152,167,143,89,47,37,,,,,,,,,,,,,, +1126,Burundi,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,262,679,1204,1071,803,426,244,266,534,658,461,336,179,126 +1127,Cabo Verde,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1128,Cabo Verde,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1129,Cabo Verde,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1130,Cabo Verde,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1131,Cabo Verde,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1132,Cabo Verde,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1133,Cabo Verde,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1134,Cabo Verde,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1135,Cabo Verde,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1136,Cabo Verde,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1137,Cabo Verde,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1138,Cabo Verde,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1139,Cabo Verde,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1140,Cabo Verde,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1141,Cabo Verde,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1142,Cabo Verde,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1143,Cabo Verde,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1144,Cabo Verde,1997,0,11,16,19,4,10,10,2,10,10,8,3,10,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1145,Cabo Verde,1998,2,9,14,14,6,6,9,2,12,4,5,3,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1146,Cabo Verde,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1147,Cabo Verde,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1148,Cabo Verde,2001,0,5,15,6,5,5,1,2,7,9,7,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1149,Cabo Verde,2002,3,9,29,20,14,1,2,2,11,11,12,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1150,Cabo Verde,2003,3,12,32,32,9,7,8,1,6,7,13,7,4,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1151,Cabo Verde,2004,1,8,33,17,20,2,7,2,17,34,11,7,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1152,Cabo Verde,2005,0,22,23,26,9,2,8,2,9,16,4,5,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1153,Cabo Verde,2006,2,15,22,18,8,6,4,2,14,16,5,6,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1154,Cabo Verde,2007,0,24,30,26,18,4,6,0,18,17,5,1,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1155,Cabo Verde,2008,0,23,33,29,27,12,6,6,18,21,11,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1156,Cabo Verde,2009,1,27,40,31,19,3,6,4,13,10,8,4,1,5,7,3,12,14,11,6,2,4,4,10,6,10,3,2,2,5,11,8,9,2,3,1,3,2,3,3,1,0,,,,,,,,,,,,,, +1157,Cabo Verde,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1158,Cabo Verde,2011,0,17,43,35,31,3,3,4,14,15,4,6,3,4,17,9,18,17,17,7,11,6,4,5,4,6,1,5,4,7,13,7,5,0,0,1,4,7,4,3,2,0,,,,,,,,,,,,,, +1159,Cabo Verde,2012,0,29,36,34,24,8,2,0,19,13,9,8,3,4,11,15,19,18,11,8,10,10,6,6,5,6,1,4,6,9,11,6,7,3,0,5,5,6,3,1,1,3,,,,,,,,,,,,,, +1160,Cabo Verde,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,23,46,29,20,9,9,2,12,12,10,4,5,4 +1161,Cambodia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1162,Cambodia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1163,Cambodia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1164,Cambodia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1165,Cambodia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1166,Cambodia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1167,Cambodia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1168,Cambodia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1169,Cambodia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1170,Cambodia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1171,Cambodia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1172,Cambodia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1173,Cambodia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1174,Cambodia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1175,Cambodia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1176,Cambodia,1995,161,453,1244,1147,1253,1257,707,123,388,1133,1435,1426,1180,578,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1177,Cambodia,1996,148,32,1272,1363,1348,1226,726,124,27,1087,1430,1534,1201,547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1178,Cambodia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1179,Cambodia,1998,36,446,1330,1477,1521,1293,924,23,367,1184,1531,1667,1359,691,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1180,Cambodia,1999,41,525,1389,1734,1645,1578,1089,51,445,1229,1861,1857,1448,852,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1181,Cambodia,2000,26,519,1323,1618,1456,1373,1058,38,457,1157,1649,1798,1459,892,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1182,Cambodia,2001,29,600,1302,1601,1406,1403,1037,25,455,1033,1526,1687,1428,829,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1183,Cambodia,2002,54,791,1449,1956,1799,1624,1432,54,600,1114,1737,1898,1650,1100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1184,Cambodia,2003,37,805,1514,2183,1848,1729,1487,46,691,1287,1975,2208,1857,1256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1185,Cambodia,2004,36,850,1466,2261,1942,1759,1538,28,658,1276,1882,2176,1836,1270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1186,Cambodia,2005,49,894,1600,2349,2043,1964,1811,45,790,1413,2089,2323,2058,1573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1187,Cambodia,2006,50,791,1486,2205,1902,1689,1665,44,749,1330,1839,2072,1915,1557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1188,Cambodia,2007,50,883,1526,2190,2102,1761,1644,64,749,1351,1698,2105,1839,1459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1189,Cambodia,2008,49,920,1570,2040,2117,1746,1683,72,808,1403,1809,2093,1943,1607,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1190,Cambodia,2009,37,746,1522,1884,2117,1543,1548,45,801,1252,1461,1894,1637,1376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1191,Cambodia,2010,39,750,1564,1760,2105,1531,1599,60,752,1321,1303,1732,1607,1331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1192,Cambodia,2011,34,791,1469,1557,1972,1439,1339,39,690,1211,1092,1528,1473,1242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1193,Cambodia,2012,31,673,1256,1414,1904,1434,1526,22,612,1088,957,1424,1302,1198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1194,Cambodia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,583,1213,1316,1825,1373,1367,32,540,1079,893,1319,1264,1247 +1195,Cameroon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1196,Cameroon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1197,Cameroon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1198,Cameroon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1199,Cameroon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1200,Cameroon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1201,Cameroon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1202,Cameroon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1203,Cameroon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1204,Cameroon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1205,Cameroon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1206,Cameroon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1207,Cameroon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1208,Cameroon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1209,Cameroon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1210,Cameroon,1995,20,208,569,323,287,204,164,9,185,313,223,153,106,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1211,Cameroon,1996,34,151,735,291,178,38,17,21,123,388,202,103,24,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1212,Cameroon,1997,36,321,1011,387,269,79,24,25,277,522,341,179,63,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1213,Cameroon,1998,15,651,1006,787,262,87,35,30,443,595,268,112,53,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1214,Cameroon,1999,49,602,1595,736,433,166,59,47,506,783,505,235,95,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1215,Cameroon,2000,41,518,842,584,284,130,75,63,368,530,293,139,60,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1216,Cameroon,2001,24,643,1000,732,322,154,86,49,482,609,328,155,62,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1217,Cameroon,2002,66,818,1335,1117,619,258,125,59,950,1053,545,236,140,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1218,Cameroon,2003,100,1176,2274,1516,788,330,160,136,1273,1542,745,363,217,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1219,Cameroon,2004,127,1312,2147,1575,928,408,259,181,1310,1449,756,412,214,140,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1220,Cameroon,2005,134,1472,2482,1766,1035,463,289,226,1467,1788,1028,503,205,143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1221,Cameroon,2006,112,1401,2550,1820,1080,437,300,151,1358,1823,960,470,266,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1222,Cameroon,2007,121,1392,2613,1874,1011,480,307,152,1443,1963,985,483,248,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1223,Cameroon,2008,108,1613,2861,2016,1135,526,281,173,1506,2041,1027,568,234,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1224,Cameroon,2009,107,1635,2822,2029,1245,567,355,155,1521,1997,1123,529,245,157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1225,Cameroon,2010,106,1497,2750,1996,1314,559,329,172,1474,2031,1121,642,290,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1226,Cameroon,2011,114,1580,2931,2139,1283,625,361,178,1461,2022,1177,581,281,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1227,Cameroon,2012,108,1597,2900,2182,1304,658,375,184,1417,2053,1177,579,295,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1228,Cameroon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,115,,,,,,,176,,,,,, +1229,Canada,1980,12,54,75,83,100,108,186,18,62,51,34,31,33,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1230,Canada,1981,8,49,61,64,87,103,141,6,46,57,26,28,35,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1231,Canada,1982,6,52,66,69,90,91,150,7,51,57,30,25,38,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1232,Canada,1983,9,47,63,62,90,92,123,11,50,50,29,24,35,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1233,Canada,1984,3,44,75,58,68,83,169,9,51,59,28,28,36,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1234,Canada,1985,11,42,70,59,77,81,168,5,30,56,19,28,48,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1235,Canada,1986,9,58,73,62,59,73,147,10,33,54,33,20,26,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1236,Canada,1987,9,40,71,60,49,64,129,8,39,48,29,17,26,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1237,Canada,1988,4,43,73,62,52,68,131,6,38,56,27,16,26,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1238,Canada,1989,10,45,56,60,54,62,122,6,37,51,23,24,21,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1239,Canada,1990,3,35,70,55,40,42,100,1,30,38,26,17,20,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1240,Canada,1991,7,37,79,53,37,36,110,4,23,37,31,9,20,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1241,Canada,1992,6,42,47,58,41,51,79,2,27,28,21,11,15,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1242,Canada,1993,8,33,47,53,43,33,74,6,22,50,22,21,21,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1243,Canada,1994,2,42,54,42,43,34,87,3,37,37,19,11,13,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1244,Canada,1995,1,28,31,60,34,41,70,7,33,28,22,12,18,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1245,Canada,1996,3,28,49,48,31,34,70,2,23,34,28,14,16,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1246,Canada,1997,0,21,55,44,30,44,90,1,36,44,26,13,16,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1247,Canada,1998,4,33,43,51,31,26,80,1,26,31,26,14,18,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1248,Canada,1999,0,23,47,51,36,33,94,4,33,31,28,13,11,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1249,Canada,2000,5,34,45,46,41,32,79,4,33,40,30,25,12,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1250,Canada,2001,6,24,49,56,40,22,76,5,23,41,33,16,14,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1251,Canada,2002,0,25,34,50,34,27,64,6,32,31,26,17,17,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1252,Canada,2003,1,26,36,37,32,21,42,3,21,28,25,15,9,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1253,Canada,2004,2,25,34,38,32,31,64,0,34,55,34,19,22,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1254,Canada,2005,3,37,45,44,40,20,68,6,28,40,27,24,13,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1255,Canada,2006,2,34,34,33,42,26,64,4,39,30,25,16,6,52,43,60,25,52,42,29,71,39,40,41,46,23,24,51,6,19,42,43,20,14,40,7,30,46,41,33,29,32,,,,,,,,,,,,,, +1256,Canada,2007,5,31,41,51,50,35,75,2,32,33,33,11,13,51,14,36,38,38,29,28,55,16,34,33,36,20,12,60,36,29,32,49,29,25,33,22,21,55,47,39,30,37,,,,,,,,,,,,,, +1257,Canada,2008,2,39,36,49,53,38,62,3,36,39,39,27,20,45,15,30,44,40,28,34,59,20,24,51,40,28,13,40,24,18,39,38,34,14,38,19,32,44,39,20,16,41,,,,,,,,,,,,,, +1258,Canada,2009,2,45,41,53,55,30,58,3,19,39,28,27,20,42,12,44,49,51,41,29,64,12,45,50,39,20,16,47,29,26,39,42,37,23,34,28,24,50,42,32,28,32,,,,,,,,,,,,,, +1259,Canada,2010,3,30,28,36,32,25,62,1,28,24,16,10,19,44,6,22,39,55,40,38,75,8,19,43,34,26,17,50,12,25,29,43,30,16,38,13,22,66,45,37,30,38,,,,,,,,,,,,,, +1260,Canada,2011,2,34,36,31,40,33,70,3,23,29,28,14,9,55,18,34,45,31,38,23,60,14,34,49,26,22,13,49,18,28,37,44,32,18,38,19,24,66,50,30,32,33,,,,,,,,,,,,,, +1261,Canada,2012,1,33,32,53,51,35,97,6,32,34,29,19,11,45,28,46,57,38,54,35,79,21,40,57,35,27,12,45,28,41,52,43,31,28,53,24,34,45,52,35,19,34,,,,,,,,,,,,,, +1262,Canada,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61,117,110,119,142,127,226,47,85,161,125,92,62,164 +1263,Cayman Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1264,Cayman Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1265,Cayman Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1266,Cayman Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1267,Cayman Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1268,Cayman Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1269,Cayman Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1270,Cayman Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1271,Cayman Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1272,Cayman Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1273,Cayman Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1274,Cayman Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1275,Cayman Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1276,Cayman Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1277,Cayman Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1278,Cayman Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1279,Cayman Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1280,Cayman Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1281,Cayman Islands,1998,0,0,0,0,0,0,1,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1282,Cayman Islands,1999,0,0,0,1,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1283,Cayman Islands,2000,0,0,3,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1284,Cayman Islands,2001,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1285,Cayman Islands,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1286,Cayman Islands,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1287,Cayman Islands,2004,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1288,Cayman Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1289,Cayman Islands,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1290,Cayman Islands,2007,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1291,Cayman Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1292,Cayman Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1293,Cayman Islands,2010,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1294,Cayman Islands,2011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1295,Cayman Islands,2012,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1296,Cayman Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,1,0,0,0,1,1,0,0,0,0 +1297,Central African Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1298,Central African Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1299,Central African Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1300,Central African Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1301,Central African Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1302,Central African Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1303,Central African Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1304,Central African Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1305,Central African Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1306,Central African Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1307,Central African Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1308,Central African Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1309,Central African Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1310,Central African Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1311,Central African Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1312,Central African Republic,1995,38,162,356,206,120,40,18,39,233,350,145,57,21,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1313,Central African Republic,1996,46,192,385,234,94,57,15,52,273,346,177,62,45,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1314,Central African Republic,1997,54,211,403,282,144,65,26,53,301,394,207,100,23,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1315,Central African Republic,1998,28,205,482,328,157,76,46,67,353,476,217,115,61,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1316,Central African Republic,1999,28,224,529,367,123,67,65,72,376,498,196,86,52,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1317,Central African Republic,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1318,Central African Republic,2001,15,127,279,171,78,45,16,25,179,236,123,64,23,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1319,Central African Republic,2002,76,264,462,414,154,82,22,66,315,402,262,139,82,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1320,Central African Republic,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1321,Central African Republic,2004,12,58,694,575,241,30,14,14,60,430,559,181,46,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1322,Central African Republic,2005,29,40,1136,160,26,35,15,30,32,420,145,30,40,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1323,Central African Republic,2006,48,409,770,923,152,83,30,52,538,613,647,126,42,16,12,127,172,81,8,5,1,6,99,150,36,5,4,1,46,116,107,72,15,8,0,47,86,708,47,5,3,1,,,,,,,,,,,,,, +1324,Central African Republic,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1325,Central African Republic,2008,68,466,643,515,276,160,81,102,481,673,378,196,136,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1326,Central African Republic,2009,124,546,850,662,351,184,94,137,611,723,426,228,128,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1327,Central African Republic,2010,78,379,633,468,251,135,63,88,367,576,319,155,73,44,144,130,154,171,108,56,39,139,171,214,146,72,42,12,206,79,84,84,55,18,11,157,78,140,96,39,19,9,,,,,,,,,,,,,, +1328,Central African Republic,2011,70,362,576,467,269,119,59,96,382,530,289,162,62,26,87,52,120,126,43,25,9,104,88,163,77,36,25,8,166,49,90,61,37,18,11,138,78,117,59,30,13,8,,,,,,,,,,,,,, +1329,Central African Republic,2012,73,502,799,660,360,158,92,101,511,689,370,191,96,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1330,Central African Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,479,714,568,349,140,57,93,496,626,343,170,71,36 +1331,Chad,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1332,Chad,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1333,Chad,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1334,Chad,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1335,Chad,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1336,Chad,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1337,Chad,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1338,Chad,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1339,Chad,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1340,Chad,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1341,Chad,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1342,Chad,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1343,Chad,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1344,Chad,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1345,Chad,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1346,Chad,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1347,Chad,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1348,Chad,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1349,Chad,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1350,Chad,1999,20,172,414,957,477,42,4,13,28,230,458,78,16,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1351,Chad,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1352,Chad,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1353,Chad,2002,24,90,1029,794,269,37,17,18,28,495,500,187,18,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1354,Chad,2003,155,256,428,549,303,191,78,112,206,363,497,259,151,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1355,Chad,2004,72,141,466,415,207,61,29,41,89,317,262,129,25,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1356,Chad,2005,25,194,535,409,229,123,82,28,148,298,211,148,59,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1357,Chad,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1358,Chad,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1359,Chad,2008,63,,,1543,584,,,78,,,777,264,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1360,Chad,2009,48,355,808,642,336,196,126,47,256,339,319,196,90,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1361,Chad,2010,76,382,850,666,379,173,99,59,274,413,263,158,79,44,168,207,408,406,245,151,110,140,165,238,185,94,44,37,134,135,139,138,70,44,52,102,86,102,81,49,35,21,,,,,,,,,,,,,, +1362,Chad,2011,92,469,951,764,418,184,121,84,296,438,298,166,109,44,177,279,438,371,225,141,109,143,221,263,209,99,86,38,118,99,124,104,67,52,39,103,65,105,62,41,33,21,,,,,,,,,,,,,, +1363,Chad,2012,68,405,842,634,376,210,88,51,273,403,227,135,91,46,216,288,553,502,253,175,114,154,235,303,225,138,105,66,148,111,151,93,78,51,36,96,83,97,65,47,41,16,,,,,,,,,,,,,, +1364,Chad,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,471,910,1874,1599,1124,721,441,396,629,1075,676,609,476,236 +1365,Chile,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1366,Chile,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1367,Chile,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1368,Chile,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1369,Chile,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1370,Chile,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1371,Chile,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1372,Chile,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1373,Chile,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1374,Chile,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1375,Chile,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1376,Chile,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1377,Chile,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1378,Chile,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1379,Chile,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1380,Chile,1995,24,148,182,204,155,141,163,24,100,120,108,75,73,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1381,Chile,1996,8,123,201,207,207,125,139,11,88,117,72,63,47,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1382,Chile,1997,11,107,182,224,165,153,163,11,92,121,80,66,60,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1383,Chile,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1384,Chile,1999,4,118,173,204,206,132,132,9,87,109,97,52,76,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1385,Chile,2000,6,81,160,198,150,132,126,10,66,96,70,54,58,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1386,Chile,2001,2,78,183,213,190,116,138,9,69,85,76,58,55,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1387,Chile,2002,6,87,163,196,193,144,160,7,64,91,82,76,54,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1388,Chile,2003,1,77,131,181,183,150,136,8,59,106,81,42,41,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1389,Chile,2004,3,87,148,179,187,124,168,5,58,74,76,57,57,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1390,Chile,2005,3,74,128,179,162,115,133,4,55,78,60,56,36,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1391,Chile,2006,12,107,140,176,197,179,199,7,70,91,74,95,64,122,6,14,14,21,16,10,21,5,12,17,6,10,4,12,14,42,51,52,62,47,43,15,23,36,41,37,37,70,,,,,,,,,,,,,, +1392,Chile,2007,3,86,137,140,169,139,121,8,59,75,63,49,39,78,4,35,49,51,61,48,84,11,16,29,17,23,15,53,13,37,60,66,61,51,43,8,23,36,46,44,56,60,,,,,,,,,,,,,, +1393,Chile,2008,7,86,131,148,167,135,118,3,52,86,49,37,30,65,10,41,70,49,53,51,86,8,21,23,15,26,20,52,16,32,68,75,65,39,59,5,19,45,58,42,55,58,,,,,,,,,,,,,, +1394,Chile,2009,7,85,141,147,169,109,140,8,51,67,68,52,49,59,8,32,41,54,50,58,73,12,30,19,25,24,37,46,15,36,58,49,58,31,58,7,22,27,46,38,43,61,,,,,,,,,,,,,, +1395,Chile,2010,2,90,115,144,159,122,157,6,56,76,59,56,40,72,6,23,39,65,52,52,81,10,22,24,32,20,29,47,12,31,69,54,56,39,47,16,26,41,42,37,39,44,,,,,,,,,,,,,, +1396,Chile,2011,4,88,139,143,164,127,134,6,62,75,66,69,48,71,9,35,45,49,70,39,72,5,17,20,22,21,21,48,13,43,74,57,57,35,61,13,23,32,35,44,42,65,,,,,,,,,,,,,, +1397,Chile,2012,4,91,122,135,170,117,149,4,59,69,53,56,60,76,8,33,41,50,61,61,94,18,17,18,22,25,29,60,10,31,66,45,46,38,53,5,24,35,31,33,39,57,,,,,,,,,,,,,, +1398,Chile,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,135,275,253,300,240,303,19,116,147,118,124,150,184 +1399,China,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1400,China,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1401,China,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1402,China,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1403,China,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1404,China,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1405,China,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1406,China,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1407,China,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1408,China,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1409,China,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1410,China,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1411,China,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1412,China,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1413,China,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1414,China,1995,1102,12791,18306,15487,13105,13489,10130,1169,10890,13250,8376,5679,4579,2841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1415,China,1996,1409,16490,24057,19695,17024,16758,13697,1624,13773,17218,10214,7020,5346,3945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1416,China,1997,1456,18547,28247,23006,20330,19667,17041,1534,15258,19547,11758,8259,6422,4823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1417,China,1998,1481,19699,30093,25088,23483,21651,20501,1558,15726,20203,12672,9399,7122,5728,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1418,China,1999,1247,18961,29328,25095,24239,21564,21367,1431,15178,18846,12370,9838,7131,5663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1419,China,2000,1131,19111,29399,25206,25593,21429,21771,1420,14536,18496,12377,9899,7102,6296,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1420,China,2001,1213,19121,28520,25544,25759,20789,22799,1405,14500,17446,12041,9963,7175,6491,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1421,China,2002,925,17933,25242,22645,23884,19564,22562,1152,13250,15188,10505,8796,6586,6740,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1422,China,2003,1133,25125,32760,31604,32585,27243,32027,1407,18811,19248,14783,12101,8988,9465,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1423,China,2004,1375,35465,43594,45408,46256,41846,50797,1659,25951,25150,20613,16995,14038,15739,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1424,China,2005,1416,43005,49558,55400,54872,53822,69779,1864,31180,27759,24728,19889,18203,21244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1425,China,2006,1023,44528,48232,56733,54301,53746,68557,1408,30904,26526,24564,18775,17782,21212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1426,China,2007,878,44011,46374,56224,54960,56288,70376,1235,29960,24914,23542,18129,17647,21339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1427,China,2008,751,45596,44651,56182,55740,57492,69678,964,29223,23484,22370,17565,17814,21086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1428,China,2009,944,44757,41439,53300,54700,57653,67213,1078,29195,22179,21636,16898,17537,20623,2865,51307,42063,47112,44567,47249,58778,2356,32424,23121,22432,18704,19685,22662,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1429,China,2010,759,42851,38880,50246,52925,56754,64514,926,27064,21022,20422,16075,17441,20020,2522,54328,41926,45869,43632,47016,55003,2193,33194,24042,22604,18710,19627,22202,198,403,477,507,505,429,350,112,486,580,798,602,520,358,,,,,,,,,,,,,, +1430,China,2011,645,37514,34597,43087,47949,51315,55881,733,22859,18347,17119,14103,15218,17638,2291,58225,46051,50724,51044,55593,63305,1874,34383,26119,24405,21018,22141,24341,153,415,487,531,466,463,390,103,493,716,709,640,582,392,,,,,,,,,,,,,, +1431,China,2012,511,29018,28324,34505,40428,44821,49413,580,17786,15549,13485,11981,13384,16547,2362,60246,50282,54472,57181,64972,74282,1926,35518,28753,26472,23869,26085,29630,155,393,463,578,499,452,394,91,461,633,677,684,578,421,,,,,,,,,,,,,, +1432,China,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2529,84785,76917,84565,100297,112558,124476,2301,49491,44985,38804,37138,40892,47438 +1433,"China, Hong Kong SAR",1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1434,"China, Hong Kong SAR",1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1435,"China, Hong Kong SAR",1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1436,"China, Hong Kong SAR",1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1437,"China, Hong Kong SAR",1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1438,"China, Hong Kong SAR",1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1439,"China, Hong Kong SAR",1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1440,"China, Hong Kong SAR",1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1441,"China, Hong Kong SAR",1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1442,"China, Hong Kong SAR",1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1443,"China, Hong Kong SAR",1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1444,"China, Hong Kong SAR",1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1445,"China, Hong Kong SAR",1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1446,"China, Hong Kong SAR",1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1447,"China, Hong Kong SAR",1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1448,"China, Hong Kong SAR",1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1449,"China, Hong Kong SAR",1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1450,"China, Hong Kong SAR",1997,5,90,122,174,198,271,593,12,85,114,83,49,64,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1451,"China, Hong Kong SAR",1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1452,"China, Hong Kong SAR",1999,3,88,121,162,173,233,432,8,85,109,72,50,43,188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1453,"China, Hong Kong SAR",2000,4,78,102,160,211,236,578,5,65,115,86,44,45,211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1454,"China, Hong Kong SAR",2001,6,79,99,162,196,201,519,13,88,119,83,58,34,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1455,"China, Hong Kong SAR",2002,2,99,105,163,207,218,543,8,97,115,90,57,35,153,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1456,"China, Hong Kong SAR",2003,8,104,91,140,195,180,472,10,88,136,102,65,43,160,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1457,"China, Hong Kong SAR",2004,3,59,94,128,226,175,477,6,97,112,87,56,34,140,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1458,"China, Hong Kong SAR",2005,3,76,84,108,200,168,453,3,67,81,92,57,34,135,19,177,190,213,264,283,907,14,172,237,148,123,78,354,11,26,40,38,40,37,78,10,30,85,83,90,46,87,,,,,,,,,,,,,, +1459,"China, Hong Kong SAR",2006,3,75,84,135,174,161,439,9,59,97,73,54,42,132,13,110,177,187,264,279,888,16,129,193,163,109,76,304,2,27,35,40,36,43,101,4,30,75,78,79,55,92,,,,,,,,,,,,,, +1460,"China, Hong Kong SAR",2007,5,63,80,110,177,175,425,1,59,94,74,64,37,137,15,108,152,146,257,259,863,11,112,183,147,105,75,346,8,20,21,38,48,45,80,9,35,85,74,76,49,105,,,,,,,,,,,,,, +1461,"China, Hong Kong SAR",2008,0,59,79,95,166,208,414,8,65,84,65,45,40,131,9,117,151,201,264,247,959,17,118,183,134,138,95,348,7,19,35,33,43,42,104,6,30,91,72,93,55,98,,,,,,,,,,,,,, +1462,"China, Hong Kong SAR",2009,3,53,64,79,176,179,413,7,56,107,82,56,39,130,8,107,134,159,220,256,803,16,89,189,132,123,91,346,7,24,37,34,50,42,93,5,25,89,58,81,59,118,,,,,,,,,,,,,, +1463,"China, Hong Kong SAR",2010,2,52,84,99,184,166,413,3,49,101,76,64,49,133,17,95,119,130,208,224,711,14,112,124,136,108,80,274,2,16,42,46,45,48,151,6,21,79,80,80,64,112,,,,,,,,,,,,,, +1464,"China, Hong Kong SAR",2011,2,72,52,63,172,189,384,3,56,89,69,60,53,116,9,96,105,109,206,253,715,8,69,158,105,94,87,230,7,24,43,32,54,64,137,6,31,84,85,74,64,110,,,,,,,,,,,,,, +1465,"China, Hong Kong SAR",2012,4,63,67,95,174,178,430,1,45,110,76,51,54,115,5,75,99,118,194,233,709,7,66,140,120,111,88,241,7,33,30,33,39,55,145,3,25,82,74,73,87,131,,,,,,,,,,,,,, +1466,"China, Hong Kong SAR",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,197,200,234,406,593,1299,15,140,346,285,219,242,549 +1467,"China, Macao SAR",1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1468,"China, Macao SAR",1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1469,"China, Macao SAR",1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1470,"China, Macao SAR",1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1471,"China, Macao SAR",1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1472,"China, Macao SAR",1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1473,"China, Macao SAR",1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1474,"China, Macao SAR",1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1475,"China, Macao SAR",1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1476,"China, Macao SAR",1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1477,"China, Macao SAR",1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1478,"China, Macao SAR",1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1479,"China, Macao SAR",1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1480,"China, Macao SAR",1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1481,"China, Macao SAR",1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1482,"China, Macao SAR",1995,0,7,19,20,13,12,16,0,9,18,12,4,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1483,"China, Macao SAR",1996,1,16,29,34,20,16,26,0,10,21,14,3,3,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1484,"China, Macao SAR",1997,1,15,38,47,37,34,55,4,10,16,21,5,6,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1485,"China, Macao SAR",1998,0,11,26,42,23,28,56,1,9,13,22,6,3,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1486,"China, Macao SAR",1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1487,"China, Macao SAR",2000,0,10,8,25,22,9,17,0,10,4,6,6,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1488,"China, Macao SAR",2001,0,9,17,26,25,11,23,1,5,7,11,10,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1489,"China, Macao SAR",2002,1,13,8,21,20,17,21,1,7,10,7,9,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1490,"China, Macao SAR",2003,0,9,9,16,27,9,27,0,7,7,11,7,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1491,"China, Macao SAR",2004,0,8,7,18,31,12,14,0,5,7,12,3,2,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1492,"China, Macao SAR",2005,3,6,9,21,23,17,22,0,5,9,7,8,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1493,"China, Macao SAR",2006,0,15,6,17,32,19,19,1,7,8,9,4,3,4,2,22,10,26,18,15,16,0,20,4,22,9,4,7,0,4,5,0,6,0,2,1,7,5,9,3,0,4,,,,,,,,,,,,,, +1494,"China, Macao SAR",2007,0,14,12,14,30,16,13,2,10,4,6,8,3,6,0,11,13,18,25,19,14,1,9,13,7,4,3,10,,4,1,2,2,2,3,,1,4,3,5,1,1,,,,,,,,,,,,,, +1495,"China, Macao SAR",2008,1,18,12,10,29,19,13,2,7,6,5,6,6,5,1,21,15,11,28,16,14,0,12,8,9,8,5,2,0,3,3,4,4,1,3,0,4,8,7,8,1,3,,,,,,,,,,,,,, +1496,"China, Macao SAR",2009,0,12,12,8,24,15,10,1,5,10,5,6,3,5,0,18,9,9,27,12,8,1,13,11,11,5,2,4,1,3,4,3,3,3,7,0,4,5,4,6,1,1,,,,,,,,,,,,,, +1497,"China, Macao SAR",2010,0,17,5,7,22,20,11,0,7,6,10,5,7,6,1,29,17,10,26,12,14,2,22,11,8,11,3,9,1,8,4,1,2,0,5,0,7,4,6,6,3,2,,,,,,,,,,,,,, +1498,"China, Macao SAR",2011,0,20,22,22,47,39,24,0,28,25,17,18,6,6,0,10,8,9,24,12,13,0,15,12,8,9,3,3,0,3,3,0,4,2,6,1,3,5,2,5,6,6,,,,,,,,,,,,,, +1499,"China, Macao SAR",2012,0,10,12,13,22,32,17,1,12,11,13,3,7,3,0,12,17,7,26,23,11,0,10,11,7,5,4,6,1,2,2,1,1,4,5,0,2,4,1,3,2,3,,,,,,,,,,,,,, +1500,"China, Macao SAR",2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,31,31,37,66,53,65,2,25,34,27,26,20,15 +1501,Colombia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1502,Colombia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1503,Colombia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1504,Colombia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1505,Colombia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1506,Colombia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1507,Colombia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1508,Colombia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1509,Colombia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1510,Colombia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1511,Colombia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1512,Colombia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1513,Colombia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1514,Colombia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1515,Colombia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1516,Colombia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1517,Colombia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1518,Colombia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1519,Colombia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1520,Colombia,1999,270,1730,1473,1796,1500,350,1210,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1521,Colombia,2000,246,763,1030,963,743,610,746,194,587,758,523,381,304,510,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1522,Colombia,2001,223,1037,703,722,869,646,653,186,865,544,429,436,350,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1523,Colombia,2002,209,614,696,688,593,472,662,167,524,545,402,318,258,371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1524,Colombia,2003,237,684,816,844,853,642,761,174,662,692,512,382,292,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1525,Colombia,2004,208,732,824,743,725,564,737,205,624,647,513,361,331,426,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1526,Colombia,2005,178,623,685,666,687,510,695,179,581,533,457,389,292,395,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1527,Colombia,2006,219,709,713,737,785,573,766,210,603,653,520,377,314,469,128,73,111,97,122,96,139,125,73,94,83,52,51,104,67,144,218,238,131,104,155,56,100,130,127,73,61,96,,,,,,,,,,,,,, +1528,Colombia,2007,144,618,704,694,712,574,786,138,599,620,459,393,286,461,120,93,123,143,133,133,182,109,78,104,117,97,102,102,58,134,218,220,149,122,146,47,94,157,132,82,42,102,,,,,,,,,,,,,, +1529,Colombia,2008,136,666,736,666,749,610,797,133,580,608,441,384,284,406,126,106,153,136,130,129,154,137,88,117,109,94,87,143,95,169,257,257,155,137,185,72,118,151,138,109,80,103,,,,,,,,,,,,,, +1530,Colombia,2009,124,697,754,651,692,569,838,121,575,582,434,423,304,447,141,116,143,105,129,116,135,139,94,120,86,105,56,105,123,182,286,246,193,139,207,69,136,185,127,107,78,106,,,,,,,,,,,,,, +1531,Colombia,2010,148,602,765,540,710,610,814,146,560,576,428,374,284,471,161,88,130,121,127,158,216,144,79,115,72,70,100,115,69,169,252,242,178,154,184,51,117,172,139,91,78,89,,,,,,,,,,,,,, +1532,Colombia,2011,105,663,714,558,702,594,753,98,461,535,324,337,278,390,154,165,187,164,229,183,282,148,111,157,138,121,113,203,70,174,294,259,207,169,222,58,152,201,136,119,92,122,,,,,,,,,,,,,, +1533,Colombia,2012,92,613,744,497,653,616,740,79,519,555,376,355,252,432,163,118,208,175,174,203,264,160,87,155,127,117,117,211,70,205,288,284,211,154,209,57,133,177,131,129,82,134,,,,,,,,,,,,,, +1534,Colombia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,299,976,1436,990,1138,1081,1340,272,759,907,651,631,502,755 +1535,Comoros,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1536,Comoros,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1537,Comoros,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1538,Comoros,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1539,Comoros,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1540,Comoros,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1541,Comoros,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1542,Comoros,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1543,Comoros,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1544,Comoros,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1545,Comoros,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1546,Comoros,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1547,Comoros,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1548,Comoros,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1549,Comoros,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1550,Comoros,1995,0,18,13,9,7,8,4,1,13,9,8,6,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1551,Comoros,1996,1,19,16,12,4,8,8,1,7,12,6,4,10,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1552,Comoros,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1553,Comoros,1998,0,15,10,13,11,6,0,0,7,9,5,8,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1554,Comoros,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1555,Comoros,2000,0,18,7,14,9,3,4,1,9,6,12,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1556,Comoros,2001,0,15,11,10,11,3,5,2,10,11,8,4,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1557,Comoros,2002,0,10,9,8,4,3,3,0,11,6,7,6,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1558,Comoros,2003,1,7,12,5,1,3,3,0,5,7,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1559,Comoros,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1560,Comoros,2005,0,12,9,6,4,2,4,2,10,7,4,8,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1561,Comoros,2006,0,12,9,7,4,4,1,0,5,5,9,6,4,1,0,2,3,2,1,2,2,1,2,2,1,2,1,1,1,2,1,3,2,1,0,2,1,0,5,1,1,0,,,,,,,,,,,,,, +1562,Comoros,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1563,Comoros,2008,2,11,11,4,9,5,5,2,6,11,1,6,2,2,4,1,1,0,0,4,0,2,0,0,0,1,1,2,1,1,1,2,1,2,1,0,1,1,2,1,0,5,,,,,,,,,,,,,, +1564,Comoros,2009,1,9,12,12,11,6,3,1,8,4,4,2,2,1,0,0,2,0,2,1,1,2,3,0,0,2,1,1,4,4,1,2,1,1,1,1,2,1,2,1,2,4,,,,,,,,,,,,,, +1565,Comoros,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1566,Comoros,2011,0,10,13,9,5,2,5,2,8,4,2,1,0,1,1,1,0,1,0,1,0,1,1,1,1,2,1,1,1,7,0,5,2,2,0,6,1,3,3,1,0,1,,,,,,,,,,,,,, +1567,Comoros,2012,,9,15,8,4,6,6,1,5,7,5,1,1,3,1,1,4,4,3,3,1,,,1,1,2,,2,,3,2,4,1,,5,,1,3,1,,2,1,,,,,,,,,,,,,, +1568,Comoros,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,7,14,10,8,6,2,0,13,2,2,4,2,0 +1569,Congo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1570,Congo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1571,Congo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1572,Congo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1573,Congo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1574,Congo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1575,Congo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1576,Congo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1577,Congo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1578,Congo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1579,Congo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1580,Congo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1581,Congo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1582,Congo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1583,Congo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1584,Congo,1995,16,265,409,221,73,44,15,17,296,353,167,61,38,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1585,Congo,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1586,Congo,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1587,Congo,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1588,Congo,1999,17,272,407,229,99,39,27,25,297,348,143,83,24,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1589,Congo,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1590,Congo,2001,31,557,756,437,174,85,65,53,554,706,377,177,85,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1591,Congo,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1592,Congo,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1593,Congo,2004,9,602,887,451,251,78,32,38,310,800,373,156,88,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1594,Congo,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1595,Congo,2006,32,371,656,392,174,69,51,44,384,500,247,138,79,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1596,Congo,2007,28,351,635,482,233,78,63,45,411,608,334,153,71,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1597,Congo,2008,31,417,606,469,195,68,49,56,396,505,308,135,85,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1598,Congo,2009,50,474,644,376,220,87,56,65,426,493,292,127,76,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1599,Congo,2010,41,435,672,424,203,77,55,49,409,510,296,152,70,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1600,Congo,2011,58,453,705,462,222,80,76,72,408,463,332,200,88,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1601,Congo,2012,46,563,716,519,276,113,72,63,438,482,349,171,68,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1602,Congo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,502,803,572,246,101,60,46,452,475,300,156,84,71 +1603,Cook Islands,1980,0,2,0,1,1,0,0,0,3,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1604,Cook Islands,1981,0,0,1,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1605,Cook Islands,1982,0,0,0,1,2,3,1,0,2,0,3,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1606,Cook Islands,1983,0,2,1,0,0,1,1,0,4,0,3,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1607,Cook Islands,1984,0,0,1,0,1,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1608,Cook Islands,1985,1,0,0,1,2,1,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1609,Cook Islands,1986,0,1,0,0,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1610,Cook Islands,1987,0,0,0,1,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1611,Cook Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1612,Cook Islands,1989,0,0,0,0,0,0,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1613,Cook Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1614,Cook Islands,1991,0,0,0,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1615,Cook Islands,1992,0,0,0,0,1,2,0,0,0,0,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1616,Cook Islands,1993,0,0,0,0,2,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1617,Cook Islands,1994,0,0,0,0,0,3,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1618,Cook Islands,1995,0,0,0,0,0,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1619,Cook Islands,1996,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1620,Cook Islands,1997,0,0,0,0,0,1,0,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1621,Cook Islands,1998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1622,Cook Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1623,Cook Islands,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1624,Cook Islands,2001,0,0,0,0,0,1,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1625,Cook Islands,2002,0,0,0,0,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1626,Cook Islands,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1627,Cook Islands,2004,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1628,Cook Islands,2005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1629,Cook Islands,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1630,Cook Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1631,Cook Islands,2008,,,,1,,1,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1632,Cook Islands,2009,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1633,Cook Islands,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1634,Cook Islands,2011,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1635,Cook Islands,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1636,Cook Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,1,1,0,0,0,0,0,0,0 +1637,Costa Rica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1638,Costa Rica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1639,Costa Rica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1640,Costa Rica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1641,Costa Rica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1642,Costa Rica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1643,Costa Rica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1644,Costa Rica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1645,Costa Rica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1646,Costa Rica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1647,Costa Rica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1648,Costa Rica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1649,Costa Rica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1650,Costa Rica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1651,Costa Rica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1652,Costa Rica,1995,1,17,38,24,19,23,22,2,17,15,11,7,9,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1653,Costa Rica,1996,0,11,11,19,15,19,15,0,4,9,7,3,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1654,Costa Rica,1997,37,30,82,69,52,35,45,31,28,45,40,30,24,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1655,Costa Rica,1998,30,53,78,67,53,43,36,23,19,43,47,27,17,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1656,Costa Rica,1999,4,28,63,89,70,51,73,10,23,42,37,32,33,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1657,Costa Rica,2000,14,31,53,62,39,28,49,13,21,33,24,20,23,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1658,Costa Rica,2001,2,26,53,72,50,29,36,1,18,31,20,16,16,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1659,Costa Rica,2002,3,26,45,44,43,19,38,6,13,24,19,14,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1660,Costa Rica,2003,3,33,47,32,39,28,33,4,25,24,21,30,11,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1661,Costa Rica,2004,1,49,62,45,36,29,43,5,35,29,34,11,18,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1662,Costa Rica,2005,1,43,38,53,34,20,34,1,21,31,18,16,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1663,Costa Rica,2006,1,27,36,29,34,25,24,4,27,24,20,15,8,11,12,1,10,6,7,7,9,9,5,5,8,8,3,2,2,10,16,13,5,8,5,3,4,7,7,5,6,4,,,,,,,,,,,,,, +1664,Costa Rica,2007,4,44,57,28,32,17,31,3,16,24,19,16,16,15,10,12,10,6,23,8,8,7,3,5,4,5,6,3,4,5,11,10,9,13,8,3,4,1,4,5,6,8,,,,,,,,,,,,,, +1665,Costa Rica,2008,3,24,39,31,38,17,29,2,19,31,20,14,6,14,12,4,6,8,9,4,11,20,3,,4,5,3,4,2,12,12,8,10,9,13,4,9,3,10,8,5,2,,,,,,,,,,,,,, +1666,Costa Rica,2009,,26,49,27,26,24,29,,27,22,12,10,8,11,16,6,4,15,6,6,15,20,3,7,4,6,2,2,3,8,11,16,12,1,8,4,4,8,4,3,5,2,,,,,,,,,,,,,, +1667,Costa Rica,2010,2,18,48,33,27,22,28,0,18,20,12,14,15,8,12,7,4,8,5,9,12,13,4,1,2,3,2,7,2,8,12,13,15,8,18,1,0,9,6,3,6,7,,,,,,,,,,,,,, +1668,Costa Rica,2011,0,23,24,29,33,22,36,2,18,27,23,19,12,17,18,7,2,9,8,9,25,15,10,5,4,9,1,6,4,4,6,11,11,4,11,3,3,6,5,7,4,6,,,,,,,,,,,,,, +1669,Costa Rica,2012,2,18,33,28,34,41,23,2,11,24,11,12,8,5,13,5,6,9,6,7,9,9,2,5,12,6,5,3,4,3,19,22,9,8,10,3,5,8,3,4,2,2,,,,,,,,,,,,,, +1670,Costa Rica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,28,41,37,37,47,46,9,15,35,23,13,11,42 +1671,Cote d'Ivoire,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1672,Cote d'Ivoire,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1673,Cote d'Ivoire,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1674,Cote d'Ivoire,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1675,Cote d'Ivoire,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1676,Cote d'Ivoire,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1677,Cote d'Ivoire,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1678,Cote d'Ivoire,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1679,Cote d'Ivoire,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1680,Cote d'Ivoire,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1681,Cote d'Ivoire,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1682,Cote d'Ivoire,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1683,Cote d'Ivoire,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1684,Cote d'Ivoire,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1685,Cote d'Ivoire,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1686,Cote d'Ivoire,1995,41,989,2092,1344,759,283,130,99,810,813,497,273,105,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1687,Cote d'Ivoire,1996,118,903,1670,1107,535,262,178,139,803,836,409,194,158,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1688,Cote d'Ivoire,1997,87,1140,1850,1326,662,398,260,118,955,1123,548,291,184,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1689,Cote d'Ivoire,1998,72,1173,1747,1471,795,433,273,104,955,1087,703,347,126,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1690,Cote d'Ivoire,1999,98,1069,1794,1240,629,378,251,132,1022,1137,644,260,186,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1691,Cote d'Ivoire,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1692,Cote d'Ivoire,2001,108,1205,1818,1378,686,393,302,127,1111,1345,735,342,239,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1693,Cote d'Ivoire,2002,102,1271,2194,1490,833,385,307,135,1151,1620,827,358,210,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1694,Cote d'Ivoire,2003,116,1232,2075,1517,818,416,366,154,1193,1617,878,443,222,151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1695,Cote d'Ivoire,2004,114,1418,2323,1530,875,474,387,160,1266,1734,916,472,273,194,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1696,Cote d'Ivoire,2005,128,1346,2449,1606,888,422,385,193,1280,1756,989,528,232,201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1697,Cote d'Ivoire,2006,171,1467,2476,1614,915,564,368,191,1327,1776,1069,445,275,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1698,Cote d'Ivoire,2007,173,1576,2705,1817,981,532,429,225,1349,1973,1126,596,354,235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1699,Cote d'Ivoire,2008,261,1764,2944,1842,1121,649,482,277,1477,2085,1171,641,326,254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1700,Cote d'Ivoire,2009,199,1758,2886,1762,1048,527,354,237,1473,1913,1073,559,301,210,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1701,Cote d'Ivoire,2010,159,1751,2858,1882,1010,505,375,246,1431,1819,1051,531,304,209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1702,Cote d'Ivoire,2011,189,1743,3043,1852,1072,601,348,244,1358,1838,1044,560,301,223,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1703,Cote d'Ivoire,2012,163,1743,3087,2017,1032,552,430,204,1306,1870,1120,536,337,263,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1704,Cote d'Ivoire,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,148,1770,3270,2161,1134,588,420,242,1416,1827,1111,560,314,280 +1705,Croatia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1706,Croatia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1707,Croatia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1708,Croatia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1709,Croatia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1710,Croatia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1711,Croatia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1712,Croatia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1713,Croatia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1714,Croatia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1715,Croatia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1716,Croatia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1717,Croatia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1718,Croatia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1719,Croatia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1720,Croatia,1995,6,38,97,210,132,178,141,10,50,57,57,38,60,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1721,Croatia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1722,Croatia,1997,12,65,88,180,124,118,117,13,43,43,54,28,52,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1723,Croatia,1998,14,48,81,177,176,106,129,19,44,64,54,38,48,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1724,Croatia,1999,1,29,45,83,93,46,45,2,14,18,15,15,16,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1725,Croatia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1726,Croatia,2001,0,32,64,186,126,88,64,2,32,36,54,34,28,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1727,Croatia,2002,1,18,40,75,77,32,43,0,18,18,20,19,16,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1728,Croatia,2003,0,15,27,68,80,42,60,1,14,19,18,10,15,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1729,Croatia,2004,1,18,32,68,81,39,53,3,18,17,11,12,7,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1730,Croatia,2005,1,24,27,48,72,47,34,1,12,18,15,11,6,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1731,Croatia,2006,0,20,23,58,69,30,48,2,16,26,16,22,7,59,10,21,23,41,75,54,99,12,9,19,31,15,21,89,2,7,3,5,18,6,15,2,5,1,7,12,9,21,,,,,,,,,,,,,, +1732,Croatia,2007,,,,,,,,,,,,,,,0,1,2,7,13,8,15,0,2,3,2,4,1,11,0,0,0,2,1,0,2,0,0,0,0,0,0,2,,,,,,,,,,,,,, +1733,Croatia,2008,0,15,25,34,63,32,47,1,11,16,13,15,12,44,13,17,18,40,62,50,88,10,16,23,17,21,26,101,2,4,4,10,7,6,19,1,1,3,3,13,3,25,,,,,,,,,,,,,, +1734,Croatia,2009,0,14,25,41,61,34,38,0,12,8,14,5,10,40,13,21,17,28,54,40,76,11,13,18,12,16,18,73,1,0,6,5,7,8,16,0,1,1,4,6,5,21,,,,,,,,,,,,,, +1735,Croatia,2010,0,10,19,18,38,25,24,1,3,8,4,2,1,30,7,8,14,22,47,56,80,10,13,15,21,15,14,60,0,3,5,5,6,7,12,0,0,4,6,9,6,24,,,,,,,,,,,,,, +1736,Croatia,2011,0,12,5,20,31,31,21,0,12,14,14,8,7,26,4,12,15,30,40,53,45,7,10,10,16,14,24,63,0,0,1,0,6,5,14,2,2,5,2,7,9,22,,,,,,,,,,,,,, +1737,Croatia,2012,0,7,10,18,24,29,14,0,0,10,2,2,3,21,5,9,15,19,41,57,49,5,4,16,19,14,23,60,2,2,3,7,5,5,11,0,2,1,3,4,6,12,,,,,,,,,,,,,, +1738,Croatia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,19,29,32,66,74,93,3,11,18,17,32,25,91 +1739,Cuba,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1740,Cuba,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1741,Cuba,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1742,Cuba,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1743,Cuba,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1744,Cuba,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1745,Cuba,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1746,Cuba,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1747,Cuba,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1748,Cuba,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1749,Cuba,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1750,Cuba,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1751,Cuba,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1752,Cuba,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1753,Cuba,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1754,Cuba,1995,2,59,118,83,75,75,156,1,17,52,29,39,48,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1755,Cuba,1996,0,54,136,86,93,84,138,1,29,44,20,45,42,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1756,Cuba,1997,0,69,151,83,63,77,116,2,16,49,33,32,28,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1757,Cuba,1998,0,60,140,109,75,53,102,1,17,48,23,30,31,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1758,Cuba,1999,1,55,163,97,68,72,100,2,15,37,27,20,28,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1759,Cuba,2000,0,71,167,90,74,55,75,2,9,22,26,22,23,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1760,Cuba,2001,0,36,136,87,39,54,67,1,24,17,22,17,20,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1761,Cuba,2002,0,21,104,83,67,45,77,3,15,28,22,21,20,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1762,Cuba,2003,2,23,90,91,62,51,78,0,11,14,20,23,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1763,Cuba,2004,0,17,68,95,63,45,50,0,16,20,15,16,20,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1764,Cuba,2005,2,20,73,90,50,58,51,2,14,17,26,13,22,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1765,Cuba,2006,,22,73,93,50,47,50,,8,18,22,12,14,23,2,4,20,31,27,32,24,2,4,4,8,6,14,10,1,6,24,23,10,7,3,2,4,3,5,4,,4,,,,,,,,,,,,,, +1766,Cuba,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1767,Cuba,2008,2,30,66,108,67,59,53,3,11,14,22,18,11,34,9,8,18,30,15,17,19,4,5,4,8,10,7,13,1,11,20,23,14,9,6,0,3,2,6,3,4,4,,,,,,,,,,,,,, +1768,Cuba,2009,,16,57,72,70,42,65,,10,13,16,13,14,30,7,9,14,21,23,17,19,5,3,2,6,7,8,9,1,13,18,14,9,4,10,,2,5,5,5,3,2,,,,,,,,,,,,,, +1769,Cuba,2010,3,17,61,89,78,53,57,1,15,15,14,16,17,26,11,5,17,29,30,29,39,5,2,2,6,11,10,16,0,5,16,19,11,15,4,1,6,2,8,3,4,4,,,,,,,,,,,,,, +1770,Cuba,2011,2,14,51,83,86,50,48,1,6,18,18,17,17,26,5,5,19,20,37,25,49,4,3,6,10,6,5,25,1,5,13,18,11,3,6,0,4,4,4,9,5,3,,,,,,,,,,,,,, +1771,Cuba,2012,1,15,45,83,70,45,36,0,13,12,16,12,13,13,6,4,18,30,32,23,26,8,4,4,9,7,14,15,0,13,18,13,14,10,12,3,3,6,4,6,2,8,,,,,,,,,,,,,, +1772,Cuba,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,23,82,136,145,89,94,4,15,31,30,31,28,44 +1773,Curacao,2010,0,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1774,Curacao,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1775,Curacao,2012,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +1776,Curacao,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,1,0,0,0,0,1,0,0,0 +1777,Cyprus,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1778,Cyprus,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1779,Cyprus,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1780,Cyprus,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1781,Cyprus,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1782,Cyprus,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1783,Cyprus,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1784,Cyprus,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1785,Cyprus,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1786,Cyprus,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1787,Cyprus,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1788,Cyprus,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1789,Cyprus,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1790,Cyprus,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1791,Cyprus,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1792,Cyprus,1995,0,1,1,0,1,1,2,0,1,1,1,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1793,Cyprus,1996,0,0,0,0,0,1,0,0,2,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1794,Cyprus,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1795,Cyprus,1998,0,0,1,0,0,0,1,0,1,3,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1796,Cyprus,1999,5,1,6,2,2,10,0,4,1,2,3,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1797,Cyprus,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1798,Cyprus,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1799,Cyprus,2002,0,2,1,1,1,0,2,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1800,Cyprus,2003,0,1,4,3,0,0,1,0,0,2,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1801,Cyprus,2004,0,3,3,0,1,1,1,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1802,Cyprus,2005,0,3,1,1,1,0,1,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1803,Cyprus,2006,0,0,1,1,0,1,0,0,2,3,0,0,0,0,0,0,0,0,0,2,2,2,4,5,6,1,0,0,1,0,0,0,0,0,1,0,0,2,1,0,0,1,,,,,,,,,,,,,, +1804,Cyprus,2007,0,2,1,0,0,0,0,0,1,3,1,0,0,0,0,6,6,1,1,2,,0,3,5,1,0,,,0,0,1,0,0,0,0,1,0,3,0,1,0,0,,,,,,,,,,,,,, +1805,Cyprus,2008,0,1,0,0,1,0,0,0,1,2,1,0,0,0,1,2,7,3,2,0,0,0,3,6,2,1,0,1,1,0,1,0,0,0,1,1,0,2,1,0,0,0,,,,,,,,,,,,,, +1806,Cyprus,2009,0,1,4,0,1,1,1,0,1,2,2,0,0,0,0,2,3,1,0,1,2,0,2,1,2,0,0,1,1,1,2,0,0,0,1,0,0,3,3,1,0,0,,,,,,,,,,,,,, +1807,Cyprus,2010,0,2,1,0,0,0,0,0,0,3,1,0,0,0,2,4,2,0,0,1,0,0,0,2,0,1,0,0,0,0,3,0,1,1,0,0,0,5,2,0,0,1,,,,,,,,,,,,,, +1808,Cyprus,2011,0,0,3,4,0,0,1,0,1,0,2,0,0,0,0,1,1,0,0,1,3,0,2,3,2,0,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,,,,,,,,,,,,,, +1809,Cyprus,2012,0,0,4,2,1,1,0,0,3,2,1,0,0,1,1,2,6,0,5,4,0,0,2,4,1,2,0,1,0,0,1,0,2,1,1,0,0,4,0,0,0,2,,,,,,,,,,,,,, +1810,Cyprus,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,3,6,4,2,4,3,0,1,9,6,1,0,2 +1811,Czech Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1812,Czech Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1813,Czech Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1814,Czech Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1815,Czech Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1816,Czech Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1817,Czech Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1818,Czech Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1819,Czech Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1820,Czech Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1821,Czech Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1822,Czech Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1823,Czech Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1824,Czech Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1825,Czech Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1826,Czech Republic,1995,2,10,22,83,88,53,90,0,9,11,20,13,19,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1827,Czech Republic,1996,1,10,40,77,121,66,90,1,10,17,11,21,20,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1828,Czech Republic,1997,0,5,25,71,94,64,83,0,12,8,12,17,18,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1829,Czech Republic,1998,0,7,37,88,104,67,95,1,6,17,12,18,11,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1830,Czech Republic,1999,2,13,27,62,98,45,75,1,5,14,18,15,3,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1831,Czech Republic,2000,0,7,31,52,89,61,59,0,15,13,9,10,7,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1832,Czech Republic,2001,0,18,39,47,85,43,50,0,10,17,8,11,9,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1833,Czech Republic,2002,0,14,28,39,89,38,40,0,6,10,8,8,6,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1834,Czech Republic,2003,0,11,28,42,67,48,50,0,9,15,15,12,7,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1835,Czech Republic,2004,0,10,28,36,71,30,35,0,11,17,9,13,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1836,Czech Republic,2005,0,8,24,57,55,45,46,0,3,14,16,7,5,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1837,Czech Republic,2006,0,6,19,39,56,38,25,0,4,12,12,10,6,30,0,3,31,36,59,73,89,2,7,18,13,25,25,99,1,4,9,10,13,23,51,1,6,2,6,14,14,50,,,,,,,,,,,,,, +1838,Czech Republic,2007,0,14,26,35,63,39,29,0,6,8,5,9,5,28,0,11,32,38,58,57,82,2,3,16,13,16,20,59,1,3,6,4,7,14,28,1,3,6,3,2,11,27,,,,,,,,,,,,,, +1839,Czech Republic,2008,0,7,29,39,44,35,31,0,4,14,8,5,10,23,0,21,34,36,48,57,67,0,14,18,21,22,17,77,2,4,13,7,6,14,20,2,1,5,6,2,10,34,,,,,,,,,,,,,, +1840,Czech Republic,2009,0,11,29,25,39,44,29,0,3,6,7,5,4,15,2,12,19,17,38,40,76,1,7,18,10,17,10,51,2,2,3,4,7,7,20,2,3,8,5,6,6,22,,,,,,,,,,,,,, +1841,Czech Republic,2010,0,12,19,36,29,29,19,0,6,10,11,7,2,20,3,5,32,28,54,40,54,0,3,17,12,8,21,48,0,1,5,6,11,9,18,0,4,3,2,1,4,30,,,,,,,,,,,,,, +1842,Czech Republic,2011,0,10,29,20,38,28,24,0,4,9,4,4,3,15,3,7,23,33,38,49,56,2,6,7,11,18,9,44,1,6,7,2,6,9,13,0,0,0,3,3,7,17,,,,,,,,,,,,,, +1843,Czech Republic,2012,0,7,21,24,42,33,22,1,3,11,8,3,7,26,1,6,13,26,26,47,48,2,5,12,7,11,13,51,1,0,6,3,10,9,23,0,2,10,3,4,4,14,,,,,,,,,,,,,, +1844,Czech Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,13,37,47,59,75,83,2,17,19,19,16,16,65 +1845,Democratic People's Republic of Korea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1846,Democratic People's Republic of Korea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1847,Democratic People's Republic of Korea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1848,Democratic People's Republic of Korea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1849,Democratic People's Republic of Korea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1850,Democratic People's Republic of Korea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1851,Democratic People's Republic of Korea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1852,Democratic People's Republic of Korea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1853,Democratic People's Republic of Korea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1854,Democratic People's Republic of Korea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1855,Democratic People's Republic of Korea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1856,Democratic People's Republic of Korea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1857,Democratic People's Republic of Korea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1858,Democratic People's Republic of Korea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1859,Democratic People's Republic of Korea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1860,Democratic People's Republic of Korea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1861,Democratic People's Republic of Korea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1862,Democratic People's Republic of Korea,1997,5,375,430,640,620,430,240,2,205,295,210,205,175,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1863,Democratic People's Republic of Korea,1998,0,21,36,34,36,31,25,0,11,24,24,25,20,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1864,Democratic People's Republic of Korea,1999,14,294,438,401,294,151,30,10,162,235,327,237,68,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1865,Democratic People's Republic of Korea,2000,293,928,1508,2927,2519,1167,651,167,683,1121,2004,1524,591,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1866,Democratic People's Republic of Korea,2001,207,1081,1593,2276,2208,1149,606,123,690,1132,1354,1120,553,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1867,Democratic People's Republic of Korea,2002,199,1444,2282,2584,2618,1235,745,140,1049,1720,1642,1505,892,521,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1868,Democratic People's Republic of Korea,2003,86,1154,2279,2678,2469,1412,634,93,823,1623,1607,1395,769,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1869,Democratic People's Republic of Korea,2004,175,1284,2559,2991,2858,1464,460,118,887,1577,1640,1473,724,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1870,Democratic People's Republic of Korea,2005,167,1409,2422,2688,2040,1185,485,166,1127,1756,1890,1381,764,336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1871,Democratic People's Republic of Korea,2006,157,1498,2393,3219,2301,1479,591,87,725,1373,2051,1373,791,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1872,Democratic People's Republic of Korea,2007,353,1947,2748,3717,2831,2093,674,406,1233,1682,2672,1723,1056,440,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1873,Democratic People's Republic of Korea,2008,441,2341,3320,4263,3988,2704,948,479,1259,1792,2428,2282,1177,604,1188,2506,3858,4566,3800,2533,1037,1102,1737,2089,3067,2058,1334,569,387,889,1386,1485,1218,674,204,319,786,1048,1027,846,513,132,,,,,,,,,,,,,, +1874,Democratic People's Republic of Korea,2009,364,2359,3607,4211,3927,2879,1061,474,1408,2067,2660,2370,1479,500,1277,2358,3734,4324,3931,2756,1277,1006,1796,2370,2951,2438,1542,731,417,1143,1476,1580,1304,686,348,381,902,1100,1205,942,475,273,,,,,,,,,,,,,, +1875,Democratic People's Republic of Korea,2010,447,2524,4046,4849,4061,2629,1153,407,1493,2461,2910,2276,1347,637,970,2712,4412,5382,4811,2785,1249,787,1643,2774,3487,2838,1725,710,695,1096,1618,1857,1533,867,401,598,776,1089,1324,992,571,298,,,,,,,,,,,,,, +1876,Democratic People's Republic of Korea,2011,314,2218,4066,5493,4542,2474,1024,227,1390,2264,3093,2409,1271,494,1138,2843,4535,5944,4968,2899,1217,876,1818,2856,3528,2727,1481,627,949,1381,2017,2314,1775,975,452,935,1049,1347,1514,1203,631,286,,,,,,,,,,,,,, +1877,Democratic People's Republic of Korea,2012,293,2439,4015,5055,4373,2699,1150,227,1447,2475,3005,2623,1527,576,988,2880,4531,5484,4498,2726,1104,821,1790,2792,3343,2724,1587,691,1020,1473,2187,2357,1765,985,482,980,1043,1452,1513,1135,614,315,,,,,,,,,,,,,, +1878,Democratic People's Republic of Korea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2874,7057,11239,13618,11382,6674,2653,2365,4717,7094,8611,6916,3762,1629 +1879,Democratic Republic of the Congo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1880,Democratic Republic of the Congo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1881,Democratic Republic of the Congo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1882,Democratic Republic of the Congo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1883,Democratic Republic of the Congo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1884,Democratic Republic of the Congo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1885,Democratic Republic of the Congo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1886,Democratic Republic of the Congo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1887,Democratic Republic of the Congo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1888,Democratic Republic of the Congo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1889,Democratic Republic of the Congo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1890,Democratic Republic of the Congo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1891,Democratic Republic of the Congo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1892,Democratic Republic of the Congo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1893,Democratic Republic of the Congo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1894,Democratic Republic of the Congo,1995,373,1572,2382,1890,1184,634,289,331,1223,1532,1232,863,427,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1895,Democratic Republic of the Congo,1996,228,1040,1627,1492,998,548,285,292,1153,1528,1142,728,377,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1896,Democratic Republic of the Congo,1997,259,1401,1996,1599,996,614,276,321,1376,1874,1271,723,386,150,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1897,Democratic Republic of the Congo,1998,455,3684,5073,3578,2002,997,518,651,4074,4536,2716,1295,722,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1898,Democratic Republic of the Congo,1999,474,4061,5886,4191,2250,1279,626,708,4472,4991,3117,1725,836,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1899,Democratic Republic of the Congo,2000,485,4048,5833,4151,2549,1295,602,718,4422,5146,3309,1724,855,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1900,Democratic Republic of the Congo,2001,581,4651,6794,4817,2876,1384,724,842,4922,5586,3704,2057,1042,470,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1901,Democratic Republic of the Congo,2002,649,4965,7414,4994,3065,1388,791,874,5378,6230,3939,2262,1055,476,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1902,Democratic Republic of the Congo,2003,854,5885,8427,6193,3776,1836,1047,1233,6630,7711,4826,2866,1457,592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1903,Democratic Republic of the Congo,2004,1195,7007,9467,7114,4442,2376,1229,1679,7630,8540,5529,3413,1850,721,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1904,Democratic Republic of the Congo,2005,1321,6675,9808,7577,5022,2637,1499,1695,7570,8501,5832,3898,2054,951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1905,Democratic Republic of the Congo,2006,1122,6391,9486,7321,5011,2657,1504,1517,7236,8522,5621,3762,2019,975,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1906,Democratic Republic of the Congo,2007,1343,6485,9548,7925,5341,2801,1752,1842,7130,8415,5939,4127,2352,1099,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1907,Democratic Republic of the Congo,2008,1515,6497,9988,8552,5756,3131,1686,1828,7304,8995,6393,4104,2516,1212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1908,Democratic Republic of the Congo,2009,1453,6587,9964,8475,6155,3393,1821,1773,7091,8753,6477,4556,2655,1336,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1909,Democratic Republic of the Congo,2010,1707,6859,10412,9134,6464,3641,1907,1987,7199,9120,6721,4579,2612,1311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1910,Democratic Republic of the Congo,2011,1579,6640,9872,8932,6415,3584,1911,1800,6802,8742,6541,4537,2671,1295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1911,Democratic Republic of the Congo,2012,1439,6612,10274,9361,6612,3698,1941,1699,6598,8406,6471,4131,2625,1257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1912,Democratic Republic of the Congo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,6776,10218,9280,6587,3841,2016,1706,6376,8352,6472,4402,2551,1263 +1913,Denmark,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1914,Denmark,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1915,Denmark,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1916,Denmark,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1917,Denmark,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1918,Denmark,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1919,Denmark,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1920,Denmark,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1921,Denmark,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1922,Denmark,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1923,Denmark,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1924,Denmark,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1925,Denmark,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1926,Denmark,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1927,Denmark,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1928,Denmark,1995,0,7,16,28,18,9,11,2,7,13,8,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1929,Denmark,1996,0,4,16,13,13,8,6,0,5,9,8,4,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1930,Denmark,1997,1,11,19,23,16,6,6,1,6,8,2,5,2,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1931,Denmark,1998,0,7,20,21,18,7,9,1,6,16,8,7,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1932,Denmark,1999,4,9,29,23,21,8,9,1,11,18,11,7,8,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1933,Denmark,2000,5,10,20,24,16,11,14,5,16,15,14,6,7,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1934,Denmark,2001,1,10,15,20,15,4,9,5,5,12,13,7,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1935,Denmark,2002,2,11,8,25,14,6,9,1,14,17,11,10,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1936,Denmark,2003,3,11,20,23,22,12,9,0,6,13,12,6,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1937,Denmark,2004,1,6,12,17,27,15,12,2,10,16,10,9,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1938,Denmark,2005,0,12,12,18,23,9,7,2,11,5,13,9,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1939,Denmark,2006,0,8,13,15,27,10,8,1,6,12,9,5,5,4,9,14,8,17,13,6,8,4,9,7,13,7,4,4,3,12,9,10,6,1,7,5,8,7,10,6,2,9,,,,,,,,,,,,,, +1940,Denmark,2007,0,6,12,20,29,16,6,1,8,12,8,4,5,8,9,13,14,10,17,6,8,8,10,13,6,7,10,6,1,10,10,10,5,3,2,6,6,16,4,4,2,4,,,,,,,,,,,,,, +1941,Denmark,2008,0,8,15,9,24,10,8,2,5,7,5,8,4,1,7,12,13,16,12,9,11,9,7,4,9,13,6,12,2,7,12,9,5,4,5,1,3,13,12,4,2,4,,,,,,,,,,,,,, +1942,Denmark,2009,0,7,7,13,15,12,5,2,7,16,7,8,2,1,10,7,9,17,18,6,11,5,8,12,4,9,3,6,0,6,13,4,5,1,3,4,8,5,8,3,2,1,,,,,,,,,,,,,, +1943,Denmark,2010,0,8,22,10,13,16,2,0,4,6,15,8,9,4,5,5,14,12,11,6,5,3,3,9,11,14,3,5,0,2,9,5,2,1,3,1,0,5,5,2,2,4,,,,,,,,,,,,,, +1944,Denmark,2011,0,5,14,18,32,16,4,0,5,5,9,7,2,7,2,4,11,9,13,5,10,5,4,4,7,11,8,7,2,3,6,8,3,2,0,1,4,7,6,1,0,2,,,,,,,,,,,,,, +1945,Denmark,2012,0,7,9,25,19,15,6,3,2,7,3,7,3,1,6,10,17,10,27,17,11,7,7,11,5,10,11,7,0,4,12,8,4,8,1,1,6,13,7,4,5,1,,,,,,,,,,,,,, +1946,Denmark,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,30,42,37,51,26,17,8,9,27,17,26,20,6 +1947,Djibouti,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1948,Djibouti,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1949,Djibouti,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1950,Djibouti,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1951,Djibouti,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1952,Djibouti,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1953,Djibouti,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1954,Djibouti,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1955,Djibouti,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1956,Djibouti,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1957,Djibouti,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1958,Djibouti,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1959,Djibouti,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1960,Djibouti,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1961,Djibouti,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1962,Djibouti,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1963,Djibouti,1996,30,421,429,139,77,52,27,31,247,212,67,38,21,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1964,Djibouti,1997,52,428,442,167,115,66,23,51,202,225,75,38,17,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1965,Djibouti,1998,23,348,396,191,81,57,23,28,208,197,76,43,17,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1966,Djibouti,1999,25,348,371,159,87,67,22,20,158,168,84,38,20,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1967,Djibouti,2000,17,302,347,139,67,60,42,12,147,156,47,31,17,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1968,Djibouti,2001,17,267,331,125,65,51,23,17,156,134,59,44,15,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1969,Djibouti,2002,20,256,320,124,58,55,25,18,142,136,48,28,19,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1970,Djibouti,2003,10,222,288,132,76,42,24,19,127,123,55,38,28,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1971,Djibouti,2004,19,217,225,142,68,38,28,16,111,115,49,23,25,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1972,Djibouti,2005,18,220,252,119,62,47,29,23,123,117,66,23,13,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1973,Djibouti,2006,14,225,246,165,63,33,20,24,117,129,59,35,18,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1974,Djibouti,2007,14,241,264,142,83,44,23,8,129,131,62,35,14,18,5,49,31,18,11,5,10,6,42,44,36,11,13,8,260,143,134,80,33,20,12,229,124,130,72,52,24,16,,,,,,,,,,,,,, +1975,Djibouti,2008,17,232,275,180,93,56,46,22,138,159,79,53,15,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1976,Djibouti,2009,18,230,295,183,90,49,24,18,139,154,85,52,29,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1977,Djibouti,2010,28,211,243,151,67,49,20,20,104,120,89,36,24,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1978,Djibouti,2011,35,212,265,149,97,45,33,31,139,118,104,57,30,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1979,Djibouti,2012,22,208,240,147,81,47,26,20,132,94,73,36,26,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1980,Djibouti,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,202,215,137,73,46,35,21,130,113,55,59,23,17 +1981,Dominica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1982,Dominica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1983,Dominica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1984,Dominica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1985,Dominica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1986,Dominica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1987,Dominica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1988,Dominica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1989,Dominica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1990,Dominica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1991,Dominica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1992,Dominica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1993,Dominica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1994,Dominica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1995,Dominica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1996,Dominica,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1997,Dominica,1996,0,0,1,2,1,1,0,0,0,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1998,Dominica,1997,0,0,0,0,1,1,1,0,0,0,0,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1999,Dominica,1998,0,0,0,0,1,0,0,0,2,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2000,Dominica,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2001,Dominica,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2002,Dominica,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2003,Dominica,2002,,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2004,Dominica,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2005,Dominica,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2006,Dominica,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2007,Dominica,2006,0,0,1,1,0,1,1,0,1,0,1,1,1,0,0,0,0,2,0,0,2,0,0,0,3,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2008,Dominica,2007,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2009,Dominica,2008,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2010,Dominica,2009,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2011,Dominica,2010,0,0,0,0,0,3,1,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2012,Dominica,2011,0,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2013,Dominica,2012,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2014,Dominica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,1,0,0,0,0,0,0,0,0,0 +2015,Dominican Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2016,Dominican Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2017,Dominican Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2018,Dominican Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2019,Dominican Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2020,Dominican Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2021,Dominican Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2022,Dominican Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2023,Dominican Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2024,Dominican Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2025,Dominican Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2026,Dominican Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2027,Dominican Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2028,Dominican Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2029,Dominican Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2030,Dominican Republic,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2031,Dominican Republic,1996,17,231,262,128,79,45,42,21,178,147,61,44,23,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2032,Dominican Republic,1997,76,450,471,246,145,111,81,53,314,329,171,102,77,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2033,Dominican Republic,1998,62,340,416,184,130,114,50,60,265,247,141,79,73,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2034,Dominican Republic,1999,90,507,485,356,238,166,183,99,363,359,226,160,121,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2035,Dominican Republic,2000,73,410,481,344,173,125,113,65,317,325,212,115,79,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2036,Dominican Republic,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2037,Dominican Republic,2002,39,295,417,270,145,86,71,35,251,241,137,81,49,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2038,Dominican Republic,2003,52,364,518,331,194,116,112,48,301,288,211,116,82,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2039,Dominican Republic,2004,45,391,502,363,180,122,104,39,301,288,177,104,60,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2040,Dominican Republic,2005,43,399,483,386,228,123,105,57,339,332,209,119,72,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2041,Dominican Republic,2006,25,342,480,340,207,111,92,38,287,320,189,106,63,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2042,Dominican Republic,2007,23,290,403,362,209,108,85,29,249,242,174,103,53,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2043,Dominican Republic,2008,16,322,398,337,198,122,105,34,288,272,163,96,55,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2044,Dominican Republic,2009,30,344,428,284,217,116,88,28,278,271,160,92,49,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2045,Dominican Republic,2010,29,276,346,292,170,112,85,43,239,207,142,102,54,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2046,Dominican Republic,2011,20,333,406,318,200,133,112,30,242,274,159,103,66,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2047,Dominican Republic,2012,15,317,489,315,197,126,111,26,230,260,148,119,62,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2048,Dominican Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,388,477,333,244,158,113,30,246,240,166,130,66,62 +2049,Ecuador,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2050,Ecuador,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2051,Ecuador,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2052,Ecuador,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2053,Ecuador,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2054,Ecuador,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2055,Ecuador,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2056,Ecuador,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2057,Ecuador,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2058,Ecuador,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2059,Ecuador,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2060,Ecuador,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2061,Ecuador,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2062,Ecuador,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2063,Ecuador,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2064,Ecuador,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2065,Ecuador,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2066,Ecuador,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2067,Ecuador,1998,169,402,286,58,,,,44,290,175,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2068,Ecuador,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2069,Ecuador,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2070,Ecuador,2001,39,673,832,269,202,251,116,37,591,584,267,180,208,190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2071,Ecuador,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2072,Ecuador,2003,18,310,266,194,125,75,96,24,217,140,94,56,44,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2073,Ecuador,2004,84,732,537,563,265,315,153,108,522,342,268,170,161,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2074,Ecuador,2005,48,446,468,308,237,150,159,48,329,305,199,139,85,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2075,Ecuador,2006,32,479,496,340,259,181,183,46,321,315,183,143,92,112,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2076,Ecuador,2007,42,555,486,367,282,178,227,57,365,335,198,133,100,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2077,Ecuador,2008,32,507,518,372,278,187,202,56,334,331,185,126,107,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2078,Ecuador,2009,40,485,519,296,297,212,230,49,342,312,162,141,99,146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2079,Ecuador,2010,32,499,529,314,309,227,246,52,298,308,178,158,113,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2080,Ecuador,2011,45,481,547,364,323,272,232,49,340,311,177,141,118,121,46,42,59,40,23,17,23,31,18,25,10,13,21,12,39,77,131,107,58,52,58,20,50,78,39,29,31,39,,,,,,,,,,,,,, +2081,Ecuador,2012,37,506,567,387,359,291,333,59,333,337,184,164,146,153,35,28,41,20,25,18,19,24,17,15,7,9,12,15,29,102,126,87,61,50,50,19,72,80,55,40,43,42,,,,,,,,,,,,,, +2082,Ecuador,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,115,686,825,545,540,353,385,119,440,387,268,239,176,199 +2083,Egypt,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2084,Egypt,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2085,Egypt,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2086,Egypt,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2087,Egypt,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2088,Egypt,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2089,Egypt,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2090,Egypt,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2091,Egypt,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2092,Egypt,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2093,Egypt,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2094,Egypt,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2095,Egypt,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2096,Egypt,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2097,Egypt,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2098,Egypt,1995,223,542,665,460,408,463,160,134,288,367,274,256,160,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2099,Egypt,1996,58,714,1056,703,485,308,154,64,52,420,259,229,89,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2100,Egypt,1997,50,737,1033,767,465,291,142,64,525,388,264,200,114,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2101,Egypt,1998,45,761,943,761,475,286,174,60,489,405,291,204,139,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2102,Egypt,1999,31,708,889,691,458,288,170,57,485,347,248,193,112,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2103,Egypt,2000,21,641,827,667,476,307,158,55,457,343,257,211,112,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2104,Egypt,2001,34,586,879,614,453,268,159,57,438,396,265,207,109,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2105,Egypt,2002,39,662,774,682,576,303,171,77,424,365,245,254,145,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2106,Egypt,2003,42,586,814,675,631,404,195,57,463,338,268,282,175,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2107,Egypt,2004,14,563,763,588,502,502,204,44,491,317,233,233,111,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2108,Egypt,2005,25,524,606,421,414,243,123,48,431,298,205,218,132,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2109,Egypt,2006,54,542,728,563,587,340,136,64,470,367,338,279,155,87,212,223,260,142,122,105,116,127,224,171,182,132,68,42,184,313,338,204,119,111,54,123,299,323,322,183,118,32,,,,,,,,,,,,,, +2110,Egypt,2007,35,588,853,629,643,359,214,25,500,325,245,225,173,72,124,150,193,157,137,96,86,85,158,157,129,123,73,35,159,355,377,263,171,100,69,141,337,312,276,153,106,50,,,,,,,,,,,,,, +2111,Egypt,2008,13,581,640,807,791,431,242,7,382,412,308,195,169,113,83,118,129,132,112,71,59,70,110,83,71,66,56,23,186,266,291,298,252,159,134,158,249,186,161,149,125,51,,,,,,,,,,,,,, +2112,Egypt,2009,17,536,599,797,885,417,271,10,317,369,456,210,191,126,90,109,139,116,102,70,62,61,115,113,94,89,53,25,157,353,374,265,168,99,68,139,334,309,275,154,106,49,,,,,,,,,,,,,, +2113,Egypt,2010,9,358,617,783,725,407,217,8,199,352,423,292,192,97,85,111,112,115,99,72,64,62,58,115,95,91,54,26,176,376,399,278,182,106,73,150,357,331,293,162,112,53,,,,,,,,,,,,,, +2114,Egypt,2011,23,382,611,596,715,387,168,7,192,355,387,280,198,94,76,67,109,112,98,69,30,66,56,112,92,88,52,25,215,194,390,316,206,121,83,185,273,376,333,185,109,90,,,,,,,,,,,,,, +2115,Egypt,2012,23,373,597,582,698,379,164,8,187,346,379,274,193,92,68,60,97,100,87,60,27,59,52,98,82,78,47,22,202,183,367,298,195,114,78,190,257,355,314,174,102,84,,,,,,,,,,,,,, +2116,Egypt,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,282,556,940,886,896,516,245,230,425,803,687,572,320,176 +2117,El Salvador,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2118,El Salvador,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2119,El Salvador,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2120,El Salvador,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2121,El Salvador,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2122,El Salvador,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2123,El Salvador,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2124,El Salvador,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2125,El Salvador,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2126,El Salvador,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2127,El Salvador,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2128,El Salvador,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2129,El Salvador,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2130,El Salvador,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2131,El Salvador,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2132,El Salvador,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2133,El Salvador,1996,102,76,76,77,57,54,92,102,76,62,43,49,38,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2134,El Salvador,1997,13,86,110,117,71,68,75,17,67,72,44,33,42,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2135,El Salvador,1998,21,95,131,99,87,65,84,21,81,93,53,40,43,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2136,El Salvador,1999,18,102,128,104,88,88,104,20,81,73,61,47,44,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2137,El Salvador,2000,13,99,124,114,92,62,107,28,81,76,63,63,39,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2138,El Salvador,2001,20,101,144,100,78,62,101,22,68,86,59,59,53,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2139,El Salvador,2002,8,85,127,101,91,59,93,6,80,84,61,49,51,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2140,El Salvador,2003,7,75,105,103,81,59,89,7,70,71,47,48,44,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2141,El Salvador,2004,5,92,121,90,84,77,91,15,64,73,55,44,48,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2142,El Salvador,2005,5,97,140,128,104,74,117,6,85,82,59,50,42,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2143,El Salvador,2006,6,93,124,101,76,54,103,7,71,80,49,50,38,61,,,,,,,,,,,,,,,27,15,40,26,14,10,33,17,18,38,18,11,5,11,,,,,,,,,,,,,, +2144,El Salvador,2007,8,79,179,110,73,62,95,4,63,85,50,45,33,56,147,5,9,6,8,6,11,129,6,5,9,4,3,10,27,22,46,26,23,13,19,20,18,30,26,18,9,9,,,,,,,,,,,,,, +2145,El Salvador,2008,8,107,168,112,67,79,89,8,73,71,55,42,40,66,138,9,25,6,4,4,13,138,4,4,2,3,4,8,17,22,49,31,15,12,16,27,25,29,37,13,11,9,,,,,,,,,,,,,, +2146,El Salvador,2009,7,99,147,111,80,64,111,2,59,69,50,46,27,58,138,11,19,6,9,12,13,119,9,5,4,4,7,7,19,30,42,32,16,11,16,37,20,47,26,18,10,5,,,,,,,,,,,,,, +2147,El Salvador,2010,5,101,170,96,77,62,101,6,63,65,49,58,51,68,122,18,16,16,11,11,14,102,6,4,8,4,4,2,27,36,38,40,21,11,12,27,15,40,29,19,10,3,,,,,,,,,,,,,, +2148,El Salvador,2011,3,114,183,106,96,77,115,6,61,61,44,52,69,92,111,9,27,24,13,19,16,99,9,12,13,5,7,7,23,47,52,34,21,13,30,26,37,34,26,14,15,12,,,,,,,,,,,,,, +2149,El Salvador,2012,5,131,194,122,100,87,115,5,81,73,80,90,64,90,96,18,28,19,9,7,10,81,5,10,12,7,4,7,24,40,67,51,33,20,12,24,39,29,38,18,9,11,,,,,,,,,,,,,, +2150,El Salvador,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,120,208,344,197,133,96,180,80,90,122,123,95,115,164 +2151,Equatorial Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2152,Equatorial Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2153,Equatorial Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2154,Equatorial Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2155,Equatorial Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2156,Equatorial Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2157,Equatorial Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2158,Equatorial Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2159,Equatorial Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2160,Equatorial Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2161,Equatorial Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2162,Equatorial Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2163,Equatorial Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2164,Equatorial Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2165,Equatorial Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2166,Equatorial Guinea,1995,8,15,45,37,15,11,7,2,18,28,20,4,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2167,Equatorial Guinea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2168,Equatorial Guinea,1997,5,32,40,36,25,8,4,3,23,20,14,10,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2169,Equatorial Guinea,1998,6,30,46,39,29,16,11,3,37,31,20,7,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2170,Equatorial Guinea,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2171,Equatorial Guinea,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2172,Equatorial Guinea,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2173,Equatorial Guinea,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2174,Equatorial Guinea,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2175,Equatorial Guinea,2004,5,50,63,54,41,17,15,9,45,48,30,15,10,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2176,Equatorial Guinea,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2177,Equatorial Guinea,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2178,Equatorial Guinea,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2179,Equatorial Guinea,2008,8,68,95,85,44,17,11,10,57,66,35,23,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2180,Equatorial Guinea,2009,10,53,79,64,52,20,4,2,57,66,54,19,4,6,12,13,9,16,9,9,3,7,3,12,6,6,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2181,Equatorial Guinea,2010,10,71,80,59,35,16,10,13,80,57,45,26,9,6,5,10,12,4,9,5,4,13,7,9,9,4,4,3,24,10,5,3,4,1,0,21,10,7,11,5,4,4,,,,,,,,,,,,,, +2182,Equatorial Guinea,2011,11,77,90,89,59,22,12,15,76,81,46,21,9,3,11,9,9,8,3,8,2,13,12,14,18,3,4,2,24,13,12,8,7,1,1,22,8,14,9,7,3,2,,,,,,,,,,,,,, +2183,Equatorial Guinea,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2184,Equatorial Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2185,Eritrea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2186,Eritrea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2187,Eritrea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2188,Eritrea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2189,Eritrea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2190,Eritrea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2191,Eritrea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2192,Eritrea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2193,Eritrea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2194,Eritrea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2195,Eritrea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2196,Eritrea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2197,Eritrea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2198,Eritrea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2199,Eritrea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2200,Eritrea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2201,Eritrea,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2202,Eritrea,1997,0,2,12,21,12,6,4,0,3,10,20,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2203,Eritrea,1998,4,36,30,19,15,8,10,3,43,29,11,9,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2204,Eritrea,1999,3,55,75,49,51,30,17,3,65,94,34,30,17,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2205,Eritrea,2000,9,70,75,57,32,25,20,10,100,87,71,21,12,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2206,Eritrea,2001,5,79,95,77,40,42,21,9,96,76,66,50,31,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2207,Eritrea,2002,16,85,88,53,41,24,23,15,75,85,52,39,30,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2208,Eritrea,2003,17,90,85,55,46,44,36,27,120,149,100,60,36,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2209,Eritrea,2004,14,67,61,45,45,39,29,13,95,118,67,43,23,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2210,Eritrea,2005,9,68,73,50,45,51,39,8,67,127,72,39,21,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2211,Eritrea,2006,6,50,55,44,52,42,36,17,109,123,64,45,19,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2212,Eritrea,2007,21,56,85,73,62,53,44,2,70,89,56,47,21,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2213,Eritrea,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2214,Eritrea,2009,6,104,111,79,46,57,44,4,85,88,88,39,27,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2215,Eritrea,2010,10,93,109,81,51,37,60,3,88,111,79,43,31,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2216,Eritrea,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2217,Eritrea,2012,2,84,105,90,62,39,51,4,86,98,74,45,19,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2218,Eritrea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2219,Estonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2220,Estonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2221,Estonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2222,Estonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2223,Estonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2224,Estonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2225,Estonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2226,Estonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2227,Estonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2228,Estonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2229,Estonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2230,Estonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2231,Estonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2232,Estonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2233,Estonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2234,Estonia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2235,Estonia,1996,1,7,34,53,39,28,19,0,10,14,16,5,2,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2236,Estonia,1997,0,4,23,59,53,29,17,0,8,16,17,14,6,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2237,Estonia,1998,0,15,49,60,64,34,22,0,7,7,15,9,7,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2238,Estonia,1999,0,14,35,72,55,19,17,0,8,9,20,16,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2239,Estonia,2000,0,6,31,53,56,35,15,0,9,11,14,11,4,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2240,Estonia,2001,0,10,25,43,37,24,14,0,6,11,17,11,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2241,Estonia,2002,0,9,20,47,45,19,7,0,7,11,16,9,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2242,Estonia,2003,0,7,28,38,35,24,18,0,7,4,11,12,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2243,Estonia,2004,0,6,24,42,54,14,11,0,4,12,10,13,6,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2244,Estonia,2005,0,9,25,19,40,12,7,0,6,11,8,11,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2245,Estonia,2006,0,4,19,24,40,12,7,0,3,9,10,9,4,6,3,7,26,33,35,15,9,2,9,13,13,14,7,9,1,3,0,1,2,6,6,1,1,1,2,1,3,3,,,,,,,,,,,,,, +2246,Estonia,2007,0,6,26,32,37,21,12,0,2,5,5,8,7,6,0,6,26,32,37,21,12,0,9,16,12,12,12,3,0,0,5,4,3,1,3,1,3,1,1,2,3,4,,,,,,,,,,,,,, +2247,Estonia,2008,0,3,14,26,34,12,13,0,2,7,6,8,4,15,1,9,16,33,34,26,12,0,7,11,9,4,8,10,1,0,3,3,4,2,7,0,1,0,0,1,2,6,,,,,,,,,,,,,, +2248,Estonia,2009,0,4,10,12,34,22,12,0,6,8,8,7,5,7,2,8,17,34,23,16,13,0,4,15,9,12,8,9,0,1,3,2,3,2,1,1,0,0,1,1,3,3,,,,,,,,,,,,,, +2249,Estonia,2010,0,3,7,21,25,12,8,0,3,6,3,3,6,3,1,5,18,13,26,17,13,2,5,5,8,6,6,10,2,1,4,2,2,0,1,1,0,1,0,1,0,2,,,,,,,,,,,,,, +2250,Estonia,2011,0,4,22,16,15,18,13,0,4,8,12,3,3,6,1,5,21,15,20,16,6,0,3,8,9,10,2,6,0,1,1,2,0,5,1,0,0,1,2,0,1,4,,,,,,,,,,,,,, +2251,Estonia,2012,0,6,15,13,21,17,9,0,5,7,2,4,1,5,0,5,12,18,18,9,11,1,2,7,9,4,3,11,1,1,0,1,0,1,8,0,1,0,0,2,1,3,,,,,,,,,,,,,, +2252,Estonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,25,42,48,39,17,0,3,20,14,10,8,31 +2253,Ethiopia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2254,Ethiopia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2255,Ethiopia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2256,Ethiopia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2257,Ethiopia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2258,Ethiopia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2259,Ethiopia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2260,Ethiopia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2261,Ethiopia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2262,Ethiopia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2263,Ethiopia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2264,Ethiopia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2265,Ethiopia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2266,Ethiopia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2267,Ethiopia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2268,Ethiopia,1995,247,1221,1017,541,276,142,51,283,908,781,382,152,64,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2269,Ethiopia,1996,302,1739,1609,854,427,201,71,369,1564,1147,576,246,88,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2270,Ethiopia,1997,579,2810,2520,1365,736,401,193,687,2469,2173,1039,481,192,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2271,Ethiopia,1998,715,2643,3187,1610,839,429,171,832,3016,2434,1220,519,194,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2272,Ethiopia,1999,692,3916,3673,1925,1045,471,230,798,3310,2949,1539,713,225,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2273,Ethiopia,2000,915,5095,5187,3082,1495,610,397,1037,4699,4424,2105,976,366,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2274,Ethiopia,2001,913,5730,5594,3233,1581,742,354,1107,5109,4830,2372,1014,338,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2275,Ethiopia,2002,1251,6764,5669,3128,1544,821,372,1614,5607,5692,2685,935,323,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2276,Ethiopia,2003,1110,6923,6648,3737,2022,976,483,1387,5936,5908,2780,1239,412,137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2277,Ethiopia,2004,1160,7167,7002,4060,1988,911,456,1367,6422,6091,2984,1284,414,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2278,Ethiopia,2005,1109,6726,6181,3454,1985,1027,475,1326,5885,5663,2730,1296,513,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2279,Ethiopia,2006,978,6137,5950,3567,2016,1066,521,1178,5238,5326,2704,1324,510,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2280,Ethiopia,2007,1055,6522,6114,3545,2038,1051,559,1229,5426,5507,2850,1429,502,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2281,Ethiopia,2008,978,6512,6794,4067,2290,1176,685,1167,5490,5893,3251,1553,616,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2282,Ethiopia,2009,1421,7215,7193,4267,2452,1331,794,1593,5556,6075,3499,1798,824,378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2283,Ethiopia,2010,1582,7400,7785,4451,2746,1473,822,1608,5708,6480,3439,1950,855,335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2284,Ethiopia,2011,1847,7835,9246,3881,2771,1218,771,1983,6570,7917,3069,1564,719,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2285,Ethiopia,2012,,,,,,,,,,,,,,,3692,,,,,,,3990,,,,,,,3798,,,,,,,4054,,,,,,,,,,,,,,,,,,,, +2286,Ethiopia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10954,,,,,,,10363,,,,,, +2287,Fiji,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2288,Fiji,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2289,Fiji,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2290,Fiji,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2291,Fiji,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2292,Fiji,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2293,Fiji,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2294,Fiji,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2295,Fiji,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2296,Fiji,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2297,Fiji,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2298,Fiji,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2299,Fiji,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2300,Fiji,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2301,Fiji,1994,2,8,6,2,3,11,3,0,4,6,3,6,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2302,Fiji,1995,0,8,10,9,4,2,3,1,10,9,2,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2303,Fiji,1996,1,8,8,9,9,3,2,3,6,8,2,6,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2304,Fiji,1997,1,4,8,6,8,6,2,0,6,9,1,5,7,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2305,Fiji,1998,0,7,11,7,8,4,2,2,10,10,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2306,Fiji,1999,1,13,7,5,8,3,3,0,5,7,5,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2307,Fiji,2000,0,8,6,13,5,4,2,0,7,5,7,1,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2308,Fiji,2001,0,6,8,11,7,4,2,0,7,5,7,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2309,Fiji,2002,1,13,11,7,4,7,2,2,8,4,6,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2310,Fiji,2003,2,8,9,6,11,7,6,1,4,7,4,4,8,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2311,Fiji,2004,0,8,6,8,6,7,2,0,8,6,3,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2312,Fiji,2005,7,9,18,18,14,16,6,7,7,9,6,4,6,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2313,Fiji,2006,0,8,11,4,7,5,4,1,12,5,6,4,6,0,0,3,4,1,2,3,2,0,3,1,0,1,2,0,1,2,1,2,1,3,0,2,1,0,0,3,2,0,,,,,,,,,,,,,, +2314,Fiji,2007,1,7,7,7,4,1,4,7,11,4,6,5,1,2,1,2,2,4,5,2,3,0,4,3,0,1,1,1,1,5,2,4,6,0,1,0,4,3,3,2,0,0,,,,,,,,,,,,,, +2315,Fiji,2008,,10,10,4,9,4,4,,13,6,5,6,3,4,,1,1,2,3,0,4,1,0,2,1,1,1,0,,,3,2,4,0,3,,,2,2,2,1,0,,,,,,,,,,,,,, +2316,Fiji,2009,0,15,14,7,8,6,2,1,11,7,4,4,3,1,,,,,,,,,,,,,,,2,4,5,5,5,5,0,0,2,3,2,5,0,0,,,,,,,,,,,,,, +2317,Fiji,2010,1,7,15,11,6,2,4,1,11,12,5,1,8,5,5,5,4,0,7,8,3,3,1,1,1,0,5,2,5,2,6,5,2,1,0,6,2,5,2,3,3,3,,,,,,,,,,,,,, +2318,Fiji,2011,0,12,16,8,9,9,4,1,13,17,7,5,2,3,3,2,9,5,5,6,4,2,8,5,3,3,2,1,2,6,4,2,2,5,2,6,3,3,2,2,0,2,,,,,,,,,,,,,, +2319,Fiji,2012,2,14,12,9,12,5,7,2,11,10,7,6,7,7,3,6,4,3,6,6,3,6,2,4,2,2,3,4,6,4,2,3,5,2,2,2,3,2,1,2,2,4,,,,,,,,,,,,,, +2320,Fiji,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,19,31,25,25,17,19,14,24,27,18,6,9,10 +2321,Finland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2322,Finland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2323,Finland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2324,Finland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2325,Finland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2326,Finland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2327,Finland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2328,Finland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2329,Finland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2330,Finland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2331,Finland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2332,Finland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2333,Finland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2334,Finland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2335,Finland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2336,Finland,1995,1,1,10,25,28,24,61,1,1,6,7,4,10,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2337,Finland,1996,0,2,5,24,26,23,77,0,4,5,3,7,6,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2338,Finland,1997,0,1,5,22,24,26,53,0,2,6,2,5,5,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2339,Finland,1998,0,4,4,9,15,21,63,0,3,4,9,4,12,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2340,Finland,1999,0,,4,13,26,20,53,0,2,6,,11,5,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2341,Finland,2000,0,3,8,22,19,28,53,0,1,5,3,4,6,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2342,Finland,2001,0,1,9,13,17,13,43,0,3,4,5,8,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2343,Finland,2002,0,0,5,8,17,20,36,0,4,3,0,3,6,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2344,Finland,2003,0,2,3,8,19,17,29,0,2,10,3,6,5,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2345,Finland,2004,0,1,5,7,17,13,33,0,1,0,3,4,3,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2346,Finland,2005,1,5,4,3,14,11,25,0,3,4,1,0,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2347,Finland,2006,0,5,6,5,9,6,20,0,2,4,3,4,1,19,0,4,2,6,8,18,42,0,0,6,1,2,3,18,1,2,3,8,3,4,14,0,4,6,3,0,8,30,,,,,,,,,,,,,, +2348,Finland,2007,0,4,5,5,10,7,24,0,6,4,2,5,0,13,2,8,24,17,28,40,86,0,12,11,4,15,12,65,0,4,12,10,12,16,44,4,12,10,4,10,16,50,,,,,,,,,,,,,, +2349,Finland,2008,0,3,5,8,13,11,35,0,4,3,2,4,2,14,3,4,3,6,11,11,29,1,2,2,2,3,8,19,0,6,4,1,5,9,33,0,2,7,5,7,8,36,,,,,,,,,,,,,, +2350,Finland,2009,0,9,3,3,11,11,17,0,7,7,3,4,1,14,3,12,11,12,16,24,47,3,6,11,7,4,7,27,1,12,6,4,4,9,24,0,4,4,5,4,6,37,,,,,,,,,,,,,, +2351,Finland,2010,0,10,6,7,9,8,15,0,3,3,4,1,2,12,3,9,6,7,9,13,40,1,5,5,1,6,3,26,0,3,10,4,2,5,13,2,5,7,4,4,6,25,,,,,,,,,,,,,, +2352,Finland,2011,0,1,4,4,7,10,27,1,2,3,5,3,1,13,4,5,12,3,4,17,38,4,4,7,3,6,3,30,1,4,4,4,3,5,15,1,7,5,1,1,8,31,,,,,,,,,,,,,, +2353,Finland,2012,0,2,9,7,5,9,21,1,4,0,4,2,3,11,2,4,5,6,10,10,28,1,4,7,7,3,3,14,0,4,5,3,1,3,13,1,4,3,5,2,4,22,,,,,,,,,,,,,, +2354,Finland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,22,17,13,12,20,79,1,10,18,6,7,13,47 +2355,France,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2356,France,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2357,France,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2358,France,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2359,France,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2360,France,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2361,France,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2362,France,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2363,France,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2364,France,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2365,France,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2366,France,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2367,France,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2368,France,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2369,France,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2370,France,1995,30,156,431,502,414,297,496,36,138,226,176,90,92,365,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2371,France,1996,36,124,335,413,351,248,475,22,124,195,131,79,82,376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2372,France,1997,24,113,288,362,271,194,343,17,117,166,115,80,57,274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2373,France,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2374,France,1999,13,147,267,310,276,157,318,25,110,145,120,80,60,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2375,France,2000,10,136,248,247,211,125,244,18,108,127,89,46,43,155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2376,France,2001,10,124,230,260,205,119,211,17,131,132,102,63,40,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2377,France,2002,24,138,265,223,219,119,180,13,106,127,90,56,33,161,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2378,France,2003,18,129,249,223,190,127,210,16,114,129,79,44,32,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2379,France,2004,13,109,222,220,200,138,216,11,96,116,82,53,34,171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2380,France,2005,12,127,212,222,196,134,205,16,104,134,82,56,38,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2381,France,2006,17,137,214,238,209,153,278,15,112,158,91,67,44,170,59,92,171,151,131,108,198,52,90,128,92,81,57,205,39,92,140,103,84,64,133,46,62,97,102,88,69,152,,,,,,,,,,,,,, +2382,France,2007,17,120,225,196,219,156,273,20,127,167,91,56,61,188,66,123,207,186,159,127,225,67,97,150,100,76,61,206,92,142,332,216,164,138,264,90,122,224,178,166,138,294,,,,,,,,,,,,,, +2383,France,2008,10,73,136,161,134,110,175,8,57,96,71,50,38,101,28,58,123,101,93,88,143,39,64,89,65,50,54,113,34,50,116,84,63,47,89,34,48,75,73,67,40,133,,,,,,,,,,,,,, +2384,France,2009,11,74,109,114,97,81,125,9,63,87,69,35,23,108,39,66,115,100,72,67,155,35,61,76,64,46,27,104,27,49,84,83,51,45,98,21,40,66,67,42,46,96,,,,,,,,,,,,,, +2385,France,2010,10,60,139,114,99,76,110,10,47,76,49,45,25,97,35,64,111,95,73,73,132,35,58,84,49,52,39,109,36,47,92,81,46,45,81,21,29,50,51,44,43,98,,,,,,,,,,,,,, +2386,France,2011,12,89,113,116,95,73,102,7,58,69,50,36,24,66,32,67,125,88,76,65,144,38,50,93,66,60,44,87,31,32,87,74,44,39,96,29,26,64,43,41,28,73,,,,,,,,,,,,,, +2387,France,2012,8,63,114,98,90,56,90,14,43,81,74,23,24,80,39,68,131,82,91,72,121,46,59,78,56,49,39,96,30,39,96,58,43,44,72,22,36,76,42,46,38,73,,,,,,,,,,,,,, +2388,France,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,139,340,642,469,389,314,587,116,254,374,262,199,188,407 +2389,French Polynesia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2390,French Polynesia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2391,French Polynesia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2392,French Polynesia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2393,French Polynesia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2394,French Polynesia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2395,French Polynesia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2396,French Polynesia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2397,French Polynesia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2398,French Polynesia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2399,French Polynesia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2400,French Polynesia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2401,French Polynesia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2402,French Polynesia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2403,French Polynesia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2404,French Polynesia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2405,French Polynesia,1996,1,4,7,5,2,1,3,0,5,4,2,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2406,French Polynesia,1997,1,4,2,4,3,5,3,1,5,3,2,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2407,French Polynesia,1998,0,4,4,3,1,5,4,3,1,2,5,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2408,French Polynesia,1999,0,2,2,2,1,2,4,4,2,2,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2409,French Polynesia,2000,1,3,3,4,4,4,3,1,4,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2410,French Polynesia,2001,2,5,1,2,4,4,5,3,7,1,1,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2411,French Polynesia,2002,0,4,2,1,3,3,1,0,4,2,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2412,French Polynesia,2003,,2,2,1,2,4,3,,3,1,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2413,French Polynesia,2004,1,1,2,3,0,1,4,,4,6,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2414,French Polynesia,2005,0,2,2,2,0,4,2,0,2,3,0,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2415,French Polynesia,2006,1,1,1,3,3,1,1,1,6,1,0,0,2,3,0,2,2,1,1,5,4,0,0,1,4,2,3,3,1,2,1,1,2,1,2,0,0,2,1,0,1,1,,,,,,,,,,,,,, +2416,French Polynesia,2007,,,2,2,2,,,1,1,1,5,0,3,2,2,1,2,2,0,5,4,1,1,4,2,4,2,2,,2,1,,,,2,,1,1,1,2,1,,,,,,,,,,,,,,, +2417,French Polynesia,2008,1,3,1,1,1,2,2,0,1,1,1,0,1,2,0,2,1,0,1,1,2,2,2,3,0,1,1,2,0,0,2,2,0,1,2,0,1,0,0,0,0,2,,,,,,,,,,,,,, +2418,French Polynesia,2009,1,1,4,1,3,0,0,0,2,0,0,1,3,1,2,3,1,2,2,1,1,1,2,0,1,0,1,0,1,2,1,3,0,0,1,0,0,2,1,2,1,0,,,,,,,,,,,,,, +2419,French Polynesia,2010,0,3,1,0,1,1,1,0,1,1,0,3,0,1,3,2,0,1,1,2,0,2,1,2,0,1,2,1,0,0,0,2,0,0,0,0,0,1,1,2,0,0,,,,,,,,,,,,,, +2420,French Polynesia,2011,0,3,1,1,5,1,3,0,3,3,0,1,0,1,2,2,0,2,3,1,6,0,5,1,1,2,1,1,2,0,0,1,0,1,1,0,2,0,1,2,0,3,,,,,,,,,,,,,, +2421,French Polynesia,2012,0,1,2,2,3,3,3,0,2,3,0,3,4,0,0,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,0,0,0,,,,,,,,,,,,,, +2422,French Polynesia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,4,6,1,3,3,2,8,3,3,1,5,9 +2423,Gabon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2424,Gabon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2425,Gabon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2426,Gabon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2427,Gabon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2428,Gabon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2429,Gabon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2430,Gabon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2431,Gabon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2432,Gabon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2433,Gabon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2434,Gabon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2435,Gabon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2436,Gabon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2437,Gabon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2438,Gabon,1995,3,45,74,80,54,30,15,9,47,54,28,25,19,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2439,Gabon,1996,0,28,44,40,22,11,2,5,33,26,19,11,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2440,Gabon,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2441,Gabon,1998,14,93,159,129,76,43,32,15,97,85,67,32,30,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2442,Gabon,1999,14,98,158,129,76,43,32,15,97,110,67,32,30,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2443,Gabon,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2444,Gabon,2001,21,137,205,147,73,60,46,27,127,139,73,34,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2445,Gabon,2002,10,137,173,148,63,27,40,18,125,140,71,32,21,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2446,Gabon,2003,14,165,225,149,103,48,22,16,138,144,107,51,33,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2447,Gabon,2004,17,197,289,143,83,47,50,15,173,141,80,37,24,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2448,Gabon,2005,13,123,199,140,70,38,25,19,128,123,88,29,29,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2449,Gabon,2006,20,157,207,148,89,40,23,19,160,123,79,39,20,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2450,Gabon,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2451,Gabon,2008,14,209,297,196,104,45,39,29,209,158,93,59,32,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2452,Gabon,2009,45,145,163,158,138,42,29,14,103,118,121,105,33,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2453,Gabon,2010,15,145,223,208,130,89,91,13,110,164,122,100,86,64,183,88,87,101,88,76,75,95,82,71,83,65,70,62,70,37,28,32,28,17,20,32,26,22,36,39,13,12,,,,,,,,,,,,,, +2454,Gabon,2011,34,240,269,229,144,86,66,25,177,188,125,74,44,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2455,Gabon,2012,42,236,286,228,166,101,41,29,185,165,109,78,45,34,110,230,278,274,185,122,85,123,176,225,216,152,86,91,25,41,58,53,40,13,14,12,36,47,35,22,7,11,,,,,,,,,,,,,, +2456,Gabon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,242,295,267,155,89,55,29,190,213,158,106,53,35 +2457,Gambia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2458,Gambia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2459,Gambia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2460,Gambia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2461,Gambia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2462,Gambia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2463,Gambia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2464,Gambia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2465,Gambia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2466,Gambia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2467,Gambia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2468,Gambia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2469,Gambia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2470,Gambia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2471,Gambia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2472,Gambia,1995,3,68,181,88,72,29,24,4,39,61,44,25,12,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2473,Gambia,1996,29,42,148,100,66,46,48,20,50,64,46,46,30,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2474,Gambia,1997,2,83,219,126,61,63,37,5,55,76,45,20,20,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2475,Gambia,1998,6,99,193,158,79,61,35,7,60,95,53,25,18,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2476,Gambia,1999,6,99,180,124,86,65,39,10,58,82,54,30,16,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2477,Gambia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2478,Gambia,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2479,Gambia,2002,2,135,240,160,100,60,37,5,71,112,42,40,21,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2480,Gambia,2003,3,162,236,149,83,52,31,8,81,85,62,39,27,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2481,Gambia,2004,5,145,260,151,103,46,23,7,55,81,59,38,21,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2482,Gambia,2005,13,133,292,206,62,53,44,2,84,87,64,38,22,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2483,Gambia,2006,13,126,284,170,112,58,56,5,88,126,71,49,25,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2484,Gambia,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2485,Gambia,2008,7,151,307,167,125,87,34,9,94,133,90,43,45,8,45,39,51,56,67,73,8,38,29,64,47,41,46,6,13,10,10,10,4,13,3,10,9,15,10,6,3,0,,,,,,,,,,,,,, +2486,Gambia,2009,12,159,240,185,124,74,49,20,91,143,84,70,37,28,37,13,79,122,49,16,9,21,7,94,111,49,8,7,4,27,19,30,0,1,1,1,11,20,27,0,0,0,,,,,,,,,,,,,, +2487,Gambia,2010,9,194,314,184,141,68,39,6,104,121,71,35,40,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2488,Gambia,2011,14,183,271,181,136,87,56,16,103,112,88,63,32,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2489,Gambia,2012,7,210,331,191,107,80,54,16,123,106,89,41,32,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2490,Gambia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,,,,,,,66,,,,,, +2491,Georgia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2492,Georgia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2493,Georgia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2494,Georgia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2495,Georgia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2496,Georgia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2497,Georgia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2498,Georgia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2499,Georgia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2500,Georgia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2501,Georgia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2502,Georgia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2503,Georgia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2504,Georgia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2505,Georgia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2506,Georgia,1995,2,20,30,25,40,18,12,2,8,17,17,18,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2507,Georgia,1996,4,27,82,93,76,38,16,1,13,28,36,23,27,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2508,Georgia,1997,0,75,97,91,67,58,16,0,38,46,40,36,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2509,Georgia,1998,4,64,91,99,58,52,19,4,41,52,25,14,17,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2510,Georgia,1999,5,135,176,151,77,55,23,3,27,40,26,10,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2511,Georgia,2000,4,76,111,113,63,45,28,1,49,37,33,17,10,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2512,Georgia,2001,4,142,233,199,117,46,46,2,63,63,37,22,18,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2513,Georgia,2002,1,155,197,181,119,54,42,5,54,68,39,31,20,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2514,Georgia,2003,1,112,220,185,111,65,53,1,65,59,56,19,23,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2515,Georgia,2004,3,157,292,226,177,80,66,3,87,81,52,32,26,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2516,Georgia,2005,0,226,272,268,207,76,60,4,109,105,58,46,17,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2517,Georgia,2006,3,315,392,300,241,86,72,5,115,110,71,60,26,34,23,165,156,162,124,79,108,24,91,118,61,43,31,44,162,210,128,73,64,43,39,130,120,95,75,48,32,40,,,,,,,,,,,,,, +2518,Georgia,2007,7,277,388,308,230,96,75,6,153,140,67,54,17,46,23,132,116,114,120,75,54,25,83,62,56,31,14,29,142,176,145,91,81,33,38,103,122,104,72,49,37,37,,,,,,,,,,,,,, +2519,Georgia,2008,4,294,380,312,243,118,77,4,142,121,61,44,22,46,17,133,145,139,112,84,104,14,89,89,49,26,20,42,139,183,123,92,70,57,52,89,120,105,66,45,28,48,,,,,,,,,,,,,, +2520,Georgia,2009,2,327,435,310,284,135,89,5,124,134,74,60,30,46,15,140,170,141,145,73,98,20,93,97,36,21,28,42,153,175,191,99,86,44,39,86,124,104,62,47,28,45,,,,,,,,,,,,,, +2521,Georgia,2010,5,340,529,341,264,143,77,5,135,118,62,52,28,41,14,143,182,135,136,66,78,16,94,92,59,39,10,24,123,156,170,125,71,50,33,86,98,93,56,37,30,27,,,,,,,,,,,,,, +2522,Georgia,2011,5,271,478,333,251,139,93,8,136,132,59,32,35,54,10,146,220,162,130,67,78,14,88,90,47,33,26,30,98,139,155,91,60,43,38,67,105,95,54,50,28,33,,,,,,,,,,,,,, +2523,Georgia,2012,4,200,314,248,235,150,81,5,101,116,72,43,32,47,9,167,200,161,134,101,86,10,84,100,48,37,23,26,106,138,124,71,53,33,33,81,83,88,49,35,24,26,,,,,,,,,,,,,, +2524,Georgia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105,337,556,455,431,306,185,78,248,298,145,99,73,118 +2525,Germany,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2526,Germany,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2527,Germany,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2528,Germany,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2529,Germany,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2530,Germany,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2531,Germany,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2532,Germany,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2533,Germany,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2534,Germany,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2535,Germany,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2536,Germany,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2537,Germany,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2538,Germany,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2539,Germany,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2540,Germany,1995,14,179,453,539,460,442,625,17,115,251,167,89,104,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2541,Germany,1996,20,181,377,520,413,405,607,19,150,214,180,97,108,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2542,Germany,1997,11,166,375,459,384,424,509,16,109,204,154,93,99,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2543,Germany,1998,9,179,333,448,358,349,538,11,121,166,141,93,80,298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2544,Germany,1999,13,145,308,419,362,335,449,15,118,177,98,85,99,295,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2545,Germany,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2546,Germany,2001,3,3,89,136,106,94,119,1,36,59,48,42,26,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2547,Germany,2002,3,34,75,102,88,81,101,1,32,61,50,14,16,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2548,Germany,2003,2,68,107,177,163,103,155,10,61,96,86,43,22,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2549,Germany,2004,5,63,130,182,161,110,198,6,75,110,97,42,32,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2550,Germany,2005,6,59,113,171,167,92,167,4,51,104,73,43,37,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2551,Germany,2006,2,78,138,169,189,103,199,7,66,109,77,39,24,102,63,93,203,230,223,224,434,75,102,180,134,133,98,342,16,43,93,77,49,65,129,26,46,104,81,67,53,177,,,,,,,,,,,,,, +2552,Germany,2007,2,116,248,314,344,184,362,4,120,176,152,116,46,178,62,106,145,191,266,187,414,55,96,141,137,105,100,312,24,36,80,58,63,63,119,23,47,86,66,56,74,181,,,,,,,,,,,,,, +2553,Germany,2008,2,40,95,114,142,96,148,6,35,68,61,41,33,71,45,66,129,158,212,172,318,35,81,117,101,89,53,213,9,27,65,71,55,45,113,15,34,66,50,43,59,145,,,,,,,,,,,,,, +2554,Germany,2009,2,48,109,125,163,103,148,1,52,76,51,49,27,92,45,77,134,133,194,151,332,56,73,116,84,70,80,232,15,37,58,56,36,46,99,17,26,69,67,54,53,115,,,,,,,,,,,,,, +2555,Germany,2010,1,49,96,105,149,97,145,3,48,68,63,38,27,78,60,90,119,131,185,148,320,53,66,125,61,89,49,205,20,30,74,45,58,40,106,15,25,63,68,52,50,138,,,,,,,,,,,,,, +2556,Germany,2011,0,43,95,108,139,69,127,2,45,90,61,53,26,87,65,74,118,141,180,151,333,63,62,128,85,87,76,212,15,29,67,61,52,40,99,14,22,55,50,49,62,122,,,,,,,,,,,,,, +2557,Germany,2012,4,47,101,114,152,106,104,6,53,99,38,46,25,55,66,78,122,140,154,158,276,61,53,97,78,68,64,189,14,51,72,59,62,49,119,18,25,86,53,50,57,109,,,,,,,,,,,,,, +2558,Germany,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,268,399,379,433,328,672,80,189,323,215,186,158,457 +2559,Ghana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2560,Ghana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2561,Ghana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2562,Ghana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2563,Ghana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2564,Ghana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2565,Ghana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2566,Ghana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2567,Ghana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2568,Ghana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2569,Ghana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2570,Ghana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2571,Ghana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2572,Ghana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2573,Ghana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2574,Ghana,1995,42,223,397,398,302,190,112,40,199,272,205,122,88,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2575,Ghana,1996,30,216,345,368,255,165,157,32,177,260,200,110,64,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2576,Ghana,1997,77,406,941,781,623,367,294,90,363,651,418,276,188,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2577,Ghana,1998,83,553,1009,913,775,509,487,85,483,758,493,366,248,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2578,Ghana,1999,64,586,1132,1008,767,389,389,80,491,753,492,302,192,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2579,Ghana,2000,73,550,1266,1115,811,495,426,74,456,791,566,338,179,176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2580,Ghana,2001,84,587,1223,1144,857,471,460,128,515,814,623,370,209,227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2581,Ghana,2002,80,535,1245,1282,883,507,429,98,489,806,592,325,223,238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2582,Ghana,2003,79,579,1265,1234,924,509,441,83,487,744,586,380,200,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2583,Ghana,2004,54,532,1246,1250,854,472,413,69,454,701,518,303,202,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2584,Ghana,2005,49,592,1201,1311,944,462,414,68,450,693,527,366,207,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2585,Ghana,2006,33,557,1273,1388,956,529,443,70,494,711,515,381,207,229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2586,Ghana,2007,66,596,1164,1239,861,477,506,75,453,667,564,371,183,207,0,0,0,0,0,,0,0,0,0,0,,0,0,0,0,,,,0,,0,0,,0,,,0,,,,,,,,,,,,,, +2587,Ghana,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2588,Ghana,2009,66,674,1285,1423,1064,505,539,58,491,701,605,362,197,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2589,Ghana,2010,63,570,1146,1301,1030,540,447,64,446,667,560,369,204,249,292,285,607,716,511,284,345,251,206,455,460,283,147,226,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2590,Ghana,2011,50,550,1127,1328,955,491,456,52,470,699,614,390,174,260,311,249,632,869,658,390,536,252,189,452,496,318,210,313,119,110,141,187,136,95,74,85,80,153,104,74,59,54,,,,,,,,,,,,,, +2591,Ghana,2012,30,559,1051,1271,921,512,462,51,418,563,468,332,188,271,275,274,576,871,703,419,563,243,202,446,496,360,220,331,124,97,130,153,115,104,54,97,57,102,116,77,39,36,,,,,,,,,,,,,, +2592,Ghana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,420,937,1871,2401,1901,1128,1080,363,753,1170,1089,793,463,674 +2593,Greece,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2594,Greece,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2595,Greece,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2596,Greece,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2597,Greece,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2598,Greece,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2599,Greece,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2600,Greece,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2601,Greece,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2602,Greece,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2603,Greece,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2604,Greece,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2605,Greece,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2606,Greece,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2607,Greece,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2608,Greece,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2609,Greece,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2610,Greece,1997,0,16,30,34,42,39,47,0,14,19,8,3,9,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2611,Greece,1998,15,15,31,31,22,31,47,11,20,12,13,8,5,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2612,Greece,1999,3,11,11,17,18,18,27,1,5,8,8,2,3,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2613,Greece,2000,1,10,22,32,24,19,46,0,2,9,10,5,6,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2614,Greece,2001,0,10,23,29,20,17,37,0,7,11,7,4,7,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2615,Greece,2002,0,1,13,27,33,30,10,0,0,3,17,11,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2616,Greece,2003,2,20,28,25,23,25,36,0,7,9,7,2,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2617,Greece,2004,1,9,14,22,18,13,34,0,3,7,10,3,3,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2618,Greece,2005,1,14,25,22,14,12,23,0,13,18,8,7,2,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2619,Greece,2006,0,11,32,22,24,22,27,0,13,12,8,5,6,24,9,13,28,19,29,27,59,11,10,13,12,8,5,40,1,7,10,3,10,5,20,2,1,1,1,3,5,15,,,,,,,,,,,,,, +2620,Greece,2007,1,21,22,34,28,15,54,0,13,19,11,8,3,24,9,16,15,14,17,23,52,13,7,16,10,8,6,21,7,1,0,3,2,0,1,5,0,0,1,0,0,0,,,,,,,,,,,,,, +2621,Greece,2008,0,5,14,12,4,6,9,0,5,9,2,4,3,7,14,18,33,38,45,28,76,9,16,19,18,13,10,36,0,9,12,3,3,4,16,8,1,5,4,2,1,12,,,,,,,,,,,,,, +2622,Greece,2009,3,20,22,23,23,15,31,4,8,14,8,9,2,12,11,19,30,10,14,12,34,8,4,10,9,6,10,20,1,8,7,3,5,4,9,2,3,6,5,3,0,11,,,,,,,,,,,,,, +2623,Greece,2010,1,19,27,20,18,19,22,3,1,13,4,4,4,15,9,15,17,11,8,10,20,11,6,6,2,4,2,6,2,11,6,5,1,1,7,4,1,3,0,0,2,5,,,,,,,,,,,,,, +2624,Greece,2011,2,30,30,26,24,19,38,1,9,14,9,3,5,20,12,11,26,13,10,11,28,15,6,7,3,3,2,9,1,5,9,3,2,2,10,2,1,3,3,3,2,11,,,,,,,,,,,,,, +2625,Greece,2012,2,20,31,25,23,24,45,3,11,8,12,1,3,21,12,7,20,10,12,11,39,16,0,8,4,5,4,9,2,6,8,2,1,3,12,0,3,3,4,3,1,9,,,,,,,,,,,,,, +2626,Greece,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,44,68,56,47,40,78,9,13,22,12,12,12,52 +2627,Greenland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2628,Greenland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2629,Greenland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2630,Greenland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2631,Greenland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2632,Greenland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2633,Greenland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2634,Greenland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2635,Greenland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2636,Greenland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2637,Greenland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2638,Greenland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2639,Greenland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2640,Greenland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2641,Greenland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2642,Greenland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2643,Greenland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2644,Greenland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2645,Greenland,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2646,Greenland,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2647,Greenland,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2648,Greenland,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2649,Greenland,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2650,Greenland,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2651,Greenland,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2652,Greenland,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2653,Greenland,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2654,Greenland,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2655,Greenland,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2656,Greenland,2009,,2,3,3,3,1,,,4,5,2,1,,,2,4,5,1,7,3,,,4,2,,2,,,,,,1,1,,,,,1,,,,,,,,,,,,,,,,,, +2657,Greenland,2010,0,5,7,5,5,2,2,1,5,0,0,4,2,0,4,10,6,1,1,2,1,4,11,7,4,5,2,1,0,3,0,1,1,0,0,0,2,0,0,0,0,0,,,,,,,,,,,,,, +2658,Greenland,2011,0,10,2,0,3,3,1,0,8,1,1,2,3,0,3,20,5,5,3,3,1,3,12,4,2,6,7,2,,3,0,0,0,0,0,1,1,0,0,0,0,0,,,,,,,,,,,,,, +2659,Greenland,2012,0,6,3,5,1,5,1,2,3,0,3,1,0,3,1,8,2,3,8,7,3,1,2,3,1,5,0,0,0,0,1,0,1,0,0,0,0,0,0,1,2,0,,,,,,,,,,,,,, +2660,Greenland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,21,14,6,7,7,3,3,9,3,3,13,4,1 +2661,Grenada,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2662,Grenada,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2663,Grenada,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2664,Grenada,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2665,Grenada,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2666,Grenada,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2667,Grenada,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2668,Grenada,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2669,Grenada,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2670,Grenada,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2671,Grenada,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2672,Grenada,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2673,Grenada,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2674,Grenada,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2675,Grenada,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2676,Grenada,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2677,Grenada,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2678,Grenada,1997,0,0,1,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2679,Grenada,1998,0,1,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2680,Grenada,1999,0,0,1,0,0,1,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2681,Grenada,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2682,Grenada,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2683,Grenada,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2684,Grenada,2003,,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2685,Grenada,2004,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2686,Grenada,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2687,Grenada,2006,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2688,Grenada,2007,,,,,,1,1,,1,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2689,Grenada,2008,,1,,1,2,,1,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2690,Grenada,2009,,,,1,,1,,,,1,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2691,Grenada,2010,,,,1,1,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2692,Grenada,2011,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +2693,Grenada,2012,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2694,Grenada,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,, +2695,Guam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2696,Guam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2697,Guam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2698,Guam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2699,Guam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2700,Guam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2701,Guam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2702,Guam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2703,Guam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2704,Guam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2705,Guam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2706,Guam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2707,Guam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2708,Guam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2709,Guam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2710,Guam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2711,Guam,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2712,Guam,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2713,Guam,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2714,Guam,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2715,Guam,2000,2,1,6,6,9,6,9,0,3,1,2,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2716,Guam,2001,0,1,4,10,9,3,6,0,2,3,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2717,Guam,2002,3,3,5,5,6,12,4,5,1,6,3,3,2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2718,Guam,2003,0,2,1,3,4,7,5,1,3,1,4,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2719,Guam,2004,0,0,1,2,6,2,3,0,0,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2720,Guam,2005,0,2,4,4,2,2,4,0,3,1,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2721,Guam,2006,0,1,1,2,3,2,6,0,0,0,1,1,2,2,3,0,2,0,0,1,0,7,1,0,0,0,0,1,0,0,0,0,1,1,0,0,2,2,1,1,0,0,,,,,,,,,,,,,, +2722,Guam,2007,0,0,0,2,0,0,0,0,0,0,0,1,1,1,13,2,0,1,4,0,1,16,2,2,0,0,1,1,0,0,1,0,0,0,0,1,0,1,0,1,0,0,,,,,,,,,,,,,, +2723,Guam,2008,0,0,1,7,8,3,4,0,1,2,0,1,1,3,12,1,0,4,1,4,6,13,2,0,2,2,1,2,0,1,0,0,0,1,1,0,1,1,0,0,3,0,,,,,,,,,,,,,, +2724,Guam,2009,0,1,0,5,3,9,4,1,1,3,1,1,2,0,13,4,3,3,5,6,5,13,2,2,0,3,1,0,1,1,0,0,2,0,0,0,0,2,1,1,1,1,,,,,,,,,,,,,, +2725,Guam,2010,0,2,3,5,5,7,3,1,0,4,3,3,0,3,9,0,3,7,1,5,2,9,1,3,5,2,4,0,0,0,1,0,1,0,1,0,3,0,1,1,0,1,,,,,,,,,,,,,, +2726,Guam,2011,0,1,0,2,7,4,4,0,1,1,1,0,3,4,5,0,4,1,5,1,4,7,1,3,1,3,1,3,0,2,0,0,2,0,3,0,1,0,0,0,3,0,,,,,,,,,,,,,, +2727,Guam,2012,0,1,0,4,5,2,6,0,0,0,0,2,1,2,5,4,2,0,1,0,1,10,0,1,1,5,4,3,0,1,0,1,3,0,1,0,0,0,1,0,0,1,,,,,,,,,,,,,, +2728,Guam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,1,2,5,0,10,6,2,2,5,2,2,3 +2729,Guatemala,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2730,Guatemala,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2731,Guatemala,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2732,Guatemala,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2733,Guatemala,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2734,Guatemala,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2735,Guatemala,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2736,Guatemala,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2737,Guatemala,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2738,Guatemala,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2739,Guatemala,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2740,Guatemala,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2741,Guatemala,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2742,Guatemala,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2743,Guatemala,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2744,Guatemala,1995,51,235,280,236,165,142,139,51,224,255,221,146,129,94,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2745,Guatemala,1996,75,230,230,218,152,132,142,48,214,250,212,172,134,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2746,Guatemala,1997,45,246,217,229,161,155,150,33,228,225,183,120,109,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2747,Guatemala,1998,60,206,248,234,163,148,152,45,203,216,199,160,118,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2748,Guatemala,1999,34,216,248,235,171,141,158,24,229,230,194,174,121,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2749,Guatemala,2000,36,220,236,216,177,112,140,41,199,167,175,135,87,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2750,Guatemala,2001,27,171,201,169,137,98,97,33,180,173,118,101,74,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2751,Guatemala,2002,27,217,219,171,158,117,146,42,192,171,147,116,68,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2752,Guatemala,2003,29,175,200,169,156,125,128,24,186,179,157,104,88,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2753,Guatemala,2004,43,282,291,209,210,144,129,31,278,201,227,144,72,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2754,Guatemala,2005,39,251,258,185,187,127,115,38,339,245,277,176,88,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2755,Guatemala,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2756,Guatemala,2007,74,169,207,226,203,159,155,183,163,246,145,153,143,122,17,35,37,35,17,10,21,27,51,44,40,22,13,7,24,21,23,28,16,15,16,17,16,27,26,22,17,14,,,,,,,,,,,,,, +2757,Guatemala,2008,19,220,257,193,163,124,167,22,199,189,162,154,100,101,19,24,29,34,22,17,22,19,20,29,36,21,19,15,16,23,55,36,31,16,11,16,28,33,27,25,16,13,,,,,,,,,,,,,, +2758,Guatemala,2009,121,144,168,117,122,91,88,116,148,149,99,107,73,66,,,,,,,,,,,,,,,13,144,168,117,122,91,88,16,148,149,99,107,73,66,,,,,,,,,,,,,, +2759,Guatemala,2010,60,187,245,207,172,143,165,29,194,190,179,139,108,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2760,Guatemala,2011,18,197,205,172,162,136,152,25,186,192,154,154,102,106,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2761,Guatemala,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2762,Guatemala,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,239,248,212,207,155,164,25,197,208,167,154,106,98 +2763,Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2764,Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2765,Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2766,Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2767,Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2768,Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2769,Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2770,Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2771,Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2772,Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2773,Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2774,Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2775,Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2776,Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2777,Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2778,Guinea,1995,18,244,538,357,189,98,61,28,202,255,153,64,37,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2779,Guinea,1996,29,319,631,416,214,133,104,30,223,338,213,111,52,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2780,Guinea,1997,25,326,653,483,220,147,100,38,246,383,189,91,48,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2781,Guinea,1998,22,409,763,494,271,168,117,37,303,365,202,115,71,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2782,Guinea,1999,30,434,736,519,294,173,104,44,345,395,259,110,78,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2783,Guinea,2000,39,551,860,570,282,203,103,66,314,446,245,114,82,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2784,Guinea,2001,24,506,876,612,325,185,154,59,419,433,249,127,77,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2785,Guinea,2002,24,413,958,634,336,139,149,42,399,439,259,109,77,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2786,Guinea,2003,34,617,1052,671,368,172,134,53,353,451,307,137,106,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2787,Guinea,2004,38,728,1091,726,389,199,135,62,470,521,334,159,100,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2788,Guinea,2005,51,749,1165,778,463,195,130,65,594,583,354,203,94,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2789,Guinea,2006,31,834,1168,916,512,274,162,85,586,581,396,187,118,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2790,Guinea,2007,46,901,1315,936,503,240,204,76,631,613,367,207,106,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2791,Guinea,2008,56,970,1419,985,561,264,198,64,610,686,377,190,93,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2792,Guinea,2009,65,746,1064,655,376,208,150,68,549,644,429,225,132,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2793,Guinea,2010,61,679,877,982,876,565,289,51,549,739,751,405,145,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2794,Guinea,2011,45,1051,1537,955,541,293,197,85,709,688,432,219,109,73,79,207,156,177,134,65,52,27,67,180,102,100,67,33,14,343,458,176,201,96,20,0,109,241,278,169,112,67,,,,,,,,,,,,,, +2795,Guinea,2012,28,761,1104,791,383,190,120,49,505,509,323,134,61,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2796,Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,107,1269,1690,1887,1031,642,474,78,987,1056,998,693,214,187 +2797,Guinea-Bissau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2798,Guinea-Bissau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2799,Guinea-Bissau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2800,Guinea-Bissau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2801,Guinea-Bissau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2802,Guinea-Bissau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2803,Guinea-Bissau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2804,Guinea-Bissau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2805,Guinea-Bissau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2806,Guinea-Bissau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2807,Guinea-Bissau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2808,Guinea-Bissau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2809,Guinea-Bissau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2810,Guinea-Bissau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2811,Guinea-Bissau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2812,Guinea-Bissau,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2813,Guinea-Bissau,1996,9,110,159,113,99,60,36,7,49,80,94,62,31,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2814,Guinea-Bissau,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2815,Guinea-Bissau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2816,Guinea-Bissau,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2817,Guinea-Bissau,2000,2,52,92,80,64,39,19,4,30,46,47,24,15,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2818,Guinea-Bissau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2819,Guinea-Bissau,2002,7,101,146,128,70,52,34,9,80,108,66,49,37,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2820,Guinea-Bissau,2003,9,101,153,118,108,63,27,7,97,82,78,58,38,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2821,Guinea-Bissau,2004,16,86,175,147,130,84,51,11,87,115,103,98,54,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2822,Guinea-Bissau,2005,14,116,167,153,130,72,42,13,78,110,92,82,44,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2823,Guinea-Bissau,2006,8,86,178,143,90,74,24,7,82,116,90,81,36,15,554,,,,,,,401,,,,,,,13,,,,,,,6,,,,,,,,,,,,,,,,,,,, +2824,Guinea-Bissau,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2825,Guinea-Bissau,2008,8,119,194,191,109,79,30,12,85,129,123,92,41,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2826,Guinea-Bissau,2009,8,124,230,172,138,82,38,5,88,149,119,92,47,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2827,Guinea-Bissau,2010,18,164,219,183,141,80,43,30,100,161,133,80,38,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2828,Guinea-Bissau,2011,6,140,230,181,104,65,36,12,119,122,90,56,44,25,34,43,77,81,57,32,17,30,40,69,57,29,16,11,17,6,4,5,6,0,2,10,4,3,2,2,0,1,,,,,,,,,,,,,, +2829,Guinea-Bissau,2012,7,145,262,183,115,63,38,7,121,157,98,56,33,25,41,26,61,62,40,37,12,29,26,44,38,39,33,9,6,6,5,4,4,2,0,2,2,4,4,0,1,0,,,,,,,,,,,,,, +2830,Guinea-Bissau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,204,387,262,169,100,62,36,166,275,145,80,69,31 +2831,Guyana,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2832,Guyana,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2833,Guyana,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2834,Guyana,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2835,Guyana,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2836,Guyana,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2837,Guyana,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2838,Guyana,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2839,Guyana,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2840,Guyana,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2841,Guyana,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2842,Guyana,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2843,Guyana,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2844,Guyana,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2845,Guyana,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2846,Guyana,1995,7,8,5,6,9,6,7,3,5,7,6,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2847,Guyana,1996,4,8,14,4,5,4,7,4,8,4,4,5,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2848,Guyana,1997,1,15,19,12,2,5,8,3,9,8,8,4,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2849,Guyana,1998,9,29,56,42,36,2,12,13,32,38,26,4,8,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2850,Guyana,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2851,Guyana,2000,4,20,19,14,7,6,9,1,11,8,7,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2852,Guyana,2001,1,15,47,44,12,2,1,0,6,16,16,9,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2853,Guyana,2002,20,49,90,94,51,19,23,26,32,36,34,19,15,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2854,Guyana,2003,10,56,111,114,58,27,13,12,35,61,56,27,10,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2855,Guyana,2004,9,45,113,97,87,,4,15,35,38,29,23,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2856,Guyana,2005,12,48,130,116,81,41,20,14,41,62,41,30,11,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2857,Guyana,2006,6,37,61,59,40,15,5,1,15,21,20,14,3,1,12,28,76,73,48,12,13,13,16,36,29,12,5,20,4,1,3,2,1,,,3,1,,3,1,,,,,,,,,,,,,,,, +2858,Guyana,2007,2,15,43,44,41,12,8,1,20,19,17,5,3,3,10,20,43,56,30,21,13,13,17,32,24,10,4,8,3,1,9,6,5,5,1,4,2,2,2,2,,1,,,,,,,,,,,,,, +2859,Guyana,2008,7,29,51,71,47,22,11,4,20,23,13,12,3,7,9,20,32,47,30,13,14,7,13,23,12,11,5,6,7,5,12,4,7,2,0,4,1,7,6,4,2,0,,,,,,,,,,,,,, +2860,Guyana,2009,7,21,48,61,60,11,20,3,21,26,22,12,8,8,5,26,33,48,33,11,15,2,15,16,19,12,9,8,3,3,8,7,5,4,2,0,2,6,4,1,1,0,,,,,,,,,,,,,, +2861,Guyana,2010,2,32,38,65,49,22,13,2,22,25,19,20,10,6,9,23,34,46,33,22,11,8,10,28,17,13,11,9,5,11,7,7,12,4,1,9,4,4,2,6,1,2,,,,,,,,,,,,,, +2862,Guyana,2011,8,26,54,61,54,19,13,2,17,19,17,17,7,9,13,17,23,36,47,17,30,6,13,23,19,19,13,6,7,7,10,11,8,3,0,2,3,5,9,3,4,6,,,,,,,,,,,,,, +2863,Guyana,2012,5,30,39,68,64,23,8,4,17,10,17,12,7,5,5,11,36,60,48,19,19,10,19,21,28,22,26,15,2,8,12,10,8,3,6,0,5,5,6,8,2,2,,,,,,,,,,,,,, +2864,Guyana,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,56,82,109,112,52,31,10,39,50,42,39,19,26 +2865,Haiti,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2866,Haiti,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2867,Haiti,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2868,Haiti,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2869,Haiti,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2870,Haiti,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2871,Haiti,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2872,Haiti,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2873,Haiti,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2874,Haiti,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2875,Haiti,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2876,Haiti,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2877,Haiti,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2878,Haiti,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2879,Haiti,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2880,Haiti,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2881,Haiti,1996,148,358,438,289,160,87,97,224,417,492,303,176,62,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2882,Haiti,1997,156,683,817,453,260,150,162,149,760,878,515,250,119,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2883,Haiti,1998,188,804,971,656,331,177,142,208,827,958,620,300,141,119,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2884,Haiti,1999,286,812,1059,672,348,186,145,285,919,918,614,312,162,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2885,Haiti,2000,67,836,898,613,350,147,118,96,914,857,513,275,132,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2886,Haiti,2001,72,752,785,587,319,169,112,113,882,843,498,273,109,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2887,Haiti,2002,79,903,904,572,377,184,148,118,980,851,550,303,120,99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2888,Haiti,2003,89,1002,981,625,406,208,147,122,1114,1064,606,378,165,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2889,Haiti,2004,94,918,964,606,376,207,176,137,1146,1045,688,386,176,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2890,Haiti,2005,69,1045,1035,701,451,222,156,116,1097,1099,633,414,170,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2891,Haiti,2006,93,1110,1132,672,455,201,174,137,1113,1039,638,387,184,126,803,343,406,369,258,140,148,725,361,462,312,237,134,98,130,160,151,98,87,44,38,148,165,164,121,60,43,27,,,,,,,,,,,,,, +2892,Haiti,2007,104,1166,1199,760,471,219,192,147,1261,1107,632,344,182,131,860,298,368,279,211,126,133,763,348,378,286,197,132,93,134,158,172,122,63,41,41,129,152,174,119,68,35,29,,,,,,,,,,,,,, +2893,Haiti,2008,90,1137,1337,696,491,242,175,154,1272,1204,677,378,179,139,692,346,423,333,242,140,118,638,392,488,356,220,141,126,132,186,156,110,71,46,32,128,157,198,98,58,40,51,,,,,,,,,,,,,, +2894,Haiti,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2895,Haiti,2010,98,1225,1357,718,469,259,160,158,1268,1223,608,358,207,134,579,364,456,377,263,153,122,532,332,427,317,198,121,94,109,142,157,111,70,42,34,87,152,166,101,60,42,34,,,,,,,,,,,,,, +2896,Haiti,2011,107,1239,1398,690,445,235,133,170,1356,1291,601,397,199,138,612,439,505,386,294,151,109,566,389,523,381,256,152,108,184,171,204,129,71,45,43,138,156,173,136,75,35,41,,,,,,,,,,,,,, +2897,Haiti,2012,126,1358,1564,757,475,271,164,160,1478,1418,697,416,220,157,704,364,501,373,261,175,105,616,367,430,318,273,123,109,203,183,245,156,93,54,47,176,202,248,136,73,65,37,,,,,,,,,,,,,, +2898,Haiti,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,949,1973,2563,1463,1011,545,385,956,2122,2241,1262,779,452,339 +2899,Honduras,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2900,Honduras,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2901,Honduras,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2902,Honduras,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2903,Honduras,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2904,Honduras,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2905,Honduras,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2906,Honduras,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2907,Honduras,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2908,Honduras,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2909,Honduras,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2910,Honduras,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2911,Honduras,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2912,Honduras,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2913,Honduras,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2914,Honduras,1995,42,280,540,204,130,236,58,54,208,292,134,76,136,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2915,Honduras,1996,51,247,389,142,108,190,21,43,167,245,106,69,149,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2916,Honduras,1997,26,214,321,111,78,140,28,38,166,174,80,61,116,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2917,Honduras,1998,147,277,256,211,205,181,50,103,206,192,158,152,135,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2918,Honduras,1999,150,288,268,219,220,190,52,100,214,201,164,160,140,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2919,Honduras,2000,30,123,371,246,277,214,43,25,21,269,258,270,160,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2920,Honduras,2001,12,47,509,344,337,257,27,13,25,347,352,339,196,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2921,Honduras,2002,76,29,519,353,338,257,24,65,23,351,339,354,193,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2922,Honduras,2003,52,20,344,235,227,161,17,42,15,232,225,236,127,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2923,Honduras,2004,54,20,379,259,247,189,18,40,13,218,211,220,121,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2924,Honduras,2005,13,238,280,215,152,134,152,27,219,222,125,107,81,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2925,Honduras,2006,21,213,297,213,139,96,147,28,206,234,123,85,87,129,72,36,81,67,46,40,48,63,26,54,46,34,16,27,26,24,36,29,19,11,29,9,28,37,29,27,19,27,,,,,,,,,,,,,, +2926,Honduras,2007,21,204,293,194,158,123,180,29,185,175,110,106,84,112,36,42,62,48,37,20,46,28,24,34,18,24,22,29,25,25,45,32,21,12,20,23,16,37,26,21,7,18,,,,,,,,,,,,,, +2927,Honduras,2008,11,254,263,202,140,103,174,26,152,170,114,90,82,116,33,28,55,47,33,35,44,32,24,34,30,18,21,17,15,26,40,28,23,19,19,16,26,37,28,24,9,20,,,,,,,,,,,,,, +2928,Honduras,2009,13,227,269,177,155,131,168,17,167,172,124,80,73,108,37,52,58,53,39,40,50,37,23,30,25,20,21,35,23,26,36,36,23,18,28,17,21,35,18,22,13,15,,,,,,,,,,,,,, +2929,Honduras,2010,15,177,246,207,165,113,157,28,186,163,106,103,69,107,30,33,53,35,41,30,57,32,24,31,34,22,20,40,27,37,44,38,27,20,26,17,19,42,39,15,11,20,,,,,,,,,,,,,, +2930,Honduras,2011,17,194,291,227,184,120,184,19,181,194,138,99,98,126,63,36,73,57,48,35,53,53,33,42,25,28,27,43,19,31,39,41,34,26,39,20,21,33,25,18,28,16,,,,,,,,,,,,,, +2931,Honduras,2012,18,247,285,192,184,129,146,15,180,157,115,88,75,114,49,38,62,48,33,24,61,41,25,35,21,29,21,22,26,27,46,32,22,18,28,15,29,37,25,15,18,24,,,,,,,,,,,,,, +2932,Honduras,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,300,391,317,248,191,224,90,277,246,173,159,119,174 +2933,Hungary,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2934,Hungary,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2935,Hungary,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2936,Hungary,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2937,Hungary,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2938,Hungary,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2939,Hungary,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2940,Hungary,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2941,Hungary,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2942,Hungary,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2943,Hungary,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2944,Hungary,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2945,Hungary,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2946,Hungary,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2947,Hungary,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2948,Hungary,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2949,Hungary,1996,3,28,139,151,209,140,105,2,30,42,51,63,27,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2950,Hungary,1997,0,8,51,163,164,90,69,1,9,25,35,24,19,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2951,Hungary,1998,0,14,64,149,163,62,59,0,13,27,34,25,17,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2952,Hungary,1999,2,16,48,155,183,74,47,4,17,19,37,19,7,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2953,Hungary,2000,0,8,24,85,104,58,27,1,7,17,19,22,10,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2954,Hungary,2001,1,11,42,97,133,73,42,0,10,17,31,27,13,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2955,Hungary,2002,1,10,41,102,145,61,39,1,9,27,36,26,14,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2956,Hungary,2003,0,6,30,89,140,70,38,0,16,26,27,30,11,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2957,Hungary,2004,2,7,38,99,145,64,63,2,6,23,25,29,14,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2958,Hungary,2005,0,6,24,67,117,67,39,1,5,13,11,22,15,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2959,Hungary,2006,2,10,31,71,98,54,33,3,17,16,19,28,11,29,1,33,53,98,214,161,127,1,21,45,55,76,59,123,1,0,7,6,15,10,13,1,0,0,7,4,9,13,,,,,,,,,,,,,, +2960,Hungary,2007,0,7,31,48,103,50,35,3,12,22,18,17,6,29,3,11,33,87,175,147,162,1,10,34,48,74,46,126,0,0,5,8,6,8,11,0,0,1,7,9,7,24,,,,,,,,,,,,,, +2961,Hungary,2008,0,12,23,47,86,72,24,0,11,13,15,12,5,25,1,19,39,91,141,146,136,2,22,33,42,52,55,117,1,1,4,7,8,8,11,0,1,4,1,8,3,22,,,,,,,,,,,,,, +2962,Hungary,2009,0,10,14,49,89,56,36,1,4,13,21,22,14,32,0,15,28,56,135,121,116,0,10,34,40,69,55,87,1,2,2,6,10,4,12,3,0,1,3,6,3,12,,,,,,,,,,,,,, +2963,Hungary,2010,1,9,14,36,51,50,23,0,9,16,14,9,15,20,4,34,41,111,159,170,180,4,29,42,65,81,92,123,0,4,4,2,7,10,6,2,2,1,2,8,3,19,,,,,,,,,,,,,, +2964,Hungary,2011,0,11,18,34,46,53,28,0,3,9,8,9,12,29,2,16,52,82,141,135,140,1,28,32,42,70,72,97,0,2,3,2,4,7,10,0,1,2,5,4,5,8,,,,,,,,,,,,,, +2965,Hungary,2012,2,7,15,29,64,41,25,0,8,14,15,11,14,28,5,23,29,73,127,152,99,1,18,24,43,46,71,120,0,1,1,2,4,6,2,0,0,1,3,2,4,9,,,,,,,,,,,,,, +2966,Hungary,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,22,54,81,170,194,137,1,26,34,60,60,89,106 +2967,Iceland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2968,Iceland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2969,Iceland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2970,Iceland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2971,Iceland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2972,Iceland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2973,Iceland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2974,Iceland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2975,Iceland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2976,Iceland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2977,Iceland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2978,Iceland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2979,Iceland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2980,Iceland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2981,Iceland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2982,Iceland,1995,0,0,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2983,Iceland,1996,,,,,,,,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2984,Iceland,1997,0,0,0,0,0,0,1,0,1,0,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2985,Iceland,1998,0,0,1,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2986,Iceland,1999,0,,,1,,,,0,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2987,Iceland,2000,,,,,,,,0,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2988,Iceland,2001,0,1,,,,,1,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2989,Iceland,2002,0,1,0,0,0,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2990,Iceland,2003,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2991,Iceland,2004,0,0,0,0,1,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2992,Iceland,2005,0,0,0,1,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2993,Iceland,2006,0,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,2,1,1,0,1,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +2994,Iceland,2007,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,2,1,0,1,0,0,7,3,0,1,0,0,,0,0,2,0,2,0,0,2,2,0,2,0,,,,,,,,,,,,,, +2995,Iceland,2008,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +2996,Iceland,2009,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +2997,Iceland,2010,0,0,1,0,3,0,0,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,3,3,2,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0,0,,,,,,,,,,,,,, +2998,Iceland,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,1,0,,,,,,,,,,,,,, +2999,Iceland,2012,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,,,,,,,,,,,,,, +3000,Iceland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,1,2,1,0,1,0,0,0,2,1,0,0,3 +3001,India,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3002,India,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3003,India,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3004,India,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3005,India,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3006,India,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3007,India,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3008,India,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3009,India,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3010,India,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3011,India,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3012,India,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3013,India,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3014,India,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3015,India,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3016,India,1995,16,334,391,287,216,123,68,32,179,169,80,49,30,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3017,India,1996,47,966,1143,934,666,424,213,79,618,571,281,167,103,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3018,India,1997,50,1257,1351,1056,753,499,245,125,861,799,369,187,102,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3019,India,1998,84,1773,2013,1851,1389,885,419,190,1375,1121,670,349,200,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3020,India,1999,327,7058,8856,7900,6172,3864,1982,785,5497,4848,2773,1504,898,436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3021,India,2000,1588,20963,31090,30829,24230,15308,8534,2250,14495,17287,11768,7516,4594,2697,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3022,India,2001,1063,22483,30007,29649,23961,14879,7779,2125,15973,16743,10103,5633,3353,1526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3023,India,2002,2551,39923,54719,55829,44532,28199,14960,4200,28573,31946,21378,13233,7636,3814,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3024,India,2003,2411,47251,61758,63587,52865,33739,18018,4745,34511,36317,23320,14055,8322,3985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3025,India,2004,3018,57208,72132,74450,62173,40769,22388,5860,41017,42808,27000,16121,9705,5016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3026,India,2005,3185,62620,74678,76870,64843,43038,24726,6292,45136,45629,28577,17042,10513,5408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3027,India,2006,3566,68346,79037,82939,71621,49320,28716,6963,47702,47420,31128,18870,11752,6417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3028,India,2007,4305,73947,83850,88045,76408,53414,31922,7575,50289,49519,32407,20316,13195,7395,,,,250051,,,,,,,148811,,,,,,,105825,,,,,,,101015,,,,,,,,,,,,,,,,, +3029,India,2008,4648,77121,83798,90498,78815,56928,36079,8319,51485,49887,33664,21486,14407,8357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3030,India,2009,5001,78177,84003,90830,80097,59163,37419,8576,51945,49747,33754,22032,14929,8944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3031,India,2010,4871,78278,82757,90440,81210,60766,38442,8544,53415,49425,34035,22719,15527,9735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3032,India,2011,4649,78096,82762,89706,82921,63625,42443,8336,53958,49227,34698,23977,17182,10731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3033,India,2012,4697,75502,79594,88111,82356,63814,41322,8260,53975,47511,33378,23267,17300,10502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3034,India,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3035,Indonesia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3036,Indonesia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3037,Indonesia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3038,Indonesia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3039,Indonesia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3040,Indonesia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3041,Indonesia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3042,Indonesia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3043,Indonesia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3044,Indonesia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3045,Indonesia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3046,Indonesia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3047,Indonesia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3048,Indonesia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3049,Indonesia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3050,Indonesia,1995,6,203,297,306,302,228,109,16,160,244,282,192,90,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3051,Indonesia,1996,28,781,1349,1443,1305,1037,510,54,860,1175,1091,915,586,247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3052,Indonesia,1997,46,1320,2139,2221,2122,1461,753,65,1305,1671,1751,1365,788,357,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3053,Indonesia,1998,78,2732,3873,4054,3486,2654,1517,108,2674,3412,3130,2335,1610,617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3054,Indonesia,1999,106,3741,5277,4999,4401,3267,1697,140,3595,12859,3624,2812,1909,745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3055,Indonesia,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3056,Indonesia,2001,298,5400,7279,6241,5538,4076,1914,354,5213,6040,4849,3537,2381,845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3057,Indonesia,2002,569,7826,10248,8760,7668,5332,2891,650,7366,8794,6773,4943,3118,1292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3058,Indonesia,2003,532,9570,12647,10925,9558,6720,3615,608,8734,10127,7889,6085,3907,1649,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3059,Indonesia,2004,697,12546,17137,14881,14772,9669,5197,803,11509,13597,10953,9586,5422,2212,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3060,Indonesia,2005,846,15215,20906,18401,17847,13509,6390,946,13916,16393,13022,10927,7539,2783,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3061,Indonesia,2006,899,16285,22752,20332,20059,15869,7348,985,14377,17628,14421,12376,8786,3203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3062,Indonesia,2007,849,14835,21297,18606,18283,14176,6762,920,13371,16055,13211,11391,7965,2896,9828,8171,11436,8070,7652,7076,4676,8689,8119,9237,6490,5866,4700,2603,741,924,897,401,318,159,143,732,1387,1256,532,299,172,87,,,,,,,,,,,,,, +3063,Indonesia,2008,871,15339,22325,19224,18545,14907,6831,1015,13987,16292,13513,11899,8485,3143,15518,7891,10913,8421,8313,7871,5275,13794,8097,9290,7148,6493,5170,2656,1204,1065,1009,512,349,229,147,1047,1452,1348,677,349,207,78,,,,,,,,,,,,,, +3064,Indonesia,2009,811,15721,23011,19523,19026,15091,6755,1054,14039,16914,13481,12087,8558,3142,13787,7318,10334,7976,8049,7585,5005,12392,7370,8671,6564,6157,4821,2587,1479,1192,1211,672,410,301,168,1139,1540,1484,793,458,253,115,,,,,,,,,,,,,, +3065,Indonesia,2010,714,16501,24645,21090,20977,17329,7910,816,14800,17838,14629,13142,9524,3451,12831,6941,9711,7406,7688,7244,4794,11585,6542,8002,5854,5617,4603,2429,1268,1220,1245,714,454,323,199,1098,1749,1679,821,507,266,116,,,,,,,,,,,,,, +3066,Indonesia,2011,787,17406,25429,22353,22885,19404,9089,927,15840,18703,15900,14533,10556,3985,12340,6828,9696,7588,7541,7734,5183,11129,6916,7585,6044,5793,4848,2525,1518,1554,1539,825,532,401,247,1258,2063,2007,1061,537,348,164,,,,,,,,,,,,,, +3067,Indonesia,2012,824,17304,25460,23057,23751,20204,9554,879,15875,18484,16146,15215,11321,4245,12073,7233,9736,8059,8240,8125,5417,10883,7092,7898,6127,6055,5072,2856,1408,1700,1742,946,634,512,304,1276,2382,2223,1242,768,357,203,,,,,,,,,,,,,, +3068,Indonesia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13416,26056,37102,32925,33737,30440,15298,12638,25691,28125,23714,22172,16978,7290 +3069,Iran (Islamic Republic of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3070,Iran (Islamic Republic of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3071,Iran (Islamic Republic of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3072,Iran (Islamic Republic of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3073,Iran (Islamic Republic of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3074,Iran (Islamic Republic of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3075,Iran (Islamic Republic of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3076,Iran (Islamic Republic of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3077,Iran (Islamic Republic of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3078,Iran (Islamic Republic of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3079,Iran (Islamic Republic of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3080,Iran (Islamic Republic of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3081,Iran (Islamic Republic of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3082,Iran (Islamic Republic of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3083,Iran (Islamic Republic of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3084,Iran (Islamic Republic of),1995,118,751,754,636,494,737,921,234,1039,890,664,613,685,788,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3085,Iran (Islamic Republic of),1996,63,390,449,431,274,450,577,113,599,412,347,323,452,534,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3086,Iran (Islamic Republic of),1997,54,391,470,420,304,395,608,92,518,393,361,342,341,582,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3087,Iran (Islamic Republic of),1998,35,426,492,400,245,363,579,87,561,403,307,290,431,522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3088,Iran (Islamic Republic of),1999,27,370,460,383,260,335,591,51,551,360,277,279,396,637,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3089,Iran (Islamic Republic of),2000,29,438,467,387,295,344,642,77,593,410,322,320,407,647,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3090,Iran (Islamic Republic of),2001,37,469,529,371,309,299,649,104,621,401,278,327,442,693,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3091,Iran (Islamic Republic of),2002,29,457,502,375,322,302,668,77,558,332,275,298,439,732,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3092,Iran (Islamic Republic of),2003,32,413,528,396,282,294,673,76,442,282,254,300,440,776,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3093,Iran (Islamic Republic of),2004,16,360,542,357,305,298,640,65,419,301,213,293,378,710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3094,Iran (Islamic Republic of),2005,16,352,531,338,281,260,630,45,394,205,186,260,382,701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3095,Iran (Islamic Republic of),2006,12,357,495,365,318,249,686,48,430,236,185,292,336,793,36,84,155,127,101,117,300,43,106,77,94,123,175,328,69,212,237,179,152,95,187,80,250,245,234,195,115,136,,,,,,,,,,,,,, +3096,Iran (Islamic Republic of),2007,10,311,511,330,285,261,680,42,394,236,173,268,387,813,52,67,136,119,118,121,312,51,126,71,67,109,156,325,62,180,219,175,151,110,217,84,270,289,221,222,144,171,,,,,,,,,,,,,, +3097,Iran (Islamic Republic of),2008,11,292,466,330,322,267,706,42,386,254,137,263,367,879,59,90,131,120,103,124,324,50,112,77,62,129,141,343,55,179,243,183,135,121,213,79,292,310,251,218,146,144,,,,,,,,,,,,,, +3098,Iran (Islamic Republic of),2009,15,302,509,305,335,326,753,46,455,276,210,273,396,951,47,92,139,128,100,137,316,71,118,83,86,99,158,352,74,177,227,184,159,128,227,87,245,307,259,251,170,190,,,,,,,,,,,,,, +3099,Iran (Islamic Republic of),2010,18,292,487,354,296,310,760,54,433,288,208,276,398,1014,59,93,134,109,118,123,331,69,125,102,77,106,162,377,79,191,247,231,158,139,241,73,255,354,287,234,186,194,,,,,,,,,,,,,, +3100,Iran (Islamic Republic of),2011,13,289,543,398,315,351,877,37,473,313,184,296,441,1009,61,86,162,124,113,142,331,57,107,97,70,119,149,362,82,204,262,180,196,148,256,95,272,428,304,271,200,178,,,,,,,,,,,,,, +3101,Iran (Islamic Republic of),2012,16,288,601,442,303,317,850,43,434,318,206,252,374,965,90,88,187,141,109,141,352,74,115,113,80,116,200,385,97,182,286,222,174,170,242,81,258,410,323,260,231,169,,,,,,,,,,,,,, +3102,Iran (Islamic Republic of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,193,541,1174,892,652,658,1488,227,795,827,553,616,783,1653 +3103,Iraq,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3104,Iraq,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3105,Iraq,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3106,Iraq,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3107,Iraq,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3108,Iraq,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3109,Iraq,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3110,Iraq,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3111,Iraq,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3112,Iraq,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3113,Iraq,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3114,Iraq,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3115,Iraq,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3116,Iraq,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3117,Iraq,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3118,Iraq,1995,1125,862,1409,1085,863,900,271,725,304,1208,915,800,886,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3119,Iraq,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3120,Iraq,1997,416,791,708,541,832,664,208,384,738,665,499,722,641,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3121,Iraq,1998,453,879,781,583,913,735,242,426,806,740,542,806,712,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3122,Iraq,1999,519,1434,1246,1081,704,632,376,509,1208,978,824,571,527,202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3123,Iraq,2000,21,627,317,297,205,135,101,37,338,241,136,134,103,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3124,Iraq,2001,10,722,737,275,260,200,142,26,362,295,147,171,126,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3125,Iraq,2002,47,706,923,308,284,205,158,45,338,288,172,176,129,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3126,Iraq,2003,30,659,876,355,293,168,143,43,258,241,154,160,143,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3127,Iraq,2004,28,615,770,288,244,183,125,57,334,243,139,162,113,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3128,Iraq,2005,13,424,644,261,245,189,148,44,305,260,151,197,135,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3129,Iraq,2006,14,409,593,278,230,147,107,38,338,264,133,154,111,70,75,165,237,140,141,167,196,122,201,158,127,167,136,147,120,310,321,162,121,69,77,123,281,291,188,142,91,79,,,,,,,,,,,,,, +3130,Iraq,2007,20,319,531,276,223,188,126,34,289,228,154,134,130,74,80,177,249,159,154,183,231,93,195,155,123,187,155,152,120,279,292,178,125,86,91,90,286,270,180,120,101,72,,,,,,,,,,,,,, +3131,Iraq,2008,18,348,525,317,273,224,147,54,377,281,125,175,161,125,110,233,246,154,168,205,325,107,243,201,152,172,210,201,146,286,286,179,114,130,119,161,331,312,206,191,155,102,,,,,,,,,,,,,, +3132,Iraq,2009,33,377,506,340,263,213,196,63,361,294,186,216,158,141,111,216,225,203,170,189,285,125,218,154,167,201,180,222,175,329,315,211,150,120,98,162,317,334,217,215,139,122,,,,,,,,,,,,,, +3133,Iraq,2010,42,370,482,384,276,286,228,73,394,294,198,205,220,166,108,189,204,176,170,215,297,121,201,186,153,210,206,257,191,297,342,210,133,124,134,156,335,328,267,211,174,107,,,,,,,,,,,,,, +3134,Iraq,2011,35,304,395,313,237,223,183,66,368,258,164,159,201,153,117,165,168,146,114,233,269,124,216,156,157,163,213,222,213,294,274,174,145,129,125,172,326,323,245,202,183,152,,,,,,,,,,,,,, +3135,Iraq,2012,27,283,317,263,203,203,180,36,340,225,154,186,174,169,98,154,152,133,147,182,269,113,202,156,123,134,195,257,185,271,288,198,151,142,126,188,390,350,310,269,195,198,,,,,,,,,,,,,, +3136,Iraq,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,321,693,772,675,588,555,612,350,819,781,592,614,577,605 +3137,Ireland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3138,Ireland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3139,Ireland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3140,Ireland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3141,Ireland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3142,Ireland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3143,Ireland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3144,Ireland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3145,Ireland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3146,Ireland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3147,Ireland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3148,Ireland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3149,Ireland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3150,Ireland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3151,Ireland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3152,Ireland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3153,Ireland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3154,Ireland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3155,Ireland,1998,1,11,8,21,8,8,19,0,5,11,1,1,4,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3156,Ireland,1999,0,7,15,10,12,7,19,0,9,9,3,8,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3157,Ireland,2000,0,10,7,7,6,4,12,0,13,8,13,6,7,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3158,Ireland,2001,0,6,12,14,8,7,7,0,4,6,3,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3159,Ireland,2002,0,7,18,13,14,12,6,0,4,3,5,2,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3160,Ireland,2003,0,10,11,13,14,7,11,0,4,7,6,4,1,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3161,Ireland,2004,1,4,17,10,12,7,10,0,10,9,2,2,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3162,Ireland,2005,1,6,10,21,10,7,6,0,9,10,3,3,0,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3163,Ireland,2006,0,8,18,17,11,16,13,0,11,20,8,4,3,3,8,12,21,14,11,11,26,5,20,19,10,4,4,14,2,4,19,15,7,6,9,3,4,11,6,3,2,8,,,,,,,,,,,,,, +3164,Ireland,2007,0,26,49,32,28,26,26,0,14,28,22,14,2,4,41,32,53,52,14,20,51,39,21,53,28,13,9,35,0,16,46,28,8,14,16,2,14,28,24,6,10,10,,,,,,,,,,,,,, +3165,Ireland,2008,2,9,18,6,21,10,13,0,12,16,8,3,3,2,4,4,15,14,12,13,19,6,8,12,2,3,3,9,0,8,10,15,4,3,2,2,6,13,5,6,2,5,,,,,,,,,,,,,, +3166,Ireland,2009,0,5,19,13,12,10,12,3,5,13,7,1,3,3,4,8,15,11,13,11,14,5,2,13,13,6,7,8,4,9,27,12,10,7,9,1,11,11,11,5,4,4,,,,,,,,,,,,,, +3167,Ireland,2010,0,8,17,4,13,5,13,0,8,8,2,2,2,3,10,8,21,15,7,5,10,1,13,8,7,5,4,13,4,7,20,20,5,3,13,2,9,12,9,4,1,6,,,,,,,,,,,,,, +3168,Ireland,2011,0,7,9,12,12,7,6,0,8,7,7,8,2,1,2,5,21,14,10,4,10,6,3,12,6,7,7,4,0,8,15,9,6,1,7,5,3,15,7,4,2,1,,,,,,,,,,,,,, +3169,Ireland,2012,1,7,9,9,9,12,4,1,5,6,6,4,2,2,3,5,9,12,8,6,9,0,13,9,6,6,5,6,1,3,13,10,3,7,8,2,5,10,6,3,0,3,,,,,,,,,,,,,, +3170,Ireland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,19,55,41,38,32,35,5,28,32,34,11,7,13 +3171,Israel,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3172,Israel,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3173,Israel,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3174,Israel,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3175,Israel,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3176,Israel,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3177,Israel,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3178,Israel,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3179,Israel,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3180,Israel,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3181,Israel,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3182,Israel,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3183,Israel,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3184,Israel,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3185,Israel,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3186,Israel,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3187,Israel,1996,1,5,18,21,15,11,33,2,8,4,2,4,5,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3188,Israel,1997,5,9,27,20,17,19,43,2,16,10,18,7,3,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3189,Israel,1998,1,20,29,35,19,16,30,1,9,10,7,9,9,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3190,Israel,1999,3,19,20,28,19,13,36,2,8,15,7,7,5,26,11,11,19,13,13,11,21,15,6,18,5,5,5,24,11,3,7,10,5,7,20,5,5,5,7,11,11,25,,,,,,,,,,,,,, +3191,Israel,2000,0,20,26,23,23,13,38,3,10,16,6,3,3,32,18,6,17,26,14,16,30,19,7,10,12,6,11,21,6,0,8,5,5,2,12,6,3,7,7,7,6,26,,,,,,,,,,,,,, +3192,Israel,2001,2,13,24,24,20,17,36,1,9,15,14,5,2,24,8,12,27,14,16,12,37,11,5,17,13,8,9,31,3,3,6,7,5,6,16,7,0,6,2,2,2,14,,,,,,,,,,,,,, +3193,Israel,2002,4,10,24,13,17,13,25,3,21,18,13,5,6,20,9,4,17,10,6,12,32,8,11,16,4,9,6,17,2,5,3,3,3,5,19,4,7,6,6,8,6,22,,,,,,,,,,,,,, +3194,Israel,2003,2,9,14,30,12,10,33,2,17,16,18,7,5,14,10,4,19,12,7,7,25,4,3,20,14,7,9,28,0,3,7,12,3,5,13,6,3,7,8,8,7,17,,,,,,,,,,,,,, +3195,Israel,2004,1,5,14,21,17,8,26,1,7,12,12,8,3,16,11,7,17,13,15,14,32,8,4,18,8,19,9,22,0,5,5,6,7,2,9,4,3,11,9,7,6,21,,,,,,,,,,,,,, +3196,Israel,2005,1,4,15,18,15,5,26,0,6,14,7,7,5,19,11,3,11,15,12,16,24,10,6,16,8,4,9,23,5,0,2,4,4,2,8,2,1,4,3,6,4,10,,,,,,,,,,,,,, +3197,Israel,2006,1,4,19,17,6,9,11,0,3,10,7,5,2,14,17,4,15,19,17,6,29,10,7,14,7,7,4,22,1,0,3,2,2,2,4,1,5,2,5,5,6,11,,,,,,,,,,,,,, +3198,Israel,2007,1,7,16,22,11,8,17,1,2,17,3,6,3,12,13,10,20,19,14,15,31,10,7,23,16,10,7,22,1,1,5,5,4,2,6,1,4,3,2,4,3,5,,,,,,,,,,,,,, +3199,Israel,2008,0,13,12,12,7,6,10,1,5,5,7,6,0,11,3,10,26,13,13,9,21,5,2,10,8,5,5,17,2,2,12,4,2,3,16,3,1,11,2,5,3,10,,,,,,,,,,,,,, +3200,Israel,2009,2,7,21,13,10,1,15,0,4,13,10,9,2,12,3,12,15,13,16,9,18,3,4,5,9,3,5,15,0,3,12,6,4,8,12,2,5,14,6,6,4,7,,,,,,,,,,,,,, +3201,Israel,2010,1,13,28,12,8,4,6,0,1,8,10,2,0,10,9,18,33,17,5,14,13,6,4,7,9,6,3,17,3,8,16,3,2,2,10,0,3,7,6,4,4,6,,,,,,,,,,,,,, +3202,Israel,2011,0,29,30,11,5,9,9,0,10,10,7,4,4,7,6,39,54,15,13,11,17,11,5,14,4,4,7,7,2,14,13,8,3,1,1,1,1,7,6,1,2,6,,,,,,,,,,,,,, +3203,Israel,2012,0,9,33,20,3,6,13,0,4,20,11,4,2,17,9,40,70,27,16,11,16,8,11,22,7,4,1,12,0,11,30,8,3,2,5,2,5,9,6,5,6,10,,,,,,,,,,,,,, +3204,Israel,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,34,81,34,14,14,24,7,15,30,17,6,6,18 +3205,Italy,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3206,Italy,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3207,Italy,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3208,Italy,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3209,Italy,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3210,Italy,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3211,Italy,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3212,Italy,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3213,Italy,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3214,Italy,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3215,Italy,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3216,Italy,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3217,Italy,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3218,Italy,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3219,Italy,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3220,Italy,1995,9,59,202,157,94,124,289,7,52,93,57,40,51,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3221,Italy,1996,12,72,196,168,125,155,319,2,53,116,60,33,56,172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3222,Italy,1997,14,93,228,244,168,187,381,5,74,129,90,48,68,201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3223,Italy,1998,15,128,327,248,189,226,429,10,105,150,110,58,75,283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3224,Italy,1999,7,78,155,137,114,104,247,8,49,63,63,35,32,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3225,Italy,2000,12,63,96,75,58,54,112,6,38,58,33,13,19,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3226,Italy,2001,4,43,130,98,63,50,99,4,37,77,46,24,14,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3227,Italy,2002,6,51,139,127,74,68,134,6,51,94,55,18,28,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3228,Italy,2003,19,79,219,168,80,61,146,6,63,121,77,24,13,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3229,Italy,2004,34,52,130,115,64,43,123,16,48,73,39,21,19,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3230,Italy,2005,8,93,191,137,101,61,115,3,80,145,56,25,19,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3231,Italy,2006,7,113,201,197,105,75,152,9,88,165,82,48,16,88,40,90,142,132,107,91,254,44,70,120,97,52,43,151,22,71,171,162,58,66,146,35,52,112,81,57,46,200,,,,,,,,,,,,,, +3232,Italy,2007,3,75,170,113,87,48,106,7,74,94,58,31,19,76,25,38,117,103,90,75,189,28,45,95,69,50,32,123,12,47,108,110,62,34,121,14,43,92,77,47,35,123,,,,,,,,,,,,,, +3233,Italy,2008,13,78,148,137,72,42,104,10,65,106,56,24,21,56,69,102,176,165,95,91,197,77,73,141,95,70,55,160,23,70,119,99,59,45,117,19,44,90,61,31,23,97,,,,,,,,,,,,,, +3234,Italy,2009,4,89,168,108,75,34,83,3,68,93,46,31,16,62,38,50,99,61,72,40,124,43,52,82,57,29,20,87,26,52,109,81,44,29,89,15,29,83,48,48,26,107,,,,,,,,,,,,,, +3235,Italy,2010,15,87,161,133,87,42,89,11,80,94,66,29,21,48,49,66,109,81,63,40,96,60,46,94,75,32,25,70,18,46,115,106,44,31,78,32,52,92,68,43,23,105,,,,,,,,,,,,,, +3236,Italy,2011,0,51,88,81,52,24,59,5,41,73,37,18,14,43,52,53,74,82,49,49,85,40,45,67,57,32,25,71,9,27,77,67,40,34,73,15,33,72,53,39,22,79,,,,,,,,,,,,,, +3237,Italy,2012,1,43,90,83,46,13,52,1,27,62,39,14,12,38,28,34,51,31,33,31,61,36,15,40,49,32,12,56,11,27,86,70,31,33,56,12,24,67,55,26,18,65,,,,,,,,,,,,,, +3238,Italy,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63,149,335,258,170,144,244,61,159,217,178,126,81,249 +3239,Jamaica,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3240,Jamaica,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3241,Jamaica,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3242,Jamaica,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3243,Jamaica,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3244,Jamaica,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3245,Jamaica,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3246,Jamaica,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3247,Jamaica,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3248,Jamaica,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3249,Jamaica,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3250,Jamaica,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3251,Jamaica,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3252,Jamaica,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3253,Jamaica,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3254,Jamaica,1995,2,9,14,9,11,8,9,2,7,6,5,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3255,Jamaica,1996,1,9,10,12,12,8,3,1,5,3,5,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3256,Jamaica,1997,1,2,9,16,12,8,1,0,5,6,4,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3257,Jamaica,1998,0,3,19,9,10,7,7,1,8,3,8,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3258,Jamaica,1999,2,10,16,6,6,15,6,2,5,9,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3259,Jamaica,2000,0,6,13,13,15,6,5,1,8,8,7,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3260,Jamaica,2001,3,10,9,21,5,1,1,2,2,7,6,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3261,Jamaica,2002,0,9,11,8,7,7,4,1,3,3,3,1,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3262,Jamaica,2003,1,11,9,14,12,4,6,2,7,8,2,3,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3263,Jamaica,2004,0,9,7,4,13,8,10,0,4,6,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3264,Jamaica,2005,0,4,6,6,10,6,7,0,1,5,4,0,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3265,Jamaica,2006,0,9,10,9,6,6,9,0,2,5,3,1,0,1,0,2,0,2,3,2,1,1,1,2,2,3,0,0,4,2,1,2,1,2,0,0,0,1,0,0,0,0,,,,,,,,,,,,,, +3266,Jamaica,2007,,12,10,7,17,7,3,2,5,2,6,2,2,3,,0,3,2,2,0,0,,0,2,0,2,0,1,,0,0,1,1,0,0,,0,1,1,0,0,0,,,,,,,,,,,,,, +3267,Jamaica,2008,3,2,10,10,11,11,5,1,8,3,3,1,1,6,2,2,2,1,3,3,3,3,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3268,Jamaica,2009,1,5,8,10,7,4,5,7,7,8,7,4,3,1,2,4,2,8,4,8,4,0,3,6,3,0,2,2,0,0,1,0,1,1,0,0,0,1,0,1,0,0,,,,,,,,,,,,,, +3269,Jamaica,2010,1,7,15,15,8,6,7,0,5,4,5,1,0,2,11,0,5,3,5,5,7,3,1,2,1,1,0,2,0,0,1,1,0,0,0,2,0,1,0,0,1,0,,,,,,,,,,,,,, +3270,Jamaica,2011,0,2,6,3,4,4,3,1,3,4,0,3,1,1,6,1,0,5,2,5,6,5,1,1,0,3,1,0,0,2,0,0,0,0,0,0,1,2,0,0,1,1,,,,,,,,,,,,,, +3271,Jamaica,2012,1,10,8,3,5,5,1,1,1,5,4,2,0,0,3,0,3,1,3,4,4,6,2,6,0,1,0,0,0,0,2,0,4,0,0,0,0,1,1,0,0,1,,,,,,,,,,,,,, +3272,Jamaica,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,12,18,11,11,6,1,6,6,4,6,7,1,2 +3273,Japan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3274,Japan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3275,Japan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3276,Japan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3277,Japan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3278,Japan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3279,Japan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3280,Japan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3281,Japan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3282,Japan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3283,Japan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3284,Japan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3285,Japan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3286,Japan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3287,Japan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3288,Japan,1995,15,342,627,995,1847,2059,4089,14,258,476,298,476,637,2234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3289,Japan,1996,16,309,621,843,1756,1878,3639,7,224,409,262,364,565,1974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3290,Japan,1997,8,304,625,798,1793,1908,4055,11,248,455,237,405,547,2177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3291,Japan,1998,2,306,597,724,1571,1660,3545,6,243,418,233,329,417,1884,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3292,Japan,1999,6,290,623,706,1605,1768,4117,7,236,459,253,292,419,2128,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3293,Japan,2000,2,246,572,676,1494,1509,3816,5,222,464,213,292,384,1958,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3294,Japan,2001,3,220,576,632,1319,1513,3840,5,175,437,228,250,330,1880,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3295,Japan,2002,2,191,549,579,1192,1334,3747,3,192,395,259,248,308,1808,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3296,Japan,2003,1,210,521,550,1063,1388,3731,2,203,395,246,254,313,1966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3297,Japan,2004,2,193,462,599,934,1363,3759,6,182,364,230,222,294,1861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3298,Japan,2005,9,197,488,605,868,1418,3867,5,187,428,249,224,309,2077,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3299,Japan,2006,3,175,436,529,743,1388,3728,5,179,361,280,213,256,1863,23,271,631,556,643,991,2720,24,284,566,379,229,329,1452,15,79,173,220,208,397,1775,12,79,179,148,147,272,1499,,,,,,,,,,,,,, +3300,Japan,2007,1,142,372,512,668,1174,3678,3,134,318,231,156,212,1832,28,271,591,536,549,1000,2748,35,278,554,367,256,359,1479,12,84,196,211,191,351,1740,13,62,158,168,127,271,1558,,,,,,,,,,,,,, +3301,Japan,2008,2,117,339,456,599,1063,3482,1,115,293,230,173,253,1872,27,269,609,535,532,922,2688,27,280,528,398,261,283,1497,21,62,147,199,185,350,1752,14,51,157,158,136,287,1554,,,,,,,,,,,,,, +3302,Japan,2009,1,134,328,410,580,946,3406,3,105,287,254,169,221,2009,14,266,533,511,506,879,2668,24,250,498,396,253,294,1499,12,58,161,182,152,316,1727,13,51,142,148,155,283,1575,,,,,,,,,,,,,, +3303,Japan,2010,1,128,252,382,469,911,3326,6,89,232,194,155,183,1909,23,291,533,522,501,849,2742,31,250,421,391,244,304,1528,15,65,131,164,155,309,1594,9,52,134,131,117,238,1518,,,,,,,,,,,,,, +3304,Japan,2011,0,96,215,367,465,812,3256,5,94,213,203,148,223,1840,18,240,436,501,479,748,2651,35,227,435,353,270,307,1531,17,54,112,171,169,268,1734,5,43,121,162,132,248,1590,,,,,,,,,,,,,, +3305,Japan,2012,2,94,209,309,415,741,3230,2,79,180,169,111,175,1947,23,212,389,471,427,656,2527,17,197,366,325,228,276,1561,8,60,98,169,146,279,1598,8,50,119,131,115,244,1584,,,,,,,,,,,,,, +3306,Japan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,388,674,849,974,1613,7975,35,313,627,618,510,636,5252 +3307,Jordan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3308,Jordan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3309,Jordan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3310,Jordan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3311,Jordan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3312,Jordan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3313,Jordan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3314,Jordan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3315,Jordan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3316,Jordan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3317,Jordan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3318,Jordan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3319,Jordan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3320,Jordan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3321,Jordan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3322,Jordan,1995,0,19,37,17,20,26,11,1,15,4,10,14,12,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3323,Jordan,1996,2,22,30,17,13,21,9,1,8,11,8,16,8,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3324,Jordan,1997,5,14,18,11,10,19,22,3,8,6,4,4,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3325,Jordan,1998,0,22,26,7,12,10,6,0,7,6,3,3,7,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3326,Jordan,1999,0,16,19,16,10,8,2,0,8,7,2,2,7,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3327,Jordan,2000,0,8,16,13,9,14,2,0,8,9,1,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3328,Jordan,2001,2,7,22,10,10,8,7,0,8,6,1,0,9,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3329,Jordan,2002,0,8,9,11,12,11,5,0,9,4,3,2,12,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3330,Jordan,2003,0,19,20,17,8,13,0,1,6,7,2,3,12,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3331,Jordan,2004,0,8,12,14,6,17,0,0,10,4,3,5,12,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3332,Jordan,2005,0,8,17,9,4,6,5,1,6,6,6,5,8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3333,Jordan,2006,0,9,23,16,7,4,10,0,8,11,3,5,2,6,13,3,5,4,6,3,6,8,6,3,3,3,2,5,22,11,13,7,4,1,10,9,26,22,20,13,14,9,,,,,,,,,,,,,, +3334,Jordan,2007,0,7,20,14,9,7,5,0,9,12,6,1,12,7,2,9,8,6,0,4,4,5,6,9,6,5,3,3,17,6,19,10,3,8,4,9,20,21,7,12,11,7,,,,,,,,,,,,,, +3335,Jordan,2008,0,13,10,3,5,13,5,0,20,15,6,4,7,3,6,4,8,5,3,7,3,4,8,10,3,1,4,2,16,10,12,8,8,5,7,10,25,17,18,7,12,10,,,,,,,,,,,,,, +3336,Jordan,2009,1,5,15,14,10,7,6,0,7,14,8,3,7,12,1,1,11,3,2,7,4,6,5,10,6,1,3,4,19,18,13,7,6,5,5,13,24,30,11,15,7,17,,,,,,,,,,,,,, +3337,Jordan,2010,2,5,14,10,12,12,6,3,14,24,4,3,5,3,3,4,3,5,3,2,5,11,3,10,6,4,4,6,15,7,6,8,3,4,2,17,18,23,20,12,7,8,,,,,,,,,,,,,, +3338,Jordan,2011,0,9,10,13,8,13,5,0,8,11,8,4,8,6,3,3,9,9,3,7,8,3,11,9,3,2,4,7,15,10,5,3,5,2,5,30,16,11,11,2,9,4,,,,,,,,,,,,,, +3339,Jordan,2012,0,8,12,8,5,7,7,1,9,12,7,1,3,5,2,6,10,5,2,5,6,3,9,7,7,4,4,3,16,6,11,9,6,5,2,13,21,26,23,14,11,9,,,,,,,,,,,,,, +3340,Jordan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,19,39,37,19,10,21,8,43,49,30,19,11,9 +3341,Kazakhstan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3342,Kazakhstan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3343,Kazakhstan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3344,Kazakhstan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3345,Kazakhstan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3346,Kazakhstan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3347,Kazakhstan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3348,Kazakhstan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3349,Kazakhstan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3350,Kazakhstan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3351,Kazakhstan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3352,Kazakhstan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3353,Kazakhstan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3354,Kazakhstan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3355,Kazakhstan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3356,Kazakhstan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3357,Kazakhstan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3358,Kazakhstan,1997,22,68,827,725,475,485,211,47,78,673,423,141,142,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3359,Kazakhstan,1998,34,795,1009,817,628,515,78,62,625,713,457,204,174,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3360,Kazakhstan,1999,34,778,1217,1026,560,368,165,60,822,872,452,226,171,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3361,Kazakhstan,2000,36,1057,1409,1379,923,439,218,84,999,1079,599,275,202,204,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3362,Kazakhstan,2001,38,1038,1477,1485,1011,429,211,88,1040,1062,570,263,194,173,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3363,Kazakhstan,2002,33,1067,1565,1490,1042,435,212,68,1035,1086,669,348,194,208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3364,Kazakhstan,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3365,Kazakhstan,2004,24,989,1291,1183,899,336,196,62,844,912,517,307,178,189,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3366,Kazakhstan,2005,31,917,1142,983,795,274,175,46,751,767,436,286,121,187,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3367,Kazakhstan,2006,11,888,981,848,744,287,169,30,741,636,370,234,116,150,1025,1717,1608,1250,988,445,237,1080,1800,1644,914,551,193,134,1515,638,332,248,180,89,80,1495,580,396,281,185,93,85,,,,,,,,,,,,,, +3368,Kazakhstan,2007,14,881,976,859,714,279,150,38,782,605,367,249,124,157,669,1690,1579,1096,855,423,209,678,1773,1477,816,487,184,119,483,499,290,187,137,49,51,2,410,272,207,132,53,51,,,,,,,,,,,,,, +3369,Kazakhstan,2008,14,897,968,811,752,306,160,44,710,659,320,230,137,185,120,1759,1440,1049,803,418,187,203,1854,1360,792,454,171,127,329,392,301,185,130,61,40,271,347,260,207,112,53,66,,,,,,,,,,,,,, +3370,Kazakhstan,2009,6,765,812,676,573,252,116,37,662,519,337,200,122,135,133,1588,1249,800,738,329,145,171,1629,1251,672,375,145,93,261,332,244,147,117,58,37,210,262,270,142,97,63,40,,,,,,,,,,,,,, +3371,Kazakhstan,2010,15,675,754,595,511,251,127,33,566,520,263,205,122,132,93,1430,1122,774,636,364,135,162,1424,1235,583,384,167,82,236,317,213,140,97,61,36,194,255,221,147,111,58,41,,,,,,,,,,,,,, +3372,Kazakhstan,2011,6,602,716,516,515,235,91,15,439,495,260,190,109,117,95,1281,1126,775,569,323,118,139,1355,1143,583,353,144,90,191,271,223,134,113,71,40,176,200,216,145,89,76,51,,,,,,,,,,,,,, +3373,Kazakhstan,2012,9,508,586,514,479,233,98,16,415,411,241,177,97,100,92,1164,1009,798,590,355,118,151,1199,1109,514,330,138,109,158,208,244,139,114,70,33,150,197,194,121,91,75,50,,,,,,,,,,,,,, +3374,Kazakhstan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,235,1991,2957,2604,2104,1337,611,276,1712,2005,1154,798,580,594 +3375,Kenya,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3376,Kenya,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3377,Kenya,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3378,Kenya,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3379,Kenya,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3380,Kenya,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3381,Kenya,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3382,Kenya,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3383,Kenya,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3384,Kenya,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3385,Kenya,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3386,Kenya,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3387,Kenya,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3388,Kenya,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3389,Kenya,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3390,Kenya,1995,154,2072,3073,1675,920,485,296,187,1802,1759,741,411,242,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3391,Kenya,1996,151,2492,3820,2097,993,498,311,252,2290,2327,926,462,245,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3392,Kenya,1997,53,2881,4374,2333,1100,482,284,242,2573,2604,1086,499,242,103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3393,Kenya,1998,210,3372,5477,2983,1378,626,382,318,3315,3469,1378,656,324,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3394,Kenya,1999,237,3835,6078,3349,1545,645,405,373,3850,3997,1596,760,348,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3395,Kenya,2000,264,3739,6653,3548,1630,630,414,416,3916,4363,1874,831,347,148,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3396,Kenya,2001,299,4083,7070,3903,1771,723,443,464,4116,4822,2063,935,394,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3397,Kenya,2002,299,4445,7708,4306,2023,807,433,392,4542,5465,2267,996,445,190,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3398,Kenya,2003,341,4918,8515,4560,2167,928,567,487,5003,6023,2618,1171,551,309,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3399,Kenya,2004,391,5388,9016,5142,2404,973,576,519,5458,6326,2850,1236,558,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3400,Kenya,2005,359,4790,8832,5069,2521,1031,590,577,5144,6521,2781,1266,593,315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3401,Kenya,2006,387,4708,8229,4975,2467,1037,645,583,4953,6052,2792,1343,604,379,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3402,Kenya,2007,474,4752,8132,4959,2361,1084,601,599,4594,5979,2774,1180,542,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3403,Kenya,2008,451,4709,8128,4924,2302,1025,583,586,4355,5475,2431,1065,481,296,1490,2154,3927,3516,2117,1104,902,1423,2406,4188,2778,1537,826,647,1076,1040,1839,1416,794,418,257,946,1118,1806,1090,567,301,203,,,,,,,,,,,,,, +3404,Kenya,2009,470,4667,8081,5067,2565,1030,659,662,4306,5387,2512,1104,540,352,1255,2363,4789,4109,2404,1274,1130,1272,2533,4921,3303,1550,977,707,1638,1366,2366,2006,1110,508,407,1346,1412,2394,1491,730,361,303,,,,,,,,,,,,,, +3405,Kenya,2010,357,4698,7945,5077,2509,994,658,549,4044,5112,2372,1056,544,345,1038,2189,4427,4131,2491,1363,1291,1044,2410,4640,3156,1767,1047,848,1485,1341,2383,1975,1101,536,511,1248,1375,2368,1567,743,396,353,,,,,,,,,,,,,, +3406,Kenya,2011,356,4773,8376,5201,2660,1045,665,629,4183,4917,2434,1025,477,344,1000,2279,4279,3957,2453,1296,1220,1008,2309,4162,2979,1641,996,815,1498,1375,2317,2007,1140,571,471,1297,1339,2193,1450,689,387,335,,,,,,,,,,,,,, +3407,Kenya,2012,393,4893,8149,5302,2493,1099,669,603,4097,4975,2363,993,529,379,942,2079,4012,3699,2235,1317,1279,965,2149,3841,2753,1584,882,841,1315,1272,2159,1779,1036,539,458,1150,1227,2091,1394,731,415,368,,,,,,,,,,,,,, +3408,Kenya,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2209,7614,13059,10306,5571,2776,2387,2174,6425,9717,6052,3002,1641,1402 +3409,Kiribati,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3410,Kiribati,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3411,Kiribati,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3412,Kiribati,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3413,Kiribati,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3414,Kiribati,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3415,Kiribati,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3416,Kiribati,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3417,Kiribati,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3418,Kiribati,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3419,Kiribati,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3420,Kiribati,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3421,Kiribati,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3422,Kiribati,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3423,Kiribati,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3424,Kiribati,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3425,Kiribati,1996,0,4,1,2,2,2,2,2,3,3,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3426,Kiribati,1997,1,2,0,0,5,1,1,2,0,0,2,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3427,Kiribati,1998,1,6,10,2,3,2,1,2,7,5,3,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3428,Kiribati,1999,2,6,4,2,4,4,3,1,9,9,6,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3429,Kiribati,2000,2,9,3,3,3,8,2,2,5,6,3,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3430,Kiribati,2001,4,10,7,3,3,5,3,4,7,7,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3431,Kiribati,2002,5,11,1,7,7,7,,5,15,8,8,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3432,Kiribati,2003,5,13,5,9,6,6,0,5,20,4,12,7,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3433,Kiribati,2004,8,17,10,12,10,9,3,7,31,9,12,7,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3434,Kiribati,2005,3,15,15,12,17,4,1,5,22,12,7,7,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3435,Kiribati,2006,3,18,18,16,18,3,7,5,15,5,5,1,8,3,11,10,6,9,11,7,9,20,10,5,2,1,2,1,29,17,5,8,2,4,2,25,9,7,6,3,2,2,,,,,,,,,,,,,, +3436,Kiribati,2007,2,15,7,10,6,10,3,8,13,6,8,9,4,2,12,12,2,8,4,2,4,16,4,3,5,3,3,0,31,24,4,4,2,6,2,36,15,5,11,1,3,3,,,,,,,,,,,,,, +3437,Kiribati,2008,2,30,9,15,10,2,5,4,33,9,12,9,3,4,9,7,4,6,9,4,2,12,8,6,1,1,1,1,15,14,16,8,8,2,2,10,8,3,6,12,1,2,,,,,,,,,,,,,, +3438,Kiribati,2009,6,22,13,12,8,6,6,10,19,12,9,14,5,3,8,9,2,5,4,4,1,10,8,2,6,5,3,3,11,6,3,5,5,1,2,11,6,4,1,3,1,0,,,,,,,,,,,,,, +3439,Kiribati,2010,3,27,13,10,9,6,2,5,15,7,4,8,5,4,8,17,10,7,4,8,0,12,9,3,3,4,4,2,8,10,6,8,5,1,1,14,9,2,3,2,1,1,,,,,,,,,,,,,, +3440,Kiribati,2011,4,17,9,3,10,9,3,6,26,12,9,16,12,4,22,15,2,7,6,3,3,21,11,7,4,1,4,3,21,6,1,4,5,2,3,16,12,5,7,3,2,0,,,,,,,,,,,,,, +3441,Kiribati,2012,4,19,12,16,17,11,5,4,15,11,10,7,2,1,23,18,9,8,8,3,2,18,19,4,4,1,3,2,15,5,7,3,6,5,2,10,9,2,3,0,2,4,,,,,,,,,,,,,, +3442,Kiribati,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,41,41,30,27,17,14,46,36,32,35,19,15,8 +3443,Kuwait,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3444,Kuwait,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3445,Kuwait,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3446,Kuwait,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3447,Kuwait,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3448,Kuwait,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3449,Kuwait,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3450,Kuwait,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3451,Kuwait,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3452,Kuwait,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3453,Kuwait,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3454,Kuwait,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3455,Kuwait,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3456,Kuwait,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3457,Kuwait,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3458,Kuwait,1995,0,15,51,32,17,9,0,0,8,24,9,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3459,Kuwait,1996,0,11,45,16,30,4,1,1,12,17,8,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3460,Kuwait,1997,1,23,38,37,22,6,7,1,17,26,11,7,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3461,Kuwait,1998,0,14,42,42,20,11,5,0,13,14,9,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3462,Kuwait,1999,0,18,49,26,11,10,4,2,9,23,5,6,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3463,Kuwait,2000,0,10,44,32,21,11,5,1,11,24,12,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3464,Kuwait,2001,0,13,37,29,19,1,6,1,13,30,14,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3465,Kuwait,2002,0,14,47,32,26,9,3,0,15,37,11,7,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3466,Kuwait,2003,1,14,39,33,26,11,5,1,16,31,18,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3467,Kuwait,2004,0,20,63,38,22,9,7,0,14,44,12,7,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3468,Kuwait,2005,0,12,45,29,26,8,3,0,13,31,11,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3469,Kuwait,2006,1,19,72,40,37,14,3,0,17,41,23,5,6,6,1,8,28,6,3,0,7,5,7,6,4,1,0,0,3,22,69,45,13,5,2,8,22,44,28,18,3,2,,,,,,,,,,,,,, +3470,Kuwait,2007,1,16,69,25,29,8,5,0,26,53,18,13,7,4,2,7,29,17,4,3,1,4,4,12,8,1,1,1,1,24,62,48,17,6,2,7,16,38,39,14,2,1,,,,,,,,,,,,,, +3471,Kuwait,2008,0,18,90,56,34,11,9,2,33,47,27,7,5,6,3,4,36,31,18,6,3,6,13,21,9,3,2,3,6,24,75,58,16,9,3,4,27,73,44,12,7,5,,,,,,,,,,,,,, +3472,Kuwait,2009,0,26,72,67,36,12,8,1,39,86,18,10,4,7,2,5,41,17,15,8,3,5,9,31,10,5,3,1,4,18,81,33,20,8,3,7,39,80,55,24,12,7,,,,,,,,,,,,,, +3473,Kuwait,2010,1,16,67,50,48,10,11,4,41,78,30,10,11,8,3,10,33,26,15,6,5,4,11,32,11,5,1,1,4,25,65,40,21,9,8,7,32,92,64,25,9,6,,,,,,,,,,,,,, +3474,Kuwait,2011,0,13,41,36,35,11,5,0,23,30,15,9,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3475,Kuwait,2012,0,14,59,49,35,15,3,3,40,73,15,12,6,4,1,6,35,18,16,6,4,3,8,26,11,3,3,0,11,20,38,28,18,8,1,6,13,69,31,18,5,3,,,,,,,,,,,,,, +3476,Kuwait,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,32,97,96,64,30,18,11,70,164,65,24,16,9 +3477,Kyrgyzstan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3478,Kyrgyzstan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3479,Kyrgyzstan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3480,Kyrgyzstan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3481,Kyrgyzstan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3482,Kyrgyzstan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3483,Kyrgyzstan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3484,Kyrgyzstan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3485,Kyrgyzstan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3486,Kyrgyzstan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3487,Kyrgyzstan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3488,Kyrgyzstan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3489,Kyrgyzstan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3490,Kyrgyzstan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3491,Kyrgyzstan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3492,Kyrgyzstan,1995,3,109,171,165,65,38,30,1,70,94,34,18,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3493,Kyrgyzstan,1996,4,148,210,156,86,38,40,8,90,93,55,18,26,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3494,Kyrgyzstan,1997,1,212,381,349,143,90,38,4,115,133,64,22,29,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3495,Kyrgyzstan,1998,4,105,176,141,75,43,21,3,68,89,54,20,22,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3496,Kyrgyzstan,1999,5,216,388,244,142,73,49,8,137,199,75,40,31,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3497,Kyrgyzstan,2000,4,128,227,205,115,52,46,6,128,146,100,41,30,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3498,Kyrgyzstan,2001,0,176,287,217,159,54,44,0,133,183,105,45,30,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3499,Kyrgyzstan,2002,0,202,268,233,137,61,45,0,153,179,116,44,39,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3500,Kyrgyzstan,2003,0,189,298,241,145,63,70,0,178,227,109,61,29,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3501,Kyrgyzstan,2004,3,221,277,265,164,58,69,11,196,228,104,59,34,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3502,Kyrgyzstan,2005,1,247,303,269,194,66,84,15,215,236,141,70,33,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3503,Kyrgyzstan,2006,3,245,298,245,179,75,75,13,228,203,107,75,32,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3504,Kyrgyzstan,2007,3,243,274,186,186,62,63,11,216,213,114,67,47,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3505,Kyrgyzstan,2008,1,261,275,190,155,70,53,13,209,217,104,61,41,62,54,298,239,193,186,99,101,78,242,226,118,98,49,55,251,296,144,76,73,32,12,233,177,118,67,46,22,38,,,,,,,,,,,,,, +3506,Kyrgyzstan,2009,7,251,252,185,168,54,41,14,214,186,97,60,29,51,51,339,255,210,204,120,99,72,319,258,127,101,56,56,222,294,142,97,64,25,30,175,202,117,67,60,33,30,,,,,,,,,,,,,, +3507,Kyrgyzstan,2010,5,261,260,188,141,64,48,5,223,199,98,71,40,42,39,283,249,189,199,120,92,57,264,232,107,86,59,52,239,261,146,68,61,31,26,186,217,153,107,69,40,31,,,,,,,,,,,,,, +3508,Kyrgyzstan,2011,6,225,204,179,168,77,41,13,200,191,84,60,50,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3509,Kyrgyzstan,2012,4,210,255,207,184,86,30,8,195,173,108,55,42,37,56,364,311,267,220,166,85,55,280,259,109,118,94,64,285,321,163,91,62,42,23,232,197,141,94,79,39,40,,,,,,,,,,,,,, +3510,Kyrgyzstan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,301,836,737,488,470,317,170,293,705,604,332,232,199,175 +3511,Lao People's Democratic Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3512,Lao People's Democratic Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3513,Lao People's Democratic Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3514,Lao People's Democratic Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3515,Lao People's Democratic Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3516,Lao People's Democratic Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3517,Lao People's Democratic Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3518,Lao People's Democratic Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3519,Lao People's Democratic Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3520,Lao People's Democratic Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3521,Lao People's Democratic Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3522,Lao People's Democratic Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3523,Lao People's Democratic Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3524,Lao People's Democratic Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3525,Lao People's Democratic Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3526,Lao People's Democratic Republic,1995,6,56,71,68,78,90,55,3,49,49,69,54,52,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3527,Lao People's Democratic Republic,1996,1,42,80,97,131,127,84,4,31,62,80,64,59,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3528,Lao People's Democratic Republic,1997,2,61,91,151,158,156,124,2,60,83,102,102,88,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3529,Lao People's Democratic Republic,1998,4,77,152,150,177,211,152,6,59,121,122,108,90,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3530,Lao People's Democratic Republic,1999,5,91,175,183,213,193,191,9,60,115,142,141,98,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3531,Lao People's Democratic Republic,2000,7,92,128,166,201,177,176,10,59,95,131,122,91,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3532,Lao People's Democratic Republic,2001,10,81,137,176,219,186,164,6,51,99,121,138,104,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3533,Lao People's Democratic Republic,2002,4,86,159,220,223,227,185,2,72,141,151,152,117,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3534,Lao People's Democratic Republic,2003,6,91,180,239,226,207,196,7,77,107,162,156,114,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3535,Lao People's Democratic Republic,2004,14,120,181,231,318,259,268,12,72,137,157,172,164,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3536,Lao People's Democratic Republic,2005,13,136,223,296,373,300,352,7,101,186,205,244,192,178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3537,Lao People's Democratic Republic,2006,12,145,245,340,406,345,354,13,109,196,221,228,222,205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3538,Lao People's Democratic Republic,2007,11,150,258,307,418,361,350,7,126,175,215,293,206,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3539,Lao People's Democratic Republic,2008,6,159,262,329,380,409,373,10,101,165,209,264,220,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3540,Lao People's Democratic Republic,2009,11,159,235,325,382,366,351,6,119,186,205,265,217,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3541,Lao People's Democratic Republic,2010,8,157,254,287,416,385,380,13,133,152,215,269,225,225,9,20,34,43,34,49,41,7,18,39,25,19,18,31,16,24,46,29,30,23,22,7,13,19,30,20,12,22,,,,,,,,,,,,,, +3542,Lao People's Democratic Republic,2011,8,145,275,323,474,416,375,14,141,204,208,267,215,206,5,20,47,46,59,61,68,4,23,45,33,33,27,45,14,28,42,32,34,32,24,7,19,39,24,25,10,19,,,,,,,,,,,,,, +3543,Lao People's Democratic Republic,2012,10,144,236,326,424,381,365,11,119,197,192,246,210,201,7,14,59,49,43,48,70,14,14,47,24,27,29,27,13,26,45,32,27,23,26,12,25,39,30,19,15,19,,,,,,,,,,,,,, +3544,Lao People's Democratic Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,189,358,360,534,523,456,37,152,243,246,307,258,239 +3545,Latvia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3546,Latvia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3547,Latvia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3548,Latvia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3549,Latvia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3550,Latvia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3551,Latvia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3552,Latvia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3553,Latvia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3554,Latvia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3555,Latvia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3556,Latvia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3557,Latvia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3558,Latvia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3559,Latvia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3560,Latvia,1995,0,20,44,71,70,40,30,0,22,49,55,47,27,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3561,Latvia,1996,0,28,69,130,89,67,42,0,32,39,31,22,10,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3562,Latvia,1997,0,47,109,145,106,61,29,1,27,22,37,20,16,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3563,Latvia,1998,0,58,105,129,121,68,35,1,24,45,26,23,15,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3564,Latvia,1999,1,48,87,110,103,57,30,2,28,24,40,29,11,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3565,Latvia,2000,0,53,106,124,111,64,34,2,25,41,27,28,7,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3566,Latvia,2001,0,48,109,138,101,64,32,2,24,33,41,31,18,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3567,Latvia,2002,0,32,98,123,121,64,26,0,37,42,37,23,11,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3568,Latvia,2003,0,36,74,141,106,59,32,0,31,42,42,35,17,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3569,Latvia,2004,0,30,74,119,109,53,38,2,29,32,36,29,12,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3570,Latvia,2005,1,22,71,104,117,55,34,0,17,31,31,23,18,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3571,Latvia,2006,2,27,78,82,105,51,26,0,17,27,33,28,9,13,9,23,72,81,74,52,31,7,17,42,49,33,8,24,26,6,7,7,4,5,4,40,7,5,2,3,2,6,,,,,,,,,,,,,, +3572,Latvia,2007,,33,65,93,102,49,19,1,18,27,32,18,12,9,0,29,70,62,67,38,30,4,25,38,35,29,16,21,50,14,24,12,18,12,14,54,10,12,10,16,10,18,,,,,,,,,,,,,, +3573,Latvia,2008,0,28,54,71,71,47,27,0,11,23,26,21,9,12,7,30,49,67,64,35,34,6,15,30,29,15,10,9,22,7,12,8,2,3,6,13,3,9,6,5,6,16,,,,,,,,,,,,,, +3574,Latvia,2009,0,21,41,67,78,48,20,0,12,17,20,20,9,14,3,23,47,48,53,36,29,11,27,36,24,15,14,11,13,10,2,6,6,4,4,13,6,4,1,3,2,12,,,,,,,,,,,,,, +3575,Latvia,2010,0,20,44,65,71,39,15,0,6,19,25,12,10,13,3,29,52,62,56,30,15,8,29,36,35,14,18,13,16,4,8,4,5,1,4,18,2,6,5,1,3,9,,,,,,,,,,,,,, +3576,Latvia,2011,0,11,42,58,50,33,18,0,7,16,19,14,12,13,15,20,56,62,56,34,14,10,31,32,30,20,16,14,22,7,4,5,6,3,3,14,2,4,3,2,6,4,,,,,,,,,,,,,, +3577,Latvia,2012,0,19,62,67,59,36,15,1,14,15,14,16,15,9,11,35,54,68,60,34,19,14,25,35,26,28,14,15,15,11,8,8,5,1,9,15,5,3,2,9,1,8,,,,,,,,,,,,,, +3578,Latvia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,38,94,143,134,99,54,29,34,58,53,43,40,37 +3579,Lebanon,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3580,Lebanon,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3581,Lebanon,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3582,Lebanon,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3583,Lebanon,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3584,Lebanon,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3585,Lebanon,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3586,Lebanon,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3587,Lebanon,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3588,Lebanon,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3589,Lebanon,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3590,Lebanon,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3591,Lebanon,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3592,Lebanon,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3593,Lebanon,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3594,Lebanon,1995,3,26,32,30,16,16,10,1,16,18,13,8,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3595,Lebanon,1996,4,28,41,18,12,9,19,4,24,13,11,5,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3596,Lebanon,1997,1,18,33,22,19,17,17,3,30,20,6,7,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3597,Lebanon,1998,1,27,33,22,19,17,17,3,23,20,6,7,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3598,Lebanon,1999,3,27,44,35,17,17,11,1,33,26,17,6,9,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3599,Lebanon,2000,5,16,28,20,15,17,14,4,31,26,9,7,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3600,Lebanon,2001,0,22,20,18,16,8,8,3,25,28,7,6,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3601,Lebanon,2002,1,19,25,14,10,7,9,2,17,21,8,9,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3602,Lebanon,2003,0,19,26,22,6,5,7,3,14,12,9,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3603,Lebanon,2004,1,11,25,18,18,8,6,0,18,21,10,5,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3604,Lebanon,2005,0,12,19,15,10,12,8,1,25,14,8,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3605,Lebanon,2006,0,11,12,18,14,10,8,1,16,12,5,2,2,1,5,10,4,8,6,4,8,11,11,6,7,4,3,3,14,11,13,14,3,9,5,7,19,32,15,6,8,26,,,,,,,,,,,,,, +3606,Lebanon,2007,0,12,19,13,12,11,5,1,17,30,13,5,3,2,4,12,17,10,3,3,6,13,17,15,8,5,4,1,17,25,18,8,11,5,7,5,34,43,14,9,10,6,,,,,,,,,,,,,, +3607,Lebanon,2008,1,9,14,12,17,14,6,2,24,32,15,7,3,2,8,4,14,7,10,14,3,8,25,17,6,3,0,4,11,21,19,15,4,5,18,20,38,39,24,5,2,10,,,,,,,,,,,,,, +3608,Lebanon,2009,1,12,22,13,9,12,7,2,28,40,14,2,8,9,6,4,6,8,7,6,4,2,13,21,10,5,2,0,4,17,14,13,10,9,15,23,36,33,17,9,6,12,,,,,,,,,,,,,, +3609,Lebanon,2010,1,8,21,15,12,12,10,0,36,48,17,7,4,3,9,5,9,7,7,4,3,5,14,18,7,5,4,2,14,14,18,6,8,6,12,14,29,32,18,12,11,16,,,,,,,,,,,,,, +3610,Lebanon,2011,1,14,18,13,15,6,8,0,37,51,12,9,1,3,3,7,11,10,10,2,3,2,13,27,4,5,3,1,9,11,15,7,9,9,5,11,44,50,15,12,6,6,,,,,,,,,,,,,, +3611,Lebanon,2012,2,18,21,13,14,12,6,2,48,72,16,9,4,3,8,7,8,8,6,3,5,6,22,33,8,8,4,5,9,16,21,6,12,7,8,18,41,61,19,18,7,7,,,,,,,,,,,,,, +3612,Lebanon,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,46,71,50,32,27,25,21,108,158,44,39,13,16 +3613,Lesotho,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3614,Lesotho,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3615,Lesotho,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3616,Lesotho,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3617,Lesotho,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3618,Lesotho,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3619,Lesotho,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3620,Lesotho,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3621,Lesotho,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3622,Lesotho,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3623,Lesotho,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3624,Lesotho,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3625,Lesotho,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3626,Lesotho,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3627,Lesotho,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3628,Lesotho,1995,9,108,214,256,189,96,88,14,106,125,71,49,17,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3629,Lesotho,1996,12,123,272,367,223,149,87,7,164,189,94,44,29,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3630,Lesotho,1997,11,180,392,463,307,173,69,29,216,272,152,71,40,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3631,Lesotho,1998,6,190,407,488,372,190,87,10,200,283,125,65,30,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3632,Lesotho,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3633,Lesotho,2000,8,165,458,517,395,198,76,11,222,336,195,83,36,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3634,Lesotho,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3635,Lesotho,2002,10,218,547,535,347,211,80,14,304,447,207,125,41,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3636,Lesotho,2003,10,219,614,592,466,219,83,32,328,567,313,219,59,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3637,Lesotho,2004,29,286,728,696,448,206,78,22,459,691,364,161,68,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3638,Lesotho,2005,32,395,695,397,148,82,37,19,226,721,616,494,297,121,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3639,Lesotho,2006,33,228,628,550,440,218,49,50,370,642,430,171,90,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3640,Lesotho,2007,6,32,135,73,87,52,28,4,78,121,106,40,13,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3641,Lesotho,2008,21,223,615,542,380,242,138,24,343,700,358,146,76,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3642,Lesotho,2009,26,217,685,549,411,257,118,30,326,659,409,167,79,43,264,245,674,634,421,348,213,226,293,668,494,294,183,126,65,116,349,298,223,150,102,50,169,370,287,164,92,51,,,,,,,,,,,,,, +3643,Lesotho,2010,16,222,607,497,364,244,133,27,283,597,329,169,64,48,305,217,699,670,467,340,279,264,289,703,495,313,163,127,52,106,337,255,206,154,114,43,148,344,213,152,50,48,,,,,,,,,,,,,, +3644,Lesotho,2011,19,179,584,493,329,245,121,23,311,572,307,185,84,58,271,195,685,691,508,357,233,226,292,709,500,357,205,117,50,90,257,262,186,132,97,51,138,310,253,143,82,38,,,,,,,,,,,,,, +3645,Lesotho,2012,15,204,580,427,295,196,114,30,309,571,296,143,71,47,220,229,810,672,340,249,190,246,333,787,510,304,147,105,41,95,272,236,129,110,84,31,155,300,210,106,65,43,,,,,,,,,,,,,, +3646,Lesotho,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,244,452,1322,1172,780,593,436,229,614,1293,821,486,249,225 +3647,Liberia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3648,Liberia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3649,Liberia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3650,Liberia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3651,Liberia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3652,Liberia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3653,Liberia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3654,Liberia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3655,Liberia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3656,Liberia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3657,Liberia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3658,Liberia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3659,Liberia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3660,Liberia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3661,Liberia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3662,Liberia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3663,Liberia,1996,38,69,105,84,42,33,9,44,72,78,51,24,12,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3664,Liberia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3665,Liberia,1998,18,150,229,158,72,34,11,18,164,160,98,45,17,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3666,Liberia,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3667,Liberia,2000,12,133,196,127,52,17,26,21,140,149,88,28,16,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3668,Liberia,2001,16,111,174,132,63,17,11,18,108,143,77,35,17,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3669,Liberia,2002,20,252,315,295,143,60,44,26,256,250,150,86,41,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3670,Liberia,2003,5,180,215,204,99,49,23,12,148,180,109,43,30,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3671,Liberia,2004,32,333,427,285,198,71,51,39,268,397,183,123,41,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3672,Liberia,2005,26,240,352,333,155,74,65,37,232,297,171,108,52,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3673,Liberia,2006,59,324,442,371,250,125,97,55,292,371,242,125,85,68,70,39,19,99,58,29,14,63,33,24,80,75,31,12,51,77,72,106,84,7,6,32,72,50,118,65,4,2,,,,,,,,,,,,,, +3674,Liberia,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3675,Liberia,2008,107,129,412,532,308,169,98,56,115,237,367,298,170,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3676,Liberia,2009,95,360,591,592,346,135,0,105,354,541,399,222,0,96,24,8,17,20,12,8,0,14,11,37,8,15,0,0,25,13,46,26,55,33,0,27,11,19,17,28,2,0,,,,,,,,,,,,,, +3677,Liberia,2010,90,338,621,510,295,114,21,254,339,488,259,171,151,99,121,132,193,48,69,19,2,145,40,18,351,123,46,78,353,56,38,65,4,12,10,202,45,19,452,23,6,78,,,,,,,,,,,,,, +3678,Liberia,2011,67,382,595,727,440,194,87,67,329,433,517,285,88,50,77,111,190,194,270,104,84,58,199,115,179,129,78,44,162,19,114,85,219,113,168,65,70,145,125,136,110,81,,,,,,,,,,,,,, +3679,Liberia,2012,65,382,627,667,406,129,83,61,354,535,605,292,79,57,172,118,305,139,233,111,89,171,99,96,165,122,76,50,149,50,164,128,212,133,133,64,152,152,135,110,92,75,,,,,,,,,,,,,, +3680,Liberia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,366,660,635,320,198,98,64,316,512,217,242,86,64 +3681,Libya,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3682,Libya,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3683,Libya,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3684,Libya,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3685,Libya,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3686,Libya,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3687,Libya,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3688,Libya,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3689,Libya,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3690,Libya,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3691,Libya,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3692,Libya,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3693,Libya,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3694,Libya,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3695,Libya,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3696,Libya,1995,2,112,212,78,46,22,21,5,34,31,19,20,13,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3697,Libya,1996,4,93,142,82,31,28,19,4,30,35,17,10,9,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3698,Libya,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3699,Libya,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3700,Libya,1999,2,110,257,115,53,36,33,6,43,59,25,15,14,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3701,Libya,2000,5,101,239,86,36,29,32,6,43,35,24,24,16,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3702,Libya,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3703,Libya,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3704,Libya,2003,0,108,266,142,32,25,19,4,43,28,30,25,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3705,Libya,2004,5,113,310,173,53,24,20,1,44,50,20,23,13,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3706,Libya,2005,2,114,293,168,52,19,35,8,36,36,35,21,21,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3707,Libya,2006,1,98,247,150,49,23,23,8,55,34,24,10,12,11,,,,,,,,,,,,,,,49,52,116,51,29,24,36,46,87,94,67,58,50,45,,,,,,,,,,,,,, +3708,Libya,2007,2,61,143,78,26,12,10,4,23,17,12,8,7,11,14,33,58,54,25,17,23,14,16,14,13,11,14,16,45,65,122,73,44,45,32,45,78,79,40,18,35,391,,,,,,,,,,,,,, +3709,Libya,2008,2,116,298,162,85,24,19,6,56,35,22,20,9,17,10,26,64,75,18,20,23,13,21,29,29,15,22,25,33,71,112,67,21,12,24,39,80,89,67,54,36,44,,,,,,,,,,,,,, +3710,Libya,2009,4,131,295,180,73,30,23,11,54,63,26,10,14,22,18,34,78,105,33,11,30,11,27,28,22,22,19,17,27,69,111,68,29,15,21,25,64,83,57,43,40,44,,,,,,,,,,,,,, +3711,Libya,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3712,Libya,2011,5,85,173,148,54,18,21,8,59,47,37,22,25,29,17,16,51,79,32,13,11,7,26,19,16,2,9,7,11,27,52,47,27,13,26,16,46,58,59,29,25,26,,,,,,,,,,,,,, +3713,Libya,2012,2,86,136,136,63,31,22,10,47,37,19,24,18,13,25,27,58,60,40,24,14,24,17,20,17,18,14,14,22,34,65,45,20,19,30,19,51,55,53,43,30,47,,,,,,,,,,,,,, +3714,Libya,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,135,233,204,93,69,66,30,110,124,80,60,56,42 +3715,Lithuania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3716,Lithuania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3717,Lithuania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3718,Lithuania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3719,Lithuania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3720,Lithuania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3721,Lithuania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3722,Lithuania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3723,Lithuania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3724,Lithuania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3725,Lithuania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3726,Lithuania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3727,Lithuania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3728,Lithuania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3729,Lithuania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3730,Lithuania,1995,4,46,132,225,176,90,77,5,6,53,45,32,16,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3731,Lithuania,1996,2,60,133,224,206,133,82,6,37,62,73,40,29,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3732,Lithuania,1997,2,53,136,227,213,146,98,5,40,77,73,38,25,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3733,Lithuania,1998,0,38,77,165,163,81,57,0,27,25,65,22,21,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3734,Lithuania,1999,0,42,90,153,22,91,67,0,32,48,55,25,20,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3735,Lithuania,2000,1,38,97,145,155,74,68,0,20,37,39,32,22,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3736,Lithuania,2001,0,35,112,197,155,88,76,1,33,59,57,35,28,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3737,Lithuania,2002,1,24,95,176,142,88,59,0,30,59,45,32,18,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3738,Lithuania,2003,1,35,116,175,174,107,60,0,35,49,37,38,20,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3739,Lithuania,2004,0,39,100,161,173,92,71,1,21,48,47,47,24,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3740,Lithuania,2005,0,42,118,186,187,108,67,1,25,41,57,49,23,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3741,Lithuania,2006,0,38,120,207,211,107,74,0,25,48,56,52,38,53,5,34,79,109,132,101,66,2,29,33,46,42,23,53,51,18,18,19,26,19,15,46,13,10,16,21,12,32,,,,,,,,,,,,,, +3742,Lithuania,2007,0,31,77,165,235,109,76,0,34,41,48,50,22,37,3,30,85,112,145,90,82,4,23,45,42,49,23,46,35,10,15,18,27,14,16,43,15,9,23,11,13,29,,,,,,,,,,,,,, +3743,Lithuania,2008,0,39,110,162,182,104,71,1,20,51,46,36,18,44,1,25,69,108,140,88,85,1,27,46,37,44,21,52,46,13,14,16,25,11,11,51,8,11,18,9,11,20,,,,,,,,,,,,,, +3744,Lithuania,2009,0,22,91,130,163,100,48,4,25,36,31,33,21,39,2,29,53,102,120,74,77,2,38,38,51,35,29,51,41,10,19,9,19,9,12,25,17,12,16,14,11,19,,,,,,,,,,,,,, +3745,Lithuania,2010,1,34,75,128,157,89,54,1,20,36,31,43,18,32,0,29,64,105,87,82,65,4,32,33,36,44,14,38,54,14,9,14,17,17,10,32,13,7,4,7,5,18,,,,,,,,,,,,,, +3746,Lithuania,2011,1,25,52,126,158,77,55,0,20,31,37,38,16,45,2,28,67,97,96,75,55,4,31,45,43,40,25,56,52,2,10,13,11,7,8,29,10,2,10,9,5,19,,,,,,,,,,,,,, +3747,Lithuania,2012,0,35,73,143,148,91,60,1,8,28,55,36,20,28,2,15,51,73,87,70,57,5,25,34,43,35,21,30,23,14,7,6,11,9,5,25,13,5,7,10,7,14,,,,,,,,,,,,,, +3748,Lithuania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,49,150,254,299,209,160,18,42,76,84,82,57,74 +3749,Luxembourg,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3750,Luxembourg,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3751,Luxembourg,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3752,Luxembourg,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3753,Luxembourg,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3754,Luxembourg,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3755,Luxembourg,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3756,Luxembourg,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3757,Luxembourg,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3758,Luxembourg,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3759,Luxembourg,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3760,Luxembourg,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3761,Luxembourg,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3762,Luxembourg,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3763,Luxembourg,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3764,Luxembourg,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3765,Luxembourg,1996,0,5,3,4,2,3,2,1,3,2,0,1,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3766,Luxembourg,1997,1,2,2,7,3,2,3,1,3,0,1,0,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3767,Luxembourg,1998,0,3,6,7,4,2,0,1,0,1,2,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3768,Luxembourg,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3769,Luxembourg,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3770,Luxembourg,2001,0,0,1,0,0,0,2,0,2,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3771,Luxembourg,2002,0,0,1,3,3,2,1,0,0,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3772,Luxembourg,2003,0,2,10,7,1,2,2,0,2,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3773,Luxembourg,2004,0,1,0,4,3,1,1,0,0,5,5,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3774,Luxembourg,2005,0,0,2,2,1,1,2,0,0,2,1,1,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3775,Luxembourg,2006,0,0,3,2,3,2,3,0,2,3,2,0,1,1,0,0,1,1,0,1,1,0,1,1,1,1,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3776,Luxembourg,2007,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,5,6,4,1,6,0,1,4,1,1,1,2,0,0,0,2,0,0,2,2,0,0,0,0,2,0,,,,,,,,,,,,,, +3777,Luxembourg,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3778,Luxembourg,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3779,Luxembourg,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,4,1,0,1,1,1,1,3,0,0,0,1,0,1,0,0,2,0,0,1,1,0,0,0,,,,,,,,,,,,,, +3780,Luxembourg,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3781,Luxembourg,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3782,Luxembourg,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,8,6,5,2,0,0,2,4,3,1,1,2 +3783,Madagascar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3784,Madagascar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3785,Madagascar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3786,Madagascar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3787,Madagascar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3788,Madagascar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3789,Madagascar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3790,Madagascar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3791,Madagascar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3792,Madagascar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3793,Madagascar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3794,Madagascar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3795,Madagascar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3796,Madagascar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3797,Madagascar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3798,Madagascar,1995,79,791,1289,1173,630,423,242,100,799,1108,744,340,230,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3799,Madagascar,1996,68,888,1325,1271,673,484,285,106,808,1031,744,393,197,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3800,Madagascar,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3801,Madagascar,1998,70,827,1545,1420,829,485,282,108,852,1193,824,430,253,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3802,Madagascar,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3803,Madagascar,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3804,Madagascar,2001,103,1033,1588,1625,1094,613,404,190,1010,1349,1094,546,289,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3805,Madagascar,2002,94,1023,1594,1563,1174,609,398,163,983,1372,1000,598,234,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3806,Madagascar,2003,123,1249,1830,1839,1413,723,438,216,1164,1578,1240,743,326,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3807,Madagascar,2004,118,1025,1593,1482,1026,495,300,130,950,1130,841,513,220,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3808,Madagascar,2005,98,1159,1867,1732,1349,582,333,150,1012,1451,1047,614,248,129,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3809,Madagascar,2006,117,1500,2391,2220,1714,766,458,208,1458,1944,1444,874,353,166,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3810,Madagascar,2007,196,1473,2353,2097,1671,823,438,223,1456,1810,1354,880,378,192,155,58,106,178,39,38,25,128,86,133,220,62,56,37,512,224,242,687,221,147,96,421,197,213,605,195,128,85,,,,,,,,,,,,,, +3811,Madagascar,2008,142,1499,2294,2113,1669,836,465,251,1433,1846,1352,911,383,171,215,,,,,,,,,,,,,,1215,,,,,,,,,,,,,,,,,,,,,,,,,,, +3812,Madagascar,2009,150,1463,2377,2132,1662,942,433,230,1527,1886,1428,906,390,187,303,1332,,,,,,,,,,,,,1225,2762,,,,,,,,,,,,,,,,,,,,,,,,,, +3813,Madagascar,2010,204,1721,1621,2525,1782,960,485,323,1621,1943,1376,946,397,192,285,1372,,,,,,,,,,,,,1314,3237,,,,,,,,,,,,,,,,,,,,,,,,,, +3814,Madagascar,2011,146,1807,2764,2495,1938,1044,522,252,1726,2031,1503,978,462,188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3815,Madagascar,2012,177,1725,2474,2460,1927,1059,490,242,1720,1848,1420,914,474,199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3816,Madagascar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3817,Malawi,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3818,Malawi,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3819,Malawi,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3820,Malawi,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3821,Malawi,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3822,Malawi,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3823,Malawi,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3824,Malawi,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3825,Malawi,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3826,Malawi,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3827,Malawi,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3828,Malawi,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3829,Malawi,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3830,Malawi,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3831,Malawi,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3832,Malawi,1995,25,493,1195,833,519,215,89,65,802,1028,573,294,108,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3833,Malawi,1996,27,562,1388,937,529,224,110,92,887,1187,715,347,133,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3834,Malawi,1997,47,578,1418,995,521,254,101,84,1009,1307,767,347,123,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3835,Malawi,1998,46,677,1581,1158,643,281,151,85,1131,1585,867,437,148,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3836,Malawi,1999,43,588,1475,1083,588,239,126,80,1052,1487,777,376,154,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3837,Malawi,2000,50,653,1476,1113,585,245,114,66,1038,1481,831,401,148,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3838,Malawi,2001,37,704,1486,1025,591,230,129,74,1070,1520,862,384,139,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3839,Malawi,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3840,Malawi,2003,43,596,1374,936,489,209,128,76,963,1531,790,374,155,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3841,Malawi,2004,47,647,1505,1081,508,264,124,78,1009,1694,910,412,191,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3842,Malawi,2005,58,622,1653,1031,549,279,157,84,913,1598,859,386,180,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3843,Malawi,2006,42,584,1647,1054,491,256,182,80,848,1545,813,348,183,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3844,Malawi,2007,61,614,1454,954,473,233,158,109,768,1497,715,342,146,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3845,Malawi,2008,56,570,1562,982,502,280,176,166,707,1327,727,365,172,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3846,Malawi,2009,53,565,1645,1066,503,278,199,75,691,1246,706,318,174,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +3847,Malawi,2010,50,565,1509,985,485,275,187,103,610,1196,661,314,198,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3848,Malawi,2011,70,519,1486,1050,440,238,201,79,601,1119,660,283,161,96,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3849,Malawi,2012,52,495,1537,1051,471,292,204,71,538,1057,609,298,156,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3850,Malawi,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,977,1047,2950,1601,1348,752,685,850,1053,2219,1556,833,529,395 +3851,Malaysia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3852,Malaysia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3853,Malaysia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3854,Malaysia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3855,Malaysia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3856,Malaysia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3857,Malaysia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3858,Malaysia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3859,Malaysia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3860,Malaysia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3861,Malaysia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3862,Malaysia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3863,Malaysia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3864,Malaysia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3865,Malaysia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3866,Malaysia,1995,59,640,879,775,788,374,1072,58,446,448,345,316,149,339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3867,Malaysia,1996,45,720,1026,894,838,671,868,77,457,463,371,327,242,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3868,Malaysia,1997,44,701,1036,961,816,380,1123,51,535,485,383,338,141,343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3869,Malaysia,1998,31,670,1090,1050,872,426,1282,45,519,526,398,330,157,406,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3870,Malaysia,1999,27,692,1147,1152,977,902,880,32,513,558,422,351,286,268,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3871,Malaysia,2000,32,694,1138,1177,908,814,891,41,464,564,424,367,356,286,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3872,Malaysia,2001,48,713,1198,1221,1011,934,738,36,510,506,445,374,353,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3873,Malaysia,2002,22,562,1106,1182,997,758,844,30,421,524,415,485,319,293,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3874,Malaysia,2003,216,1211,2010,2073,1798,1438,1601,196,969,1044,857,669,584,626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3875,Malaysia,2004,191,1195,2105,2189,1890,1440,1535,227,925,1014,852,694,605,532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3876,Malaysia,2005,244,1179,2218,2277,1980,1427,1507,208,1044,1061,947,816,586,572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3877,Malaysia,2006,15,507,855,734,678,443,496,3,30,300,403,321,257,161,63,122,130,181,175,132,108,30,72,80,118,102,67,52,42,104,100,78,85,57,65,18,78,79,49,40,46,48,,,,,,,,,,,,,, +3878,Malaysia,2007,216,1291,2224,2082,1839,1394,1395,226,1098,1101,849,782,585,514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3879,Malaysia,2008,221,1436,2445,2318,2169,1599,1543,240,1161,1283,906,878,648,657,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3880,Malaysia,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3881,Malaysia,2010,129,884,1438,1599,1453,967,981,152,704,881,592,542,425,388,35,282,653,708,440,370,367,52,245,389,295,181,172,149,44,212,294,323,358,255,245,31,205,147,96,128,108,99,,,,,,,,,,,,,, +3882,Malaysia,2011,63,948,1564,1559,1594,1245,1054,77,837,876,584,599,459,403,110,338,553,541,519,448,471,103,299,317,200,221,188,193,97,205,393,354,267,222,147,90,246,299,195,148,132,93,,,,,,,,,,,,,, +3883,Malaysia,2012,74,1060,1575,1677,1762,1409,1260,105,903,1010,710,693,590,483,174,371,644,520,504,506,570,142,318,362,241,220,217,204,96,243,376,369,270,207,164,96,242,306,173,168,129,106,,,,,,,,,,,,,, +3884,Malaysia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,309,1871,2756,2737,2850,2347,2158,335,1718,1798,1228,1179,1060,989 +3885,Maldives,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3886,Maldives,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3887,Maldives,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3888,Maldives,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3889,Maldives,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3890,Maldives,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3891,Maldives,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3892,Maldives,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3893,Maldives,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3894,Maldives,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3895,Maldives,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3896,Maldives,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3897,Maldives,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3898,Maldives,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3899,Maldives,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3900,Maldives,1995,1,28,11,10,8,10,6,1,13,8,4,6,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3901,Maldives,1996,0,24,9,3,5,14,8,1,12,9,5,6,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3902,Maldives,1997,1,13,6,2,13,9,8,3,15,8,9,4,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3903,Maldives,1998,1,19,18,8,4,6,2,1,13,5,1,6,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3904,Maldives,1999,0,14,8,9,7,7,8,3,10,6,3,6,6,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3905,Maldives,2000,0,9,10,2,5,5,3,0,11,4,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3906,Maldives,2001,1,12,5,3,5,7,1,1,10,3,2,6,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3907,Maldives,2002,0,11,9,0,1,5,8,1,8,5,4,5,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3908,Maldives,2003,1,14,7,4,9,9,4,0,8,5,1,5,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3909,Maldives,2004,0,13,11,3,8,5,6,0,8,3,2,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3910,Maldives,2005,0,9,8,5,6,6,5,1,10,7,1,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3911,Maldives,2006,0,8,9,3,4,3,6,0,6,3,4,3,2,2,1,1,0,2,0,2,1,1,2,1,2,0,2,1,3,6,1,1,0,0,1,2,4,1,4,3,0,0,,,,,,,,,,,,,, +3912,Maldives,2007,0,14,4,6,5,6,5,1,5,2,5,5,0,1,2,4,3,3,4,2,1,4,2,3,3,2,3,2,4,1,4,2,0,2,1,3,3,4,2,2,0,1,,,,,,,,,,,,,, +3913,Maldives,2008,,9,11,3,5,6,3,,7,1,3,,3,2,1,3,5,2,2,3,5,1,0,2,3,1,3,1,2,3,6,1,5,3,3,1,1,3,2,0,1,2,,,,,,,,,,,,,, +3914,Maldives,2009,0,16,5,1,4,0,5,0,4,4,2,2,2,0,3,1,,,2,1,1,,1,,,,1,3,,2,7,4,1,3,3,3,3,10,3,1,1,,,,,,,,,,,,,,, +3915,Maldives,2010,0,8,6,0,4,5,6,1,2,3,4,1,0,1,1,1,2,2,2,0,6,1,1,0,1,1,3,0,5,3,4,6,0,0,0,3,4,3,2,2,1,1,,,,,,,,,,,,,, +3916,Maldives,2011,0,12,7,3,8,1,3,0,4,3,1,2,1,2,0,4,1,1,0,0,1,1,0,2,0,0,2,0,3,3,2,1,3,1,2,1,2,4,0,2,3,1,,,,,,,,,,,,,, +3917,Maldives,2012,0,8,6,2,4,5,4,0,7,6,3,3,2,2,3,0,1,2,3,0,3,2,0,0,1,0,1,1,1,2,4,0,2,3,2,4,3,8,4,0,4,4,,,,,,,,,,,,,, +3918,Maldives,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,20,20,4,9,9,5,6,11,8,4,7,4,3 +3919,Mali,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3920,Mali,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3921,Mali,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3922,Mali,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3923,Mali,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3924,Mali,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3925,Mali,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3926,Mali,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3927,Mali,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3928,Mali,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3929,Mali,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3930,Mali,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3931,Mali,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3932,Mali,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3933,Mali,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3934,Mali,1995,27,72,357,294,181,138,102,31,132,184,128,107,61,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3935,Mali,1996,19,182,408,364,226,157,136,21,153,197,128,95,51,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3936,Mali,1997,16,226,559,493,357,255,164,15,178,264,167,111,60,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3937,Mali,1998,13,193,501,428,308,205,130,11,173,237,164,88,79,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3938,Mali,1999,19,235,475,429,315,216,129,21,180,226,171,120,96,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3939,Mali,2000,23,206,430,396,297,235,144,14,174,232,152,106,75,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3940,Mali,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3941,Mali,2002,20,209,547,447,430,151,72,39,141,250,166,190,71,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3942,Mali,2003,32,348,619,438,330,201,115,29,172,278,212,123,73,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3943,Mali,2004,28,302,584,473,316,219,147,29,191,284,183,151,105,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3944,Mali,2005,26,350,628,539,365,263,193,33,208,348,245,152,101,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3945,Mali,2006,28,361,679,550,436,272,216,30,250,371,249,168,116,76,16,370,,,,,,,,,,,,,580,,,,,,,,,,,,,,,,,,,,,,,,,,, +3946,Mali,2007,29,369,696,570,422,291,213,30,263,385,258,160,113,95,15,376,,,,,,,,,,,,,,668,,,,,,,,,,,,,,,,,,,,,,,,,, +3947,Mali,2008,22,453,809,640,503,314,250,37,332,516,320,245,172,121,14,,,,,,,7,,,,,,,55,,,,,,,23,,,,,,,,,,,,,,,,,,,, +3948,Mali,2009,37,489,978,758,510,379,275,44,365,494,384,211,135,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3949,Mali,2010,94,381,707,526,354,227,207,31,265,337,247,144,96,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3950,Mali,2011,25,370,772,515,352,267,230,42,255,393,223,147,118,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3951,Mali,2012,25,405,731,547,377,257,211,34,253,344,239,137,89,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3952,Mali,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,375,750,551,401,244,230,27,284,351,266,144,95,74 +3953,Malta,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3954,Malta,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3955,Malta,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3956,Malta,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3957,Malta,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3958,Malta,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3959,Malta,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3960,Malta,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3961,Malta,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3962,Malta,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3963,Malta,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3964,Malta,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3965,Malta,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3966,Malta,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3967,Malta,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3968,Malta,1995,0,0,0,1,0,0,0,0,0,1,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3969,Malta,1996,0,0,0,0,1,2,1,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3970,Malta,1997,0,1,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3971,Malta,1998,0,1,0,0,1,0,3,0,1,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3972,Malta,1999,0,0,1,0,0,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3973,Malta,2000,0,1,0,1,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3974,Malta,2001,0,,,,1,,1,0,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3975,Malta,2002,0,1,0,1,0,1,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3976,Malta,2003,0,0,1,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3977,Malta,2004,0,0,0,0,1,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3978,Malta,2005,0,1,1,1,1,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3979,Malta,2006,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,6,4,1,2,1,5,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,2,,,,,,,,,,,,,, +3980,Malta,2007,0,0,2,0,0,1,3,0,2,0,0,0,0,0,0,3,5,0,1,2,6,0,0,0,0,0,1,0,1,3,2,2,0,1,0,1,1,0,0,0,0,0,,,,,,,,,,,,,, +3981,Malta,2008,0,3,6,2,0,0,0,0,1,1,0,0,0,2,0,7,4,2,1,0,3,0,0,0,0,1,0,1,0,2,3,1,1,0,1,0,1,2,0,1,0,0,,,,,,,,,,,,,, +3982,Malta,2009,0,4,3,1,1,1,1,0,0,1,0,0,0,0,0,4,4,0,0,1,0,0,0,1,0,0,0,1,0,4,3,0,1,0,3,0,3,3,1,0,0,0,,,,,,,,,,,,,, +3983,Malta,2010,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,1,0,1,0,0,0,0,0,0,1,5,0,0,1,0,0,0,2,0,0,0,1,,,,,,,,,,,,,, +3984,Malta,2011,0,2,4,0,0,0,0,0,1,0,0,0,0,0,0,1,3,0,0,0,2,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,2,0,1,,,,,,,,,,,,,, +3985,Malta,2012,1,2,2,2,0,0,0,0,1,1,0,0,0,0,0,5,4,1,1,0,5,1,2,1,0,0,0,0,0,3,3,0,0,1,0,0,4,0,1,0,0,0,,,,,,,,,,,,,, +3986,Malta,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,22,6,4,0,0,3,0,2,8,1,0,0,4 +3987,Marshall Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3988,Marshall Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3989,Marshall Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3990,Marshall Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3991,Marshall Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3992,Marshall Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3993,Marshall Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3994,Marshall Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3995,Marshall Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3996,Marshall Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3997,Marshall Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3998,Marshall Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3999,Marshall Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4000,Marshall Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4001,Marshall Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4002,Marshall Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4003,Marshall Islands,1996,7,8,3,3,5,3,0,12,7,3,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4004,Marshall Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4005,Marshall Islands,1998,0,2,0,1,1,1,0,0,1,3,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4006,Marshall Islands,1999,5,10,3,4,1,6,0,2,10,7,2,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4007,Marshall Islands,2000,3,5,4,1,3,5,3,7,7,3,0,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4008,Marshall Islands,2001,3,8,4,2,4,2,0,5,6,4,7,8,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4009,Marshall Islands,2002,0,1,2,1,3,2,2,0,2,0,0,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4010,Marshall Islands,2003,6,4,2,7,7,2,2,4,9,2,4,6,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4011,Marshall Islands,2004,2,5,4,3,3,2,,1,7,5,3,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4012,Marshall Islands,2005,2,4,4,5,6,1,1,1,9,2,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4013,Marshall Islands,2006,,4,3,4,6,3,2,2,2,3,3,7,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4014,Marshall Islands,2007,0,1,1,2,5,1,0,1,3,3,2,3,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4015,Marshall Islands,2008,1,1,1,2,3,0,0,2,3,2,4,5,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4016,Marshall Islands,2009,1,12,5,2,5,4,0,1,5,5,4,5,2,1,10,3,3,3,6,5,2,10,6,3,6,7,2,4,2,1,1,1,2,0,0,2,1,0,1,0,0,0,,,,,,,,,,,,,, +4017,Marshall Islands,2010,0,10,1,4,6,6,2,5,9,2,2,4,8,0,15,7,2,3,6,6,2,5,9,4,4,1,0,0,16,9,8,3,2,2,1,8,3,6,3,3,1,0,,,,,,,,,,,,,, +4018,Marshall Islands,2011,1,7,2,3,3,3,1,1,5,8,2,5,2,1,6,2,3,2,1,2,3,4,0,1,2,4,0,0,14,4,5,1,3,0,0,15,6,4,3,2,0,0,,,,,,,,,,,,,, +4019,Marshall Islands,2012,0,3,8,6,9,2,2,0,5,7,2,5,3,2,8,7,2,2,2,1,1,11,5,4,3,3,2,2,7,4,2,2,1,1,1,8,1,1,0,1,0,0,,,,,,,,,,,,,, +4020,Marshall Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,6,15,10,12,16,1,14,12,17,8,12,5,2 +4021,Mauritania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4022,Mauritania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4023,Mauritania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4024,Mauritania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4025,Mauritania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4026,Mauritania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4027,Mauritania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4028,Mauritania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4029,Mauritania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4030,Mauritania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4031,Mauritania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4032,Mauritania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4033,Mauritania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4034,Mauritania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4035,Mauritania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4036,Mauritania,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4037,Mauritania,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4038,Mauritania,1997,188,165,321,341,613,232,185,125,131,319,230,484,384,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4039,Mauritania,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4040,Mauritania,1999,15,290,450,262,177,113,92,7,157,97,110,76,43,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4041,Mauritania,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4042,Mauritania,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4043,Mauritania,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4044,Mauritania,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4045,Mauritania,2004,15,204,343,235,154,129,108,14,102,114,114,58,44,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4046,Mauritania,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4047,Mauritania,2006,12,197,294,203,150,106,96,16,109,114,86,49,29,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4048,Mauritania,2007,14,206,355,261,144,139,83,21,103,152,92,64,38,42,4,59,103,75,41,40,24,6,30,44,26,18,11,13,5,72,126,92,51,49,29,7,36,54,32,23,13,14,,,,,,,,,,,,,, +4049,Mauritania,2008,10,199,292,249,172,107,90,16,127,111,97,44,51,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4050,Mauritania,2009,25,217,328,198,150,116,85,24,111,127,76,49,27,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4051,Mauritania,2010,17,192,295,206,137,99,76,14,90,104,82,52,29,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4052,Mauritania,2011,36,165,185,131,106,58,55,28,68,72,47,36,19,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4053,Mauritania,2012,22,204,302,195,139,114,114,25,112,81,88,73,46,28,13,21,31,19,24,31,25,2,7,17,17,7,9,5,11,33,42,47,35,22,32,12,22,22,27,5,15,14,,,,,,,,,,,,,, +4054,Mauritania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,293,426,294,230,170,169,37,170,153,137,105,83,69 +4055,Mauritius,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4056,Mauritius,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4057,Mauritius,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4058,Mauritius,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4059,Mauritius,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4060,Mauritius,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4061,Mauritius,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4062,Mauritius,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4063,Mauritius,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4064,Mauritius,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4065,Mauritius,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4066,Mauritius,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4067,Mauritius,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4068,Mauritius,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4069,Mauritius,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4070,Mauritius,1995,2,17,13,22,27,13,8,2,4,12,10,8,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4071,Mauritius,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4072,Mauritius,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4073,Mauritius,1998,1,12,10,21,19,10,19,0,9,5,4,3,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4074,Mauritius,1999,0,7,20,15,13,12,12,0,13,7,7,8,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4075,Mauritius,2000,2,6,9,18,19,14,8,1,5,8,8,6,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4076,Mauritius,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4077,Mauritius,2002,1,12,6,21,12,7,4,1,3,8,7,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4078,Mauritius,2003,0,9,12,10,17,11,9,1,6,8,4,4,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4079,Mauritius,2004,1,13,13,24,20,4,5,0,6,8,10,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4080,Mauritius,2005,,10,15,21,20,10,6,,4,5,5,11,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4081,Mauritius,2006,0,4,9,22,10,12,6,1,3,7,3,4,1,3,0,1,2,0,2,0,1,0,1,0,3,1,0,0,1,0,3,0,2,0,0,1,1,2,1,1,1,2,,,,,,,,,,,,,, +4082,Mauritius,2007,0,9,9,12,15,9,6,0,4,7,3,5,4,3,0,2,3,1,1,0,1,0,0,1,2,1,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,,,,,,,,,,,,,, +4083,Mauritius,2008,0,11,15,14,15,7,8,0,2,3,2,5,2,1,0,1,1,3,3,1,1,0,0,1,2,0,1,0,0,0,0,2,0,0,0,0,0,1,1,0,1,0,,,,,,,,,,,,,, +4084,Mauritius,2009,0,5,7,10,19,10,9,0,6,10,7,5,6,4,0,1,1,0,1,0,1,0,2,0,0,1,0,0,1,0,0,1,1,1,0,0,1,0,1,0,0,0,,,,,,,,,,,,,, +4085,Mauritius,2010,0,9,9,13,23,15,7,0,7,9,4,4,3,2,0,0,0,0,2,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,,,,,,,,,,,,,, +4086,Mauritius,2011,0,10,13,9,17,10,8,0,7,12,2,3,6,3,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,1,2,2,0,0,,,,,,,,,,,,,, +4087,Mauritius,2012,2,11,14,16,17,11,7,0,11,7,8,2,8,4,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,,,,,,,,,,,,,, +4088,Mauritius,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,10,15,20,27,8,9,0,10,4,8,9,3,6 +4089,Mexico,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4090,Mexico,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4091,Mexico,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4092,Mexico,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4093,Mexico,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4094,Mexico,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4095,Mexico,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4096,Mexico,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4097,Mexico,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4098,Mexico,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4099,Mexico,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4100,Mexico,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4101,Mexico,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4102,Mexico,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4103,Mexico,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4104,Mexico,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4105,Mexico,1996,198,936,1021,940,721,708,469,243,685,681,627,482,472,312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4106,Mexico,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4107,Mexico,1998,229,1031,1330,1200,1241,813,892,268,856,829,874,742,583,585,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4108,Mexico,1999,143,1013,1141,1093,1022,880,1128,151,773,795,641,665,592,710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4109,Mexico,2000,214,1079,1387,1162,1235,972,1126,176,663,828,698,832,595,709,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4110,Mexico,2001,130,1448,1639,1683,1606,1229,1566,146,1131,993,845,952,787,948,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4111,Mexico,2002,154,1090,1292,1301,1146,986,1144,149,769,754,716,700,621,733,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4112,Mexico,2003,187,1207,1461,1417,1313,1005,1352,184,850,826,734,813,743,841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4113,Mexico,2004,86,1053,1276,1181,1201,958,1209,102,760,649,693,695,626,725,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4114,Mexico,2005,100,1095,1376,1314,1238,1042,1288,125,771,733,710,784,637,784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4115,Mexico,2006,129,986,1320,1333,1275,1012,1215,153,696,774,662,794,722,803,108,196,266,243,232,181,253,108,133,154,146,151,127,170,202,170,318,233,173,117,144,205,243,252,199,184,164,147,,,,,,,,,,,,,, +4116,Mexico,2007,145,981,1286,1286,1266,942,1226,140,645,742,694,748,642,788,136,270,344,346,311,212,316,122,207,209,166,202,166,206,205,237,307,268,177,154,147,185,220,274,233,182,143,137,,,,,,,,,,,,,, +4117,Mexico,2008,124,966,1292,1314,1267,1004,1213,126,752,826,710,774,699,836,54,82,125,113,112,61,104,50,63,65,51,62,52,68,204,245,350,312,244,159,184,224,224,280,242,190,152,165,,,,,,,,,,,,,, +4118,Mexico,2009,103,1030,1262,1401,1360,1024,1252,131,741,712,665,788,608,785,8,81,98,109,107,80,98,10,63,61,57,67,52,67,217,249,368,308,234,169,181,196,239,292,221,180,188,151,,,,,,,,,,,,,, +4119,Mexico,2010,125,1081,1375,1380,1392,1119,1303,112,791,763,730,852,713,836,130,250,331,300,287,238,293,106,159,138,140,123,141,176,225,286,407,339,231,196,188,223,244,306,257,202,173,187,,,,,,,,,,,,,, +4120,Mexico,2011,128,1124,1440,1503,1532,1112,1299,136,776,765,698,889,734,824,124,222,324,290,251,189,220,99,135,140,109,141,101,152,205,267,384,364,244,170,191,194,298,333,271,229,192,187,,,,,,,,,,,,,, +4121,Mexico,2012,133,1153,1480,1522,1484,1153,1284,134,778,743,686,840,824,824,143,248,295,282,253,211,252,121,143,132,141,165,130,165,208,268,468,387,275,204,238,212,299,352,289,250,187,202,,,,,,,,,,,,,, +4122,Mexico,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,429,1797,2230,2409,2289,1736,1940,376,1262,1315,1230,1307,1156,1232 +4123,Micronesia (Federated States of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4124,Micronesia (Federated States of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4125,Micronesia (Federated States of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4126,Micronesia (Federated States of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4127,Micronesia (Federated States of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4128,Micronesia (Federated States of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4129,Micronesia (Federated States of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4130,Micronesia (Federated States of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4131,Micronesia (Federated States of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4132,Micronesia (Federated States of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4133,Micronesia (Federated States of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4134,Micronesia (Federated States of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4135,Micronesia (Federated States of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4136,Micronesia (Federated States of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4137,Micronesia (Federated States of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4138,Micronesia (Federated States of),1995,0,1,0,3,1,0,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4139,Micronesia (Federated States of),1996,0,1,0,0,1,2,0,0,1,1,1,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4140,Micronesia (Federated States of),1997,0,0,0,0,2,0,0,1,1,1,2,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4141,Micronesia (Federated States of),1998,4,5,3,4,1,0,5,2,1,0,1,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4142,Micronesia (Federated States of),1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4143,Micronesia (Federated States of),2000,0,2,0,1,0,0,1,4,3,1,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4144,Micronesia (Federated States of),2001,0,2,0,0,2,1,0,1,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4145,Micronesia (Federated States of),2002,2,0,1,1,1,1,0,3,5,1,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4146,Micronesia (Federated States of),2003,0,3,2,2,0,2,1,4,4,4,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4147,Micronesia (Federated States of),2004,0,4,0,2,0,2,1,3,4,4,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4148,Micronesia (Federated States of),2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4149,Micronesia (Federated States of),2006,14,21,3,6,8,6,1,5,23,5,7,4,6,4,3,8,1,2,1,1,0,0,7,0,1,2,2,1,1,2,1,1,2,1,0,1,1,1,1,0,0,0,,,,,,,,,,,,,, +4150,Micronesia (Federated States of),2007,1,8,5,4,0,1,0,5,11,6,2,2,2,0,5,4,0,1,1,2,0,3,4,3,1,1,0,2,3,0,0,0,0,0,0,1,0,2,0,0,0,0,,,,,,,,,,,,,, +4151,Micronesia (Federated States of),2008,1,9,3,1,3,1,0,1,10,2,5,1,0,0,6,5,5,4,5,3,4,14,5,3,1,2,0,0,4,6,0,0,3,2,0,3,5,3,1,2,0,0,,,,,,,,,,,,,, +4152,Micronesia (Federated States of),2009,5,7,5,5,2,1,2,8,6,9,4,4,1,1,18,8,3,6,3,6,0,8,7,8,3,0,3,2,8,3,0,2,1,1,0,8,3,3,4,0,1,0,,,,,,,,,,,,,, +4153,Micronesia (Federated States of),2010,3,8,1,2,4,4,0,5,8,9,3,4,2,0,16,8,6,3,2,5,4,11,5,4,3,5,3,4,5,3,1,4,2,0,0,4,2,2,1,0,1,0,,,,,,,,,,,,,, +4154,Micronesia (Federated States of),2011,4,8,5,6,2,0,1,5,5,2,3,1,2,1,12,5,7,4,6,5,3,14,2,1,2,3,8,1,5,3,3,4,2,1,0,1,2,3,1,0,0,0,,,,,,,,,,,,,, +4155,Micronesia (Federated States of),2012,3,8,5,4,2,0,1,5,6,2,3,1,3,0,14,6,6,4,6,3,3,15,3,1,3,3,7,2,2,4,3,2,2,1,0,1,2,3,2,0,0,0,,,,,,,,,,,,,, +4156,Micronesia (Federated States of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4157,Monaco,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4158,Monaco,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4159,Monaco,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4160,Monaco,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4161,Monaco,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4162,Monaco,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4163,Monaco,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4164,Monaco,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4165,Monaco,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4166,Monaco,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4167,Monaco,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4168,Monaco,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4169,Monaco,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4170,Monaco,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4171,Monaco,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4172,Monaco,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4173,Monaco,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4174,Monaco,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4175,Monaco,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4176,Monaco,1999,0,0,0,0,1,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4177,Monaco,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4178,Monaco,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4179,Monaco,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4180,Monaco,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4181,Monaco,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4182,Monaco,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4183,Monaco,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4184,Monaco,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4185,Monaco,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4186,Monaco,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4187,Monaco,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +4188,Monaco,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4189,Monaco,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4190,Monaco,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4191,Mongolia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4192,Mongolia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4193,Mongolia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4194,Mongolia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4195,Mongolia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4196,Mongolia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4197,Mongolia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4198,Mongolia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4199,Mongolia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4200,Mongolia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4201,Mongolia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4202,Mongolia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4203,Mongolia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4204,Mongolia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4205,Mongolia,1994,1,23,40,25,19,6,1,10,27,24,13,8,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4206,Mongolia,1995,37,99,111,68,19,13,15,30,70,78,33,15,9,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4207,Mongolia,1996,8,103,150,91,42,24,19,17,98,114,45,27,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4208,Mongolia,1997,6,173,298,204,72,32,17,12,109,134,71,21,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4209,Mongolia,1998,17,213,251,158,65,32,22,32,162,221,115,32,21,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4210,Mongolia,1999,12,213,314,178,63,34,26,25,205,252,113,43,18,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4211,Mongolia,2000,6,181,260,171,68,38,23,32,200,213,113,41,26,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4212,Mongolia,2001,13,236,269,179,86,45,36,25,253,260,125,48,28,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4213,Mongolia,2002,9,242,272,184,94,57,47,16,263,253,133,55,22,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4214,Mongolia,2003,10,206,217,171,93,55,39,19,254,233,148,45,32,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4215,Mongolia,2004,6,287,256,229,112,54,43,18,283,249,162,62,24,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4216,Mongolia,2005,7,271,253,232,147,52,36,15,320,270,145,63,32,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4217,Mongolia,2006,7,317,335,241,157,64,41,16,372,265,180,81,24,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4218,Mongolia,2007,4,280,270,232,158,48,34,23,273,250,139,80,36,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4219,Mongolia,2008,7,289,260,235,151,59,36,18,283,229,127,86,32,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4220,Mongolia,2009,2,280,264,199,157,64,27,20,306,235,140,61,27,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4221,Mongolia,2010,3,285,255,231,154,50,40,12,296,246,112,83,42,28,82,85,50,39,48,25,24,92,103,76,30,26,8,13,111,263,201,117,92,36,22,84,254,204,120,98,34,39,,,,,,,,,,,,,, +4222,Mongolia,2011,2,246,289,205,170,71,41,10,250,192,121,61,40,25,95,79,50,47,44,25,25,81,85,70,29,26,16,12,105,268,206,118,69,28,28,77,221,211,115,87,25,20,,,,,,,,,,,,,, +4223,Mongolia,2012,7,257,268,191,184,63,37,11,250,208,97,82,28,33,63,70,66,56,47,21,18,65,77,60,25,18,16,15,89,250,230,121,86,39,37,76,258,169,106,84,38,28,,,,,,,,,,,,,, +4224,Mongolia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,174,621,576,457,334,166,101,185,579,541,241,181,92,83 +4225,Montenegro,2005,0,3,5,7,15,4,8,0,0,7,3,4,0,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4226,Montenegro,2006,0,0,7,7,12,9,3,,3,4,4,4,3,2,,5,2,10,15,7,9,1,2,2,3,3,4,11,,3,2,1,2,4,0,,1,2,0,0,0,2,,,,,,,,,,,,,, +4227,Montenegro,2007,0,0,6,3,10,1,3,0,3,3,4,3,3,1,2,4,3,6,15,9,15,0,4,6,7,1,3,3,0,2,3,1,2,0,2,0,1,2,2,1,1,1,,,,,,,,,,,,,, +4228,Montenegro,2008,0,2,7,10,5,5,1,0,4,5,5,10,4,7,0,2,4,1,4,3,3,1,3,1,3,3,3,7,0,0,0,3,1,1,4,0,3,1,2,2,3,0,,,,,,,,,,,,,, +4229,Montenegro,2009,0,1,5,6,10,5,9,1,1,5,3,2,2,3,0,3,1,8,5,2,5,1,4,1,2,5,4,2,0,1,1,1,2,0,2,0,0,1,0,3,1,0,,,,,,,,,,,,,, +4230,Montenegro,2010,0,1,1,4,4,7,1,1,3,3,2,3,1,8,1,1,2,2,7,7,9,0,5,2,3,1,3,6,1,1,1,2,3,0,0,0,1,1,1,0,1,2,,,,,,,,,,,,,, +4231,Montenegro,2011,0,1,2,8,11,7,3,1,4,2,4,3,1,1,0,1,6,3,6,1,4,1,6,1,3,5,1,2,0,1,0,0,0,1,0,1,1,1,2,1,1,3,,,,,,,,,,,,,, +4232,Montenegro,2012,0,3,4,5,10,3,4,0,4,5,1,2,1,3,0,0,2,5,3,4,9,0,1,6,1,1,4,0,0,0,0,2,1,2,0,0,0,1,1,2,1,3,,,,,,,,,,,,,, +4233,Montenegro,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,8,8,17,16,11,14,1,6,6,7,6,8,11 +4234,Montserrat,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4235,Montserrat,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4236,Montserrat,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4237,Montserrat,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4238,Montserrat,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4239,Montserrat,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4240,Montserrat,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4241,Montserrat,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4242,Montserrat,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4243,Montserrat,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4244,Montserrat,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4245,Montserrat,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4246,Montserrat,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4247,Montserrat,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4248,Montserrat,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4249,Montserrat,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4250,Montserrat,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4251,Montserrat,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4252,Montserrat,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4253,Montserrat,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4254,Montserrat,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4255,Montserrat,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4256,Montserrat,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4257,Montserrat,2003,0,0,1,0,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4258,Montserrat,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4259,Montserrat,2005,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4260,Montserrat,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4261,Montserrat,2007,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4262,Montserrat,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4263,Montserrat,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4264,Montserrat,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4265,Montserrat,2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4266,Montserrat,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4267,Montserrat,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4268,Morocco,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4269,Morocco,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4270,Morocco,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4271,Morocco,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4272,Morocco,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4273,Morocco,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4274,Morocco,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4275,Morocco,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4276,Morocco,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4277,Morocco,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4278,Morocco,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4279,Morocco,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4280,Morocco,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4281,Morocco,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4282,Morocco,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4283,Morocco,1995,142,2508,2872,1737,819,573,553,191,1708,1288,703,461,317,299,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4284,Morocco,1996,118,2618,2844,1721,772,602,583,217,1697,1300,677,437,400,292,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4285,Morocco,1997,119,2328,2891,1659,761,591,557,238,1799,1331,745,416,424,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4286,Morocco,1998,116,2308,2573,1744,843,560,527,182,1600,1150,679,412,402,330,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4287,Morocco,1999,78,2296,2696,1641,815,559,562,156,1654,1143,691,446,351,332,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4288,Morocco,2000,99,2061,2423,1705,855,485,595,170,1530,1121,672,398,406,352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4289,Morocco,2001,85,2200,2256,1731,929,561,606,156,1477,1046,596,402,399,360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4290,Morocco,2002,79,2190,2341,1647,941,525,577,144,1483,1088,713,443,357,386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4291,Morocco,2003,91,2225,2347,1667,1004,525,550,168,1455,1029,633,431,366,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4292,Morocco,2004,68,2081,2397,1676,1114,533,539,149,1196,981,517,373,331,325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4293,Morocco,2005,79,2222,2515,1583,1057,580,591,167,1330,943,546,403,343,398,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4294,Morocco,2006,73,2104,2373,1498,1036,527,551,155,1273,1025,597,426,335,307,72,273,249,173,162,113,149,85,214,166,126,90,82,101,1125,1694,1263,684,470,294,394,984,1517,1284,796,582,360,317,,,,,,,,,,,,,, +4295,Morocco,2007,74,2098,2370,1545,1165,545,529,123,1177,837,444,354,306,370,50,259,254,185,177,128,159,82,220,166,97,91,69,122,948,1600,1253,625,448,286,456,876,1571,1302,844,575,380,402,,,,,,,,,,,,,, +4296,Morocco,2008,51,1992,2372,1514,1179,633,589,124,1081,803,479,360,290,358,45,289,253,169,171,117,160,58,185,146,104,113,83,109,990,1494,1263,644,464,321,437,921,1446,1388,863,637,379,399,,,,,,,,,,,,,, +4297,Morocco,2009,63,1960,2412,1428,1140,639,510,132,1195,889,450,410,333,346,65,262,242,182,163,138,152,58,199,154,112,103,88,103,992,1626,1330,675,534,371,430,954,1486,1400,840,648,421,424,,,,,,,,,,,,,, +4298,Morocco,2010,51,1982,2553,1611,1273,712,515,117,1098,841,426,386,310,364,41,307,295,202,190,117,176,69,202,162,118,89,89,117,949,1711,1427,684,490,366,432,932,1723,1510,878,775,435,418,,,,,,,,,,,,,, +4299,Morocco,2011,79,1929,2450,1479,1175,682,518,100,1153,794,433,371,324,335,47,325,341,199,180,144,148,64,221,160,118,124,85,116,1004,1662,1413,698,522,400,527,948,1765,1663,980,796,483,470,,,,,,,,,,,,,, +4300,Morocco,2012,54,1840,2426,1423,1183,672,561,77,1162,832,408,306,286,342,45,331,332,225,187,165,151,56,227,176,115,103,88,142,863,1807,1503,704,534,440,491,905,1822,1592,1016,803,563,479,,,,,,,,,,,,,, +4301,Morocco,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,966,4109,4164,2383,1946,1389,1185,1085,3097,2569,1572,1174,1006,921 +4302,Mozambique,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4303,Mozambique,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4304,Mozambique,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4305,Mozambique,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4306,Mozambique,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4307,Mozambique,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4308,Mozambique,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4309,Mozambique,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4310,Mozambique,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4311,Mozambique,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4312,Mozambique,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4313,Mozambique,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4314,Mozambique,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4315,Mozambique,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4316,Mozambique,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4317,Mozambique,1995,187,1136,1475,1338,1022,664,320,226,994,1314,1016,551,234,89,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4318,Mozambique,1996,141,1163,1507,1367,980,639,275,205,1060,1357,938,533,239,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4319,Mozambique,1997,163,1194,1608,1439,1076,666,313,187,1147,1381,1002,606,265,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4320,Mozambique,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4321,Mozambique,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4322,Mozambique,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4323,Mozambique,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4324,Mozambique,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4325,Mozambique,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4326,Mozambique,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4327,Mozambique,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4328,Mozambique,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4329,Mozambique,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4330,Mozambique,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4331,Mozambique,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4332,Mozambique,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4333,Mozambique,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4334,Mozambique,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4335,Mozambique,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4336,Myanmar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4337,Myanmar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4338,Myanmar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4339,Myanmar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4340,Myanmar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4341,Myanmar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4342,Myanmar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4343,Myanmar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4344,Myanmar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4345,Myanmar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4346,Myanmar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4347,Myanmar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4348,Myanmar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4349,Myanmar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4350,Myanmar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4351,Myanmar,1995,42,713,1423,1401,977,677,298,58,535,729,729,450,343,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4352,Myanmar,1996,58,767,1511,1535,1110,798,400,55,577,938,817,558,408,184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4353,Myanmar,1997,56,676,1452,1405,1061,753,441,54,535,883,715,492,308,183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4354,Myanmar,1998,64,798,1491,1584,1187,763,438,73,650,997,856,577,382,229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4355,Myanmar,1999,37,936,1800,1805,1366,833,540,58,737,1076,919,647,420,284,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4356,Myanmar,2000,88,1459,2636,2781,2161,1235,836,72,1040,1592,1397,987,592,378,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4357,Myanmar,2001,69,1800,3253,3353,2624,1443,931,98,1306,1918,1568,1186,650,487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4358,Myanmar,2002,64,2125,3986,4016,3022,1671,1067,109,1563,2044,1758,1348,845,544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4359,Myanmar,2003,107,2536,4408,4427,3269,1974,1296,154,1781,2442,2003,1491,943,617,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4360,Myanmar,2004,96,2777,5025,4966,4081,2271,1567,120,2020,2622,2228,1800,1122,713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4361,Myanmar,2005,132,3401,5877,5888,4585,2557,1764,147,2376,3047,2563,2101,1218,885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4362,Myanmar,2006,113,3572,6328,6536,5143,2988,2033,171,2453,3338,2820,2282,1448,1016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4363,Myanmar,2007,127,3591,6569,6826,5507,3152,2155,159,2719,3500,2998,2486,1601,1198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4364,Myanmar,2008,118,3416,6311,6396,5327,3312,2235,180,2526,3474,2850,2357,1644,1102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4365,Myanmar,2009,127,3259,6371,6633,5319,3435,2248,165,2559,3298,2745,2463,1679,1100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4366,Myanmar,2010,106,3043,6578,6688,5607,3632,2308,196,2452,3454,2752,2525,1838,1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4367,Myanmar,2011,120,2923,6182,6319,5680,3954,2500,187,2401,3317,2760,2554,2010,1407,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4368,Myanmar,2012,146,2898,6263,6469,5837,3945,2626,192,2357,3368,2721,2600,2023,1464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4369,Myanmar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4370,Namibia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4371,Namibia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4372,Namibia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4373,Namibia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4374,Namibia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4375,Namibia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4376,Namibia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4377,Namibia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4378,Namibia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4379,Namibia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4380,Namibia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4381,Namibia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4382,Namibia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4383,Namibia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4384,Namibia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4385,Namibia,1995,0,68,235,113,55,21,6,5,49,78,50,16,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4386,Namibia,1996,16,205,613,472,230,137,101,17,249,330,245,87,72,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4387,Namibia,1997,18,232,791,479,296,161,93,23,249,401,275,104,56,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4388,Namibia,1998,21,270,816,541,267,148,111,34,300,536,310,117,62,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4389,Namibia,1999,20,247,908,613,260,135,110,25,339,540,336,114,77,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4390,Namibia,2000,18,269,874,665,300,147,81,16,352,654,348,161,76,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4391,Namibia,2001,20,322,993,732,318,150,116,32,394,729,404,168,91,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4392,Namibia,2002,19,301,1033,750,326,146,96,42,357,795,484,182,91,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4393,Namibia,2003,31,364,1109,838,419,196,108,47,451,927,571,216,108,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4394,Namibia,2004,31,319,1092,866,371,159,131,30,400,819,554,203,106,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4395,Namibia,2005,98,355,1027,874,365,146,120,105,399,809,525,213,95,91,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4396,Namibia,2006,86,347,1052,799,386,174,146,74,485,875,521,239,92,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4397,Namibia,2007,57,370,1018,786,346,149,120,69,417,826,513,242,102,76,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4398,Namibia,2008,30,387,1033,757,346,149,132,73,466,702,437,226,110,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4399,Namibia,2009,41,357,936,689,348,166,121,84,384,678,407,214,97,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4400,Namibia,2010,36,359,852,680,287,146,126,67,429,685,382,206,122,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4401,Namibia,2011,48,337,844,660,361,152,138,78,427,653,410,185,100,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4402,Namibia,2012,61,358,810,686,292,157,137,81,394,582,396,198,84,97,386,153,477,516,268,162,135,339,200,379,306,183,98,90,180,126,228,261,138,46,55,163,116,219,177,84,25,47,,,,,,,,,,,,,, +4403,Namibia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,603,612,1496,1404,723,392,309,491,688,1137,747,408,220,202 +4404,Nauru,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4405,Nauru,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4406,Nauru,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4407,Nauru,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4408,Nauru,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4409,Nauru,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4410,Nauru,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4411,Nauru,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4412,Nauru,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4413,Nauru,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4414,Nauru,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4415,Nauru,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4416,Nauru,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4417,Nauru,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4418,Nauru,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4419,Nauru,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4420,Nauru,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4421,Nauru,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4422,Nauru,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4423,Nauru,1999,0,0,0,0,1,1,0,0,0,1,3,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4424,Nauru,2000,,,,,1,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4425,Nauru,2001,,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4426,Nauru,2002,,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4427,Nauru,2003,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4428,Nauru,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4429,Nauru,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4430,Nauru,2006,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,1,0,1,0,,,,,,,,,,,,,, +4431,Nauru,2007,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4432,Nauru,2008,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4433,Nauru,2009,0,0,0,0,0,0,0,0,1,0,0,0,0,0,,,,,,,,,,,,,,,0,0,0,0,0,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +4434,Nauru,2010,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4435,Nauru,2011,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4436,Nauru,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4437,Nauru,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4438,Nepal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4439,Nepal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4440,Nepal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4441,Nepal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4442,Nepal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4443,Nepal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4444,Nepal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4445,Nepal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4446,Nepal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4447,Nepal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4448,Nepal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4449,Nepal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4450,Nepal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4451,Nepal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4452,Nepal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4453,Nepal,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4454,Nepal,1996,91,1451,1285,1221,1035,738,407,155,853,734,534,288,190,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4455,Nepal,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4456,Nepal,1998,133,1621,1522,1500,1292,884,480,173,1112,838,621,407,219,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4457,Nepal,1999,150,1872,1800,1703,1545,1161,799,185,1239,1133,754,553,316,200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4458,Nepal,2000,170,1904,1763,1713,1491,1294,772,176,1267,1078,833,575,419,228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4459,Nepal,2001,155,1957,1709,1743,1491,1300,775,171,1295,1060,838,573,375,222,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4460,Nepal,2002,129,1980,1707,1686,1579,1465,758,202,1203,1041,796,544,426,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4461,Nepal,2003,122,2039,1658,1619,1769,1639,735,189,1283,1107,873,609,486,220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4462,Nepal,2004,121,1991,1749,1652,1710,1739,763,188,1282,1138,849,677,540,215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4463,Nepal,2005,148,1946,1685,1722,1806,1759,820,195,1208,1111,797,658,532,230,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4464,Nepal,2006,125,1914,1651,1640,1688,1695,808,179,1164,1001,788,613,519,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4465,Nepal,2007,150,2025,1591,1636,1720,1715,919,175,1149,1027,793,619,578,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4466,Nepal,2008,81,150,1409,1558,1706,1515,792,107,832,820,704,630,523,226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4467,Nepal,2009,149,1991,1864,1761,1897,1871,1067,181,1223,1022,845,675,579,317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4468,Nepal,2010,165,2110,1832,1724,1856,1857,1126,192,1177,1036,819,681,642,352,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4469,Nepal,2011,245,1914,1755,1723,1732,1710,1180,247,1182,978,752,624,604,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4470,Nepal,2012,250,1906,1756,1644,1708,1773,1203,210,1227,1036,666,638,643,397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4471,Nepal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,186,1889,1768,1525,1690,1675,1415,223,1203,1007,737,660,691,430 +4472,Netherlands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4473,Netherlands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4474,Netherlands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4475,Netherlands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4476,Netherlands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4477,Netherlands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4478,Netherlands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4479,Netherlands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4480,Netherlands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4481,Netherlands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4482,Netherlands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4483,Netherlands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4484,Netherlands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4485,Netherlands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4486,Netherlands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4487,Netherlands,1995,22,79,119,75,28,9,10,24,56,50,13,10,8,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4488,Netherlands,1996,8,48,65,46,26,21,34,1,24,40,14,5,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4489,Netherlands,1997,3,33,65,47,32,12,31,4,17,31,10,12,4,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4490,Netherlands,1998,2,31,40,41,21,11,26,2,19,25,17,4,6,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4491,Netherlands,1999,5,44,67,32,24,12,19,5,26,39,16,2,1,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4492,Netherlands,2000,0,34,63,41,25,10,21,4,29,22,16,9,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4493,Netherlands,2001,1,51,51,33,29,12,24,1,26,32,19,9,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4494,Netherlands,2002,1,40,54,39,33,7,20,5,27,32,12,13,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4495,Netherlands,2003,2,35,50,38,17,15,15,0,16,30,12,10,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4496,Netherlands,2004,6,36,54,37,26,22,31,4,20,33,15,4,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4497,Netherlands,2005,0,23,42,23,26,14,19,3,14,19,11,9,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4498,Netherlands,2006,0,25,23,31,23,17,19,3,15,17,12,5,3,10,13,40,65,48,25,16,49,19,23,40,28,24,15,36,5,22,39,26,29,15,30,8,19,37,33,23,23,32,,,,,,,,,,,,,, +4499,Netherlands,2007,1,10,22,28,21,15,15,1,12,22,17,6,5,12,12,27,40,37,27,20,49,6,25,31,23,13,12,41,16,31,42,35,26,19,29,12,27,31,19,26,19,34,,,,,,,,,,,,,, +4500,Netherlands,2008,0,16,24,26,19,18,19,2,13,19,14,6,6,7,5,45,34,43,29,25,33,14,31,42,22,13,11,24,19,26,50,37,23,13,23,10,35,55,32,23,13,29,,,,,,,,,,,,,, +4501,Netherlands,2009,1,28,21,25,22,13,14,1,21,24,7,8,4,13,12,53,58,42,31,23,41,7,19,31,14,17,16,27,16,62,52,48,19,19,34,20,29,59,36,30,36,36,,,,,,,,,,,,,, +4502,Netherlands,2010,0,23,29,22,20,11,18,1,9,14,13,6,4,11,10,30,44,37,25,26,35,4,28,50,23,10,15,33,9,35,72,40,30,15,28,10,36,50,47,30,29,25,,,,,,,,,,,,,, +4503,Netherlands,2011,2,22,35,19,24,13,13,2,13,14,7,7,4,3,9,32,41,24,23,26,39,9,31,38,16,22,19,28,17,21,71,38,21,20,24,16,26,55,37,30,23,21,,,,,,,,,,,,,, +4504,Netherlands,2012,1,15,31,14,18,9,15,4,7,18,15,4,6,6,8,27,42,25,19,21,31,8,17,31,20,20,13,18,12,24,59,45,27,20,40,16,31,61,26,28,20,35,,,,,,,,,,,,,, +4505,Netherlands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,71,129,82,76,46,76,14,47,90,46,48,34,54 +4506,Netherlands Antilles,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4507,Netherlands Antilles,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4508,Netherlands Antilles,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4509,Netherlands Antilles,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4510,Netherlands Antilles,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4511,Netherlands Antilles,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4512,Netherlands Antilles,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4513,Netherlands Antilles,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4514,Netherlands Antilles,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4515,Netherlands Antilles,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4516,Netherlands Antilles,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4517,Netherlands Antilles,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4518,Netherlands Antilles,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4519,Netherlands Antilles,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4520,Netherlands Antilles,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4521,Netherlands Antilles,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4522,Netherlands Antilles,1996,0,0,0,0,1,1,1,0,0,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4523,Netherlands Antilles,1997,0,0,1,1,0,1,3,0,0,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4524,Netherlands Antilles,1998,0,0,0,0,0,1,2,0,1,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4525,Netherlands Antilles,1999,0,0,1,0,1,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4526,Netherlands Antilles,2000,0,0,1,2,0,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4527,Netherlands Antilles,2001,0,0,1,5,0,0,0,0,0,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4528,Netherlands Antilles,2002,0,1,1,3,2,3,1,0,1,0,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4529,Netherlands Antilles,2003,0,0,2,1,0,0,3,0,0,1,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4530,Netherlands Antilles,2004,1,1,0,4,3,0,1,0,0,,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4531,Netherlands Antilles,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4532,Netherlands Antilles,2006,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4533,Netherlands Antilles,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4534,Netherlands Antilles,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4535,Netherlands Antilles,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4536,New Caledonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4537,New Caledonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4538,New Caledonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4539,New Caledonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4540,New Caledonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4541,New Caledonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4542,New Caledonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4543,New Caledonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4544,New Caledonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4545,New Caledonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4546,New Caledonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4547,New Caledonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4548,New Caledonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4549,New Caledonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4550,New Caledonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4551,New Caledonia,1995,3,2,3,4,2,2,3,2,1,1,3,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4552,New Caledonia,1996,1,3,1,3,5,8,3,0,2,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4553,New Caledonia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4554,New Caledonia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4555,New Caledonia,1999,0,0,6,1,2,1,7,0,0,4,1,0,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4556,New Caledonia,2000,1,1,3,4,2,3,4,1,8,1,1,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4557,New Caledonia,2001,0,1,8,1,5,6,6,1,1,2,1,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4558,New Caledonia,2002,0,2,2,1,1,1,3,0,4,2,2,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4559,New Caledonia,2003,0,1,1,1,1,1,3,0,0,2,2,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4560,New Caledonia,2004,0,2,1,3,2,1,2,0,2,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4561,New Caledonia,2005,0,2,1,0,0,3,0,0,1,2,1,2,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4562,New Caledonia,2006,0,0,3,1,1,,1,0,1,0,0,0,0,2,1,1,1,1,2,2,5,0,0,0,2,1,2,4,0,1,0,0,2,0,0,0,1,0,0,3,1,2,,,,,,,,,,,,,, +4563,New Caledonia,2007,0,1,1,2,1,3,2,0,0,0,1,0,0,1,1,1,1,1,0,4,3,0,1,0,0,0,1,2,0,2,1,0,1,3,3,0,0,0,0,3,2,1,,,,,,,,,,,,,, +4564,New Caledonia,2008,0,1,1,0,2,1,2,0,0,1,0,0,0,1,0,0,1,0,4,3,4,1,0,0,1,1,0,4,0,0,0,1,0,3,1,0,0,0,0,1,1,2,,,,,,,,,,,,,, +4565,New Caledonia,2009,0,0,0,0,1,0,5,0,1,1,3,0,2,2,3,2,0,3,0,4,4,1,1,0,2,1,3,2,2,0,0,1,1,0,1,0,0,0,1,2,2,3,,,,,,,,,,,,,, +4566,New Caledonia,2010,0,1,2,3,1,4,3,0,1,0,1,0,1,3,0,1,1,3,0,1,2,1,0,1,0,1,0,5,1,0,0,0,2,2,2,0,0,0,1,0,1,4,,,,,,,,,,,,,, +4567,New Caledonia,2011,0,0,0,3,1,2,3,0,0,1,1,0,1,1,5,0,0,2,1,1,3,2,1,2,1,0,0,0,0,2,2,2,2,3,4,0,0,0,1,1,0,2,,,,,,,,,,,,,, +4568,New Caledonia,2012,,,2,,3,2,1,,,,,1,1,1,,1,,1,1,2,1,,,,1,,,3,,,,,,,2,,,,,1,3,,,,,,,,,,,,,,, +4569,New Caledonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4570,New Zealand,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4571,New Zealand,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4572,New Zealand,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4573,New Zealand,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4574,New Zealand,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4575,New Zealand,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4576,New Zealand,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4577,New Zealand,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4578,New Zealand,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4579,New Zealand,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4580,New Zealand,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4581,New Zealand,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4582,New Zealand,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4583,New Zealand,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4584,New Zealand,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4585,New Zealand,1995,0,4,3,3,5,7,7,1,2,3,4,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4586,New Zealand,1996,2,4,3,9,10,3,12,2,6,9,3,6,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4587,New Zealand,1997,0,3,6,3,4,4,7,0,4,6,5,2,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4588,New Zealand,1998,1,8,10,8,7,7,4,0,11,6,8,2,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4589,New Zealand,1999,1,10,8,4,3,8,15,1,6,7,2,3,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4590,New Zealand,2000,0,6,5,6,8,10,7,1,6,6,5,0,4,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4591,New Zealand,2001,1,7,2,7,4,2,12,3,9,14,3,1,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4592,New Zealand,2002,0,10,14,5,6,4,10,1,15,8,4,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4593,New Zealand,2003,5,9,10,6,6,8,9,7,18,8,1,10,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4594,New Zealand,2004,3,10,13,10,6,5,16,0,10,15,4,4,1,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4595,New Zealand,2005,4,6,10,6,6,5,10,1,11,9,6,6,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4596,New Zealand,2006,5,14,5,8,4,3,7,1,12,12,12,3,6,4,13,13,6,6,6,8,12,7,7,9,5,5,0,3,2,10,7,6,5,3,5,1,6,20,11,8,7,13,,,,,,,,,,,,,, +4597,New Zealand,2007,0,11,1,7,4,4,8,1,14,7,8,6,6,4,10,6,10,5,5,7,10,9,9,10,9,6,2,10,0,5,8,5,3,6,5,2,5,10,7,6,7,6,,,,,,,,,,,,,, +4598,New Zealand,2008,0,9,4,9,5,10,18,1,8,13,9,3,3,9,8,7,8,4,6,10,8,7,11,8,3,4,1,6,0,4,9,11,6,6,9,0,4,15,9,4,7,8,,,,,,,,,,,,,, +4599,New Zealand,2009,1,8,11,10,5,7,10,0,6,10,5,5,7,5,5,3,10,9,4,5,9,8,9,7,9,4,4,4,3,4,7,8,12,7,5,2,4,16,13,7,4,10,,,,,,,,,,,,,, +4600,New Zealand,2010,0,6,13,4,6,5,11,2,12,7,6,5,3,6,3,5,3,9,3,2,5,3,5,7,4,3,7,9,4,8,19,10,12,7,7,1,8,23,12,9,6,8,,,,,,,,,,,,,, +4601,New Zealand,2011,1,12,5,5,7,7,11,4,8,8,4,5,3,8,3,11,8,5,3,5,8,7,5,7,6,1,7,5,2,10,16,12,3,5,6,3,13,13,13,9,10,6,,,,,,,,,,,,,, +4602,New Zealand,2012,0,7,9,2,4,6,14,3,4,8,2,3,1,5,5,6,7,7,7,6,15,3,11,10,3,3,4,11,1,7,14,19,2,5,3,1,11,23,9,6,3,8,,,,,,,,,,,,,, +4603,New Zealand,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,16,40,23,18,13,29,4,19,32,17,17,14,24 +4604,Nicaragua,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4605,Nicaragua,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4606,Nicaragua,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4607,Nicaragua,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4608,Nicaragua,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4609,Nicaragua,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4610,Nicaragua,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4611,Nicaragua,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4612,Nicaragua,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4613,Nicaragua,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4614,Nicaragua,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4615,Nicaragua,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4616,Nicaragua,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4617,Nicaragua,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4618,Nicaragua,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4619,Nicaragua,1995,23,178,172,175,126,96,92,24,176,215,98,83,64,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4620,Nicaragua,1996,27,231,200,191,120,94,94,33,200,199,137,77,63,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4621,Nicaragua,1997,18,211,210,163,115,90,83,37,212,223,117,77,61,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4622,Nicaragua,1998,24,221,193,155,106,94,110,34,202,215,114,64,61,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4623,Nicaragua,1999,26,217,212,167,125,75,85,27,194,168,108,73,42,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4624,Nicaragua,2000,18,194,174,147,108,64,90,34,188,173,98,76,46,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4625,Nicaragua,2001,24,213,203,139,93,75,95,32,188,173,92,67,52,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4626,Nicaragua,2002,22,168,180,140,101,73,74,26,149,135,91,72,45,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4627,Nicaragua,2003,14,179,210,135,103,68,65,42,174,150,91,71,54,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4628,Nicaragua,2004,24,161,179,105,104,87,72,23,159,154,90,75,44,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4629,Nicaragua,2005,17,163,159,116,106,61,79,23,135,122,103,61,54,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4630,Nicaragua,2006,15,162,151,129,98,90,72,25,168,144,90,65,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4631,Nicaragua,2007,16,172,194,144,130,77,91,27,158,168,100,76,45,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,40,30,10,10,5,0,20,52,20,5,10,5,,,,,,,,,,,,,, +4632,Nicaragua,2008,20,174,190,130,108,90,67,38,165,164,93,54,54,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,20,10,20,10,20,0,10,10,10,10,10,15,,,,,,,,,,,,,, +4633,Nicaragua,2009,,,,,,,,,,,,,,,33,166,168,121,98,79,77,35,122,139,80,60,52,47,33,166,168,121,98,79,77,35,122,139,80,60,52,47,,,,,,,,,,,,,, +4634,Nicaragua,2010,22,157,189,141,115,82,108,27,154,149,92,75,50,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4635,Nicaragua,2011,10,273,235,156,108,61,94,4,61,145,161,108,64,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4636,Nicaragua,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4637,Nicaragua,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,206,171,143,116,52,38,31,203,161,146,121,85,39 +4638,Niger,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4639,Niger,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4640,Niger,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4641,Niger,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4642,Niger,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4643,Niger,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4644,Niger,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4645,Niger,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4646,Niger,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4647,Niger,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4648,Niger,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4649,Niger,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4650,Niger,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4651,Niger,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4652,Niger,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4653,Niger,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4654,Niger,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4655,Niger,1997,4,148,395,215,92,58,25,7,70,112,67,58,14,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4656,Niger,1998,4,218,511,399,234,159,61,14,92,160,126,86,46,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4657,Niger,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4658,Niger,2000,29,270,174,441,252,151,78,31,123,206,168,151,63,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4659,Niger,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4660,Niger,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4661,Niger,2003,41,485,1051,779,512,299,169,30,201,356,279,177,83,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4662,Niger,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4663,Niger,2005,35,557,1204,819,497,350,198,34,214,388,330,223,131,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4664,Niger,2006,25,537,1265,909,487,359,217,37,270,427,306,207,149,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4665,Niger,2007,40,571,1380,958,577,405,249,57,287,412,323,248,157,109,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4666,Niger,2008,35,659,1453,852,562,429,333,57,259,414,307,237,146,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4667,Niger,2009,52,602,1552,1019,654,478,328,36,248,464,339,239,209,127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4668,Niger,2010,44,669,1587,988,615,415,342,39,272,418,347,238,174,135,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4669,Niger,2011,50,709,1673,1025,646,436,347,50,285,449,323,278,189,147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4670,Niger,2012,40,702,1752,1133,747,444,360,48,260,485,302,237,214,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4671,Niger,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,749,1834,1151,677,515,405,47,287,487,353,253,216,151 +4672,Nigeria,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4673,Nigeria,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4674,Nigeria,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4675,Nigeria,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4676,Nigeria,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4677,Nigeria,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4678,Nigeria,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4679,Nigeria,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4680,Nigeria,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4681,Nigeria,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4682,Nigeria,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4683,Nigeria,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4684,Nigeria,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4685,Nigeria,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4686,Nigeria,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4687,Nigeria,1995,450,845,921,937,557,611,515,404,842,795,770,724,654,451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4688,Nigeria,1996,234,2097,2557,1791,853,486,309,411,1954,2175,1253,871,458,215,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4689,Nigeria,1997,116,1518,2095,1177,734,436,338,156,1556,1517,753,458,261,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4690,Nigeria,1998,125,1798,2543,1282,889,451,369,169,1856,1808,881,560,298,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4691,Nigeria,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4692,Nigeria,2000,157,2173,3164,1836,1091,566,463,239,2934,2434,1110,676,344,231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4693,Nigeria,2001,164,2196,3281,2076,1283,654,488,272,2619,2510,1201,715,387,251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4694,Nigeria,2002,163,2274,3719,2283,1352,696,534,242,2633,2884,1368,787,420,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4695,Nigeria,2003,267,3263,5388,3590,2106,1139,719,356,3394,3956,1973,1159,536,327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4696,Nigeria,2004,408,3679,6252,4262,2614,1310,1267,469,3768,4463,2220,1495,981,567,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4697,Nigeria,2005,325,3824,6758,4544,2863,1464,950,482,3996,4884,2448,1350,745,415,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4698,Nigeria,2006,247,4488,8145,5517,3330,1431,897,385,4029,5430,2516,1894,1049,545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4699,Nigeria,2007,503,4251,8541,5776,3767,1853,1341,685,4522,5944,3088,1926,1194,625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4700,Nigeria,2008,579,4518,8910,6210,3821,1987,1267,745,4431,6391,3351,2057,1099,660,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4701,Nigeria,2009,711,4342,8649,5975,3766,2057,1269,804,4199,6100,3473,1872,1023,623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4702,Nigeria,2010,521,4457,9186,6218,3804,1974,1363,595,4182,6117,3431,1846,1040,682,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4703,Nigeria,2011,529,4549,9520,6550,4230,2248,1443,578,4198,6168,3574,2014,1112,724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4704,Nigeria,2012,538,5026,10382,7684,4589,2449,1686,649,4652,6762,4084,2243,1290,867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4705,Nigeria,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3008,7843,16463,13958,8853,5140,4256,2768,7278,11994,8295,5172,2939,2434 +4706,Niue,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4707,Niue,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4708,Niue,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4709,Niue,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4710,Niue,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4711,Niue,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4712,Niue,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4713,Niue,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4714,Niue,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4715,Niue,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4716,Niue,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4717,Niue,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4718,Niue,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4719,Niue,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4720,Niue,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4721,Niue,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4722,Niue,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4723,Niue,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4724,Niue,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4725,Niue,1999,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4726,Niue,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4727,Niue,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4728,Niue,2002,,,,,,,,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4729,Niue,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4730,Niue,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4731,Niue,2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4732,Niue,2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4733,Niue,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4734,Niue,2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4735,Niue,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4736,Niue,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4737,Niue,2011,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4738,Niue,2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4739,Niue,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4740,Northern Mariana Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4741,Northern Mariana Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4742,Northern Mariana Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4743,Northern Mariana Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4744,Northern Mariana Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4745,Northern Mariana Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4746,Northern Mariana Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4747,Northern Mariana Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4748,Northern Mariana Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4749,Northern Mariana Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4750,Northern Mariana Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4751,Northern Mariana Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4752,Northern Mariana Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4753,Northern Mariana Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4754,Northern Mariana Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4755,Northern Mariana Islands,1995,1,1,3,5,10,3,3,0,0,2,6,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4756,Northern Mariana Islands,1996,0,2,8,5,3,1,1,1,1,1,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4757,Northern Mariana Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4758,Northern Mariana Islands,1998,0,0,6,3,5,2,2,0,3,4,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4759,Northern Mariana Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4760,Northern Mariana Islands,2000,1,4,8,9,9,3,2,0,10,17,7,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4761,Northern Mariana Islands,2001,0,1,3,0,4,2,0,0,5,4,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4762,Northern Mariana Islands,2002,1,2,3,7,10,5,2,0,9,10,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4763,Northern Mariana Islands,2003,0,2,2,2,1,0,2,1,3,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4764,Northern Mariana Islands,2004,0,0,2,2,4,1,0,0,1,2,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4765,Northern Mariana Islands,2005,0,0,1,3,4,1,2,0,0,0,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4766,Northern Mariana Islands,2006,0,0,2,3,1,0,0,0,2,2,3,1,0,1,1,0,1,7,5,2,1,0,6,4,1,1,3,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,,,,,,,,,,,,,, +4767,Northern Mariana Islands,2007,0,0,0,3,4,0,2,0,0,2,1,1,1,2,1,1,3,8,0,4,0,0,1,3,4,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4768,Northern Mariana Islands,2008,0,1,0,1,5,0,3,0,0,0,2,0,1,0,0,0,0,5,2,1,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +4769,Northern Mariana Islands,2009,0,0,1,4,4,3,1,0,1,0,0,1,1,0,0,0,1,1,2,5,0,0,2,1,1,3,0,0,0,0,0,1,1,0,0,0,0,0,0,4,0,0,,,,,,,,,,,,,, +4770,Northern Mariana Islands,2010,0,2,0,0,3,3,0,0,2,0,1,3,2,1,0,1,1,1,2,2,2,0,0,2,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4771,Northern Mariana Islands,2011,0,0,0,0,1,5,3,0,0,1,0,2,3,0,0,0,0,2,3,6,0,0,1,0,1,2,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,, +4772,Northern Mariana Islands,2012,0,0,0,3,1,1,0,0,0,3,1,0,0,0,0,1,1,6,3,2,2,0,0,4,3,1,0,1,0,0,0,0,1,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4773,Northern Mariana Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,1,3,5,2,0,1,4,2,6,4,1 +4774,Norway,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4775,Norway,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4776,Norway,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4777,Norway,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4778,Norway,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4779,Norway,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4780,Norway,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4781,Norway,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4782,Norway,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4783,Norway,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4784,Norway,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4785,Norway,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4786,Norway,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4787,Norway,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4788,Norway,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4789,Norway,1995,0,4,8,6,3,5,12,0,4,7,2,0,3,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4790,Norway,1996,3,8,7,14,6,2,24,1,4,10,5,2,0,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4791,Norway,1997,3,6,10,7,6,2,27,0,3,4,8,4,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4792,Norway,1998,0,1,4,3,1,2,17,0,8,2,3,1,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4793,Norway,1999,0,2,5,3,2,1,1,0,3,2,2,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4794,Norway,2000,0,1,9,3,6,2,4,1,3,1,,,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4795,Norway,2001,0,6,8,8,4,1,8,1,6,9,1,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4796,Norway,2002,0,4,4,4,2,0,4,0,3,5,1,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4797,Norway,2003,0,3,3,4,4,2,2,0,4,9,4,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4798,Norway,2004,1,5,6,6,1,1,2,0,3,8,4,2,1,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4799,Norway,2005,0,9,4,6,4,4,3,0,4,7,2,1,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4800,Norway,2006,0,5,10,5,3,3,1,1,5,5,2,2,1,3,6,11,10,9,7,6,14,8,12,24,8,4,5,7,2,12,13,9,4,4,2,5,13,12,14,5,0,4,,,,,,,,,,,,,, +4801,Norway,2007,,4,12,2,3,1,2,1,4,2,5,1,,1,5,14,17,16,3,3,8,4,13,20,5,5,2,13,2,12,11,14,6,0,8,7,11,19,10,4,2,10,,,,,,,,,,,,,, +4802,Norway,2008,1,10,8,7,2,4,3,0,1,6,4,0,1,6,1,14,13,3,4,2,8,6,10,12,12,3,1,2,7,5,22,5,4,3,6,5,5,23,8,3,2,10,,,,,,,,,,,,,, +4803,Norway,2009,0,6,14,5,1,2,0,1,2,5,4,1,1,3,6,24,25,9,5,4,6,4,10,20,8,1,3,4,1,11,21,12,1,3,2,1,16,13,12,4,1,3,,,,,,,,,,,,,, +4804,Norway,2010,0,9,9,7,1,4,2,0,5,7,3,2,0,1,4,15,20,10,3,2,7,1,8,19,10,2,6,3,2,11,27,10,4,4,1,5,8,22,12,5,4,1,,,,,,,,,,,,,, +4805,Norway,2011,0,3,7,3,3,1,1,0,14,7,0,1,0,1,5,23,20,10,7,4,10,4,12,25,4,3,1,4,1,21,26,7,8,2,3,6,14,26,11,5,4,3,,,,,,,,,,,,,, +4806,Norway,2012,1,8,15,5,8,5,2,0,2,8,1,4,1,1,5,25,15,10,8,5,7,5,12,22,11,4,4,7,3,10,23,11,3,1,3,4,14,25,17,6,3,5,,,,,,,,,,,,,, +4807,Norway,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,54,57,30,13,14,11,10,46,60,26,10,8,16 +4808,Oman,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4809,Oman,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4810,Oman,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4811,Oman,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4812,Oman,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4813,Oman,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4814,Oman,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4815,Oman,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4816,Oman,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4817,Oman,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4818,Oman,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4819,Oman,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4820,Oman,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4821,Oman,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4822,Oman,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4823,Oman,1995,1,7,12,7,7,10,11,2,18,13,5,5,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4824,Oman,1996,0,15,14,8,11,8,11,3,18,4,3,5,1,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4825,Oman,1997,0,18,16,14,10,11,10,2,14,7,4,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4826,Oman,1998,0,18,9,8,14,9,12,3,14,6,6,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4827,Oman,1999,2,10,11,23,15,7,10,3,16,4,6,1,4,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4828,Oman,2000,1,8,9,11,12,9,11,2,17,5,7,5,11,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4829,Oman,2001,1,10,8,12,6,8,8,4,17,8,5,9,5,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4830,Oman,2002,7,22,18,20,16,26,20,16,41,15,12,13,7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4831,Oman,2003,5,28,32,31,29,13,15,10,26,18,12,13,11,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4832,Oman,2004,1,15,12,23,30,12,14,0,0,9,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4833,Oman,2005,1,21,11,24,15,19,5,2,13,5,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4834,Oman,2006,6,18,19,18,18,12,2,2,21,22,7,13,12,14,10,17,23,14,8,6,9,11,19,7,3,8,8,7,7,11,16,9,4,4,5,6,17,8,4,8,5,4,,,,,,,,,,,,,, +4835,Oman,2007,0,16,25,25,20,13,8,3,22,13,11,10,7,14,6,3,4,1,1,2,5,1,4,2,0,2,1,1,3,9,8,10,6,2,4,7,17,8,8,5,10,5,,,,,,,,,,,,,, +4836,Oman,2008,0,18,28,28,28,14,10,1,20,10,4,4,5,1,4,5,7,9,1,3,4,0,6,2,2,3,0,2,2,14,17,10,5,6,1,6,26,13,7,8,12,2,,,,,,,,,,,,,, +4837,Oman,2009,0,28,35,23,13,10,11,2,11,14,4,6,1,6,2,6,6,4,2,6,4,0,2,0,0,0,2,2,4,11,14,11,3,8,7,7,12,26,6,11,3,4,,,,,,,,,,,,,, +4838,Oman,2010,2,12,27,15,16,8,10,3,18,22,6,4,4,5,2,1,5,2,2,3,5,2,3,1,0,1,0,1,1,8,16,7,8,8,6,4,18,21,9,8,4,6,,,,,,,,,,,,,, +4839,Oman,2011,1,17,25,12,23,10,11,5,20,21,9,13,7,6,0,3,7,3,1,1,4,0,3,4,2,0,1,3,5,11,16,9,4,6,4,7,17,15,9,12,6,1,,,,,,,,,,,,,, +4840,Oman,2012,0,18,33,23,12,8,19,0,20,37,10,10,9,6,3,6,5,3,2,2,1,2,3,5,2,2,1,2,4,12,18,11,14,5,9,5,9,18,7,7,6,6,,,,,,,,,,,,,, +4841,Oman,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,32,49,44,19,20,21,10,41,42,14,11,12,9 +4842,Pakistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4843,Pakistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4844,Pakistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4845,Pakistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4846,Pakistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4847,Pakistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4848,Pakistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4849,Pakistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4850,Pakistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4851,Pakistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4852,Pakistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4853,Pakistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4854,Pakistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4855,Pakistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4856,Pakistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4857,Pakistan,1995,29,274,230,178,140,124,95,85,375,381,267,178,143,79,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4858,Pakistan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4859,Pakistan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4860,Pakistan,1998,59,633,449,328,335,194,137,159,735,507,260,209,90,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4861,Pakistan,1999,49,229,178,65,211,162,113,33,259,373,97,146,243,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4862,Pakistan,2000,55,498,387,256,232,153,130,130,591,416,274,163,103,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4863,Pakistan,2001,139,1191,891,673,664,496,306,241,1007,915,650,421,252,142,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4864,Pakistan,2002,225,1964,1734,1270,1113,864,554,512,2401,1917,1283,809,539,303,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4865,Pakistan,2003,284,2605,2346,1851,1652,1288,870,622,3007,2471,1669,1280,845,503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4866,Pakistan,2004,363,3812,3309,2676,2329,2057,1581,950,4281,3656,2452,1794,1350,837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4867,Pakistan,2005,621,5278,4759,4263,3834,3332,2453,1447,6463,5611,3987,2866,2060,1338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4868,Pakistan,2006,820,7290,6896,5594,5427,4392,3439,1941,8410,7030,5404,3913,2802,1950,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4869,Pakistan,2007,1017,9598,8790,7717,7237,6258,5156,2443,11522,9162,7352,5496,4065,2934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4870,Pakistan,2008,1213,10521,9889,8428,8284,6890,5959,2696,12838,10489,8146,6387,4750,3547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4871,Pakistan,2009,1052,11090,10035,8472,8366,7053,5981,2595,13734,10512,8174,6332,4786,3492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4872,Pakistan,2010,1548,11860,10462,8320,7969,6934,6066,3212,14481,10513,7749,6410,4879,4338,5631,0,0,0,0,0,0,6562,0,0,0,0,0,0,3293,0,0,0,0,0,0,4228,0,0,0,0,0,0,,,,,,,,,,,,,, +4873,Pakistan,2011,1216,12143,10515,8435,8608,7320,6323,2679,14652,10684,7880,6590,4977,3711,7094,,,,,,,7048,,,,,,,3346,,,,,,,4350,,,,,,,,,,,,,,,,,,,, +4874,Pakistan,2012,1317,12605,10838,8848,9026,7753,6492,2630,15445,10902,8263,6876,5494,4056,6391,,,,,,,7493,,,,,,,3673,,,,,,,4655,,,,,,,,,,,,,,,,,,,, +4875,Pakistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12467,,,,,,,15646,,,,,, +4876,Palau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4877,Palau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4878,Palau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4879,Palau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4880,Palau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4881,Palau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4882,Palau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4883,Palau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4884,Palau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4885,Palau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4886,Palau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4887,Palau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4888,Palau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4889,Palau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4890,Palau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4891,Palau,1995,0,2,3,0,2,1,0,0,0,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4892,Palau,1996,0,1,0,0,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4893,Palau,1997,0,0,1,2,0,2,0,0,0,0,2,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4894,Palau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4895,Palau,1999,0,2,2,5,1,2,1,0,1,3,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4896,Palau,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4897,Palau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4898,Palau,2002,1,0,1,1,2,2,1,0,0,3,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4899,Palau,2003,0,0,1,1,1,1,0,1,0,0,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4900,Palau,2004,,,,,1,2,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4901,Palau,2005,,,2,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4902,Palau,2006,1,0,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0,0,,,,,,,,,,,,,, +4903,Palau,2007,0,0,1,0,2,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4904,Palau,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4905,Palau,2009,0,0,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,1,0,2,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4906,Palau,2010,0,1,2,1,1,1,1,1,0,1,1,0,0,0,0,1,2,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4907,Palau,2011,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +4908,Palau,2012,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +4909,Palau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,2,1,0,2,0,0,0,0,0,0,1,2 +4910,Panama,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4911,Panama,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4912,Panama,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4913,Panama,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4914,Panama,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4915,Panama,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4916,Panama,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4917,Panama,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4918,Panama,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4919,Panama,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4920,Panama,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4921,Panama,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4922,Panama,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4923,Panama,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4924,Panama,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4925,Panama,1995,86,155,193,112,126,42,83,72,120,111,75,57,16,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4926,Panama,1996,52,68,132,87,65,44,45,58,62,76,59,36,35,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4927,Panama,1997,41,79,173,117,75,70,39,23,45,86,46,23,26,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4928,Panama,1998,2,14,14,10,4,3,5,1,9,13,7,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4929,Panama,1999,38,107,209,134,106,81,72,53,83,100,62,52,43,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4930,Panama,2000,3,44,78,61,37,27,26,6,43,34,35,19,12,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4931,Panama,2001,7,58,109,89,73,50,39,9,45,70,46,27,12,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4932,Panama,2002,7,89,108,101,76,68,68,7,50,54,59,29,18,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4933,Panama,2003,10,91,122,81,74,61,67,14,51,77,50,30,24,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4934,Panama,2004,16,89,123,118,91,65,50,9,98,66,59,33,34,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4935,Panama,2005,5,76,129,129,84,57,49,11,73,81,62,33,30,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4936,Panama,2006,7,100,134,107,88,48,57,14,64,83,52,45,26,33,75,59,96,96,57,41,34,75,47,38,37,22,18,23,16,20,50,35,21,11,12,12,19,17,15,10,5,11,,,,,,,,,,,,,, +4937,Panama,2007,7,106,139,116,81,50,61,7,56,74,59,33,21,23,49,39,51,57,48,30,25,46,22,27,31,14,20,11,11,24,40,33,13,13,18,11,11,20,18,4,8,14,,,,,,,,,,,,,, +4938,Panama,2008,9,102,123,99,114,63,65,10,59,76,58,48,30,27,42,35,45,48,39,26,33,36,15,26,14,11,18,7,18,19,37,40,23,9,20,15,18,17,16,7,7,16,,,,,,,,,,,,,, +4939,Panama,2009,10,58,101,110,69,57,63,6,59,68,68,43,24,32,56,31,52,49,34,21,25,55,18,28,26,10,12,19,14,34,43,33,16,24,24,19,19,21,15,11,6,8,,,,,,,,,,,,,, +4940,Panama,2010,6,70,123,81,65,61,51,6,55,55,46,43,24,31,65,43,48,41,32,32,37,50,17,21,15,24,6,14,22,29,51,54,18,19,15,25,15,18,14,8,6,8,,,,,,,,,,,,,, +4941,Panama,2011,10,100,108,94,105,62,48,10,57,65,63,46,43,50,48,28,54,62,33,28,27,46,20,25,22,9,8,30,13,18,33,39,19,19,13,13,19,14,5,9,7,13,,,,,,,,,,,,,, +4942,Panama,2012,19,88,103,104,67,51,61,9,62,57,45,46,22,44,72,39,57,32,35,28,23,35,20,23,27,16,13,14,21,35,50,29,17,14,15,8,11,13,12,7,6,10,,,,,,,,,,,,,, +4943,Panama,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,142,217,161,150,74,114,59,89,103,80,64,47,70 +4944,Papua New Guinea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4945,Papua New Guinea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4946,Papua New Guinea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4947,Papua New Guinea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4948,Papua New Guinea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4949,Papua New Guinea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4950,Papua New Guinea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4951,Papua New Guinea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4952,Papua New Guinea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4953,Papua New Guinea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4954,Papua New Guinea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4955,Papua New Guinea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4956,Papua New Guinea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4957,Papua New Guinea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4958,Papua New Guinea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4959,Papua New Guinea,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4960,Papua New Guinea,1996,11,31,25,18,4,3,2,11,41,30,11,10,6,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4961,Papua New Guinea,1997,2,9,8,5,2,2,0,1,11,5,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4962,Papua New Guinea,1998,9,69,57,30,25,14,4,11,94,51,27,21,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4963,Papua New Guinea,1999,1,33,25,9,8,3,0,0,32,20,13,6,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4964,Papua New Guinea,2000,8,87,70,30,21,12,5,6,77,45,21,15,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4965,Papua New Guinea,2001,4,101,72,29,26,9,4,7,91,64,32,17,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4966,Papua New Guinea,2002,18,139,133,74,62,37,6,22,160,149,60,47,18,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4967,Papua New Guinea,2003,17,190,153,96,65,32,7,28,193,171,59,29,20,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4968,Papua New Guinea,2004,28,153,138,90,61,43,6,30,164,161,66,38,18,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4969,Papua New Guinea,2005,28,183,205,108,94,48,12,38,200,204,124,65,35,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4970,Papua New Guinea,2006,32,221,220,122,84,48,3,41,226,215,142,75,24,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4971,Papua New Guinea,2007,16,178,171,112,67,50,6,32,148,153,84,36,15,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4972,Papua New Guinea,2008,65,250,207,160,95,58,12,71,261,230,113,75,48,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4973,Papua New Guinea,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4974,Papua New Guinea,2010,37,279,260,196,135,87,27,64,313,292,191,97,52,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4975,Papua New Guinea,2011,50,278,265,152,122,71,18,53,302,272,146,97,55,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4976,Papua New Guinea,2012,54,415,387,250,182,121,37,55,398,395,208,156,95,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4977,Papua New Guinea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4978,Paraguay,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4979,Paraguay,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4980,Paraguay,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4981,Paraguay,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4982,Paraguay,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4983,Paraguay,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4984,Paraguay,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4985,Paraguay,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4986,Paraguay,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4987,Paraguay,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4988,Paraguay,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4989,Paraguay,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4990,Paraguay,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4991,Paraguay,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4992,Paraguay,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4993,Paraguay,1995,18,64,71,96,74,57,61,13,65,49,46,35,34,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4994,Paraguay,1996,17,84,100,79,91,63,49,16,80,91,50,50,48,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4995,Paraguay,1997,25,100,82,75,76,58,74,27,91,72,58,48,50,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4996,Paraguay,1998,14,100,101,96,82,66,85,17,87,55,37,36,34,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4997,Paraguay,1999,19,113,157,111,114,69,67,22,84,72,56,43,48,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4998,Paraguay,2000,16,112,103,105,86,80,71,12,69,86,41,41,30,46,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4999,Paraguay,2001,18,114,106,85,89,74,73,22,91,71,46,51,31,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5000,Paraguay,2002,20,119,127,112,105,78,78,12,88,83,50,36,55,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5001,Paraguay,2003,11,163,174,109,123,81,91,28,87,71,77,50,40,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5002,Paraguay,2004,18,160,132,120,107,103,121,21,106,87,69,63,50,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5003,Paraguay,2005,23,168,185,136,117,87,99,31,89,98,69,52,29,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5004,Paraguay,2006,20,188,221,143,150,124,116,16,130,79,73,55,63,66,131,40,46,35,45,51,59,149,36,30,25,33,20,41,21,13,18,24,7,14,15,14,11,11,7,9,1,9,,,,,,,,,,,,,, +5005,Paraguay,2007,14,171,221,152,135,94,100,15,100,98,46,46,34,47,153,36,47,43,49,41,51,126,20,27,23,16,27,24,16,28,19,20,24,10,22,16,12,13,13,6,4,11,,,,,,,,,,,,,, +5006,Paraguay,2008,11,238,227,138,138,91,90,10,92,87,60,61,42,56,77,44,37,45,45,42,66,63,33,28,12,14,13,33,15,22,29,31,22,18,22,20,12,15,6,11,5,12,,,,,,,,,,,,,, +5007,Paraguay,2009,15,203,263,173,155,120,102,15,121,101,53,62,41,57,74,20,37,29,37,23,27,87,19,14,11,14,10,23,18,32,34,28,28,13,30,14,21,23,13,13,7,9,,,,,,,,,,,,,, +5008,Paraguay,2010,18,163,244,129,143,103,99,18,106,99,39,50,46,45,80,28,28,32,29,36,55,73,23,24,8,27,13,33,14,23,41,26,22,22,25,16,11,20,12,10,9,14,,,,,,,,,,,,,, +5009,Paraguay,2011,9,182,238,135,151,124,103,14,110,103,55,39,36,62,114,26,39,36,31,38,33,68,30,19,17,24,14,17,16,26,39,35,18,19,13,13,17,21,15,2,7,8,,,,,,,,,,,,,, +5010,Paraguay,2012,4,180,230,158,143,116,129,16,95,98,60,55,38,60,108,27,34,30,31,32,36,83,23,27,7,25,11,17,15,20,29,23,23,13,21,10,15,20,10,6,9,7,,,,,,,,,,,,,, +5011,Paraguay,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,99,266,380,226,237,168,184,84,152,141,91,85,52,78 +5012,Peru,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5013,Peru,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5014,Peru,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5015,Peru,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5016,Peru,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5017,Peru,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5018,Peru,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5019,Peru,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5020,Peru,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5021,Peru,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5022,Peru,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5023,Peru,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5024,Peru,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5025,Peru,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5026,Peru,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5027,Peru,1995,147,1311,849,454,322,200,216,149,1005,660,373,259,162,152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5028,Peru,1996,151,1351,789,420,261,190,167,169,896,561,290,171,132,144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5029,Peru,1997,745,6913,3853,1971,1174,842,748,864,4560,2784,1224,734,590,496,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5030,Peru,1998,704,6271,3987,2095,1337,831,889,862,4560,2894,1431,686,537,623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5031,Peru,1999,712,4861,3007,1586,852,624,714,700,4783,2958,1560,838,613,703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5032,Peru,2000,552,5290,2875,1546,1041,801,796,633,3686,2472,1156,609,499,624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5033,Peru,2001,11,5591,2887,1550,979,843,696,11,4015,2382,1117,626,480,497,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5034,Peru,2002,65,983,622,298,194,164,138,62,688,496,251,129,96,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5035,Peru,2003,101,758,506,355,206,139,165,107,659,380,228,138,106,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5036,Peru,2004,385,3860,2085,1357,894,747,675,410,3258,1935,1094,678,440,471,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5037,Peru,2005,371,3802,2670,1513,1075,641,708,375,2674,2111,1046,699,333,472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5038,Peru,2006,400,4071,2470,1494,1106,884,869,435,2713,1852,1082,762,557,556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5039,Peru,2007,395,3436,2239,1585,1152,654,702,335,2684,1603,1127,813,402,669,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5040,Peru,2008,84,3406,2233,1564,1121,608,921,52,2644,1599,1112,791,373,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5041,Peru,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5042,Peru,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5043,Peru,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5044,Peru,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5045,Peru,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,960,5129,3521,2319,1655,1443,1738,854,2945,2219,1387,1372,860,1102 +5046,Philippines,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5047,Philippines,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5048,Philippines,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5049,Philippines,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5050,Philippines,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5051,Philippines,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5052,Philippines,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5053,Philippines,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5054,Philippines,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5055,Philippines,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5056,Philippines,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5057,Philippines,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5058,Philippines,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5059,Philippines,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5060,Philippines,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5061,Philippines,1995,2,43,56,61,46,47,26,1,20,32,26,20,19,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5062,Philippines,1996,1,26,47,58,50,28,28,1,11,20,19,15,5,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5063,Philippines,1997,5,136,273,303,262,238,129,6,80,111,131,110,98,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5064,Philippines,1998,2,157,292,356,256,206,81,4,76,109,119,106,69,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5065,Philippines,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5066,Philippines,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5067,Philippines,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5068,Philippines,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5069,Philippines,2003,356,6360,9302,11458,10713,6445,3648,300,3218,4551,4761,4000,2858,2018,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5070,Philippines,2004,312,6792,10328,12229,11413,7526,4289,291,3507,5090,5008,4327,3210,2183,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5071,Philippines,2005,482,7358,11275,13253,12531,7646,4279,374,3710,5268,5565,4603,3274,2029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5072,Philippines,2006,419,7878,11697,13478,12733,8074,4640,379,4337,5746,5630,5007,3485,2237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5073,Philippines,2007,466,8524,11781,13810,12846,8481,4862,380,4389,5594,5291,4612,3313,2217,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5074,Philippines,2008,369,8735,11741,13529,12808,8249,4348,341,4529,5452,5123,4527,3086,2188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5075,Philippines,2009,487,9348,12430,13712,13111,8585,4617,412,4895,5724,5516,4628,3203,2138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5076,Philippines,2010,511,9320,12224,13716,13651,8923,4742,454,4825,5489,5301,4643,3329,2070,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5077,Philippines,2011,573,9725,12804,14474,14002,9568,4845,448,5155,5848,5521,4880,3501,2236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5078,Philippines,2012,583,9754,12576,14140,13996,9676,5097,466,5104,5954,5584,5068,3605,2380,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5079,Philippines,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1207,10305,12591,14203,14282,9871,5561,858,5466,5798,5555,5127,3835,2562 +5080,Poland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5081,Poland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5082,Poland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5083,Poland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5084,Poland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5085,Poland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5086,Poland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5087,Poland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5088,Poland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5089,Poland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5090,Poland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5091,Poland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5092,Poland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5093,Poland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5094,Poland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5095,Poland,1995,3,122,295,795,565,369,377,4,129,163,225,111,107,414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5096,Poland,1996,10,248,545,1365,1128,687,724,9,180,324,415,202,159,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5097,Poland,1997,3,104,278,781,594,374,359,7,91,155,205,96,94,345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5098,Poland,1998,4,99,266,752,647,311,367,5,102,161,219,127,81,361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5099,Poland,1999,0,84,219,681,654,305,306,10,95,113,178,129,81,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5100,Poland,2000,1,99,303,812,782,361,434,1,99,158,211,170,82,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5101,Poland,2001,5,78,242,603,662,275,322,4,99,148,170,124,63,360,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5102,Poland,2002,4,100,206,515,687,264,309,7,90,135,157,148,70,368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5103,Poland,2003,2,93,234,436,653,305,349,3,91,108,152,132,65,358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5104,Poland,2004,1,85,225,425,664,243,292,2,92,136,126,118,79,285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5105,Poland,2005,3,109,199,389,639,292,310,3,95,142,112,151,63,316,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5106,Poland,2006,1,92,215,390,649,357,285,1,83,142,112,118,72,318,14,122,210,387,710,514,655,10,115,200,197,283,185,500,23,27,36,42,74,58,93,20,22,32,44,43,52,124,,,,,,,,,,,,,, +5107,Poland,2007,2,85,213,395,677,344,285,4,65,149,120,132,79,277,13,127,238,344,759,548,635,14,122,211,219,250,191,479,21,24,27,50,72,48,74,17,10,25,35,39,53,97,,,,,,,,,,,,,, +5108,Poland,2008,6,66,175,397,653,355,239,3,65,106,112,132,77,264,19,104,240,331,620,575,604,13,78,168,155,235,228,465,14,19,40,29,63,59,86,21,20,31,25,40,46,83,,,,,,,,,,,,,, +5109,Poland,2009,2,84,207,340,594,410,256,5,60,129,86,136,76,273,16,103,195,348,682,585,668,13,102,181,181,261,228,484,25,21,32,50,54,57,64,38,11,22,23,37,46,83,,,,,,,,,,,,,, +5110,Poland,2010,3,70,205,310,574,393,237,2,59,118,82,104,82,245,8,81,212,312,571,608,574,9,104,165,171,163,222,425,17,11,29,33,59,65,73,22,15,16,22,36,40,63,,,,,,,,,,,,,, +5111,Poland,2011,5,69,187,314,560,439,275,1,67,96,90,130,99,255,27,111,230,324,653,728,731,27,99,208,167,245,288,506,29,20,25,32,57,73,84,22,16,24,27,21,46,108,,,,,,,,,,,,,, +5112,Poland,2012,1,82,183,306,471,438,267,1,54,96,106,102,100,226,20,121,200,301,554,632,586,29,102,128,140,211,233,472,22,20,23,27,36,64,73,21,17,12,28,25,42,93,,,,,,,,,,,,,, +5113,Poland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,182,441,669,1119,1297,1061,65,145,246,284,333,372,778 +5114,Portugal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5115,Portugal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5116,Portugal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5117,Portugal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5118,Portugal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5119,Portugal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5120,Portugal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5121,Portugal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5122,Portugal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5123,Portugal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5124,Portugal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5125,Portugal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5126,Portugal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5127,Portugal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5128,Portugal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5129,Portugal,1995,11,215,363,328,200,173,164,7,139,172,87,33,42,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5130,Portugal,1996,12,176,359,331,192,158,203,6,114,177,76,31,37,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5131,Portugal,1997,8,135,313,303,217,130,84,4,105,141,77,27,23,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5132,Portugal,1998,8,154,367,362,232,141,173,5,132,160,123,44,33,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5133,Portugal,1999,13,113,288,378,232,146,189,9,98,134,86,30,28,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5134,Portugal,2000,8,147,375,349,208,140,140,5,114,154,87,41,25,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5135,Portugal,2001,9,156,329,356,218,109,140,13,110,160,83,36,30,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5136,Portugal,2002,12,156,342,411,272,129,171,5,99,141,87,33,29,73,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5137,Portugal,2003,11,134,297,333,227,99,148,7,99,163,82,39,27,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5138,Portugal,2004,4,97,258,336,216,98,115,3,89,122,65,22,16,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5139,Portugal,2005,5,85,227,284,181,90,93,7,67,109,66,29,11,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5140,Portugal,2006,7,80,211,259,190,94,108,4,56,107,85,33,22,41,28,46,115,134,100,57,129,15,36,87,67,34,32,74,17,32,98,116,69,43,105,23,25,61,48,40,43,92,,,,,,,,,,,,,, +5141,Portugal,2007,4,69,178,268,188,82,112,2,49,95,61,27,12,26,20,51,113,148,104,64,106,17,44,72,67,32,15,55,14,31,88,104,47,41,95,12,19,52,65,41,41,85,,,,,,,,,,,,,, +5142,Portugal,2008,2,51,155,212,179,80,84,3,54,86,55,38,15,39,13,41,89,143,112,76,126,18,47,88,56,40,24,80,12,38,61,75,52,45,93,10,18,40,39,35,33,80,,,,,,,,,,,,,, +5143,Portugal,2009,2,74,141,204,184,81,89,2,56,91,55,26,15,39,17,33,76,115,88,79,115,24,33,75,51,39,24,58,14,24,71,80,56,42,103,14,31,60,58,41,38,83,,,,,,,,,,,,,, +5144,Portugal,2010,4,53,120,221,172,81,81,3,55,64,57,38,12,31,11,28,77,116,96,70,124,11,42,52,46,41,25,53,15,36,68,68,60,59,94,14,19,44,47,51,32,100,,,,,,,,,,,,,, +5145,Portugal,2011,2,60,91,187,188,82,78,4,43,59,59,31,12,28,10,52,55,114,125,89,109,17,27,53,52,30,24,60,13,27,50,68,77,48,84,3,28,29,46,39,51,87,,,,,,,,,,,,,, +5146,Portugal,2012,1,56,103,187,153,79,75,6,52,62,66,28,19,32,23,39,62,101,114,81,111,15,39,67,42,49,16,45,10,26,44,61,67,40,112,15,29,41,48,42,36,98,,,,,,,,,,,,,, +5147,Portugal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,128,186,310,346,211,290,26,84,131,178,122,98,203 +5148,Puerto Rico,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5149,Puerto Rico,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5150,Puerto Rico,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5151,Puerto Rico,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5152,Puerto Rico,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5153,Puerto Rico,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5154,Puerto Rico,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5155,Puerto Rico,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5156,Puerto Rico,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5157,Puerto Rico,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5158,Puerto Rico,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5159,Puerto Rico,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5160,Puerto Rico,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5161,Puerto Rico,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5162,Puerto Rico,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5163,Puerto Rico,1995,4,3,12,20,15,9,19,1,2,6,5,7,4,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5164,Puerto Rico,1996,2,1,20,18,15,10,16,0,5,5,5,6,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5165,Puerto Rico,1997,1,4,13,18,19,13,18,0,3,6,3,5,14,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5166,Puerto Rico,1998,1,9,11,16,12,14,12,1,0,5,6,4,9,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5167,Puerto Rico,1999,0,5,9,22,9,11,20,1,4,5,3,6,5,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5168,Puerto Rico,2000,0,1,4,19,9,10,14,1,4,5,3,7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5169,Puerto Rico,2001,0,5,4,11,12,6,11,0,3,1,4,9,2,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5170,Puerto Rico,2002,2,4,7,12,10,9,7,0,1,5,9,2,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5171,Puerto Rico,2003,0,3,5,8,10,12,9,0,3,2,3,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5172,Puerto Rico,2004,0,2,7,8,7,12,7,0,2,3,4,6,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5173,Puerto Rico,2005,0,4,4,7,9,7,7,0,3,2,5,4,1,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5174,Puerto Rico,2006,1,4,7,6,13,9,7,1,4,3,6,3,2,3,0,0,2,5,1,7,9,5,0,1,1,1,2,2,0,0,0,0,0,3,2,1,0,0,0,0,0,1,,,,,,,,,,,,,, +5175,Puerto Rico,2007,0,6,2,9,8,10,6,0,0,2,4,7,1,1,2,0,3,0,4,1,8,2,0,1,0,1,2,5,0,0,0,3,1,2,0,0,1,0,1,1,0,4,,,,,,,,,,,,,, +5176,Puerto Rico,2008,0,2,4,3,13,11,6,0,1,4,3,2,3,0,0,0,1,4,4,2,6,2,1,2,0,2,1,5,0,0,2,1,2,0,1,0,0,0,0,1,2,4,,,,,,,,,,,,,, +5177,Puerto Rico,2009,0,0,0,7,6,3,2,0,2,3,1,2,1,3,0,0,1,3,2,6,7,1,0,1,2,0,0,2,1,1,1,0,1,0,2,0,0,0,1,0,0,1,,,,,,,,,,,,,, +5178,Puerto Rico,2010,0,0,3,2,4,5,8,0,1,0,2,6,2,4,1,0,2,2,5,2,12,1,1,2,3,2,1,1,0,0,0,0,2,0,1,0,0,1,0,0,0,0,,,,,,,,,,,,,, +5179,Puerto Rico,2011,0,1,4,3,6,6,2,0,1,1,1,0,3,1,0,0,1,0,1,1,4,0,0,3,0,0,0,3,1,0,0,1,2,1,1,0,0,0,1,0,1,0,,,,,,,,,,,,,, +5180,Puerto Rico,2012,0,1,5,1,6,8,10,0,0,3,1,2,3,1,0,0,3,0,1,1,7,1,1,0,0,1,0,2,0,0,1,2,2,1,2,0,0,0,1,0,0,1,,,,,,,,,,,,,, +5181,Puerto Rico,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,2,2,5,13,7,8,0,2,1,3,1,3,3 +5182,Qatar,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5183,Qatar,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5184,Qatar,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5185,Qatar,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5186,Qatar,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5187,Qatar,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5188,Qatar,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5189,Qatar,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5190,Qatar,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5191,Qatar,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5192,Qatar,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5193,Qatar,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5194,Qatar,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5195,Qatar,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5196,Qatar,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5197,Qatar,1995,0,8,12,11,13,4,4,1,2,3,1,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5198,Qatar,1996,0,2,7,16,10,3,1,0,0,1,0,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5199,Qatar,1997,0,8,11,7,3,4,0,0,2,1,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5200,Qatar,1998,0,10,17,8,10,4,2,1,4,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5201,Qatar,1999,0,5,15,12,12,3,2,0,2,3,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5202,Qatar,2000,0,7,19,9,7,2,1,0,0,4,3,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5203,Qatar,2001,1,2,0,3,4,0,3,0,1,0,0,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5204,Qatar,2002,,8,12,9,8,1,3,,6,13,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5205,Qatar,2003,1,10,27,17,16,5,5,0,4,6,0,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5206,Qatar,2004,0,9,13,13,8,10,1,0,6,5,4,2,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5207,Qatar,2005,,19,15,17,19,5,1,,5,10,2,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5208,Qatar,2006,0,22,21,17,22,6,1,0,6,11,7,1,0,1,6,32,69,33,14,5,3,5,14,22,13,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5209,Qatar,2007,0,26,38,19,10,4,0,1,4,6,5,3,0,0,,,,,,,,,,,,,,,0,45,69,23,16,2,3,0,11,21,7,5,1,0,,,,,,,,,,,,,, +5210,Qatar,2008,1,47,67,26,18,10,2,0,4,14,6,2,0,2,2,21,31,16,6,4,3,0,10,13,2,2,0,2,2,56,109,41,5,3,1,4,9,8,8,3,2,3,,,,,,,,,,,,,, +5211,Qatar,2009,0,41,83,32,16,6,2,2,9,18,7,2,1,1,0,26,32,11,7,1,0,0,7,13,3,2,0,0,0,65,111,48,9,5,2,0,12,28,10,4,2,1,,,,,,,,,,,,,, +5212,Qatar,2010,0,59,72,38,22,5,0,0,7,16,2,1,1,0,2,27,32,17,3,0,1,0,8,8,1,1,1,0,0,49,101,33,7,4,3,0,13,27,12,4,3,0,,,,,,,,,,,,,, +5213,Qatar,2011,0,36,64,36,14,10,3,0,9,15,6,1,2,1,1,24,44,13,8,0,2,1,6,14,6,0,0,2,4,39,93,39,14,5,2,0,4,25,8,2,1,0,,,,,,,,,,,,,, +5214,Qatar,2012,0,34,52,45,21,8,0,2,6,9,1,1,0,1,3,30,39,16,5,3,0,1,9,9,5,2,0,0,1,34,82,39,12,3,0,3,4,22,11,3,2,1,,,,,,,,,,,,,, +5215,Qatar,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5216,Republic of Korea,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5217,Republic of Korea,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5218,Republic of Korea,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5219,Republic of Korea,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5220,Republic of Korea,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5221,Republic of Korea,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5222,Republic of Korea,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5223,Republic of Korea,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5224,Republic of Korea,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5225,Republic of Korea,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5226,Republic of Korea,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5227,Republic of Korea,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5228,Republic of Korea,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5229,Republic of Korea,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5230,Republic of Korea,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5231,Republic of Korea,1995,27,1131,1613,1425,1207,1307,1225,46,908,863,431,296,408,867,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5232,Republic of Korea,1996,31,1150,1587,1457,1118,1216,1116,32,950,827,460,297,340,839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5233,Republic of Korea,1997,24,935,1276,1221,982,1069,1099,31,790,685,445,234,359,807,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5234,Republic of Korea,1998,19,977,1334,1329,999,1074,1119,37,765,708,455,238,393,912,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5235,Republic of Korea,1999,27,884,1205,1180,871,962,1136,40,704,653,402,256,306,933,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5236,Republic of Korea,2000,19,821,1085,988,853,731,901,25,546,544,393,220,295,795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5237,Republic of Korea,2001,23,942,1415,1419,1293,1103,1361,45,839,890,489,326,390,1270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5238,Republic of Korea,2002,20,806,1333,1374,1265,1029,1390,19,759,854,456,334,377,1329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5239,Republic of Korea,2003,22,732,1208,1265,1207,992,1472,32,681,793,501,365,381,1325,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5240,Republic of Korea,2004,18,709,1276,1364,1248,1017,1595,26,659,847,496,340,360,1516,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5241,Republic of Korea,2005,22,687,1171,1326,1336,1005,1669,27,590,842,491,370,373,1729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5242,Republic of Korea,2006,19,652,1109,1223,1406,955,1698,27,579,859,507,403,371,1705,119,1746,2130,1656,1783,1460,2342,114,1459,1649,943,806,693,1904,54,354,503,443,397,281,588,51,299,476,370,363,271,594,,,,,,,,,,,,,, +5243,Republic of Korea,2007,16,589,953,1144,1308,906,1684,34,570,807,466,387,347,1716,119,1722,1956,1721,1833,1437,2368,108,1429,1636,1002,853,679,1915,50,309,456,387,473,289,557,47,309,455,365,363,302,643,,,,,,,,,,,,,, +5244,Republic of Korea,2008,21,492,865,1093,1400,958,1848,32,483,722,483,402,360,1889,89,1472,1800,1586,1711,1333,2252,83,1239,1470,940,779,612,1926,52,372,524,495,487,344,680,44,324,489,406,467,317,812,,,,,,,,,,,,,, +5245,Republic of Korea,2009,25,567,803,1059,1417,992,1904,26,506,685,525,441,360,1975,101,1528,1693,1610,1722,1303,2359,102,1183,1524,969,814,634,2092,46,415,602,579,606,441,773,48,390,556,525,508,420,1014,,,,,,,,,,,,,, +5246,Republic of Korea,2010,22,537,705,1049,1496,1029,1997,23,472,686,509,487,368,2216,104,1575,1731,1570,1904,1589,2628,104,1125,1409,1005,904,769,2243,62,511,646,690,687,571,1088,56,439,685,644,780,584,1352,,,,,,,,,,,,,, +5247,Republic of Korea,2011,13,491,712,1019,1414,1145,2132,37,446,688,520,432,421,2244,114,1460,1614,1544,1892,1569,2585,117,1138,1459,942,908,743,2301,59,575,779,686,787,618,1163,62,416,727,721,802,628,1434,,,,,,,,,,,,,, +5248,Republic of Korea,2012,11,500,699,956,1562,1238,2255,22,436,664,444,377,397,2569,83,1289,1587,1628,2025,1790,2931,87,951,1387,946,846,805,2567,60,450,643,601,693,578,1105,37,369,574,632,728,620,1371,,,,,,,,,,,,,, +5249,Republic of Korea,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,106,2003,2836,3250,4664,4116,7470,120,1570,2554,2156,2196,1883,6649 +5250,Republic of Moldova,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5251,Republic of Moldova,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5252,Republic of Moldova,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5253,Republic of Moldova,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5254,Republic of Moldova,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5255,Republic of Moldova,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5256,Republic of Moldova,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5257,Republic of Moldova,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5258,Republic of Moldova,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5259,Republic of Moldova,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5260,Republic of Moldova,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5261,Republic of Moldova,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5262,Republic of Moldova,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5263,Republic of Moldova,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5264,Republic of Moldova,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5265,Republic of Moldova,1995,0,55,115,166,95,65,15,2,42,38,31,19,10,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5266,Republic of Moldova,1996,0,26,33,55,34,9,5,2,10,14,18,4,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5267,Republic of Moldova,1997,0,51,65,86,47,35,13,0,24,32,16,14,6,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5268,Republic of Moldova,1998,2,72,67,116,56,36,16,2,34,20,34,10,5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5269,Republic of Moldova,1999,1,89,123,144,84,29,14,3,31,32,27,19,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5270,Republic of Moldova,2000,2,52,31,36,13,13,6,1,16,32,45,23,14,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5271,Republic of Moldova,2001,1,152,197,230,158,62,32,6,58,61,46,33,14,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5272,Republic of Moldova,2002,5,159,220,237,181,49,33,11,71,76,41,32,23,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5273,Republic of Moldova,2003,1,152,201,252,206,62,25,1,101,71,64,40,16,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5274,Republic of Moldova,2004,8,210,277,284,267,89,42,11,91,97,57,53,28,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5275,Republic of Moldova,2005,2,211,337,345,313,106,31,3,97,92,57,61,23,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5276,Republic of Moldova,2006,2,175,302,349,312,106,32,7,91,108,72,67,25,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5277,Republic of Moldova,2007,0,181,281,343,314,107,35,2,97,85,57,58,25,25,15,222,286,315,331,154,86,13,169,140,113,93,67,39,83,55,45,45,31,24,8,63,38,33,26,24,26,12,,,,,,,,,,,,,, +5278,Republic of Moldova,2008,1,167,271,314,317,105,32,4,85,81,57,52,22,25,9,196,330,268,296,145,72,9,174,163,97,95,49,39,85,43,33,40,31,26,7,52,31,30,31,33,25,9,,,,,,,,,,,,,, +5279,Republic of Moldova,2009,3,155,220,255,256,91,30,2,69,85,61,55,21,15,13,205,298,263,340,169,85,19,159,143,100,111,73,37,68,40,45,42,37,16,12,56,36,31,30,33,13,12,,,,,,,,,,,,,, +5280,Republic of Moldova,2010,0,119,243,244,248,113,21,6,47,90,46,47,23,20,10,194,344,320,323,179,66,15,153,163,106,101,57,42,58,42,32,25,33,19,9,48,30,34,24,21,17,13,,,,,,,,,,,,,, +5281,Republic of Moldova,2011,2,94,257,250,267,107,21,3,66,79,51,41,20,14,16,187,340,283,348,207,66,19,144,201,115,97,70,47,67,29,41,49,28,26,10,52,26,22,25,19,17,13,,,,,,,,,,,,,, +5282,Republic of Moldova,2012,0,99,234,256,284,131,31,3,58,95,48,56,26,25,4,159,295,311,316,234,73,13,122,181,126,109,77,42,63,35,36,29,32,15,16,62,23,24,19,14,15,13,,,,,,,,,,,,,, +5283,Republic of Moldova,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,250,679,773,787,528,157,63,194,310,234,182,166,91 +5284,Romania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5285,Romania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5286,Romania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5287,Romania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5288,Romania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5289,Romania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5290,Romania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5291,Romania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5292,Romania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5293,Romania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5294,Romania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5295,Romania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5296,Romania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5297,Romania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5298,Romania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5299,Romania,1995,387,1662,2322,3608,2587,1751,784,355,1352,1240,871,479,396,417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5300,Romania,1996,35,851,1640,2606,1901,1236,500,48,749,630,547,302,237,249,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5301,Romania,1997,31,1073,1618,2535,1990,1116,461,53,735,745,545,318,200,245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5302,Romania,1998,21,895,1624,2327,1762,1011,522,43,725,692,448,300,219,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5303,Romania,1999,34,842,1524,2043,1653,918,472,48,732,709,496,318,198,317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5304,Romania,2000,46,832,1508,1799,1684,916,533,53,701,766,484,341,207,321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5305,Romania,2001,60,790,1670,1925,2000,975,685,70,713,825,497,391,228,347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5306,Romania,2002,102,742,1682,1854,1914,854,605,74,669,839,435,370,202,351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5307,Romania,2003,37,750,1565,1695,1953,836,594,58,667,770,470,412,196,404,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5308,Romania,2004,31,718,1582,1798,1999,917,629,59,682,797,546,458,230,432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5309,Romania,2005,36,752,1511,1786,1999,952,638,55,758,780,493,374,219,442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5310,Romania,2006,30,748,1306,1624,1738,847,580,37,669,763,448,334,224,465,237,633,752,762,946,575,591,240,632,604,417,292,209,364,278,489,299,272,285,194,234,231,361,264,203,210,145,200,,,,,,,,,,,,,, +5311,Romania,2007,25,706,1149,1559,1704,889,611,34,665,634,439,332,230,448,230,505,593,737,840,564,577,231,567,518,328,297,171,386,280,450,254,257,253,175,184,205,344,220,182,173,124,183,,,,,,,,,,,,,, +5312,Romania,2008,22,671,1124,1656,1713,977,625,37,557,567,518,320,225,499,197,485,574,645,805,570,510,214,489,480,336,273,161,354,224,468,254,240,229,200,208,222,324,183,177,164,121,156,,,,,,,,,,,,,, +5313,Romania,2009,24,726,969,1592,1599,1016,637,28,575,564,421,290,216,455,153,447,465,613,709,590,499,168,440,398,290,227,168,323,328,415,185,221,242,185,219,252,328,189,174,151,117,165,,,,,,,,,,,,,, +5314,Romania,2010,21,673,873,1343,1310,896,571,40,509,481,407,277,173,442,135,403,438,608,585,517,475,131,434,377,268,198,149,318,256,378,191,259,204,193,178,228,309,167,148,127,113,137,,,,,,,,,,,,,, +5315,Romania,2011,19,624,813,1194,1103,839,542,25,475,514,408,215,197,427,151,368,410,492,436,461,447,117,401,331,283,169,164,286,239,347,203,190,152,170,196,208,240,145,155,102,107,173,,,,,,,,,,,,,, +5316,Romania,2012,14,545,757,1282,1035,823,487,22,428,426,365,186,182,435,99,377,368,452,472,484,503,106,345,338,250,171,143,321,233,347,173,172,137,179,164,239,222,131,124,86,123,142,,,,,,,,,,,,,, +5317,Romania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,355,1143,1372,2035,2175,1998,1298,340,1010,940,827,515,542,973 +5318,Russian Federation,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5319,Russian Federation,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5320,Russian Federation,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5321,Russian Federation,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5322,Russian Federation,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5323,Russian Federation,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5324,Russian Federation,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5325,Russian Federation,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5326,Russian Federation,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5327,Russian Federation,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5328,Russian Federation,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5329,Russian Federation,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5330,Russian Federation,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5331,Russian Federation,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5332,Russian Federation,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5333,Russian Federation,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5334,Russian Federation,1996,0,12,46,69,55,36,17,0,8,6,9,9,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5335,Russian Federation,1997,0,38,100,150,114,77,39,0,20,30,30,20,13,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5336,Russian Federation,1998,0,45,89,161,131,81,34,2,24,24,33,20,15,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5337,Russian Federation,1999,17,1858,4138,5037,3992,1618,859,33,761,1022,989,600,313,507,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5338,Russian Federation,2000,1,295,526,596,402,151,54,1,43,73,74,38,31,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5339,Russian Federation,2001,26,2124,4317,5912,5435,2026,941,37,1019,1315,1374,1040,442,598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5340,Russian Federation,2002,0,2081,4497,6003,5810,2074,1061,0,1120,1496,1492,1100,452,632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5341,Russian Federation,2003,0,2128,4812,5979,5924,2014,1058,0,1156,1753,1537,1281,462,698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5342,Russian Federation,2004,18,2355,5079,6165,6053,2167,1184,45,1399,2051,1695,1415,528,736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5343,Russian Federation,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5344,Russian Federation,2006,18,2445,5774,5923,6342,2440,1120,40,1514,2207,1703,1492,560,757,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5345,Russian Federation,2007,20,2492,6008,5874,6363,2491,1291,40,1444,2418,1684,1454,653,871,231,7272,14334,10846,10714,7884,2797,308,4925,6230,4014,3421,1505,1624,1430,1031,1537,928,828,415,337,1393,713,918,610,574,397,593,,,,,,,,,,,,,, +5346,Russian Federation,2008,12,2495,6475,6005,6300,2687,1147,33,1467,2569,1707,1530,687,835,224,7841,15551,11311,10958,5032,2541,302,4716,6743,4114,3327,1539,1576,1316,841,1455,787,797,468,358,1316,654,960,591,593,420,555,,,,,,,,,,,,,, +5347,Russian Federation,2009,22,2510,6544,5722,5952,2822,1014,33,1464,2602,1739,1390,713,824,192,7371,14965,10885,9969,5180,2241,260,4641,6746,4064,3222,1688,1507,1320,756,1582,860,793,462,314,1284,657,891,549,530,435,512,,,,,,,,,,,,,, +5348,Russian Federation,2010,8,2228,6276,5571,5361,2787,920,28,1247,2554,1719,1182,745,790,229,6571,14047,10430,8885,5056,2035,295,4094,6399,3841,2942,1698,1372,134,158,367,268,286,268,209,137,171,406,231,271,307,300,,,,,,,,,,,,,, +5349,Russian Federation,2011,15,1826,5726,5338,4928,2664,845,36,1139,2394,1643,1166,719,752,260,5545,13832,10353,8372,4780,1773,333,3850,6410,3869,2646,1765,1318,1506,588,1315,933,581,433,236,1395,434,880,507,405,386,424,,,,,,,,,,,,,, +5350,Russian Federation,2012,17,1568,5472,5115,4446,2629,839,31,997,2292,1595,1081,637,748,331,4711,13041,9560,7328,4586,1755,399,3154,6253,3727,2383,1560,1270,1445,593,1465,930,525,363,249,1465,421,870,534,376,388,393,,,,,,,,,,,,,, +5351,Russian Federation,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1626,5827,18096,15635,11218,7255,2677,1672,3740,8705,5501,3630,2589,2256 +5352,Rwanda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5353,Rwanda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5354,Rwanda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5355,Rwanda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5356,Rwanda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5357,Rwanda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5358,Rwanda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5359,Rwanda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5360,Rwanda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5361,Rwanda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5362,Rwanda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5363,Rwanda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5364,Rwanda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5365,Rwanda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5366,Rwanda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5367,Rwanda,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5368,Rwanda,1996,48,222,398,325,124,85,24,45,229,278,161,47,23,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5369,Rwanda,1997,78,284,633,537,209,87,40,78,274,343,175,67,37,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5370,Rwanda,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5371,Rwanda,1999,93,245,530,424,224,70,31,59,189,262,166,49,31,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5372,Rwanda,2000,155,466,974,824,393,129,56,105,396,473,309,109,52,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5373,Rwanda,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5374,Rwanda,2002,13,96,167,184,79,38,13,15,98,113,58,22,15,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5375,Rwanda,2003,32,364,517,424,270,83,48,36,312,340,161,79,41,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5376,Rwanda,2004,52,561,722,595,353,171,64,73,460,469,293,150,53,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5377,Rwanda,2005,45,494,713,592,408,142,71,73,483,442,262,157,60,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5378,Rwanda,2006,25,598,769,591,407,182,100,80,494,467,259,139,72,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5379,Rwanda,2007,51,523,805,556,352,168,91,81,477,468,245,131,70,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5380,Rwanda,2008,33,528,811,573,373,191,125,65,439,472,280,161,82,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5381,Rwanda,2009,25,519,829,650,390,196,114,46,388,464,266,184,70,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5382,Rwanda,2010,48,430,741,526,325,202,126,48,399,448,261,128,65,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5383,Rwanda,2011,42,423,795,500,376,210,124,50,358,398,235,146,87,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5384,Rwanda,2012,22,375,768,519,341,214,123,40,327,393,208,116,66,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5385,Rwanda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,207,498,1017,684,533,393,252,199,433,569,364,261,161,131 +5386,Saint Kitts and Nevis,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5387,Saint Kitts and Nevis,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5388,Saint Kitts and Nevis,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5389,Saint Kitts and Nevis,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5390,Saint Kitts and Nevis,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5391,Saint Kitts and Nevis,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5392,Saint Kitts and Nevis,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5393,Saint Kitts and Nevis,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5394,Saint Kitts and Nevis,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5395,Saint Kitts and Nevis,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5396,Saint Kitts and Nevis,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5397,Saint Kitts and Nevis,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5398,Saint Kitts and Nevis,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5399,Saint Kitts and Nevis,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5400,Saint Kitts and Nevis,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5401,Saint Kitts and Nevis,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5402,Saint Kitts and Nevis,1996,0,0,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5403,Saint Kitts and Nevis,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5404,Saint Kitts and Nevis,1998,0,0,0,2,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5405,Saint Kitts and Nevis,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5406,Saint Kitts and Nevis,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5407,Saint Kitts and Nevis,2001,,,,,,,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5408,Saint Kitts and Nevis,2002,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5409,Saint Kitts and Nevis,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5410,Saint Kitts and Nevis,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5411,Saint Kitts and Nevis,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5412,Saint Kitts and Nevis,2006,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5413,Saint Kitts and Nevis,2007,,1,1,1,,,,,,,,,1,,0,,,,,,,0,,,,,,,0,,,,,,,0,,,,,,,,,,,,,,,,,,,, +5414,Saint Kitts and Nevis,2008,0,0,0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5415,Saint Kitts and Nevis,2009,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5416,Saint Kitts and Nevis,2010,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5417,Saint Kitts and Nevis,2011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5418,Saint Kitts and Nevis,2012,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5419,Saint Kitts and Nevis,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +5420,Saint Lucia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5421,Saint Lucia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5422,Saint Lucia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5423,Saint Lucia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5424,Saint Lucia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5425,Saint Lucia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5426,Saint Lucia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5427,Saint Lucia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5428,Saint Lucia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5429,Saint Lucia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5430,Saint Lucia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5431,Saint Lucia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5432,Saint Lucia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5433,Saint Lucia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5434,Saint Lucia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5435,Saint Lucia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5436,Saint Lucia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5437,Saint Lucia,1997,0,0,1,2,0,1,1,1,1,3,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5438,Saint Lucia,1998,0,2,1,1,0,0,1,0,3,2,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5439,Saint Lucia,1999,,1,,,3,3,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5440,Saint Lucia,2000,0,0,0,1,0,1,2,0,1,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5441,Saint Lucia,2001,0,1,1,0,1,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5442,Saint Lucia,2002,,,1,1,1,2,1,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5443,Saint Lucia,2003,0,0,0,1,2,2,2,0,1,1,0,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5444,Saint Lucia,2004,0,0,0,1,2,2,2,0,2,3,0,0,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5445,Saint Lucia,2005,0,0,0,0,2,1,2,1,1,0,1,1,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5446,Saint Lucia,2006,,,,,3,5,5,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5447,Saint Lucia,2007,,,3,3,2,4,3,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5448,Saint Lucia,2008,0,2,0,2,2,2,1,1,0,1,3,2,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,,,,,,,,,,,,,, +5449,Saint Lucia,2009,0,1,0,2,1,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5450,Saint Lucia,2010,0,0,1,2,0,1,2,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5451,Saint Lucia,2011,0,0,1,1,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5452,Saint Lucia,2012,0,2,0,1,4,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5453,Saint Lucia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,0,1,0,0,1,0,1,1,2,1,0,0 +5454,Saint Vincent and the Grenadines,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5455,Saint Vincent and the Grenadines,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5456,Saint Vincent and the Grenadines,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5457,Saint Vincent and the Grenadines,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5458,Saint Vincent and the Grenadines,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5459,Saint Vincent and the Grenadines,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5460,Saint Vincent and the Grenadines,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5461,Saint Vincent and the Grenadines,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5462,Saint Vincent and the Grenadines,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5463,Saint Vincent and the Grenadines,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5464,Saint Vincent and the Grenadines,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5465,Saint Vincent and the Grenadines,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5466,Saint Vincent and the Grenadines,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5467,Saint Vincent and the Grenadines,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5468,Saint Vincent and the Grenadines,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5469,Saint Vincent and the Grenadines,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5470,Saint Vincent and the Grenadines,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5471,Saint Vincent and the Grenadines,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5472,Saint Vincent and the Grenadines,1998,0,0,2,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5473,Saint Vincent and the Grenadines,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5474,Saint Vincent and the Grenadines,2000,0,1,0,4,2,0,1,1,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5475,Saint Vincent and the Grenadines,2001,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5476,Saint Vincent and the Grenadines,2002,,,,1,1,2,2,,,1,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5477,Saint Vincent and the Grenadines,2003,,,,2,,1,,,1,,1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5478,Saint Vincent and the Grenadines,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5479,Saint Vincent and the Grenadines,2005,0,0,0,2,1,0,2,0,0,1,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5480,Saint Vincent and the Grenadines,2006,,,,,,4,2,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5481,Saint Vincent and the Grenadines,2007,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5482,Saint Vincent and the Grenadines,2008,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5483,Saint Vincent and the Grenadines,2009,,,,2,1,,,,,,,,,,,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5484,Saint Vincent and the Grenadines,2010,0,0,1,0,3,0,2,0,0,1,0,0,1,0,0,0,0,2,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5485,Saint Vincent and the Grenadines,2011,0,0,2,2,2,0,0,0,0,1,0,1,0,0,1,0,0,2,2,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5486,Saint Vincent and the Grenadines,2012,0,1,5,1,3,5,4,0,1,3,1,3,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5487,Saint Vincent and the Grenadines,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,1,,,,,,,, +5488,Samoa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5489,Samoa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5490,Samoa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5491,Samoa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5492,Samoa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5493,Samoa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5494,Samoa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5495,Samoa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5496,Samoa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5497,Samoa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5498,Samoa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5499,Samoa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5500,Samoa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5501,Samoa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5502,Samoa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5503,Samoa,1995,0,1,1,1,0,3,2,1,2,2,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5504,Samoa,1996,0,0,0,0,0,1,2,0,0,3,2,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5505,Samoa,1997,0,1,4,1,0,1,1,0,2,1,1,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5506,Samoa,1998,1,1,1,0,1,1,0,0,1,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5507,Samoa,1999,0,1,2,0,1,1,4,0,3,2,1,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5508,Samoa,2000,0,3,1,1,1,2,1,0,2,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5509,Samoa,2001,1,3,1,1,0,0,1,0,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5510,Samoa,2002,0,1,2,0,1,1,1,1,4,5,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5511,Samoa,2003,,2,,,,1,,,2,2,2,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5512,Samoa,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5513,Samoa,2005,0,4,0,1,1,0,0,0,2,0,2,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5514,Samoa,2006,,3,2,1,1,1,2,,3,,,1,,,,,,1,,,,,,,2,1,,1,,,,1,,1,,,,,,,,,,,,,,,,,,,,,, +5515,Samoa,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5516,Samoa,2008,0,1,0,0,0,1,0,0,1,1,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5517,Samoa,2009,,,,1,,111,111,,,,1,11,11,1111,0,0,0,0,0,0,1,0,1,0,0,0,1,3,0,0,0,0,0,1,0,0,1,0,0,0,0,1,,,,,,,,,,,,,, +5518,Samoa,2010,,1,1,,,1,,,,,2,,1,,,1,1,,,,,,,,,2,1,,,,,,,1,,,,1,,1,,,,,,,,,,,,,,,, +5519,Samoa,2011,0,1,0,0,0,0,0,0,2,1,0,1,0,1,1,0,0,0,1,1,5,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5520,Samoa,2012,0,4,3,1,1,1,0,1,1,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,,,,,,,,,,,,,, +5521,Samoa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,2,1,3,3,3,0,3,0,0,0,1,2 +5522,San Marino,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5523,San Marino,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5524,San Marino,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5525,San Marino,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5526,San Marino,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5527,San Marino,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5528,San Marino,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5529,San Marino,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5530,San Marino,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5531,San Marino,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5532,San Marino,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5533,San Marino,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5534,San Marino,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5535,San Marino,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5536,San Marino,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5537,San Marino,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5538,San Marino,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5539,San Marino,1997,,,,,,,,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5540,San Marino,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5541,San Marino,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5542,San Marino,2000,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5543,San Marino,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5544,San Marino,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5545,San Marino,2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5546,San Marino,2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5547,San Marino,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5548,San Marino,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5549,San Marino,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5550,San Marino,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5551,San Marino,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5552,San Marino,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5553,San Marino,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5554,San Marino,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5555,San Marino,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5556,Sao Tome and Principe,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5557,Sao Tome and Principe,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5558,Sao Tome and Principe,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5559,Sao Tome and Principe,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5560,Sao Tome and Principe,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5561,Sao Tome and Principe,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5562,Sao Tome and Principe,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5563,Sao Tome and Principe,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5564,Sao Tome and Principe,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5565,Sao Tome and Principe,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5566,Sao Tome and Principe,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5567,Sao Tome and Principe,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5568,Sao Tome and Principe,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5569,Sao Tome and Principe,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5570,Sao Tome and Principe,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5571,Sao Tome and Principe,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5572,Sao Tome and Principe,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5573,Sao Tome and Principe,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5574,Sao Tome and Principe,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5575,Sao Tome and Principe,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5576,Sao Tome and Principe,2000,1,5,11,4,7,3,10,3,7,15,5,7,4,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5577,Sao Tome and Principe,2001,0,7,14,6,6,5,12,1,4,10,4,8,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5578,Sao Tome and Principe,2002,1,7,6,2,2,2,2,0,6,5,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5579,Sao Tome and Principe,2003,1,2,4,5,3,0,1,0,3,7,8,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5580,Sao Tome and Principe,2004,3,5,7,6,5,2,3,1,4,5,5,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5581,Sao Tome and Principe,2005,2,5,7,6,4,5,2,1,4,5,3,2,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5582,Sao Tome and Principe,2006,0,5,8,4,2,1,2,1,4,7,0,0,1,1,3,10,25,16,8,5,2,2,8,15,11,6,4,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +5583,Sao Tome and Principe,2007,0,4,12,8,4,4,0,0,9,6,3,3,5,0,0,1,2,3,3,4,1,0,3,1,5,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,,,,,,,,,,,,,, +5584,Sao Tome and Principe,2008,1,5,13,5,6,1,0,2,5,6,6,2,0,0,0,0,4,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5585,Sao Tome and Principe,2009,0,2,10,8,4,6,0,1,4,10,4,2,1,0,2,0,2,1,3,1,1,0,1,2,3,2,2,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,,,,,,,,,,,,,, +5586,Sao Tome and Principe,2010,0,10,14,7,1,0,1,0,5,4,3,2,0,0,6,3,11,6,7,2,4,2,5,10,3,2,0,2,1,1,2,0,1,0,0,1,3,0,1,0,0,0,,,,,,,,,,,,,, +5587,Sao Tome and Principe,2011,0,5,9,8,7,1,4,2,2,10,4,1,0,0,2,4,2,5,4,2,5,0,3,5,5,4,3,5,2,2,4,3,1,0,0,1,2,4,0,3,4,2,,,,,,,,,,,,,, +5588,Sao Tome and Principe,2012,1,6,11,8,8,2,0,0,6,10,6,0,0,1,4,3,4,8,1,1,1,4,0,4,4,2,0,1,4,1,2,0,1,0,1,2,1,1,0,1,1,1,,,,,,,,,,,,,, +5589,Sao Tome and Principe,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,12,14,16,17,4,8,9,10,9,15,9,9,6 +5590,Saudi Arabia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5591,Saudi Arabia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5592,Saudi Arabia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5593,Saudi Arabia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5594,Saudi Arabia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5595,Saudi Arabia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5596,Saudi Arabia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5597,Saudi Arabia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5598,Saudi Arabia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5599,Saudi Arabia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5600,Saudi Arabia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5601,Saudi Arabia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5602,Saudi Arabia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5603,Saudi Arabia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5604,Saudi Arabia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5605,Saudi Arabia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5606,Saudi Arabia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5607,Saudi Arabia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5608,Saudi Arabia,1998,2,76,140,96,65,45,62,16,82,86,32,27,28,40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5609,Saudi Arabia,1999,5,155,314,245,152,103,143,39,182,201,94,74,73,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5610,Saudi Arabia,2000,0,131,268,213,158,86,107,28,172,182,79,51,50,70,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5611,Saudi Arabia,2001,7,141,221,163,135,62,106,28,161,163,88,44,39,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5612,Saudi Arabia,2002,11,148,309,211,138,104,110,28,186,194,72,60,51,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5613,Saudi Arabia,2003,5,150,285,200,145,102,107,18,210,181,75,58,51,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5614,Saudi Arabia,2004,4,202,289,217,163,89,85,24,204,171,80,53,47,64,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5615,Saudi Arabia,2005,8,182,276,201,175,70,107,31,205,184,98,73,51,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5616,Saudi Arabia,2006,10,256,323,229,169,94,101,39,226,211,107,56,37,56,39,67,91,51,41,29,49,47,76,59,37,30,22,25,35,100,163,97,43,48,47,71,123,187,85,37,33,27,,,,,,,,,,,,,, +5617,Saudi Arabia,2007,8,246,312,219,187,111,92,30,298,197,110,71,39,64,34,45,61,46,41,25,53,37,67,45,35,26,25,42,52,115,219,129,54,43,55,50,130,218,86,60,40,46,,,,,,,,,,,,,, +5618,Saudi Arabia,2008,16,295,334,184,153,93,102,33,274,271,137,85,48,83,22,75,52,22,13,17,27,20,63,87,34,35,28,50,51,135,188,107,67,44,43,60,127,193,98,67,33,53,,,,,,,,,,,,,, +5619,Saudi Arabia,2009,15,280,386,257,200,129,105,43,260,245,112,61,55,53,27,65,98,39,31,27,42,32,65,52,28,25,16,31,26,137,200,99,64,35,46,46,136,160,102,54,28,37,,,,,,,,,,,,,, +5620,Saudi Arabia,2010,14,335,458,242,210,116,102,33,239,271,105,70,49,58,19,90,112,47,45,38,48,29,67,83,32,23,20,34,48,134,243,133,78,43,59,38,115,178,111,58,35,32,,,,,,,,,,,,,, +5621,Saudi Arabia,2011,4,227,406,225,225,113,106,35,200,245,110,64,49,46,13,74,83,63,35,26,35,18,60,70,37,20,18,34,29,136,249,105,73,51,60,43,97,170,98,49,40,27,,,,,,,,,,,,,, +5622,Saudi Arabia,2012,13,228,394,214,210,133,96,28,207,236,107,50,49,63,13,63,88,51,30,34,46,17,57,57,27,20,22,24,31,104,209,128,64,32,48,26,70,123,78,43,31,35,,,,,,,,,,,,,, +5623,Saudi Arabia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,400,743,399,317,204,177,63,298,388,143,92,72,98 +5624,Senegal,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5625,Senegal,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5626,Senegal,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5627,Senegal,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5628,Senegal,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5629,Senegal,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5630,Senegal,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5631,Senegal,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5632,Senegal,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5633,Senegal,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5634,Senegal,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5635,Senegal,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5636,Senegal,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5637,Senegal,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5638,Senegal,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5639,Senegal,1995,94,717,1219,813,408,300,213,84,428,461,283,203,126,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5640,Senegal,1996,74,773,1281,973,474,277,264,89,450,549,341,209,121,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5641,Senegal,1997,64,753,1151,876,467,267,215,75,421,509,292,191,87,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5642,Senegal,1998,90,781,1208,856,453,250,215,84,412,447,307,178,98,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5643,Senegal,1999,50,721,1070,749,424,233,185,58,441,434,298,184,106,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5644,Senegal,2000,60,772,1297,857,470,279,189,77,521,540,376,217,107,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5645,Senegal,2001,77,908,1331,890,498,258,226,90,540,531,333,204,113,95,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5646,Senegal,2002,58,815,1271,813,488,279,212,61,545,523,317,210,118,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5647,Senegal,2003,50,1005,1438,896,531,293,250,77,629,600,398,212,122,86,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5648,Senegal,2004,60,1085,1464,915,506,264,213,73,620,485,324,211,139,78,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5649,Senegal,2005,71,1050,1561,904,533,274,236,83,709,568,351,185,116,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5650,Senegal,2006,60,1124,1606,919,553,292,230,74,676,572,360,204,124,88,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5651,Senegal,2007,57,1053,1722,875,549,329,251,73,761,603,378,241,121,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5652,Senegal,2008,67,1274,1767,907,593,351,228,79,816,659,368,230,148,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5653,Senegal,2009,66,1362,1790,1035,638,335,250,108,815,660,352,231,127,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5654,Senegal,2010,81,1351,1793,972,590,329,221,81,835,643,332,217,136,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5655,Senegal,2011,75,1264,1835,981,582,335,214,88,807,664,362,208,144,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5656,Senegal,2012,84,1454,2036,1121,597,365,224,125,836,715,383,263,155,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5657,Senegal,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5658,Serbia,2005,3,62,96,118,156,112,132,6,69,76,55,49,22,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5659,Serbia,2006,6,87,91,107,167,83,144,7,78,74,43,44,44,152,2,21,47,54,104,66,171,6,23,25,25,48,25,129,4,15,16,26,11,27,31,3,14,16,25,23,21,43,,,,,,,,,,,,,, +5660,Serbia,2007,0,42,59,102,163,94,106,2,38,52,43,43,26,135,9,16,33,42,81,61,118,10,17,26,44,27,36,120,6,20,8,13,19,8,45,1,9,12,12,22,18,36,,,,,,,,,,,,,, +5661,Serbia,2008,3,66,89,111,149,135,139,3,68,66,46,51,37,169,9,17,26,25,74,58,85,7,20,26,32,32,27,82,2,11,8,17,22,17,31,0,12,12,20,13,18,30,,,,,,,,,,,,,, +5662,Serbia,2009,1,76,67,111,119,105,145,5,63,59,55,38,44,167,7,20,18,34,52,69,95,6,22,22,27,23,28,65,4,17,13,14,14,14,27,2,13,7,5,17,16,34,,,,,,,,,,,,,, +5663,Serbia,2010,2,76,70,93,116,83,109,5,66,74,46,39,34,164,6,20,17,42,49,50,74,4,15,20,25,18,20,71,0,22,10,13,14,18,25,2,12,6,10,12,16,42,,,,,,,,,,,,,, +5664,Serbia,2011,2,60,73,74,122,112,101,5,46,59,43,30,20,129,6,11,25,23,53,49,62,4,16,13,18,21,25,70,1,4,10,6,15,18,19,1,9,9,13,9,9,32,,,,,,,,,,,,,, +5665,Serbia,2012,1,70,72,77,98,86,77,4,46,66,38,31,35,118,4,14,20,25,47,49,71,8,12,20,21,15,19,58,2,15,9,9,8,15,14,1,6,4,8,5,11,23,,,,,,,,,,,,,, +5666,Serbia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,43,66,99,134,161,207,9,46,63,60,53,45,170 +5667,Serbia & Montenegro,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5668,Serbia & Montenegro,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5669,Serbia & Montenegro,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5670,Serbia & Montenegro,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5671,Serbia & Montenegro,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5672,Serbia & Montenegro,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5673,Serbia & Montenegro,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5674,Serbia & Montenegro,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5675,Serbia & Montenegro,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5676,Serbia & Montenegro,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5677,Serbia & Montenegro,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5678,Serbia & Montenegro,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5679,Serbia & Montenegro,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5680,Serbia & Montenegro,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5681,Serbia & Montenegro,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5682,Serbia & Montenegro,1995,10,108,204,317,296,350,386,11,127,167,133,83,158,275,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5683,Serbia & Montenegro,1996,45,207,310,461,396,389,474,57,192,159,183,152,217,384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5684,Serbia & Montenegro,1997,45,136,310,450,415,410,463,30,146,274,254,170,239,399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5685,Serbia & Montenegro,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5686,Serbia & Montenegro,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5687,Serbia & Montenegro,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5688,Serbia & Montenegro,2001,3,52,48,44,34,31,18,5,49,46,23,25,23,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5689,Serbia & Montenegro,2002,7,37,53,44,29,22,33,9,46,48,19,17,19,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5690,Serbia & Montenegro,2003,1,51,64,70,113,54,61,1,44,58,38,28,20,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5691,Serbia & Montenegro,2004,4,61,106,125,182,128,157,3,66,89,75,48,41,145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5692,Seychelles,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5693,Seychelles,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5694,Seychelles,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5695,Seychelles,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5696,Seychelles,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5697,Seychelles,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5698,Seychelles,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5699,Seychelles,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5700,Seychelles,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5701,Seychelles,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5702,Seychelles,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5703,Seychelles,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5704,Seychelles,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5705,Seychelles,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5706,Seychelles,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5707,Seychelles,1995,0,2,0,1,1,2,1,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5708,Seychelles,1996,0,0,1,3,1,1,0,0,1,0,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5709,Seychelles,1997,0,1,2,2,1,1,1,0,1,0,0,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5710,Seychelles,1998,0,0,1,3,2,1,1,0,0,0,1,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5711,Seychelles,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5712,Seychelles,2000,,,2,4,1,1,,,,1,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5713,Seychelles,2001,0,0,2,4,0,2,2,0,0,2,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5714,Seychelles,2002,0,1,3,1,0,1,1,0,0,0,0,0,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5715,Seychelles,2003,0,1,0,0,1,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5716,Seychelles,2004,0,0,2,0,3,2,0,0,0,1,2,2,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5717,Seychelles,2005,0,2,1,2,1,0,0,0,0,1,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5718,Seychelles,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5719,Seychelles,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5720,Seychelles,2008,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5721,Seychelles,2009,0,0,4,1,1,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5722,Seychelles,2010,0,0,0,6,0,0,1,0,2,0,0,0,0,0,0,0,3,0,1,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5723,Seychelles,2011,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,2,4,13,2,0,0,0,0,1,0,1,0,0,0,2,1,0,2,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5724,Seychelles,2012,0,0,1,2,2,0,0,0,0,1,1,1,0,1,0,1,0,1,1,1,0,0,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +5725,Seychelles,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,5,3,3,5,1,0,2,1,1,0,1,2 +5726,Sierra Leone,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5727,Sierra Leone,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5728,Sierra Leone,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5729,Sierra Leone,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5730,Sierra Leone,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5731,Sierra Leone,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5732,Sierra Leone,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5733,Sierra Leone,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5734,Sierra Leone,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5735,Sierra Leone,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5736,Sierra Leone,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5737,Sierra Leone,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5738,Sierra Leone,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5739,Sierra Leone,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5740,Sierra Leone,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5741,Sierra Leone,1995,10,184,305,201,99,47,22,18,165,193,110,65,24,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5742,Sierra Leone,1996,23,249,450,310,180,79,51,35,201,278,218,89,49,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5743,Sierra Leone,1997,14,230,470,359,182,89,47,21,207,328,228,67,39,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5744,Sierra Leone,1998,14,226,445,338,191,78,42,36,235,294,217,86,43,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5745,Sierra Leone,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5746,Sierra Leone,2000,18,287,486,361,190,113,47,27,249,298,225,92,49,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5747,Sierra Leone,2001,19,268,546,406,230,123,51,36,279,292,234,120,61,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5748,Sierra Leone,2002,23,317,561,427,246,102,58,31,300,382,284,133,48,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5749,Sierra Leone,2003,19,351,564,481,264,149,77,26,308,394,249,122,77,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5750,Sierra Leone,2004,19,417,659,581,364,153,130,40,304,440,319,170,89,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5751,Sierra Leone,2005,45,490,792,651,397,226,124,54,393,518,312,207,114,47,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5752,Sierra Leone,2006,43,485,851,709,446,216,166,68,375,536,357,207,111,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5753,Sierra Leone,2007,45,538,1032,797,520,258,172,74,398,568,468,255,143,79,1081,2116,,,,,,,,,,,,,337,369,,,,,,,,,,,,,,,,,,,,,,,,,, +5754,Sierra Leone,2008,,625,1062,938,573,265,188,,460,609,501,269,153,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5755,Sierra Leone,2009,44,737,1073,905,621,280,195,66,524,645,506,260,146,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5756,Sierra Leone,2010,64,718,1176,1076,663,320,254,77,648,742,556,293,180,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5757,Sierra Leone,2011,75,825,1224,1099,781,334,287,115,678,796,543,343,219,116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5758,Sierra Leone,2012,70,858,1324,1213,841,416,274,80,703,861,667,391,201,132,811,,,,,,,634,,,,,,,112,,,,,,,103,,,,,,,,,,,,,,,,,,,, +5759,Sierra Leone,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,810,1231,1109,791,384,233,52,618,785,618,351,229,128 +5760,Singapore,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5761,Singapore,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5762,Singapore,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5763,Singapore,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5764,Singapore,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5765,Singapore,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5766,Singapore,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5767,Singapore,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5768,Singapore,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5769,Singapore,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5770,Singapore,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5771,Singapore,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5772,Singapore,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5773,Singapore,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5774,Singapore,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5775,Singapore,1995,0,9,40,60,62,70,94,1,8,18,21,22,19,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5776,Singapore,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5777,Singapore,1997,0,8,27,49,60,88,101,0,11,16,12,16,12,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5778,Singapore,1998,1,9,36,70,63,81,104,2,6,18,11,20,25,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5779,Singapore,1999,0,18,23,41,72,55,124,0,12,21,18,23,17,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5780,Singapore,2000,1,8,9,34,51,26,64,1,9,8,7,9,5,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5781,Singapore,2001,1,6,19,39,70,66,76,1,5,7,19,15,9,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5782,Singapore,2002,0,14,28,73,88,65,130,2,10,15,30,32,24,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5783,Singapore,2003,1,17,28,68,96,80,133,0,6,26,30,20,20,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5784,Singapore,2004,1,12,32,56,83,75,119,0,6,15,18,17,19,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5785,Singapore,2005,0,8,25,61,94,96,118,0,5,20,33,29,20,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5786,Singapore,2006,2,7,31,67,107,75,106,0,19,22,22,22,27,31,3,21,35,42,56,69,137,7,16,33,31,13,20,42,10,5,13,22,12,13,25,5,8,10,14,17,16,13,,,,,,,,,,,,,, +5787,Singapore,2007,0,15,18,63,98,80,105,1,13,13,25,23,11,39,2,29,38,50,69,53,130,7,32,29,17,29,21,58,1,10,11,18,14,22,21,1,8,18,14,14,18,11,,,,,,,,,,,,,, +5788,Singapore,2008,0,10,21,46,106,94,127,0,9,16,20,26,17,33,1,45,42,64,88,74,173,1,25,35,24,21,29,50,3,12,18,20,23,16,31,3,10,15,20,19,20,30,,,,,,,,,,,,,, +5789,Singapore,2009,0,16,27,56,100,92,131,0,15,22,24,18,23,28,5,31,33,63,99,112,151,5,17,35,23,27,23,31,3,9,13,28,28,13,30,4,7,23,17,19,20,21,,,,,,,,,,,,,, +5790,Singapore,2010,0,11,21,38,105,86,120,1,15,21,26,21,21,44,5,35,46,61,87,102,156,10,22,60,25,43,28,55,2,8,13,17,18,32,33,2,7,11,15,19,14,22,,,,,,,,,,,,,, +5791,Singapore,2011,0,21,21,44,108,119,126,0,11,25,23,23,20,51,2,28,49,64,112,102,150,4,26,29,34,29,35,53,0,7,21,22,25,17,29,3,13,14,19,21,13,20,,,,,,,,,,,,,, +5792,Singapore,2012,1,31,36,54,106,124,143,0,26,46,27,26,19,39,1,76,144,124,130,125,156,5,45,196,82,46,44,45,1,25,37,33,18,15,31,1,16,53,18,22,16,20,,,,,,,,,,,,,, +5793,Singapore,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,99,199,201,256,262,352,4,85,289,143,64,72,130 +5794,Sint Maarten (Dutch part),2010,,,1,,,,,,,,,2,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5795,Sint Maarten (Dutch part),2011,,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5796,Sint Maarten (Dutch part),2012,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5797,Sint Maarten (Dutch part),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,1 +5798,Slovakia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5799,Slovakia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5800,Slovakia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5801,Slovakia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5802,Slovakia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5803,Slovakia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5804,Slovakia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5805,Slovakia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5806,Slovakia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5807,Slovakia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5808,Slovakia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5809,Slovakia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5810,Slovakia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5811,Slovakia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5812,Slovakia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5813,Slovakia,1995,4,18,44,123,108,63,152,5,16,17,22,24,33,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5814,Slovakia,1996,2,16,42,64,105,61,134,4,23,28,24,17,17,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5815,Slovakia,1997,1,2,24,54,38,31,40,0,10,11,10,3,9,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5816,Slovakia,1998,0,5,30,53,50,37,35,0,5,3,16,6,5,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5817,Slovakia,1999,1,2,19,42,51,19,29,0,8,10,7,7,8,43,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5818,Slovakia,2000,2,6,15,31,50,16,32,0,5,9,7,5,4,54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5819,Slovakia,2001,0,8,13,30,48,26,22,1,4,9,12,8,4,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5820,Slovakia,2002,0,4,18,35,40,21,26,0,6,9,7,3,5,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5821,Slovakia,2003,1,6,8,31,36,19,25,1,8,9,10,3,4,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5822,Slovakia,2004,0,2,17,30,30,12,21,1,1,2,3,6,4,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5823,Slovakia,2005,0,3,13,16,25,25,20,0,1,8,9,5,6,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5824,Slovakia,2006,4,8,11,18,27,29,17,0,6,6,7,4,3,20,9,13,11,27,46,43,66,7,4,9,7,19,16,67,3,6,4,10,11,11,18,0,1,4,1,17,13,23,,,,,,,,,,,,,, +5825,Slovakia,2007,0,8,10,18,51,15,23,1,5,3,5,6,3,28,5,9,14,26,43,36,48,5,9,9,14,18,10,43,4,4,7,4,11,16,15,1,2,6,8,9,8,25,,,,,,,,,,,,,, +5826,Slovakia,2008,0,2,7,16,46,10,11,1,2,4,4,5,1,17,4,5,17,17,42,29,56,3,6,15,6,15,18,52,3,5,2,5,6,10,14,3,3,5,2,6,9,26,,,,,,,,,,,,,, +5827,Slovakia,2009,0,3,14,19,22,18,9,0,0,5,6,2,5,18,3,11,9,15,26,28,35,4,1,6,7,10,11,36,2,0,2,7,9,14,9,0,3,3,0,8,6,20,,,,,,,,,,,,,, +5828,Slovakia,2010,1,7,7,18,17,17,15,0,1,6,7,2,3,11,8,3,13,26,26,19,33,2,4,6,3,13,8,26,0,2,2,0,7,10,7,0,2,3,2,4,6,14,,,,,,,,,,,,,, +5829,Slovakia,2011,0,6,8,6,20,16,13,0,2,3,4,6,1,11,5,11,10,11,27,18,22,6,4,5,8,7,9,27,2,3,0,3,5,3,8,4,3,3,2,4,4,13,,,,,,,,,,,,,, +5830,Slovakia,2012,0,2,9,17,20,12,7,0,2,3,4,6,1,13,10,6,5,7,14,22,26,5,5,6,0,9,12,17,1,0,1,4,2,7,8,1,3,3,2,0,3,4,,,,,,,,,,,,,, +5831,Slovakia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,17,20,28,52,68,50,20,12,11,10,15,21,56 +5832,Slovenia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5833,Slovenia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5834,Slovenia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5835,Slovenia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5836,Slovenia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5837,Slovenia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5838,Slovenia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5839,Slovenia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5840,Slovenia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5841,Slovenia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5842,Slovenia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5843,Slovenia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5844,Slovenia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5845,Slovenia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5846,Slovenia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5847,Slovenia,1995,1,13,39,63,36,26,27,0,7,24,11,9,5,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5848,Slovenia,1996,0,5,27,46,37,28,13,0,8,15,9,7,7,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5849,Slovenia,1997,0,4,16,33,19,15,20,0,8,15,8,1,4,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5850,Slovenia,1998,0,5,22,27,19,13,14,0,8,12,10,7,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5851,Slovenia,1999,0,3,21,40,27,11,15,0,0,5,6,5,6,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5852,Slovenia,2000,0,3,11,36,22,14,17,0,3,9,3,4,3,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5853,Slovenia,2001,0,4,11,30,27,11,7,0,5,11,11,3,5,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5854,Slovenia,2002,0,8,11,25,26,14,9,0,3,7,6,1,3,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5855,Slovenia,2003,0,3,9,23,22,7,15,0,5,5,4,3,4,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5856,Slovenia,2004,0,5,7,10,10,8,13,0,4,6,4,3,2,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5857,Slovenia,2005,0,4,10,16,15,11,14,0,4,4,6,5,4,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5858,Slovenia,2006,0,3,5,9,12,7,6,0,5,7,4,2,4,19,5,6,1,5,4,10,16,2,0,6,2,5,1,18,1,1,4,4,0,3,5,0,1,2,0,1,1,15,,,,,,,,,,,,,, +5859,Slovenia,2007,0,0,7,15,14,12,9,0,1,5,6,2,3,16,1,3,6,3,6,6,15,2,3,2,1,3,5,15,3,2,1,1,1,,10,0,1,3,2,1,1,11,,,,,,,,,,,,,, +5860,Slovenia,2008,0,3,12,9,17,12,3,0,2,7,2,5,2,7,1,3,5,5,12,7,14,1,1,3,1,4,0,26,0,1,1,1,1,5,9,1,2,1,1,1,0,9,,,,,,,,,,,,,, +5861,Slovenia,2009,0,3,8,13,14,6,7,0,3,6,4,1,3,17,3,4,6,5,6,7,5,2,1,4,6,6,2,13,1,1,3,1,1,1,7,0,0,0,0,2,1,7,,,,,,,,,,,,,, +5862,Slovenia,2010,0,4,7,10,9,6,12,0,1,5,2,4,1,3,0,2,3,9,3,7,11,3,4,6,0,1,3,15,0,1,3,4,1,2,4,0,1,1,0,3,2,8,,,,,,,,,,,,,, +5863,Slovenia,2011,0,3,9,16,12,8,5,0,0,5,4,2,1,17,0,2,10,4,5,7,13,2,0,5,5,3,3,14,0,0,3,2,2,3,3,2,1,0,1,0,5,4,,,,,,,,,,,,,, +5864,Slovenia,2012,0,2,6,4,8,6,5,0,2,3,0,1,1,9,3,0,2,1,5,4,16,2,2,3,2,4,3,17,0,0,2,2,0,1,2,0,0,2,0,2,1,1,,,,,,,,,,,,,, +5865,Slovenia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,12,5,18,13,19,1,2,7,3,10,6,39 +5866,Solomon Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5867,Solomon Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5868,Solomon Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5869,Solomon Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5870,Solomon Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5871,Solomon Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5872,Solomon Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5873,Solomon Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5874,Solomon Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5875,Solomon Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5876,Solomon Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5877,Solomon Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5878,Solomon Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5879,Solomon Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5880,Solomon Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5881,Solomon Islands,1995,2,14,6,5,7,9,3,3,17,11,7,12,13,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5882,Solomon Islands,1996,4,9,9,3,7,4,6,5,5,9,8,12,6,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5883,Solomon Islands,1997,2,20,8,6,9,4,5,3,19,14,10,8,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5884,Solomon Islands,1998,3,15,9,14,18,7,12,2,14,16,10,11,7,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5885,Solomon Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5886,Solomon Islands,2000,3,13,4,8,8,10,6,8,15,13,7,7,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5887,Solomon Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5888,Solomon Islands,2002,3,16,12,9,9,7,4,0,16,15,4,2,7,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5889,Solomon Islands,2003,4,14,9,12,14,8,0,9,14,14,16,13,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5890,Solomon Islands,2004,6,11,12,8,11,9,5,10,22,20,13,14,8,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5891,Solomon Islands,2005,4,14,18,9,15,12,11,9,23,21,12,11,9,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5892,Solomon Islands,2006,1,13,11,4,4,14,8,4,16,14,9,14,8,4,21,8,14,11,13,16,9,26,7,4,10,15,9,5,18,4,4,3,2,3,2,14,9,7,3,2,3,0,,,,,,,,,,,,,, +5893,Solomon Islands,2007,5,15,16,12,9,8,6,5,12,25,9,10,5,5,17,9,4,9,14,14,9,12,12,14,6,14,11,2,20,13,10,9,6,0,4,16,3,10,5,2,1,0,,,,,,,,,,,,,, +5894,Solomon Islands,2008,3,17,12,11,10,11,7,4,13,23,11,13,3,2,18,9,6,7,11,9,11,16,6,5,14,8,14,2,11,10,13,10,7,7,0,11,8,7,5,3,4,1,,,,,,,,,,,,,, +5895,Solomon Islands,2009,3,11,17,8,8,8,6,9,19,19,9,11,7,3,7,2,6,4,6,9,6,14,1,7,7,6,9,2,29,8,5,7,12,7,4,22,7,13,8,5,7,3,,,,,,,,,,,,,, +5896,Solomon Islands,2010,4,16,18,16,8,3,3,4,19,17,11,5,4,5,11,7,6,7,9,3,8,15,7,4,3,7,7,4,15,17,6,6,4,3,2,21,11,7,2,8,3,0,,,,,,,,,,,,,, +5897,Solomon Islands,2011,3,15,22,12,7,8,6,3,13,27,15,10,16,2,14,6,7,6,3,11,4,20,7,5,7,9,6,3,28,14,9,5,3,0,5,25,7,10,10,6,4,1,,,,,,,,,,,,,, +5898,Solomon Islands,2012,3,20,19,10,12,8,6,5,20,18,11,8,12,5,9,4,4,3,5,6,9,10,8,8,9,4,4,4,19,15,10,5,4,4,6,15,12,10,4,4,4,0,,,,,,,,,,,,,, +5899,Solomon Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33,39,36,24,26,24,12,33,47,30,14,22,10,10 +5900,Somalia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5901,Somalia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5902,Somalia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5903,Somalia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5904,Somalia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5905,Somalia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5906,Somalia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5907,Somalia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5908,Somalia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5909,Somalia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5910,Somalia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5911,Somalia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5912,Somalia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5913,Somalia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5914,Somalia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5915,Somalia,1995,46,334,730,201,127,278,109,38,158,139,97,40,25,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5916,Somalia,1996,45,439,557,263,153,82,63,49,221,224,108,50,38,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5917,Somalia,1997,72,565,658,311,187,172,112,63,296,313,173,82,56,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5918,Somalia,1998,99,541,599,337,198,145,126,77,270,321,176,78,74,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5919,Somalia,1999,136,643,678,383,175,175,124,131,302,302,190,100,74,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5920,Somalia,2000,113,740,724,408,254,195,142,85,354,319,219,110,72,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5921,Somalia,2001,125,899,880,476,310,257,196,91,439,413,259,129,97,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5922,Somalia,2002,119,922,821,478,307,219,176,112,468,447,302,172,111,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5923,Somalia,2003,118,1054,850,513,319,250,214,106,535,462,333,171,161,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5924,Somalia,2004,175,1228,1059,610,419,326,278,129,676,618,428,266,157,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5925,Somalia,2005,125,1343,1114,725,458,330,319,169,752,636,436,292,212,157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5926,Somalia,2006,166,1377,1121,647,436,309,336,170,668,628,432,269,171,131,198,394,375,222,210,111,77,96,205,204,145,126,87,29,187,325,316,187,167,76,44,83,190,183,120,88,54,14,,,,,,,,,,,,,, +5927,Somalia,2007,125,1239,1008,578,407,296,289,135,602,520,378,243,181,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5928,Somalia,2008,116,1273,1067,635,422,314,298,138,604,587,439,285,191,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +5929,Somalia,2009,175,1118,974,585,410,314,305,129,560,524,396,231,185,141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5930,Somalia,2010,109,1036,886,496,355,266,277,91,467,444,341,188,137,132,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5931,Somalia,2011,113,1147,1047,587,398,330,277,114,495,465,348,260,168,135,842,,,,,,,640,,,,,,,300,,,,,,,240,,,,,,,,,,,,,,,,,,,, +5932,Somalia,2012,129,1147,1014,560,449,296,307,121,553,554,396,267,165,169,918,,,,,,,712,,,,,,,269,,,,,,,215,,,,,,,,,,,,,,,,,,,, +5933,Somalia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,150,1138,1124,578,450,309,337,122,621,588,430,303,199,189 +5934,South Africa,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5935,South Africa,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5936,South Africa,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5937,South Africa,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5938,South Africa,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5939,South Africa,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5940,South Africa,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5941,South Africa,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5942,South Africa,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5943,South Africa,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5944,South Africa,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5945,South Africa,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5946,South Africa,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5947,South Africa,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5948,South Africa,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5949,South Africa,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5950,South Africa,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5951,South Africa,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5952,South Africa,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5953,South Africa,1999,52,624,1697,1834,966,434,221,75,972,1384,779,314,159,110,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5954,South Africa,2000,116,723,1999,2135,1146,435,212,122,1283,1716,933,423,167,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5955,South Africa,2001,163,1490,3844,3540,1838,690,255,275,2237,3220,1748,781,295,168,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5956,South Africa,2002,3081,5147,13681,13215,7038,2342,942,3261,7081,11312,6080,2611,1076,600,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5957,South Africa,2003,1769,10107,20392,17862,9540,3604,1495,2341,12600,16867,9207,4080,1972,1172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5958,South Africa,2004,2269,11030,22120,19675,10653,3908,1580,2810,14166,18975,10839,4887,2182,1174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5959,South Africa,2005,2035,10422,20576,19465,11143,4124,1705,2561,13632,19343,11338,5416,2352,1348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5960,South Africa,2006,2062,10498,21273,19743,11752,4392,1862,2579,14073,20387,12656,5767,2550,1505,17471,3225,9340,8706,5329,2361,1313,16172,5632,11104,6888,3153,1497,1023,2673,2207,6848,6476,3372,1391,730,2457,3966,8576,5384,2297,901,571,,,,,,,,,,,,,, +5961,South Africa,2007,1909,10514,21948,20076,12164,4792,2021,2511,14410,21049,13190,6245,2964,1811,12766,7211,10979,8905,5788,4096,3014,12568,9170,11383,8114,5787,3217,2633,4026,4539,6925,3752,2198,1578,828,3750,3290,5267,4439,2553,1726,867,,,,,,,,,,,,,, +5962,South Africa,2008,1863,10172,21706,20699,12724,5169,2246,2360,14010,21579,13778,7146,3234,2117,14640,9870,14816,10644,6879,5636,3345,14856,10888,15868,9880,7988,4719,2943,4265,4694,7148,3998,2345,1686,942,3964,3389,5575,4670,2694,1894,987,,,,,,,,,,,,,, +5963,South Africa,2009,1685,8609,22620,21164,12949,5256,2207,2358,14361,21944,13777,7114,3320,2106,15312,10950,15950,11747,7448,6790,4437,15641,12877,16885,10925,8744,5633,3848,7869,8558,11843,9382,5875,3957,2120,6960,7866,9999,8697,6759,4684,2548,,,,,,,,,,,,,, +5964,South Africa,2010,1496,9925,20855,19842,12386,5155,2211,1933,13023,20205,12910,6873,3165,2128,22355,5489,17584,18741,11895,5981,3175,21406,10406,22281,15293,8186,3695,2633,1810,2485,8500,8270,4444,1948,1154,1474,4716,10759,12277,3423,1498,1007,,,,,,,,,,,,,, +5965,South Africa,2011,1472,9772,20487,19360,12111,5220,2164,1932,12751,19250,12807,6955,3266,2223,16381,3682,12442,13486,8520,4565,2412,15699,6853,15343,10678,5872,2909,1971,1272,1730,5673,5501,3038,1414,709,1127,2871,6670,4651,2244,992,636,,,,,,,,,,,,,, +5966,South Africa,2012,1132,9074,19894,18510,11331,5054,2085,1545,11547,17452,11430,5939,2846,2059,17218,4510,14507,15734,10171,5340,2885,16383,7489,16536,11769,6378,3214,2497,1246,1854,6304,6323,3495,1591,859,1081,3072,7290,4952,2491,1118,791,,,,,,,,,,,,,, +5967,South Africa,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18617,16120,43685,45922,28497,13923,6639,18054,21166,41071,29297,15910,7807,5672 +5968,South Sudan,2011,39,251,599,402,259,135,57,60,181,318,239,172,59,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5969,South Sudan,2012,42,356,753,462,267,135,87,58,212,302,221,139,62,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5970,South Sudan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,371,721,447,247,118,87,68,185,302,204,146,67,26 +5971,Spain,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5972,Spain,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5973,Spain,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5974,Spain,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5975,Spain,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5976,Spain,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5977,Spain,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5978,Spain,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5979,Spain,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5980,Spain,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5981,Spain,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5982,Spain,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5983,Spain,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5984,Spain,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5985,Spain,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5986,Spain,1995,22,132,337,242,150,112,228,23,90,129,64,39,34,98,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5987,Spain,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5988,Spain,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5989,Spain,1998,25,186,361,294,195,114,205,3,149,167,61,27,25,104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5990,Spain,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5991,Spain,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5992,Spain,2001,13,160,355,351,215,134,232,15,140,237,116,37,21,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5993,Spain,2002,22,189,392,405,300,192,337,17,194,265,131,56,29,117,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5994,Spain,2003,7,153,334,305,219,132,222,6,138,218,113,51,29,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5995,Spain,2004,14,140,301,312,229,142,227,9,158,202,125,48,22,82,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5996,Spain,2005,13,166,394,367,230,140,230,10,142,252,151,63,24,108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5997,Spain,2006,18,142,332,311,232,105,175,17,122,264,137,48,19,77,228,241,495,572,388,248,513,212,248,383,241,112,77,224,32,88,166,146,100,81,185,25,55,118,86,58,48,186,,,,,,,,,,,,,, +5998,Spain,2007,10,184,375,379,257,128,191,12,164,291,136,63,23,93,180,313,357,431,289,220,438,187,172,302,182,83,77,227,32,79,173,163,74,73,158,35,95,139,90,50,57,177,,,,,,,,,,,,,, +5999,Spain,2008,18,179,355,349,268,157,200,13,168,294,173,68,16,73,225,190,315,337,260,187,300,199,158,240,163,87,60,124,45,117,213,187,100,77,177,42,83,137,111,58,51,179,,,,,,,,,,,,,, +6000,Spain,2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6001,Spain,2010,8,160,373,349,357,172,207,18,157,290,170,69,26,84,194,102,265,249,232,139,306,153,93,197,120,72,59,149,53,81,231,195,115,87,197,41,94,154,124,73,75,234,,,,,,,,,,,,,, +6002,Spain,2011,14,136,329,304,282,168,199,16,143,255,163,80,30,99,209,116,202,230,196,138,300,172,99,167,148,74,54,127,60,79,221,178,110,71,215,59,66,109,125,100,60,213,,,,,,,,,,,,,, +6003,Spain,2012,10,112,259,299,276,156,220,15,101,202,161,70,24,74,125,92,172,175,166,133,297,120,72,141,118,70,50,114,35,71,164,162,104,85,196,38,71,138,140,75,54,173,,,,,,,,,,,,,, +6004,Spain,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198,259,524,614,545,352,620,179,228,490,409,220,159,427 +6005,Sri Lanka,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6006,Sri Lanka,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6007,Sri Lanka,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6008,Sri Lanka,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6009,Sri Lanka,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6010,Sri Lanka,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6011,Sri Lanka,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6012,Sri Lanka,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6013,Sri Lanka,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6014,Sri Lanka,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6015,Sri Lanka,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6016,Sri Lanka,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6017,Sri Lanka,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6018,Sri Lanka,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6019,Sri Lanka,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6020,Sri Lanka,1995,10,163,361,519,521,365,261,15,207,206,142,122,81,56,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6021,Sri Lanka,1996,10,163,327,491,523,355,253,18,197,168,147,133,111,62,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6022,Sri Lanka,1997,11,215,390,596,623,396,271,23,245,217,173,176,89,81,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6023,Sri Lanka,1998,7,237,430,628,663,445,304,22,228,235,169,173,119,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6024,Sri Lanka,1999,8,255,406,621,646,440,325,10,264,231,168,148,126,101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6025,Sri Lanka,2000,25,266,459,695,793,484,360,23,312,264,176,202,144,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6026,Sri Lanka,2001,6,284,446,713,779,528,336,18,296,247,194,174,156,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6027,Sri Lanka,2002,11,287,411,682,788,551,366,19,320,248,205,151,151,107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6028,Sri Lanka,2003,12,311,467,694,791,495,389,14,305,218,186,187,132,120,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6029,Sri Lanka,2004,6,358,472,664,800,521,371,18,263,237,192,176,122,102,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6030,Sri Lanka,2005,9,341,520,724,918,657,424,19,295,261,189,200,154,130,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6031,Sri Lanka,2006,8,342,496,600,816,563,402,13,301,248,178,189,157,129,55,67,125,152,244,266,292,47,85,85,85,116,125,139,127,157,206,171,132,120,100,100,161,195,160,150,84,71,,,,,,,,,,,,,, +6032,Sri Lanka,2007,10,288,477,664,802,649,412,16,279,228,183,182,176,111,65,90,145,174,251,254,270,71,95,90,92,119,129,121,87,161,207,168,170,134,94,77,161,200,178,158,113,67,,,,,,,,,,,,,, +6033,Sri Lanka,2008,11,283,488,717,810,649,415,26,298,288,183,173,172,133,75,98,146,177,284,272,305,65,90,91,105,160,137,126,101,171,239,187,204,124,113,101,174,232,180,145,117,73,,,,,,,,,,,,,, +6034,Sri Lanka,2009,10,328,576,703,860,689,414,24,244,241,172,186,163,144,72,81,110,149,280,287,269,61,98,96,92,116,119,156,126,158,264,194,202,195,140,99,182,247,160,176,134,75,,,,,,,,,,,,,, +6035,Sri Lanka,2010,14,268,539,602,884,683,448,15,255,233,171,183,186,154,68,86,121,162,277,282,316,59,103,109,91,124,168,179,119,179,273,254,249,207,158,117,175,210,187,187,131,102,,,,,,,,,,,,,, +6036,Sri Lanka,2011,12,246,459,585,828,653,479,13,270,217,191,192,191,154,64,104,145,198,267,351,329,91,109,106,99,146,202,194,100,179,295,263,243,209,164,72,185,248,190,200,150,114,,,,,,,,,,,,,, +6037,Sri Lanka,2012,7,243,420,504,799,672,456,17,242,200,162,211,200,136,35,78,115,120,255,334,282,62,74,70,74,107,130,153,112,157,255,227,238,190,136,76,153,182,181,189,151,102,,,,,,,,,,,,,, +6038,Sri Lanka,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,158,502,869,1007,1295,1175,986,152,482,500,417,511,538,418 +6039,Sudan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6040,Sudan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6041,Sudan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6042,Sudan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6043,Sudan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6044,Sudan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6045,Sudan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6046,Sudan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6047,Sudan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6048,Sudan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6049,Sudan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6050,Sudan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6051,Sudan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6052,Sudan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6053,Sudan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6054,Sudan,1995,250,604,796,634,486,362,337,359,490,613,299,403,342,305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6055,Sudan,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6056,Sudan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6057,Sudan,1998,805,1079,1533,1133,820,523,453,680,875,1036,723,528,356,247,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6058,Sudan,1999,842,1100,1456,1270,978,841,839,903,1035,1111,1104,817,594,615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6059,Sudan,2000,785,1028,1511,1351,1119,638,677,817,925,1134,905,771,327,323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6060,Sudan,2001,732,1018,1368,1085,777,462,301,590,787,910,715,467,212,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6061,Sudan,2002,559,1171,1494,1168,852,511,405,498,865,1007,840,523,275,170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6062,Sudan,2003,489,1195,1644,1271,856,645,473,443,881,1052,879,562,384,219,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6063,Sudan,2004,537,1377,1791,1465,1035,697,467,426,978,1187,897,601,400,237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6064,Sudan,2005,425,1358,1990,1541,1151,724,493,381,1102,1203,978,729,411,244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6065,Sudan,2006,297,1351,1890,1504,1102,710,532,312,965,1108,948,763,442,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6066,Sudan,2007,288,1355,1903,1540,1102,729,556,334,992,1318,990,729,467,324,1214,129,221,243,192,98,42,970,91,108,121,97,66,26,84,92,108,151,56,28,21,61,75,81,76,42,19,13,,,,,,,,,,,,,, +6067,Sudan,2008,317,1241,1740,1301,903,610,534,321,850,962,841,601,344,235,959,3202,,,,,,571,2095,,,,,,315,1857,,,,,,239,1437,,,,,,,,,,,,,,,,,,, +6068,Sudan,2009,288,1279,1757,1281,904,606,477,236,806,983,800,557,334,233,965,3269,,,,,,827,2122,,,,,,463,2082,,,,,,357,1584,,,,,,,,,,,,,,,,,,, +6069,Sudan,2010,209,1185,1781,1335,863,497,391,195,761,979,772,520,279,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6070,Sudan,2011,107,899,1359,981,689,386,372,113,512,620,513,352,188,175,941,3184,0,0,0,0,0,686,1935,0,0,0,0,0,416,2210,0,0,0,0,0,321,1677,0,0,0,0,0,,,,,,,,,,,,,, +6071,Sudan,2012,117,869,1274,802,466,404,331,115,536,562,470,299,170,172,823,,,,,,,691,,,,,,,424,,,,,,,299,,,,,,,,,,,,,,,,,,,, +6072,Sudan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1205,,,,,,,976,,,,,, +6073,Suriname,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6074,Suriname,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6075,Suriname,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6076,Suriname,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6077,Suriname,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6078,Suriname,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6079,Suriname,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6080,Suriname,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6081,Suriname,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6082,Suriname,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6083,Suriname,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6084,Suriname,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6085,Suriname,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6086,Suriname,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6087,Suriname,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6088,Suriname,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6089,Suriname,1996,1,5,11,11,0,4,6,2,3,6,5,0,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6090,Suriname,1997,0,6,7,3,2,0,2,0,4,1,0,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6091,Suriname,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6092,Suriname,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6093,Suriname,2000,1,6,6,3,2,0,4,2,3,6,3,0,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6094,Suriname,2001,1,2,7,3,2,4,5,0,2,5,3,2,0,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6095,Suriname,2002,2,1,12,10,2,3,2,0,3,2,4,2,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6096,Suriname,2003,0,5,1,13,6,1,6,1,4,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6097,Suriname,2004,0,6,8,14,6,2,4,0,3,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6098,Suriname,2005,0,7,8,12,6,3,4,0,3,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6099,Suriname,2006,5,6,13,9,4,1,7,2,1,4,1,8,0,2,0,2,4,3,8,2,8,1,1,3,3,1,4,3,0,2,0,3,0,2,1,1,1,3,3,0,0,0,,,,,,,,,,,,,, +6100,Suriname,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6101,Suriname,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6102,Suriname,2009,2,11,17,21,20,11,10,1,5,13,11,11,11,5,0,1,0,1,1,3,1,1,2,0,2,1,1,0,0,1,0,2,0,2,1,0,1,1,1,0,0,0,,,,,,,,,,,,,, +6103,Suriname,2010,0,5,21,35,19,5,10,1,4,6,10,6,2,8,1,1,6,6,5,4,3,2,2,4,3,3,0,1,3,2,2,1,0,0,0,0,0,1,1,2,1,1,,,,,,,,,,,,,, +6104,Suriname,2011,0,4,7,15,18,3,5,0,1,1,5,2,2,1,1,0,5,5,4,1,4,0,0,6,3,2,2,1,1,0,3,6,2,0,1,0,0,1,4,0,0,2,,,,,,,,,,,,,, +6105,Suriname,2012,0,6,7,15,14,9,7,2,1,7,5,7,1,0,2,2,2,6,1,3,1,1,1,1,1,0,3,0,0,1,2,5,1,1,1,1,0,0,0,0,0,1,,,,,,,,,,,,,, +6106,Suriname,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,9,18,28,28,13,3,6,5,13,6,4,1,1 +6107,Swaziland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6108,Swaziland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6109,Swaziland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6110,Swaziland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6111,Swaziland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6112,Swaziland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6113,Swaziland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6114,Swaziland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6115,Swaziland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6116,Swaziland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6117,Swaziland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6118,Swaziland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6119,Swaziland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6120,Swaziland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6121,Swaziland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6122,Swaziland,1995,4,59,117,130,98,40,16,5,52,57,39,29,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6123,Swaziland,1996,79,39,250,335,263,200,120,64,78,352,204,114,58,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6124,Swaziland,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6125,Swaziland,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6126,Swaziland,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6127,Swaziland,2000,11,130,352,249,138,37,17,10,198,298,62,62,24,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6128,Swaziland,2001,16,180,468,374,238,70,34,22,362,474,196,74,18,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6129,Swaziland,2002,1,94,244,182,117,33,10,9,236,274,127,50,13,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6130,Swaziland,2003,15,120,298,171,96,48,19,14,242,325,145,60,20,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6131,Swaziland,2004,6,152,316,245,140,53,21,17,271,381,182,74,19,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6132,Swaziland,2005,9,162,406,285,139,57,27,14,318,453,207,73,21,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6133,Swaziland,2006,32,187,452,268,164,91,45,35,367,464,245,107,48,25,399,199,493,400,249,132,91,360,301,523,324,148,111,74,55,107,276,188,111,86,26,53,157,277,140,56,32,15,,,,,,,,,,,,,, +6134,Swaziland,2007,,223,479,344,182,57,27,,411,576,232,98,39,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6135,Swaziland,2008,29,231,552,357,193,80,35,39,427,663,309,114,57,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6136,Swaziland,2009,26,221,637,417,208,109,45,54,459,759,353,121,57,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6137,Swaziland,2010,30,207,537,369,192,109,50,51,354,662,276,104,54,16,740,156,540,492,266,197,126,690,380,630,390,216,152,89,65,78,293,230,104,79,29,57,142,279,174,54,29,18,,,,,,,,,,,,,, +6138,Swaziland,2011,16,161,459,318,158,69,46,35,281,495,220,86,40,24,71,69,232,218,124,86,90,82,148,327,175,90,66,52,44,64,254,192,87,49,25,39,95,298,133,61,29,25,,,,,,,,,,,,,, +6139,Swaziland,2012,18,163,479,332,168,84,38,39,284,535,242,88,51,27,362,99,411,349,197,143,102,298,194,446,253,119,72,66,34,46,222,171,82,46,29,34,93,234,131,50,17,20,,,,,,,,,,,,,, +6140,Swaziland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,340,302,1088,952,480,302,194,331,517,1087,562,267,156,113 +6141,Sweden,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6142,Sweden,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6143,Sweden,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6144,Sweden,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6145,Sweden,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6146,Sweden,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6147,Sweden,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6148,Sweden,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6149,Sweden,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6150,Sweden,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6151,Sweden,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6152,Sweden,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6153,Sweden,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6154,Sweden,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6155,Sweden,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6156,Sweden,1995,1,5,12,8,5,4,27,0,10,13,5,5,4,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6157,Sweden,1996,1,11,8,3,5,5,17,1,4,10,4,1,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6158,Sweden,1997,0,6,9,13,5,0,16,2,10,8,9,2,3,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6159,Sweden,1998,2,6,9,3,8,3,15,1,10,15,5,0,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6160,Sweden,1999,0,13,18,12,5,2,22,1,7,14,7,3,2,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6161,Sweden,2000,0,9,10,12,11,4,25,1,9,8,10,2,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6162,Sweden,2001,1,10,15,5,3,1,23,1,4,12,8,2,2,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6163,Sweden,2002,0,6,15,10,8,7,8,0,11,14,8,7,2,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6164,Sweden,2003,0,8,14,12,4,5,20,0,10,18,6,2,0,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6165,Sweden,2004,1,10,19,8,8,12,13,0,11,11,13,2,3,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6166,Sweden,2005,0,7,21,16,10,5,16,1,10,15,12,5,3,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6167,Sweden,2006,0,4,15,14,5,3,16,1,12,14,9,1,2,10,10,12,23,16,9,5,38,8,15,23,7,4,9,24,7,8,28,14,7,1,16,2,15,25,20,10,6,17,,,,,,,,,,,,,, +6168,Sweden,2007,0,7,20,10,5,3,9,1,5,11,8,4,1,12,17,15,18,9,12,11,16,9,17,25,14,7,5,23,4,9,26,17,8,2,11,0,12,23,23,11,7,7,,,,,,,,,,,,,, +6169,Sweden,2008,0,14,15,9,5,7,6,0,12,13,5,4,1,6,3,16,18,11,10,6,10,7,16,18,16,6,9,15,2,14,28,16,13,7,7,5,17,30,28,9,6,17,,,,,,,,,,,,,, +6170,Sweden,2009,0,14,16,10,7,5,11,1,9,10,6,5,2,11,8,19,28,10,13,9,16,4,14,15,13,5,9,14,8,17,40,17,8,5,9,4,31,26,23,8,10,18,,,,,,,,,,,,,, +6171,Sweden,2010,1,10,28,8,5,5,13,2,9,16,11,4,2,3,13,33,33,15,3,8,17,14,29,27,8,6,1,16,4,24,37,19,8,4,6,3,18,36,13,12,5,17,,,,,,,,,,,,,, +6172,Sweden,2011,1,14,15,12,8,3,8,0,12,9,10,2,2,3,13,22,40,12,4,4,15,9,14,15,11,6,6,9,4,26,33,13,7,5,2,2,13,31,17,11,5,1,,,,,,,,,,,,,, +6173,Sweden,2012,0,8,16,8,9,8,13,0,11,10,3,7,2,6,9,39,30,12,10,9,22,8,23,23,17,14,7,10,3,34,43,21,6,8,5,4,18,36,20,11,13,7,,,,,,,,,,,,,, +6174,Sweden,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,94,93,40,20,25,34,30,48,90,33,39,16,30 +6175,Switzerland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6176,Switzerland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6177,Switzerland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6178,Switzerland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6179,Switzerland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6180,Switzerland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6181,Switzerland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6182,Switzerland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6183,Switzerland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6184,Switzerland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6185,Switzerland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6186,Switzerland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6187,Switzerland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6188,Switzerland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6189,Switzerland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6190,Switzerland,1995,0,12,23,26,23,13,27,1,13,20,9,1,2,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6191,Switzerland,1996,1,12,28,27,17,17,22,0,6,18,4,4,4,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6192,Switzerland,1997,0,16,20,15,11,7,25,0,14,14,6,2,2,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6193,Switzerland,1998,0,15,30,26,12,10,23,1,11,15,6,4,1,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6194,Switzerland,1999,1,9,9,11,2,3,3,0,6,11,6,0,1,3,2,20,20,15,20,8,22,9,10,24,13,5,7,25,0,3,13,11,2,1,10,2,9,11,9,7,3,16,,,,,,,,,,,,,, +6195,Switzerland,2000,0,5,17,10,7,6,6,1,8,11,7,2,1,5,5,17,19,21,16,17,34,1,13,23,22,4,4,20,1,7,9,8,5,4,8,2,14,13,11,3,4,12,,,,,,,,,,,,,, +6196,Switzerland,2001,0,7,16,12,6,9,5,0,4,9,3,2,1,6,5,20,15,19,18,13,26,4,13,28,11,3,5,27,1,8,4,7,5,5,6,2,11,17,9,3,6,12,,,,,,,,,,,,,, +6197,Switzerland,2002,0,10,16,10,16,4,7,0,12,14,5,4,0,4,8,31,21,20,7,14,22,10,20,34,11,6,4,23,1,9,17,8,5,6,9,1,8,10,12,5,5,9,,,,,,,,,,,,,, +6198,Switzerland,2003,0,10,7,20,7,4,9,1,9,9,3,0,5,1,10,24,23,18,19,12,20,7,11,17,11,7,8,23,1,10,14,4,2,1,7,1,13,15,8,13,3,14,,,,,,,,,,,,,, +6199,Switzerland,2004,0,12,11,11,9,7,11,0,6,13,6,3,3,5,5,17,22,24,17,10,23,3,15,20,15,7,9,18,1,8,13,14,2,5,7,1,8,16,10,8,1,11,,,,,,,,,,,,,, +6200,Switzerland,2005,2,8,10,11,11,2,7,0,6,11,8,3,1,4,6,16,25,15,18,7,17,8,13,21,10,5,3,23,1,8,11,14,9,3,14,0,11,14,8,6,3,8,,,,,,,,,,,,,, +6201,Switzerland,2006,1,7,14,6,7,6,7,1,7,14,6,3,0,0,2,13,14,14,15,13,24,4,13,20,19,9,6,21,1,3,12,6,2,3,5,0,4,9,14,5,4,7,,,,,,,,,,,,,, +6202,Switzerland,2007,0,9,7,7,5,4,8,1,8,13,3,0,2,5,3,12,13,15,14,6,17,8,7,23,8,6,7,12,2,10,7,5,2,2,14,1,4,16,8,8,5,6,,,,,,,,,,,,,, +6203,Switzerland,2008,0,8,13,5,4,3,4,1,3,13,6,2,1,1,3,14,24,13,9,8,16,5,6,19,15,7,6,11,1,4,13,13,3,5,3,1,7,17,13,4,2,13,,,,,,,,,,,,,, +6204,Switzerland,2009,0,11,10,12,7,2,4,1,1,10,8,5,1,2,5,15,20,15,13,10,12,5,9,21,12,7,9,10,2,13,11,5,6,4,4,3,5,12,8,7,5,12,,,,,,,,,,,,,, +6205,Switzerland,2010,0,6,12,9,6,5,8,0,7,15,6,4,1,3,5,11,16,14,10,9,17,6,13,22,11,4,3,8,1,9,10,11,4,6,2,0,3,13,11,7,4,10,,,,,,,,,,,,,, +6206,Switzerland,2011,2,8,16,10,13,7,3,2,6,13,2,4,2,2,6,14,21,15,19,12,15,8,13,10,10,9,5,13,0,12,16,14,3,5,10,1,2,16,13,17,0,10,,,,,,,,,,,,,, +6207,Switzerland,2012,0,3,18,8,6,5,11,0,7,15,7,1,2,4,5,9,20,15,8,6,6,6,3,18,9,5,4,10,1,10,11,7,0,3,11,1,7,8,11,5,2,7,,,,,,,,,,,,,, +6208,Switzerland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,39,53,42,23,27,39,7,26,65,54,16,23,37 +6209,Syrian Arab Republic,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6210,Syrian Arab Republic,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6211,Syrian Arab Republic,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6212,Syrian Arab Republic,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6213,Syrian Arab Republic,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6214,Syrian Arab Republic,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6215,Syrian Arab Republic,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6216,Syrian Arab Republic,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6217,Syrian Arab Republic,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6218,Syrian Arab Republic,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6219,Syrian Arab Republic,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6220,Syrian Arab Republic,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6221,Syrian Arab Republic,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6222,Syrian Arab Republic,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6223,Syrian Arab Republic,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6224,Syrian Arab Republic,1995,13,332,255,111,70,59,50,22,158,97,53,44,37,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6225,Syrian Arab Republic,1996,11,390,290,110,90,69,60,12,200,107,57,51,45,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6226,Syrian Arab Republic,1997,6,337,295,118,74,52,52,23,201,112,47,31,36,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6227,Syrian Arab Republic,1998,5,335,293,111,93,48,50,20,197,99,43,49,18,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6228,Syrian Arab Republic,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6229,Syrian Arab Republic,2000,8,359,289,125,86,76,55,23,195,101,53,46,38,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6230,Syrian Arab Republic,2001,8,317,248,134,108,64,47,26,210,116,56,50,42,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6231,Syrian Arab Republic,2002,12,359,278,121,80,62,61,23,182,116,53,43,31,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6232,Syrian Arab Republic,2003,10,343,279,127,98,75,64,26,242,99,68,48,33,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6233,Syrian Arab Republic,2004,13,318,308,115,113,77,50,20,230,121,46,56,59,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6234,Syrian Arab Republic,2005,9,266,237,111,112,62,63,27,182,108,59,59,32,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6235,Syrian Arab Republic,2006,8,225,267,137,110,71,44,18,195,109,42,53,39,34,36,65,47,31,35,40,42,51,76,25,25,34,29,27,171,288,188,70,63,58,69,154,298,225,130,104,80,52,,,,,,,,,,,,,, +6236,Syrian Arab Republic,2007,7,198,222,123,74,49,59,14,148,106,41,43,30,41,31,73,86,56,52,26,45,44,103,52,37,26,42,33,188,288,202,90,57,56,75,198,345,244,133,120,95,78,,,,,,,,,,,,,, +6237,Syrian Arab Republic,2008,18,170,212,128,82,61,52,30,149,80,48,32,29,25,32,80,77,55,40,40,52,37,68,59,35,26,30,36,171,227,188,75,57,38,80,152,285,238,126,105,83,63,,,,,,,,,,,,,, +6238,Syrian Arab Republic,2009,10,172,212,121,97,74,47,17,167,82,41,44,34,25,21,76,65,53,54,47,55,43,81,39,38,40,31,32,155,203,179,92,67,61,77,164,336,273,154,126,82,67,,,,,,,,,,,,,, +6239,Syrian Arab Republic,2010,7,170,212,101,80,65,49,16,164,105,47,41,38,27,14,62,61,37,32,42,50,38,62,51,20,22,23,30,189,191,175,79,62,43,67,157,293,263,152,124,83,70,,,,,,,,,,,,,, +6240,Syrian Arab Republic,2011,8,139,195,116,81,49,45,20,113,97,56,35,36,37,23,39,51,30,33,31,31,19,52,30,14,21,8,11,267,172,181,58,64,44,47,215,247,254,126,109,61,70,,,,,,,,,,,,,, +6241,Syrian Arab Republic,2012,7,91,146,90,85,46,41,5,104,75,35,33,32,19,18,41,34,25,37,24,24,21,40,34,25,15,14,12,245,121,128,65,47,37,41,192,249,238,147,84,70,38,,,,,,,,,,,,,, +6242,Syrian Arab Republic,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,211,273,304,201,180,127,113,192,344,320,197,150,103,80 +6243,Tajikistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6244,Tajikistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6245,Tajikistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6246,Tajikistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6247,Tajikistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6248,Tajikistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6249,Tajikistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6250,Tajikistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6251,Tajikistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6252,Tajikistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6253,Tajikistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6254,Tajikistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6255,Tajikistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6256,Tajikistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6257,Tajikistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6258,Tajikistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6259,Tajikistan,1996,4,22,25,23,12,12,4,5,18,26,46,20,11,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6260,Tajikistan,1997,8,16,38,26,18,12,8,7,17,33,24,17,12,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6261,Tajikistan,1998,9,67,90,48,18,22,10,2,33,60,37,21,10,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6262,Tajikistan,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6263,Tajikistan,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6264,Tajikistan,2001,8,129,152,89,43,17,16,0,61,83,62,25,11,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6265,Tajikistan,2002,7,134,133,66,45,28,19,6,69,84,46,29,15,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6266,Tajikistan,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6267,Tajikistan,2004,7,146,90,58,34,12,10,11,77,59,41,23,17,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6268,Tajikistan,2005,8,308,279,164,104,54,48,26,225,185,151,89,43,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6269,Tajikistan,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6270,Tajikistan,2007,13,413,361,194,132,63,65,21,329,243,154,92,61,87,61,444,320,186,122,54,51,65,235,220,135,103,71,53,228,386,167,96,52,27,36,197,172,150,90,69,40,23,,,,,,,,,,,,,, +6271,Tajikistan,2008,7,437,358,165,113,52,64,25,290,211,121,101,40,73,70,447,343,194,149,69,71,61,258,229,158,121,68,47,222,435,191,114,77,27,27,162,162,119,90,72,50,25,,,,,,,,,,,,,, +6272,Tajikistan,2009,4,407,322,173,107,78,58,12,253,223,111,92,60,72,59,461,363,182,108,60,56,47,257,258,141,104,74,38,188,389,174,95,80,30,33,146,178,130,93,71,41,36,,,,,,,,,,,,,, +6273,Tajikistan,2010,12,398,366,214,129,93,74,23,320,272,111,109,87,82,51,432,283,174,119,64,62,62,251,216,122,96,62,44,189,262,173,88,72,40,31,154,249,165,78,68,35,27,,,,,,,,,,,,,, +6274,Tajikistan,2011,8,343,365,181,128,75,77,31,314,229,104,100,105,114,71,417,309,188,124,84,62,66,248,227,116,114,67,55,241,321,151,78,60,32,32,152,158,148,82,68,56,34,,,,,,,,,,,,,, +6275,Tajikistan,2012,8,346,320,169,124,75,72,16,243,243,105,99,94,127,50,380,325,163,104,68,59,42,192,193,120,100,72,43,138,301,157,92,61,47,33,106,186,164,85,81,46,35,,,,,,,,,,,,,, +6276,Tajikistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,205,949,779,399,280,207,176,184,621,564,295,258,224,165 +6277,Thailand,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6278,Thailand,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6279,Thailand,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6280,Thailand,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6281,Thailand,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6282,Thailand,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6283,Thailand,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6284,Thailand,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6285,Thailand,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6286,Thailand,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6287,Thailand,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6288,Thailand,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6289,Thailand,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6290,Thailand,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6291,Thailand,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6292,Thailand,1995,59,1191,2936,2948,2434,2607,2346,52,741,888,782,936,1175,1178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6293,Thailand,1996,54,1088,2857,2496,1935,2004,1772,50,598,844,683,718,918,980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6294,Thailand,1997,53,864,2336,2101,1488,1434,1326,38,545,725,504,475,633,690,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6295,Thailand,1998,11,427,1153,1098,892,945,985,17,297,401,317,386,475,558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6296,Thailand,1999,20,791,2123,2015,1702,1705,1795,30,511,771,676,750,879,1164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6297,Thailand,2000,27,859,2570,2380,2117,1908,2213,32,624,1035,780,873,1016,1321,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6298,Thailand,2001,37,1868,5192,4516,3269,2617,2912,58,999,1550,1231,1251,1265,1777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6299,Thailand,2002,35,1352,3805,3699,3155,2556,3077,61,897,1525,1212,1143,1307,1769,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6300,Thailand,2003,41,1636,4615,4259,3497,2740,3241,49,944,1678,1350,1279,1264,1866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6301,Thailand,2004,46,1421,4211,4542,3831,2787,3379,50,951,1602,1335,1217,1203,1846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6302,Thailand,2005,44,1344,3814,4393,4003,2831,3407,57,907,1662,1334,1367,1259,1938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6303,Thailand,2006,43,1276,3732,4664,4055,3084,3732,65,884,1542,1379,1349,1287,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6304,Thailand,2007,48,1261,3398,4487,4168,3122,3748,50,885,1481,1418,1302,1281,1938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6305,Thailand,2008,66,1222,3374,4425,4164,3167,3836,77,865,1513,1345,1407,1276,2051,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6306,Thailand,2009,43,1348,3484,4692,4921,3597,4282,80,1137,2032,1781,1633,1493,2287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6307,Thailand,2010,55,1506,3695,5253,5042,3625,4189,82,1087,1930,1749,1467,1494,2276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6308,Thailand,2011,38,1546,3650,5139,5140,3734,4080,76,1214,1773,1658,1586,1402,2133,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6309,Thailand,2012,35,1444,3277,4705,4867,3780,3863,82,995,1491,1613,1424,1364,2058,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6310,Thailand,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6311,The Former Yugoslav Republic of Macedonia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6312,The Former Yugoslav Republic of Macedonia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6313,The Former Yugoslav Republic of Macedonia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6314,The Former Yugoslav Republic of Macedonia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6315,The Former Yugoslav Republic of Macedonia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6316,The Former Yugoslav Republic of Macedonia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6317,The Former Yugoslav Republic of Macedonia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6318,The Former Yugoslav Republic of Macedonia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6319,The Former Yugoslav Republic of Macedonia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6320,The Former Yugoslav Republic of Macedonia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6321,The Former Yugoslav Republic of Macedonia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6322,The Former Yugoslav Republic of Macedonia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6323,The Former Yugoslav Republic of Macedonia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6324,The Former Yugoslav Republic of Macedonia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6325,The Former Yugoslav Republic of Macedonia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6326,The Former Yugoslav Republic of Macedonia,1995,2,15,42,45,33,29,24,2,32,30,20,11,17,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6327,The Former Yugoslav Republic of Macedonia,1996,5,17,20,35,16,25,22,3,15,25,17,9,19,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6328,The Former Yugoslav Republic of Macedonia,1997,1,8,21,25,24,21,21,1,14,19,13,6,7,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6329,The Former Yugoslav Republic of Macedonia,1998,3,14,19,56,18,21,13,5,16,18,8,8,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6330,The Former Yugoslav Republic of Macedonia,1999,1,11,10,19,27,15,5,1,7,9,5,1,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6331,The Former Yugoslav Republic of Macedonia,2000,5,8,14,20,19,20,14,1,15,14,17,5,5,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6332,The Former Yugoslav Republic of Macedonia,2001,1,10,17,17,15,21,16,1,17,18,14,7,3,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6333,The Former Yugoslav Republic of Macedonia,2002,2,20,17,28,31,22,7,3,18,24,12,4,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6334,The Former Yugoslav Republic of Macedonia,2003,1,20,23,35,28,17,17,0,16,16,9,9,1,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6335,The Former Yugoslav Republic of Macedonia,2004,2,12,18,19,33,21,15,0,15,20,19,6,3,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6336,The Former Yugoslav Republic of Macedonia,2005,2,14,20,23,20,18,13,2,17,13,10,7,5,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6337,The Former Yugoslav Republic of Macedonia,2006,0,15,15,25,37,18,7,3,16,9,9,6,7,11,32,20,7,13,23,12,29,29,13,7,8,8,6,11,6,10,8,6,7,7,7,8,11,11,18,8,12,14,,,,,,,,,,,,,, +6338,The Former Yugoslav Republic of Macedonia,2007,1,12,22,27,46,21,19,4,11,12,9,4,4,8,32,12,14,15,21,16,16,7,10,6,6,7,6,9,5,12,7,6,8,5,9,6,8,14,11,8,5,13,,,,,,,,,,,,,, +6339,The Former Yugoslav Republic of Macedonia,2008,1,18,21,13,25,15,15,2,24,15,14,8,7,10,13,12,9,8,8,10,16,19,11,3,5,5,6,8,3,16,11,6,5,7,8,2,5,11,9,5,11,8,,,,,,,,,,,,,, +6340,The Former Yugoslav Republic of Macedonia,2009,1,28,24,30,23,13,14,2,14,16,10,4,5,14,8,6,9,11,6,3,11,11,9,9,6,2,5,7,4,15,9,6,7,1,9,5,14,10,5,11,9,11,,,,,,,,,,,,,, +6341,The Former Yugoslav Republic of Macedonia,2010,0,6,19,24,24,12,11,0,9,12,7,7,4,6,6,10,12,10,17,12,14,14,9,7,5,8,4,7,9,8,6,7,3,1,9,4,4,9,7,7,10,8,,,,,,,,,,,,,, +6342,The Former Yugoslav Republic of Macedonia,2011,3,17,11,19,21,10,6,1,14,9,6,3,1,11,12,5,5,4,8,8,11,8,7,10,1,3,7,10,3,8,0,3,9,2,7,6,4,6,5,6,8,9,,,,,,,,,,,,,, +6343,The Former Yugoslav Republic of Macedonia,2012,0,16,14,12,19,15,13,0,12,14,9,6,10,7,10,3,8,5,12,7,12,13,7,3,3,6,1,5,3,11,3,6,8,8,9,3,8,4,4,3,0,8,,,,,,,,,,,,,, +6344,The Former Yugoslav Republic of Macedonia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,14,30,32,46,39,41,11,12,15,14,15,17,20 +6345,Timor-Leste,2002,13,119,145,119,107,58,35,20,118,124,88,91,40,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6346,Timor-Leste,2003,5,130,135,107,98,66,41,13,98,116,76,76,43,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6347,Timor-Leste,2004,5,133,134,95,99,65,48,19,109,116,83,51,27,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6348,Timor-Leste,2005,8,136,149,116,119,52,47,8,127,90,76,60,18,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6349,Timor-Leste,2006,1,128,115,103,75,48,49,8,102,76,82,63,34,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6350,Timor-Leste,2007,4,128,129,89,77,69,65,10,120,98,89,76,36,31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6351,Timor-Leste,2008,6,115,88,93,73,52,54,4,87,72,85,67,35,36,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6352,Timor-Leste,2009,8,158,120,94,88,75,106,9,124,127,105,69,63,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6353,Timor-Leste,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6354,Timor-Leste,2011,14,199,177,137,114,99,146,16,176,182,113,85,77,75,366,,,,,,,282,,,,,,,51,,,,,,,55,,,,,,,,,,,,,,,,,,,, +6355,Timor-Leste,2012,7,196,172,128,119,114,129,12,154,143,120,75,84,92,171,,,,,,,163,,,,,,,62,,,,,,,56,,,,,,,,,,,,,,,,,,,, +6356,Timor-Leste,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,167,,,,,,,173,,,,,, +6357,Togo,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6358,Togo,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6359,Togo,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6360,Togo,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6361,Togo,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6362,Togo,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6363,Togo,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6364,Togo,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6365,Togo,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6366,Togo,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6367,Togo,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6368,Togo,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6369,Togo,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6370,Togo,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6371,Togo,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6372,Togo,1995,7,95,151,123,82,64,49,9,80,96,45,38,23,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6373,Togo,1996,11,95,153,134,89,37,50,12,89,117,45,45,15,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6374,Togo,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6375,Togo,1998,13,85,177,136,86,48,36,15,95,113,52,36,17,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6376,Togo,1999,11,92,169,124,80,42,37,7,88,123,64,32,25,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6377,Togo,2000,4,101,168,144,109,48,39,13,107,124,50,36,24,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6378,Togo,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6379,Togo,2002,10,140,239,166,104,55,40,12,125,148,79,43,29,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6380,Togo,2003,10,126,229,192,120,66,57,15,102,149,80,55,26,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6381,Togo,2004,9,145,286,233,143,69,66,12,150,205,103,55,37,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6382,Togo,2005,11,177,320,283,125,79,69,23,157,236,146,67,41,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6383,Togo,2006,15,174,358,344,183,94,79,29,214,268,170,96,58,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6384,Togo,2007,7,156,309,276,170,73,66,17,184,256,150,67,35,30,194,,,,,,,,,,,,,,356,,,,,,,,,,,,,,,,,,,,,,,,,,, +6385,Togo,2008,15,194,379,338,214,113,78,29,202,302,170,94,47,59,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6386,Togo,2009,15,168,378,331,233,130,89,27,197,288,166,86,42,46,8,7,19,29,24,16,14,11,13,28,13,15,10,6,17,20,40,41,36,22,13,17,20,21,30,33,15,0,,,,,,,,,,,,,, +6387,Togo,2010,21,150,350,358,217,116,80,39,163,285,148,78,62,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6388,Togo,2011,15,169,340,350,234,123,85,11,167,277,146,89,50,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6389,Togo,2012,9,171,338,341,237,121,87,17,165,287,154,109,48,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6390,Togo,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,216,401,412,307,158,92,44,191,300,190,125,70,53 +6391,Tokelau,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6392,Tokelau,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6393,Tokelau,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6394,Tokelau,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6395,Tokelau,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6396,Tokelau,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6397,Tokelau,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6398,Tokelau,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6399,Tokelau,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6400,Tokelau,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6401,Tokelau,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6402,Tokelau,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6403,Tokelau,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6404,Tokelau,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6405,Tokelau,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6406,Tokelau,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6407,Tokelau,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6408,Tokelau,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6409,Tokelau,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6410,Tokelau,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6411,Tokelau,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6412,Tokelau,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6413,Tokelau,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6414,Tokelau,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6415,Tokelau,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6416,Tokelau,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6417,Tokelau,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6418,Tokelau,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6419,Tokelau,2008,,0,0,0,0,0,,,0,0,0,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6420,Tokelau,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6421,Tokelau,2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6422,Tokelau,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6423,Tokelau,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6424,Tokelau,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6425,Tonga,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6426,Tonga,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6427,Tonga,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6428,Tonga,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6429,Tonga,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6430,Tonga,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6431,Tonga,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6432,Tonga,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6433,Tonga,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6434,Tonga,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6435,Tonga,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6436,Tonga,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6437,Tonga,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6438,Tonga,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6439,Tonga,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6440,Tonga,1995,0,1,0,0,0,1,2,0,0,1,1,0,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6441,Tonga,1996,0,1,1,2,0,6,0,0,1,1,1,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6442,Tonga,1997,0,2,1,1,0,1,2,0,4,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6443,Tonga,1998,0,2,3,1,2,1,2,1,1,0,0,0,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6444,Tonga,1999,0,1,0,0,1,3,2,0,1,0,0,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6445,Tonga,2000,,2,1,1,,1,5,,1,1,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6446,Tonga,2001,0,0,1,0,0,2,1,0,0,2,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6447,Tonga,2002,,1,,,4,,10,,1,1,1,,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6448,Tonga,2003,0,1,1,1,1,0,2,0,1,0,1,1,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6449,Tonga,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6450,Tonga,2005,0,2,1,0,2,1,0,0,2,1,0,0,2,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6451,Tonga,2006,0,1,0,0,1,2,4,0,1,1,2,0,0,2,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6452,Tonga,2007,0,2,1,0,0,1,5,0,3,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6453,Tonga,2008,0,2,0,2,2,1,1,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,,,,,,,,,,,,,, +6454,Tonga,2009,0,0,0,1,1,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6455,Tonga,2010,0,0,0,1,0,1,3,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,, +6456,Tonga,2011,0,0,1,0,0,0,1,2,0,1,1,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6457,Tonga,2012,0,0,0,0,2,0,2,0,2,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,,,,,,,,,,,,,, +6458,Tonga,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,2,0,0,1,1,0,0,0,3,1,2 +6459,Trinidad and Tobago,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6460,Trinidad and Tobago,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6461,Trinidad and Tobago,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6462,Trinidad and Tobago,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6463,Trinidad and Tobago,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6464,Trinidad and Tobago,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6465,Trinidad and Tobago,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6466,Trinidad and Tobago,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6467,Trinidad and Tobago,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6468,Trinidad and Tobago,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6469,Trinidad and Tobago,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6470,Trinidad and Tobago,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6471,Trinidad and Tobago,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6472,Trinidad and Tobago,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6473,Trinidad and Tobago,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6474,Trinidad and Tobago,1995,2,6,15,10,12,7,4,0,6,4,2,5,3,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6475,Trinidad and Tobago,1996,0,4,7,9,9,6,6,0,5,5,5,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6476,Trinidad and Tobago,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6477,Trinidad and Tobago,1998,0,9,12,21,14,9,8,1,5,3,5,2,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6478,Trinidad and Tobago,1999,0,11,18,13,8,5,6,0,4,6,7,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6479,Trinidad and Tobago,2000,0,7,18,27,17,7,7,0,5,7,9,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6480,Trinidad and Tobago,2001,5,10,21,36,24,17,18,5,10,11,15,9,9,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6481,Trinidad and Tobago,2002,0,8,13,20,12,12,3,0,4,11,3,2,0,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6482,Trinidad and Tobago,2003,0,9,13,10,13,10,6,1,2,2,0,8,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6483,Trinidad and Tobago,2004,,3,10,24,7,10,7,2,3,8,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6484,Trinidad and Tobago,2005,0,10,11,13,21,10,3,0,4,9,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6485,Trinidad and Tobago,2006,2,7,27,23,20,16,12,1,3,10,5,4,8,23,3,2,10,11,14,8,1,3,1,1,3,2,,1,,,3,5,3,,2,,,3,1,,,,,,,,,,,,,,,,, +6486,Trinidad and Tobago,2007,1,10,16,21,28,18,5,0,5,7,7,4,3,5,2,2,2,9,10,9,9,3,2,1,1,2,1,1,1,2,2,4,2,3,0,0,0,0,2,2,1,0,,,,,,,,,,,,,, +6487,Trinidad and Tobago,2008,2,9,15,19,34,29,14,1,11,12,4,8,4,7,9,4,13,7,14,12,15,1,5,6,2,5,3,1,0,0,0,4,2,0,1,0,0,1,0,1,0,0,,,,,,,,,,,,,, +6488,Trinidad and Tobago,2009,2,6,18,26,20,25,13,2,4,11,9,9,4,5,3,3,6,10,21,7,14,7,5,2,4,4,2,3,1,0,2,1,7,2,1,2,0,1,1,1,0,0,,,,,,,,,,,,,, +6489,Trinidad and Tobago,2010,0,11,21,17,32,20,8,0,4,7,7,5,2,2,5,2,7,6,9,10,2,0,2,4,1,3,1,6,3,1,3,1,1,2,0,0,3,2,1,2,1,0,,,,,,,,,,,,,, +6490,Trinidad and Tobago,2011,1,14,27,13,15,16,7,1,6,7,3,4,2,5,4,3,12,11,7,9,6,1,4,2,3,9,1,5,0,2,4,2,2,0,0,0,4,0,1,2,1,1,,,,,,,,,,,,,, +6491,Trinidad and Tobago,2012,0,7,31,22,28,12,11,2,9,11,10,8,4,12,2,2,7,9,12,14,17,0,1,5,4,4,2,2,2,2,1,1,2,2,0,1,1,3,1,0,1,2,,,,,,,,,,,,,, +6492,Trinidad and Tobago,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,14,48,41,36,26,24,7,5,14,7,5,7,10 +6493,Tunisia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6494,Tunisia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6495,Tunisia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6496,Tunisia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6497,Tunisia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6498,Tunisia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6499,Tunisia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6500,Tunisia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6501,Tunisia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6502,Tunisia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6503,Tunisia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6504,Tunisia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6505,Tunisia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6506,Tunisia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6507,Tunisia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6508,Tunisia,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6509,Tunisia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6510,Tunisia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6511,Tunisia,1998,11,134,206,155,108,88,95,12,80,65,43,39,43,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6512,Tunisia,1999,18,137,221,181,106,88,129,15,80,76,62,40,29,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6513,Tunisia,2000,16,139,208,156,109,65,101,7,68,59,43,21,21,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6514,Tunisia,2001,23,141,185,157,103,83,100,9,62,42,47,30,42,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6515,Tunisia,2002,1,112,184,153,99,67,65,6,55,50,36,28,34,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6516,Tunisia,2003,3,100,164,129,95,66,74,7,57,56,36,34,24,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6517,Tunisia,2004,9,100,181,128,123,62,91,7,44,55,39,47,19,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6518,Tunisia,2005,5,103,172,133,115,53,81,7,66,61,39,36,16,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6519,Tunisia,2006,5,125,174,119,111,58,85,3,53,52,33,33,33,38,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6520,Tunisia,2007,1,124,171,117,104,71,75,11,69,54,42,28,29,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6521,Tunisia,2008,6,130,188,118,125,80,59,7,68,57,35,24,18,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6522,Tunisia,2009,6,80,175,122,134,71,81,7,52,55,43,42,18,45,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6523,Tunisia,2010,9,115,194,170,125,93,88,4,64,64,39,34,40,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6524,Tunisia,2011,6,110,194,118,126,108,63,10,60,60,50,44,35,47,1,24,29,19,19,23,34,0,20,14,17,21,11,14,59,107,127,75,88,49,66,67,165,209,191,155,142,113,,,,,,,,,,,,,, +6525,Tunisia,2012,10,88,191,149,114,93,88,7,51,56,46,48,46,72,2,19,39,35,23,30,31,4,13,16,18,16,16,20,87,124,123,99,105,74,80,94,200,225,189,186,162,105,,,,,,,,,,,,,, +6526,Tunisia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,210,360,288,216,182,177,105,239,349,230,228,189,171 +6527,Turkey,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6528,Turkey,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6529,Turkey,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6530,Turkey,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6531,Turkey,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6532,Turkey,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6533,Turkey,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6534,Turkey,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6535,Turkey,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6536,Turkey,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6537,Turkey,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6538,Turkey,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6539,Turkey,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6540,Turkey,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6541,Turkey,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6542,Turkey,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6543,Turkey,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6544,Turkey,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6545,Turkey,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6546,Turkey,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6547,Turkey,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6548,Turkey,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6549,Turkey,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6550,Turkey,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6551,Turkey,2004,0,50,38,50,41,28,19,2,24,21,8,4,7,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6552,Turkey,2005,33,1148,1295,1028,963,534,429,50,699,474,243,175,166,213,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6553,Turkey,2006,40,1212,1391,1003,1045,575,473,56,769,507,235,155,149,256,271,727,693,511,426,321,346,272,531,365,194,120,122,170,227,759,581,349,265,210,266,247,610,576,446,386,339,348,,,,,,,,,,,,,, +6554,Turkey,2007,50,1091,1245,984,978,571,512,63,708,531,246,165,128,255,239,649,636,419,390,251,301,207,516,332,172,135,96,149,201,735,601,347,267,212,288,192,597,613,466,473,415,383,,,,,,,,,,,,,, +6555,Turkey,2008,48,940,1090,953,947,607,453,57,653,485,233,152,139,236,227,617,600,379,344,287,281,226,459,339,170,121,109,166,211,591,535,319,278,232,274,180,510,588,461,431,409,423,,,,,,,,,,,,,, +6556,Turkey,2009,34,817,986,729,865,500,432,36,479,469,171,137,127,225,211,554,558,375,384,260,310,248,452,341,174,137,121,164,210,563,505,321,288,232,295,201,545,586,458,513,463,467,,,,,,,,,,,,,, +6557,Turkey,2010,23,631,779,703,778,514,407,33,485,384,193,141,101,203,246,476,500,362,367,273,313,222,450,359,140,138,147,198,205,502,478,363,301,275,335,150,490,587,458,509,475,489,,,,,,,,,,,,,, +6558,Turkey,2011,22,550,693,608,696,482,412,25,409,385,195,117,121,212,212,441,452,343,331,314,310,212,380,298,150,127,159,196,140,519,468,311,307,325,353,133,426,602,496,501,493,491,,,,,,,,,,,,,, +6559,Turkey,2012,20,507,655,575,650,476,398,30,369,308,168,97,105,227,170,396,434,330,334,340,363,174,349,288,175,118,133,225,151,449,462,346,298,261,293,127,364,544,419,474,442,491,,,,,,,,,,,,,, +6560,Turkey,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,282,1276,1313,1175,1378,1114,1151,299,998,1136,743,663,682,960 +6561,Turkmenistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6562,Turkmenistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6563,Turkmenistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6564,Turkmenistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6565,Turkmenistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6566,Turkmenistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6567,Turkmenistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6568,Turkmenistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6569,Turkmenistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6570,Turkmenistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6571,Turkmenistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6572,Turkmenistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6573,Turkmenistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6574,Turkmenistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6575,Turkmenistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6576,Turkmenistan,1995,1,11,188,0,79,30,0,2,15,146,0,47,25,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6577,Turkmenistan,1996,0,15,114,101,44,37,23,2,12,75,72,25,19,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6578,Turkmenistan,1997,2,14,208,77,90,69,10,0,10,95,75,47,45,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6579,Turkmenistan,1998,0,100,210,131,64,48,12,2,59,69,43,28,16,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6580,Turkmenistan,1999,5,129,225,174,77,43,17,2,51,103,65,32,27,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6581,Turkmenistan,2000,16,103,185,144,127,31,21,19,73,140,76,31,34,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6582,Turkmenistan,2001,1,169,295,196,93,46,21,3,113,137,70,40,32,27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6583,Turkmenistan,2002,2,164,249,224,112,38,21,3,113,143,74,57,34,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6584,Turkmenistan,2003,3,148,265,212,112,37,14,5,94,139,84,42,21,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6585,Turkmenistan,2004,0,129,250,174,123,37,12,2,90,128,68,45,26,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6586,Turkmenistan,2005,2,148,181,146,97,51,13,3,100,101,72,46,27,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6587,Turkmenistan,2006,0,140,273,191,120,33,18,5,107,115,72,34,24,23,8,140,180,126,71,35,12,7,87,100,62,24,24,12,9,38,42,28,15,14,4,9,18,23,30,12,10,4,,,,,,,,,,,,,, +6588,Turkmenistan,2007,2,176,272,224,137,56,23,6,129,132,81,69,36,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6589,Turkmenistan,2008,3,176,235,201,164,56,24,4,126,146,81,56,29,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6590,Turkmenistan,2009,0,178,223,221,155,59,32,5,146,119,90,65,47,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6591,Turkmenistan,2010,1,130,212,183,141,51,26,2,112,112,74,46,38,25,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6592,Turkmenistan,2011,0,117,179,167,134,91,23,1,113,115,94,50,33,20,26,93,151,149,123,71,15,24,103,95,79,42,20,12,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6593,Turkmenistan,2012,1,111,200,171,135,62,20,0,137,120,56,64,37,33,22,204,170,131,93,43,11,21,112,142,61,63,37,7,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6594,Turkmenistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6595,Turks and Caicos Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6596,Turks and Caicos Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6597,Turks and Caicos Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6598,Turks and Caicos Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6599,Turks and Caicos Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6600,Turks and Caicos Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6601,Turks and Caicos Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6602,Turks and Caicos Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6603,Turks and Caicos Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6604,Turks and Caicos Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6605,Turks and Caicos Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6606,Turks and Caicos Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6607,Turks and Caicos Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6608,Turks and Caicos Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6609,Turks and Caicos Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6610,Turks and Caicos Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6611,Turks and Caicos Islands,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6612,Turks and Caicos Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6613,Turks and Caicos Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6614,Turks and Caicos Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6615,Turks and Caicos Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6616,Turks and Caicos Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6617,Turks and Caicos Islands,2002,,,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6618,Turks and Caicos Islands,2003,0,0,2,0,0,0,0,0,0,2,0,2,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6619,Turks and Caicos Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6620,Turks and Caicos Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6621,Turks and Caicos Islands,2006,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6622,Turks and Caicos Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6623,Turks and Caicos Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6624,Turks and Caicos Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6625,Turks and Caicos Islands,2010,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6626,Turks and Caicos Islands,2011,0,2,3,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6627,Turks and Caicos Islands,2012,0,0,,2,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,,,,,,,,,,,,,, +6628,Turks and Caicos Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,1,,, +6629,Tuvalu,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6630,Tuvalu,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6631,Tuvalu,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6632,Tuvalu,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6633,Tuvalu,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6634,Tuvalu,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6635,Tuvalu,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6636,Tuvalu,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6637,Tuvalu,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6638,Tuvalu,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6639,Tuvalu,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6640,Tuvalu,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6641,Tuvalu,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6642,Tuvalu,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6643,Tuvalu,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6644,Tuvalu,1995,1,0,1,0,0,1,0,0,1,1,0,0,1,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6645,Tuvalu,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6646,Tuvalu,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6647,Tuvalu,1998,1,,3,2,,1,1,6,,1,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6648,Tuvalu,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6649,Tuvalu,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6650,Tuvalu,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6651,Tuvalu,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6652,Tuvalu,2003,4,2,0,1,6,0,0,0,3,0,1,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6653,Tuvalu,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6654,Tuvalu,2005,,,,,1,1,,,1,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6655,Tuvalu,2006,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6656,Tuvalu,2007,1,1,0,2,0,0,2,2,0,0,0,1,3,0,,,,,,,,,1,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,, +6657,Tuvalu,2008,2,2,1,0,1,0,0,0,1,2,2,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,,,,,,,,,,,,,, +6658,Tuvalu,2009,,1,,1,,,,1,,,1,2,1,1,,,,,,,,,,,,,,,3,2,,1,,,,1,1,,1,,,,,,,,,,,,,,,,, +6659,Tuvalu,2010,0,1,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,0,1,,,,,,,,,,,,,, +6660,Tuvalu,2011,1,1,,,,1,,,,,,1,,,,,,2,1,,,1,,,,,,,1,1,1,,,,,1,,,,,,,,,,,,,,,,,,,, +6661,Tuvalu,2012,,1,,1,1,,,2,1,,,2,,,,,,,1,,1,,,,,,,,2,1,1,1,1,,1,,,1,,,1,,,,,,,,,,,,,,, +6662,Tuvalu,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,4,1,0,2,2,2,1,2,1,0,3,0,0 +6663,Uganda,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6664,Uganda,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6665,Uganda,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6666,Uganda,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6667,Uganda,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6668,Uganda,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6669,Uganda,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6670,Uganda,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6671,Uganda,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6672,Uganda,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6673,Uganda,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6674,Uganda,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6675,Uganda,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6676,Uganda,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6677,Uganda,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6678,Uganda,1995,370,1193,2491,1797,1115,602,323,402,1376,1845,1104,635,312,113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6679,Uganda,1996,372,1271,2706,2026,1252,646,353,455,1482,2099,1246,728,379,160,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6680,Uganda,1997,340,1485,3278,2919,1439,733,353,375,1700,2489,1368,812,379,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6681,Uganda,1998,334,1512,3672,2491,1429,676,428,467,1682,2760,1441,744,395,191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6682,Uganda,1999,310,1510,3475,2526,1354,613,413,434,1654,2591,1415,680,331,162,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6683,Uganda,2000,283,1511,3497,2479,1279,607,395,400,1649,2782,1510,671,316,163,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6684,Uganda,2001,231,1461,3483,2540,1242,638,392,334,1603,2656,1528,703,292,180,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6685,Uganda,2002,259,1503,3783,2865,1399,723,465,371,1689,3011,1708,765,374,184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6686,Uganda,2003,261,1643,4142,3011,1578,719,501,377,1770,3176,1815,749,356,214,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6687,Uganda,2004,284,1803,4222,3269,1599,810,525,371,1803,3110,1780,812,358,193,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6688,Uganda,2005,257,1598,4075,3209,1576,725,539,371,1811,3099,1800,818,389,257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6689,Uganda,2006,255,1624,4084,3391,1591,718,511,363,1792,2909,1736,812,332,238,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6690,Uganda,2007,234,1741,4406,3551,1681,766,505,343,1874,3008,1742,824,382,246,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6691,Uganda,2008,269,1953,4697,3922,1981,875,565,382,2006,2985,1749,862,314,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6692,Uganda,2009,250,1853,4816,4115,2089,901,578,372,2151,2919,1673,811,369,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6693,Uganda,2010,268,2055,4735,4133,2214,905,613,401,1964,2923,1691,924,365,248,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6694,Uganda,2011,295,2075,5044,4613,2466,994,604,400,2092,2853,1809,973,409,313,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6695,Uganda,2012,272,2174,5029,4493,2479,1015,633,364,2194,2912,1733,864,419,281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6696,Uganda,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,263,2135,5323,4624,2490,1026,714,386,2160,2830,1756,910,450,341 +6697,Ukraine,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6698,Ukraine,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6699,Ukraine,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6700,Ukraine,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6701,Ukraine,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6702,Ukraine,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6703,Ukraine,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6704,Ukraine,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6705,Ukraine,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6706,Ukraine,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6707,Ukraine,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6708,Ukraine,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6709,Ukraine,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6710,Ukraine,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6711,Ukraine,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6712,Ukraine,1995,10,385,1076,2064,1515,1087,437,21,314,380,327,182,185,280,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6713,Ukraine,1996,9,569,1199,2318,1704,1264,544,13,379,410,397,196,192,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6714,Ukraine,1997,12,623,1310,2107,1718,1141,555,22,383,474,359,256,126,377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6715,Ukraine,1998,24,687,1500,2460,1873,1140,576,36,468,556,431,248,194,393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6716,Ukraine,1999,11,661,1463,2351,1825,1067,557,25,485,577,478,297,222,393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6717,Ukraine,2000,21,693,1552,2385,2007,1062,532,41,487,590,447,298,218,405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6718,Ukraine,2001,9,757,1721,2720,2393,1050,559,18,544,649,525,354,235,418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6719,Ukraine,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6720,Ukraine,2003,10,850,2033,2808,2634,983,617,29,514,745,557,363,221,421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6721,Ukraine,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6722,Ukraine,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6723,Ukraine,2006,8,926,2522,2979,2714,1087,568,16,600,909,704,446,246,481,,,,,,,,,,,,,,,256,398,553,474,379,216,191,183,295,359,280,283,173,254,,,,,,,,,,,,,, +6724,Ukraine,2007,14,1556,4507,5206,5024,2130,1090,7,982,1661,1314,855,438,861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6725,Ukraine,2008,9,901,2696,2859,2769,1140,574,24,585,979,762,544,255,477,72,1373,2961,2720,2722,1353,912,104,1072,1515,1029,746,391,535,221,311,530,427,342,195,154,151,199,315,255,192,156,212,,,,,,,,,,,,,, +6726,Ukraine,2009,15,953,2506,2656,2384,1073,570,15,531,986,717,470,254,502,91,1340,2761,2442,2170,1251,802,112,991,1433,955,701,377,508,176,253,626,499,353,208,141,171,218,327,287,233,163,203,,,,,,,,,,,,,, +6727,Ukraine,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,175,233,509,439,289,178,138,127,183,327,246,186,161,164,,,,,,,,,,,,,, +6728,Ukraine,2011,8,539,1991,2209,1796,881,377,11,348,741,603,388,230,380,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6729,Ukraine,2012,9,546,2028,2393,1926,965,389,10,334,771,609,401,218,431,99,1020,2949,2713,2190,1310,749,105,891,1617,1162,722,440,492,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6730,Ukraine,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,324,1500,5578,6555,5255,2994,1435,314,1274,2906,2309,1506,953,1241 +6731,United Arab Emirates,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6732,United Arab Emirates,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6733,United Arab Emirates,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6734,United Arab Emirates,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6735,United Arab Emirates,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6736,United Arab Emirates,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6737,United Arab Emirates,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6738,United Arab Emirates,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6739,United Arab Emirates,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6740,United Arab Emirates,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6741,United Arab Emirates,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6742,United Arab Emirates,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6743,United Arab Emirates,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6744,United Arab Emirates,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6745,United Arab Emirates,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6746,United Arab Emirates,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6747,United Arab Emirates,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6748,United Arab Emirates,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6749,United Arab Emirates,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6750,United Arab Emirates,1999,4,9,3,2,4,6,5,9,11,5,3,0,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6751,United Arab Emirates,2000,2,4,4,6,5,12,10,3,16,1,3,0,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6752,United Arab Emirates,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6753,United Arab Emirates,2002,1,2,0,6,6,10,0,3,3,8,3,4,10,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6754,United Arab Emirates,2003,2,10,8,12,3,2,10,4,9,5,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6755,United Arab Emirates,2004,1,7,6,7,3,1,7,3,6,2,7,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6756,United Arab Emirates,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6757,United Arab Emirates,2006,0,5,3,7,3,1,4,2,6,4,5,3,4,5,2,1,0,3,1,1,0,5,1,1,2,0,1,0,0,0,4,0,0,2,1,3,0,3,0,1,1,1,,,,,,,,,,,,,, +6758,United Arab Emirates,2007,2,5,6,3,4,3,10,1,8,6,3,2,0,0,1,2,0,0,0,3,5,2,1,2,1,1,1,1,1,1,1,0,1,0,1,4,2,1,2,1,0,1,,,,,,,,,,,,,, +6759,United Arab Emirates,2008,0,6,1,7,5,3,6,0,10,4,1,1,3,3,1,2,2,0,0,0,1,3,1,2,0,1,1,3,4,4,0,1,0,3,0,1,1,4,0,3,1,3,,,,,,,,,,,,,, +6760,United Arab Emirates,2009,2,8,9,8,6,4,4,0,8,5,2,7,0,6,3,0,0,2,1,1,1,4,0,2,0,0,0,1,5,2,3,2,3,0,1,2,3,4,0,2,0,3,,,,,,,,,,,,,, +6761,United Arab Emirates,2010,1,7,13,7,3,4,4,1,2,4,1,5,1,3,3,1,5,0,2,3,3,4,4,0,0,0,0,3,3,3,4,4,0,4,2,6,6,8,4,0,0,3,,,,,,,,,,,,,, +6762,United Arab Emirates,2011,0,3,7,3,5,1,3,4,6,6,3,2,1,2,2,5,5,3,3,1,2,1,1,2,0,0,0,2,2,4,3,2,1,2,4,0,5,0,2,2,1,2,,,,,,,,,,,,,, +6763,United Arab Emirates,2012,0,2,4,4,5,5,2,0,5,2,2,3,4,4,0,0,3,1,1,1,2,1,4,0,0,1,0,1,2,1,3,3,0,0,2,0,4,2,1,1,0,1,,,,,,,,,,,,,, +6764,United Arab Emirates,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,8,9,9,6,5,10,5,4,9,3,3,1,6 +6765,United Kingdom of Great Britain and Northern Ireland,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6766,United Kingdom of Great Britain and Northern Ireland,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6767,United Kingdom of Great Britain and Northern Ireland,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6768,United Kingdom of Great Britain and Northern Ireland,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6769,United Kingdom of Great Britain and Northern Ireland,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6770,United Kingdom of Great Britain and Northern Ireland,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6771,United Kingdom of Great Britain and Northern Ireland,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6772,United Kingdom of Great Britain and Northern Ireland,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6773,United Kingdom of Great Britain and Northern Ireland,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6774,United Kingdom of Great Britain and Northern Ireland,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6775,United Kingdom of Great Britain and Northern Ireland,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6776,United Kingdom of Great Britain and Northern Ireland,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6777,United Kingdom of Great Britain and Northern Ireland,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6778,United Kingdom of Great Britain and Northern Ireland,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6779,United Kingdom of Great Britain and Northern Ireland,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6780,United Kingdom of Great Britain and Northern Ireland,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6781,United Kingdom of Great Britain and Northern Ireland,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6782,United Kingdom of Great Britain and Northern Ireland,1997,2,68,87,90,84,60,107,8,67,64,43,34,24,51,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6783,United Kingdom of Great Britain and Northern Ireland,1998,11,103,164,141,108,105,225,9,105,103,71,44,39,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6784,United Kingdom of Great Britain and Northern Ireland,1999,8,68,93,68,53,51,126,6,55,80,60,29,30,69,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6785,United Kingdom of Great Britain and Northern Ireland,2000,8,86,130,96,87,75,138,9,95,114,60,31,31,67,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6786,United Kingdom of Great Britain and Northern Ireland,2001,10,99,135,105,96,81,117,15,74,104,57,54,38,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6787,United Kingdom of Great Britain and Northern Ireland,2002,6,94,142,132,98,90,153,6,82,131,66,44,33,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6788,United Kingdom of Great Britain and Northern Ireland,2003,13,101,182,128,81,59,92,14,108,148,88,47,17,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6789,United Kingdom of Great Britain and Northern Ireland,2004,10,118,203,148,103,85,94,13,126,176,85,47,33,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6790,United Kingdom of Great Britain and Northern Ireland,2005,9,135,200,166,95,95,124,14,115,163,80,39,28,83,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6791,United Kingdom of Great Britain and Northern Ireland,2006,9,173,244,213,148,88,191,22,168,192,112,60,42,97,103,230,391,240,175,153,320,113,223,292,184,117,86,198,48,266,589,382,186,141,176,81,261,502,310,220,155,236,,,,,,,,,,,,,, +6792,United Kingdom of Great Britain and Northern Ireland,2007,13,183,286,223,169,97,202,20,145,222,91,58,45,138,145,224,379,248,204,218,274,142,210,322,180,113,133,198,202,548,1000,590,366,261,457,225,432,782,478,303,248,402,,,,,,,,,,,,,, +6793,United Kingdom of Great Britain and Northern Ireland,2008,5,125,188,155,111,61,99,16,134,181,90,27,28,62,108,172,317,192,143,110,202,104,154,245,145,108,65,146,64,222,513,330,186,92,154,80,172,426,277,211,118,177,,,,,,,,,,,,,, +6794,United Kingdom of Great Britain and Northern Ireland,2009,4,136,207,142,96,64,95,18,111,159,77,39,24,48,93,261,343,246,167,135,239,114,179,257,156,131,84,162,63,202,528,390,203,114,177,50,198,438,299,206,152,181,,,,,,,,,,,,,, +6795,United Kingdom of Great Britain and Northern Ireland,2010,7,132,170,132,109,59,106,15,112,128,82,43,39,55,95,237,372,226,176,168,232,106,193,266,166,110,85,176,53,242,619,426,206,126,174,57,204,423,296,209,142,174,,,,,,,,,,,,,, +6796,United Kingdom of Great Britain and Northern Ireland,2011,3,146,205,147,110,79,102,19,136,139,78,48,27,50,100,279,388,266,202,145,295,115,179,300,165,111,114,170,65,288,695,410,236,146,195,70,200,503,345,231,149,177,,,,,,,,,,,,,, +6797,United Kingdom of Great Britain and Northern Ireland,2012,8,156,184,137,118,88,88,17,109,141,81,55,17,52,121,272,401,230,199,150,259,112,181,259,179,120,91,177,49,260,702,464,230,144,166,68,191,505,315,215,152,215,,,,,,,,,,,,,, +6798,United Kingdom of Great Britain and Northern Ireland,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,155,588,1158,858,590,378,558,156,404,839,552,406,280,462 +6799,United Republic of Tanzania,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6800,United Republic of Tanzania,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6801,United Republic of Tanzania,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6802,United Republic of Tanzania,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6803,United Republic of Tanzania,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6804,United Republic of Tanzania,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6805,United Republic of Tanzania,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6806,United Republic of Tanzania,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6807,United Republic of Tanzania,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6808,United Republic of Tanzania,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6809,United Republic of Tanzania,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6810,United Republic of Tanzania,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6811,United Republic of Tanzania,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6812,United Republic of Tanzania,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6813,United Republic of Tanzania,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6814,United Republic of Tanzania,1995,183,2108,4091,2916,1754,1007,640,201,1904,2532,1324,735,380,179,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6815,United Republic of Tanzania,1996,171,2176,4275,3107,1843,1109,656,221,2087,2885,1461,806,472,203,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6816,United Republic of Tanzania,1997,188,2210,4538,3066,1090,1134,699,251,2146,2876,1502,908,501,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6817,United Republic of Tanzania,1998,198,2528,4910,3400,1973,1112,767,240,2234,3243,1686,835,466,241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6818,United Republic of Tanzania,1999,170,2422,4887,3401,2068,1160,823,230,2160,3469,1724,876,501,232,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6819,United Republic of Tanzania,2000,200,2357,4836,3430,2022,1202,834,257,2106,3426,1738,868,494,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6820,United Republic of Tanzania,2001,212,2302,4912,3545,2031,1136,930,312,2117,3609,1847,891,522,319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6821,United Republic of Tanzania,2002,187,2309,4814,3525,2075,1211,944,241,1927,3511,1706,907,475,304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6822,United Republic of Tanzania,2003,181,2172,4964,3728,2166,1237,1025,244,2063,3504,1833,929,509,344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6823,United Republic of Tanzania,2004,208,2216,5203,3884,2254,1272,1129,280,1996,3537,1960,1011,544,329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6824,United Republic of Tanzania,2005,190,2062,4939,4025,2310,1279,1054,271,1852,3521,1892,968,547,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6825,United Republic of Tanzania,2006,204,2060,4926,3832,2154,1348,1029,293,1745,3326,1970,995,507,335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6826,United Republic of Tanzania,2007,189,2021,4665,3855,2231,1317,1066,238,1735,3388,1945,947,535,388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6827,United Republic of Tanzania,2008,191,1963,4595,3874,2349,1230,1077,233,1663,3152,1901,964,564,415,,,21935,,,,,,,,,,,,,,,12784,,,,,,,,,,,,,,,,,,,,,,,, +6828,United Republic of Tanzania,2009,196,2081,4581,4125,2388,1293,1123,247,1639,3102,2080,1060,564,416,1371,,10964,,,,,1134,,8281,,,,,1262,,6036,,,,,986,,5121,,,,,,,,,,,,,,,,,, +6829,United Republic of Tanzania,2010,232,1975,4493,4141,2427,1309,1161,248,1689,2988,2013,1044,578,471,1369,10589,,,,,,1030,8206,,,,,,1234,6056,,,,,,1103,5322,,,,,,,,,,,,,,,,,,, +6830,United Republic of Tanzania,2011,190,1975,4405,4073,2402,1211,1127,221,1660,2896,2140,944,490,381,1255,,,,,,,1062,,,,,,,1188,,,,,,,967,,,,,,,,,,,,,,,,,,,, +6831,United Republic of Tanzania,2012,209,2091,4721,4409,2462,1304,1121,284,1652,2917,2115,1024,508,424,1379,,,,,,,1138,,,,,,,1235,,,,,,,1070,,,,,,,,,,,,,,,,,,,, +6832,United Republic of Tanzania,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3589,,,,,,,3069,,,,,, +6833,United States of America,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6834,United States of America,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6835,United States of America,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6836,United States of America,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6837,United States of America,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6838,United States of America,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6839,United States of America,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6840,United States of America,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6841,United States of America,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6842,United States of America,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6843,United States of America,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6844,United States of America,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6845,United States of America,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6846,United States of America,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6847,United States of America,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6848,United States of America,1995,19,355,876,1417,1121,742,1099,26,280,579,499,285,202,591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6849,United States of America,1996,15,333,815,1219,1073,678,1007,21,289,487,478,279,217,541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6850,United States of America,1997,12,330,701,1127,979,679,944,28,269,449,447,254,201,514,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6851,United States of America,1998,10,321,663,1009,1007,628,914,15,269,425,424,267,179,492,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6852,United States of America,1999,18,331,616,1011,930,601,801,16,232,391,394,245,244,444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6853,United States of America,2000,6,365,602,906,904,577,738,14,246,376,349,253,152,396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6854,United States of America,2001,17,320,613,824,876,524,649,21,239,410,346,247,176,389,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6855,United States of America,2002,14,343,562,813,795,490,592,15,233,423,362,255,167,370,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6856,United States of America,2003,11,365,526,754,828,487,650,12,277,353,310,269,169,354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6857,United States of America,2004,12,362,547,728,829,504,582,19,265,339,302,252,166,344,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6858,United States of America,2005,14,383,535,666,767,499,624,11,241,348,276,242,161,322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6859,United States of America,2006,12,388,568,659,759,531,596,11,257,384,263,212,146,303,292,331,476,541,655,499,772,276,269,397,321,272,209,481,114,150,286,265,220,163,267,102,143,290,245,212,174,256,,,,,,,,,,,,,, +6860,United States of America,2007,12,414,490,572,744,533,562,12,257,338,260,225,135,308,286,362,511,469,630,476,724,286,260,384,294,279,267,497,90,137,284,227,208,155,215,93,148,263,219,211,176,270,,,,,,,,,,,,,, +6861,United States of America,2008,11,375,513,495,725,526,561,22,220,329,269,224,172,300,311,323,486,505,605,449,692,260,246,334,303,283,233,483,82,146,284,242,225,147,232,97,129,261,219,181,162,231,,,,,,,,,,,,,, +6862,United States of America,2009,11,299,446,431,564,452,496,6,203,288,221,211,135,247,248,279,452,452,489,428,662,217,234,340,284,258,225,413,77,121,231,206,176,144,232,80,120,271,205,165,141,210,,,,,,,,,,,,,, +6863,United States of America,2010,5,246,360,371,505,403,466,9,195,265,183,165,130,223,243,245,428,436,533,425,640,203,202,278,245,270,193,410,62,114,233,204,140,123,166,70,104,214,162,133,126,177,,,,,,,,,,,,,, +6864,United States of America,2011,12,235,403,374,557,434,486,15,160,254,199,150,138,269,227,231,365,376,437,459,607,185,195,303,245,214,212,426,69,94,203,176,184,163,208,64,93,198,195,167,132,205,,,,,,,,,,,,,, +6865,United States of America,2012,10,239,322,333,502,455,529,14,161,262,169,175,148,243,180,225,378,346,383,443,628,173,198,295,218,216,200,373,53,88,217,169,163,141,214,54,100,226,180,156,127,212,,,,,,,,,,,,,, +6866,United States of America,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,249,529,829,793,937,926,1259,229,415,693,528,470,463,786 +6867,Uruguay,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6868,Uruguay,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6869,Uruguay,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6870,Uruguay,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6871,Uruguay,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6872,Uruguay,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6873,Uruguay,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6874,Uruguay,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6875,Uruguay,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6876,Uruguay,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6877,Uruguay,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6878,Uruguay,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6879,Uruguay,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6880,Uruguay,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6881,Uruguay,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6882,Uruguay,1995,4,28,40,35,49,38,50,2,21,26,18,12,9,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6883,Uruguay,1996,4,34,43,58,59,53,42,4,24,35,17,21,10,22,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6884,Uruguay,1997,3,37,44,53,53,55,53,5,26,28,29,12,8,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6885,Uruguay,1998,2,30,47,52,47,38,39,2,30,29,15,14,6,23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6886,Uruguay,1999,1,45,48,42,46,48,41,4,20,25,33,14,11,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6887,Uruguay,2000,0,36,48,45,41,30,34,2,28,22,21,13,12,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6888,Uruguay,2001,2,33,38,49,42,31,44,4,25,31,7,15,3,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6889,Uruguay,2002,1,33,33,37,36,23,32,1,25,25,20,10,11,21,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6890,Uruguay,2003,3,46,50,35,42,38,26,1,28,24,13,13,6,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6891,Uruguay,2004,1,38,59,53,48,26,40,2,34,25,12,17,11,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6892,Uruguay,2005,1,42,48,39,45,34,36,1,33,30,17,9,8,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6893,Uruguay,2006,1,38,53,34,30,38,29,4,21,19,11,6,11,10,1,9,23,20,17,11,21,4,7,10,4,10,4,11,2,10,6,6,6,8,2,4,2,4,5,4,2,9,,,,,,,,,,,,,, +6894,Uruguay,2007,1,39,69,37,50,39,39,1,23,26,22,14,7,13,4,7,20,11,20,12,13,3,9,10,8,6,0,9,3,5,8,4,4,5,7,1,1,8,1,4,1,5,,,,,,,,,,,,,, +6895,Uruguay,2008,1,49,71,64,45,28,34,4,26,35,26,15,13,13,4,9,20,15,13,14,16,5,10,15,8,16,3,11,1,6,12,8,3,0,4,3,8,5,6,5,3,5,,,,,,,,,,,,,, +6896,Uruguay,2009,1,43,64,50,57,42,38,4,21,32,22,14,6,15,11,11,26,19,22,15,17,5,10,12,12,12,10,10,6,4,9,8,6,2,8,1,2,4,5,4,2,5,,,,,,,,,,,,,, +6897,Uruguay,2010,1,46,70,35,46,33,31,3,24,36,12,10,5,16,12,4,11,15,19,7,15,9,8,5,17,7,9,16,3,6,9,5,5,6,4,4,4,8,2,5,3,6,,,,,,,,,,,,,, +6898,Uruguay,2011,0,58,93,55,45,36,37,1,29,55,19,12,11,16,17,19,31,28,17,20,19,28,8,18,9,9,14,12,1,3,11,5,1,4,3,3,2,3,1,5,1,5,,,,,,,,,,,,,, +6899,Uruguay,2012,3,38,98,56,52,39,29,2,25,26,21,15,13,15,22,20,28,30,30,13,22,18,19,18,9,12,12,16,2,1,8,10,8,5,1,1,2,5,3,5,3,5,,,,,,,,,,,,,, +6900,Uruguay,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,80,142,102,100,83,66,30,35,71,44,31,40,35 +6901,US Virgin Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6902,US Virgin Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6903,US Virgin Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6904,US Virgin Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6905,US Virgin Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6906,US Virgin Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6907,US Virgin Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6908,US Virgin Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6909,US Virgin Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6910,US Virgin Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6911,US Virgin Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6912,US Virgin Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6913,US Virgin Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6914,US Virgin Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6915,US Virgin Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6916,US Virgin Islands,1995,0,0,0,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6917,US Virgin Islands,1996,0,0,1,1,0,1,0,0,0,1,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6918,US Virgin Islands,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6919,US Virgin Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6920,US Virgin Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6921,US Virgin Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6922,US Virgin Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6923,US Virgin Islands,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6924,US Virgin Islands,2003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6925,US Virgin Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6926,US Virgin Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6927,US Virgin Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6928,US Virgin Islands,2007,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6929,US Virgin Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6930,US Virgin Islands,2009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6931,US Virgin Islands,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6932,US Virgin Islands,2011,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6933,US Virgin Islands,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6934,US Virgin Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6935,Uzbekistan,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6936,Uzbekistan,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6937,Uzbekistan,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6938,Uzbekistan,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6939,Uzbekistan,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6940,Uzbekistan,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6941,Uzbekistan,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6942,Uzbekistan,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6943,Uzbekistan,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6944,Uzbekistan,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6945,Uzbekistan,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6946,Uzbekistan,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6947,Uzbekistan,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6948,Uzbekistan,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6949,Uzbekistan,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6950,Uzbekistan,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6951,Uzbekistan,1996,2,96,1042,650,0,196,0,5,87,799,324,0,149,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6952,Uzbekistan,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6953,Uzbekistan,1998,0,6,5,0,1,1,0,0,9,9,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6954,Uzbekistan,1999,4,429,926,519,262,146,100,11,346,647,339,186,136,124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6955,Uzbekistan,2000,6,351,749,510,346,213,107,11,261,547,288,213,112,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6956,Uzbekistan,2001,7,390,905,523,396,253,133,21,337,631,338,267,216,181,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6957,Uzbekistan,2002,10,330,481,318,178,87,111,18,277,394,214,127,96,125,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6958,Uzbekistan,2003,9,487,828,595,412,253,220,29,360,588,353,210,172,174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6959,Uzbekistan,2004,23,512,835,607,502,275,252,31,430,600,341,274,211,226,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6960,Uzbekistan,2005,25,596,831,723,522,263,313,40,538,597,375,288,217,367,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6961,Uzbekistan,2006,19,568,807,717,565,268,329,41,544,597,346,327,224,421,273,696,923,731,685,400,493,193,575,659,501,387,284,401,1385,595,445,316,236,106,161,922,351,320,297,211,111,144,,,,,,,,,,,,,, +6962,Uzbekistan,2007,18,569,768,579,583,282,380,25,485,507,342,255,235,436,187,738,957,746,689,383,548,198,516,649,428,391,294,443,1320,589,467,301,217,119,137,835,307,321,232,189,124,122,,,,,,,,,,,,,, +6963,Uzbekistan,2008,10,515,688,572,544,287,369,23,427,479,309,273,227,394,124,713,907,765,646,361,489,139,477,590,397,333,305,394,1038,499,378,248,164,91,119,674,222,262,194,154,84,87,,,,,,,,,,,,,, +6964,Uzbekistan,2009,12,541,615,566,513,294,319,23,429,501,296,227,241,382,167,755,889,686,619,419,443,141,571,715,415,395,317,411,1213,499,411,264,190,129,129,707,236,300,224,167,120,78,,,,,,,,,,,,,, +6965,Uzbekistan,2010,8,487,574,529,479,293,297,22,365,512,308,248,239,350,155,733,861,664,597,399,453,145,562,673,408,363,335,387,992,451,393,277,207,127,108,556,254,308,195,203,121,96,,,,,,,,,,,,,, +6966,Uzbekistan,2011,8,378,493,453,440,306,253,11,335,418,233,245,293,332,146,594,739,625,588,414,425,103,434,543,348,327,339,333,836,381,345,235,173,132,105,488,258,267,204,185,129,101,,,,,,,,,,,,,, +6967,Uzbekistan,2012,10,360,506,403,449,313,273,9,319,367,237,201,261,322,112,572,796,643,588,423,434,109,421,572,353,373,363,378,833,415,336,265,243,139,126,488,207,289,212,182,134,96,,,,,,,,,,,,,, +6968,Uzbekistan,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1194,1560,2371,2587,2119,1711,1144,766,1096,1617,1338,1127,1062,1120 +6969,Vanuatu,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6970,Vanuatu,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6971,Vanuatu,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6972,Vanuatu,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6973,Vanuatu,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6974,Vanuatu,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6975,Vanuatu,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6976,Vanuatu,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6977,Vanuatu,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6978,Vanuatu,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6979,Vanuatu,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6980,Vanuatu,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6981,Vanuatu,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6982,Vanuatu,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6983,Vanuatu,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6984,Vanuatu,1995,0,6,2,5,3,4,0,0,5,0,2,3,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6985,Vanuatu,1996,2,4,2,6,4,4,1,2,10,3,5,3,4,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6986,Vanuatu,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6987,Vanuatu,1998,2,4,5,1,0,2,2,2,5,9,4,1,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6988,Vanuatu,1999,0,0,4,1,2,0,0,0,2,10,4,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6989,Vanuatu,2000,2,7,5,1,10,5,2,5,3,15,7,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6990,Vanuatu,2001,1,7,5,4,8,6,1,1,10,4,3,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6991,Vanuatu,2002,0,7,2,3,10,2,1,0,3,1,5,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6992,Vanuatu,2003,1,2,4,7,5,2,3,0,4,4,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6993,Vanuatu,2004,1,7,11,2,6,3,5,3,5,8,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6994,Vanuatu,2005,1,4,5,5,0,4,1,0,5,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6995,Vanuatu,2006,1,5,3,1,4,4,0,2,7,9,2,4,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6996,Vanuatu,2007,1,3,2,4,2,2,2,1,6,8,1,6,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +6997,Vanuatu,2008,,4,4,3,5,4,3,,3,4,1,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6998,Vanuatu,2009,0,6,3,3,1,3,2,2,3,5,3,5,4,1,2,0,1,2,3,3,2,2,1,0,1,3,4,1,16,6,6,1,6,1,1,14,2,3,3,2,1,0,,,,,,,,,,,,,, +6999,Vanuatu,2010,4,6,3,1,5,2,0,3,5,3,3,5,3,1,2,0,6,0,5,6,2,3,1,0,1,2,2,3,11,1,0,4,2,1,2,4,2,2,2,3,1,0,,,,,,,,,,,,,, +7000,Vanuatu,2011,2,3,4,6,5,4,2,0,5,7,5,4,2,0,0,1,2,0,2,3,1,0,2,0,1,0,0,2,10,3,3,6,2,1,3,6,2,2,3,2,2,1,,,,,,,,,,,,,, +7001,Vanuatu,2012,0,4,3,4,2,2,2,3,12,5,5,4,2,3,3,1,2,2,0,0,1,3,3,3,3,0,1,0,10,4,8,4,4,1,1,9,5,2,0,2,1,0,,,,,,,,,,,,,, +7002,Vanuatu,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,8,9,7,11,13,3,17,10,12,3,5,11,7 +7003,Venezuela (Bolivarian Republic of),1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7004,Venezuela (Bolivarian Republic of),1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7005,Venezuela (Bolivarian Republic of),1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7006,Venezuela (Bolivarian Republic of),1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7007,Venezuela (Bolivarian Republic of),1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7008,Venezuela (Bolivarian Republic of),1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7009,Venezuela (Bolivarian Republic of),1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7010,Venezuela (Bolivarian Republic of),1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7011,Venezuela (Bolivarian Republic of),1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7012,Venezuela (Bolivarian Republic of),1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7013,Venezuela (Bolivarian Republic of),1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7014,Venezuela (Bolivarian Republic of),1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7015,Venezuela (Bolivarian Republic of),1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7016,Venezuela (Bolivarian Republic of),1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7017,Venezuela (Bolivarian Republic of),1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7018,Venezuela (Bolivarian Republic of),1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7019,Venezuela (Bolivarian Republic of),1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7020,Venezuela (Bolivarian Republic of),1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7021,Venezuela (Bolivarian Republic of),1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7022,Venezuela (Bolivarian Republic of),1999,32,378,452,420,368,283,346,28,283,315,195,169,134,267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7023,Venezuela (Bolivarian Republic of),2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7024,Venezuela (Bolivarian Republic of),2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7025,Venezuela (Bolivarian Republic of),2002,19,339,429,425,380,246,313,42,274,280,218,158,123,198,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7026,Venezuela (Bolivarian Republic of),2003,39,361,459,453,405,284,316,46,340,355,240,204,140,240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7027,Venezuela (Bolivarian Republic of),2004,24,373,454,459,407,272,316,36,311,324,239,184,135,242,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7028,Venezuela (Bolivarian Republic of),2005,35,312,395,413,402,265,332,37,351,299,267,183,146,216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7029,Venezuela (Bolivarian Republic of),2006,10,323,405,413,422,267,320,42,322,297,188,173,140,225,213,105,112,140,119,126,180,229,87,103,56,71,83,120,65,125,127,122,84,69,84,68,75,85,84,60,40,69,,,,,,,,,,,,,, +7030,Venezuela (Bolivarian Republic of),2007,17,324,382,390,389,272,295,40,276,271,199,160,147,230,210,86,124,97,126,91,148,177,81,85,74,78,57,101,74,111,127,98,93,61,80,65,94,84,82,73,48,58,,,,,,,,,,,,,, +7031,Venezuela (Bolivarian Republic of),2008,18,364,358,326,389,271,285,25,309,272,228,171,146,182,149,123,144,135,144,98,160,172,73,96,65,70,66,104,49,117,127,93,94,60,86,64,80,92,80,58,57,59,,,,,,,,,,,,,, +7032,Venezuela (Bolivarian Republic of),2009,26,372,385,344,352,258,298,33,284,312,217,212,162,181,159,114,146,140,136,111,125,161,94,116,75,91,70,127,54,98,133,119,97,71,91,53,74,92,77,57,45,51,,,,,,,,,,,,,, +7033,Venezuela (Bolivarian Republic of),2010,22,320,376,333,391,253,288,26,269,306,188,145,147,188,160,108,154,119,142,127,193,160,101,122,81,83,69,139,58,92,112,111,84,69,72,64,75,83,80,71,49,57,,,,,,,,,,,,,, +7034,Venezuela (Bolivarian Republic of),2011,28,340,353,303,363,307,241,25,252,316,178,178,150,190,180,128,137,131,147,108,139,152,93,104,79,76,75,100,66,117,148,112,107,90,86,44,85,97,80,61,57,46,,,,,,,,,,,,,, +7035,Venezuela (Bolivarian Republic of),2012,23,379,405,353,375,319,273,32,276,281,203,167,161,199,152,111,133,117,142,104,127,157,97,101,84,106,82,104,76,113,129,105,84,74,71,64,82,89,88,60,43,65,,,,,,,,,,,,,, +7036,Venezuela (Bolivarian Republic of),2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,232,631,739,582,635,536,523,229,465,537,354,407,283,402 +7037,Viet Nam,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7038,Viet Nam,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7039,Viet Nam,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7040,Viet Nam,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7041,Viet Nam,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7042,Viet Nam,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7043,Viet Nam,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7044,Viet Nam,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7045,Viet Nam,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7046,Viet Nam,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7047,Viet Nam,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7048,Viet Nam,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7049,Viet Nam,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7050,Viet Nam,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7051,Viet Nam,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7052,Viet Nam,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7053,Viet Nam,1996,92,1994,5716,7137,5170,5839,6292,91,1127,2606,3045,2504,3360,3938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7054,Viet Nam,1997,103,2162,6427,8363,5820,5892,6989,73,1163,2809,3302,2590,3614,4340,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7055,Viet Nam,1998,56,2441,6567,8765,6143,5925,7274,60,1344,2749,3102,2576,3296,4575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7056,Viet Nam,1999,58,2254,6355,8392,6465,5530,7371,68,1361,2511,3029,2549,3034,4828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7057,Viet Nam,2000,51,2367,6147,8209,6713,5150,7712,64,1334,2320,2754,2594,2847,4907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7058,Viet Nam,2001,39,2756,6319,8457,7054,5205,7643,48,1390,2357,2656,2574,2530,5174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7059,Viet Nam,2002,57,3250,6762,8855,8040,5162,8184,68,1571,2357,2508,2619,2409,4969,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7060,Viet Nam,2003,49,3475,7036,8486,7965,5066,7793,66,1659,2262,2327,2574,2283,4896,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7061,Viet Nam,2004,54,3486,7364,9110,8743,5257,8206,66,1740,2398,2218,2551,2226,4970,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7062,Viet Nam,2005,54,3408,7105,8738,8606,4958,7573,47,1747,2293,2116,2298,2023,4604,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7063,Viet Nam,2006,49,3761,7549,8931,8717,5037,7408,62,1827,2381,2036,2283,1996,4400,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7064,Viet Nam,2007,48,3587,7431,8391,8451,5046,7026,59,1939,2354,1923,2170,1891,4144,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7065,Viet Nam,2008,36,3401,7148,8230,8811,5158,6667,48,1993,2416,1820,2087,1858,3811,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7066,Viet Nam,2009,41,3122,7152,7731,8333,5494,6162,47,1895,2401,1677,1989,1849,3397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7067,Viet Nam,2010,59,3205,7036,7851,8564,5790,6248,53,1870,2454,1681,1864,1863,3751,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7068,Viet Nam,2011,61,3099,6677,7763,8474,6107,5821,64,1863,2325,1681,1814,1878,3124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7069,Viet Nam,2012,58,2993,6689,7680,8481,6315,5920,84,1841,2481,1626,1683,1884,3298,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7070,Viet Nam,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65,2951,6302,7487,8553,6484,5834,78,1916,2487,1671,1715,1954,3110 +7071,Wallis and Futuna Islands,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7072,Wallis and Futuna Islands,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7073,Wallis and Futuna Islands,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7074,Wallis and Futuna Islands,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7075,Wallis and Futuna Islands,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7076,Wallis and Futuna Islands,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7077,Wallis and Futuna Islands,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7078,Wallis and Futuna Islands,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7079,Wallis and Futuna Islands,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7080,Wallis and Futuna Islands,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7081,Wallis and Futuna Islands,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7082,Wallis and Futuna Islands,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7083,Wallis and Futuna Islands,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7084,Wallis and Futuna Islands,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7085,Wallis and Futuna Islands,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7086,Wallis and Futuna Islands,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7087,Wallis and Futuna Islands,1996,0,1,1,0,0,0,0,0,1,3,1,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7088,Wallis and Futuna Islands,1997,,,,,,,,0,0,0,0,0,0,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7089,Wallis and Futuna Islands,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7090,Wallis and Futuna Islands,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7091,Wallis and Futuna Islands,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7092,Wallis and Futuna Islands,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7093,Wallis and Futuna Islands,2002,,1,,1,1,,1,,,,,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7094,Wallis and Futuna Islands,2003,0,0,2,2,2,0,0,0,0,1,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7095,Wallis and Futuna Islands,2004,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7096,Wallis and Futuna Islands,2005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7097,Wallis and Futuna Islands,2006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7098,Wallis and Futuna Islands,2007,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7099,Wallis and Futuna Islands,2008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7100,Wallis and Futuna Islands,2009,,,1,,,,1,,1,,,,,,,,,,,,,,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7101,Wallis and Futuna Islands,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7102,Wallis and Futuna Islands,2011,,,,,,2,,,,,,,,,,,,2,1,1,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7103,Wallis and Futuna Islands,2012,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7104,Wallis and Futuna Islands,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2 +7105,West Bank and Gaza Strip,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7106,West Bank and Gaza Strip,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7107,West Bank and Gaza Strip,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7108,West Bank and Gaza Strip,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7109,West Bank and Gaza Strip,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7110,West Bank and Gaza Strip,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7111,West Bank and Gaza Strip,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7112,West Bank and Gaza Strip,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7113,West Bank and Gaza Strip,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7114,West Bank and Gaza Strip,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7115,West Bank and Gaza Strip,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7116,West Bank and Gaza Strip,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7117,West Bank and Gaza Strip,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7118,West Bank and Gaza Strip,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7119,West Bank and Gaza Strip,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7120,West Bank and Gaza Strip,1995,1,2,0,0,1,0,3,0,1,0,0,1,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7121,West Bank and Gaza Strip,1996,0,2,2,2,2,2,4,1,2,1,2,0,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7122,West Bank and Gaza Strip,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7123,West Bank and Gaza Strip,1998,,1,1,,2,,1,,,,1,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7124,West Bank and Gaza Strip,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7125,West Bank and Gaza Strip,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7126,West Bank and Gaza Strip,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7127,West Bank and Gaza Strip,2002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7128,West Bank and Gaza Strip,2003,0,1,1,1,3,0,2,0,1,0,0,3,0,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7129,West Bank and Gaza Strip,2004,,1,1,,1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7130,West Bank and Gaza Strip,2005,,1,,,1,3,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7131,West Bank and Gaza Strip,2006,0,1,3,4,1,1,2,0,0,0,1,1,1,1,0,0,1,2,1,0,2,0,1,0,0,0,0,0,0,1,2,2,2,3,2,1,3,0,1,1,1,0,,,,,,,,,,,,,, +7132,West Bank and Gaza Strip,2007,1,1,3,2,0,3,1,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,3,3,2,0,1,1,0,2,1,1,0,2,2,0,,,,,,,,,,,,,, +7133,West Bank and Gaza Strip,2008,0,1,1,3,2,2,2,0,2,0,0,1,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,2,1,1,2,1,2,0,3,0,1,1,1,2,,,,,,,,,,,,,, +7134,West Bank and Gaza Strip,2009,0,1,3,1,0,0,1,0,0,0,2,0,1,1,0,0,1,1,0,1,3,0,0,0,1,0,2,0,0,1,1,1,0,0,1,2,3,0,1,2,1,2,,,,,,,,,,,,,, +7135,West Bank and Gaza Strip,2010,0,2,0,2,1,1,3,0,0,1,0,1,2,0,0,0,1,1,0,2,1,0,1,0,0,0,0,0,2,2,2,1,1,0,0,1,0,1,1,1,0,0,,,,,,,,,,,,,, +7136,West Bank and Gaza Strip,2011,1,0,1,1,1,0,3,0,0,1,1,0,2,0,0,0,1,0,1,0,1,0,0,0,0,0,0,2,3,0,1,1,3,1,0,2,1,1,0,0,0,0,,,,,,,,,,,,,, +7137,West Bank and Gaza Strip,2012,0,2,2,1,2,4,2,0,1,1,0,0,1,1,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0,2,2,2,0,0,0,0,1,1,0,0,0,0,,,,,,,,,,,,,, +7138,West Bank and Gaza Strip,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7139,Yemen,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7140,Yemen,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7141,Yemen,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7142,Yemen,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7143,Yemen,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7144,Yemen,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7145,Yemen,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7146,Yemen,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7147,Yemen,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7148,Yemen,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7149,Yemen,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7150,Yemen,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7151,Yemen,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7152,Yemen,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7153,Yemen,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7154,Yemen,1995,57,400,605,256,201,148,45,83,420,720,348,200,106,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7155,Yemen,1996,15,91,92,71,45,15,12,14,89,100,73,41,14,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7156,Yemen,1997,87,307,1249,329,213,165,34,196,872,449,474,259,71,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7157,Yemen,1998,83,718,698,491,271,160,115,115,689,632,400,294,158,72,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7158,Yemen,1999,96,552,531,390,245,161,85,111,557,532,426,244,120,80,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7159,Yemen,2000,110,789,689,493,314,255,127,161,799,627,517,345,247,92,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7160,Yemen,2001,82,695,631,491,350,252,114,154,647,562,452,293,192,53,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7161,Yemen,2002,266,650,559,377,265,148,117,163,500,443,334,244,122,71,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7162,Yemen,2003,40,581,587,399,250,154,103,74,470,426,317,204,114,74,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7163,Yemen,2004,49,571,559,377,214,139,76,72,442,376,269,160,86,44,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7164,Yemen,2005,48,493,553,366,242,149,78,44,426,410,265,181,85,39,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7165,Yemen,2006,29,535,555,358,246,143,103,55,435,358,244,166,73,42,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7166,Yemen,2007,23,488,626,379,252,165,119,50,430,374,272,189,113,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7167,Yemen,2008,29,547,541,316,241,155,119,57,473,455,265,179,102,61,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7168,Yemen,2009,32,509,562,359,248,166,121,58,476,437,269,189,90,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7169,Yemen,2010,68,507,569,322,231,164,138,98,471,409,264,174,106,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,, +7170,Yemen,2011,33,406,471,297,193,143,96,85,446,375,251,168,113,58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7171,Yemen,2012,30,436,472,315,232,172,122,75,437,381,246,207,115,81,252,216,234,161,175,162,185,221,244,262,186,215,172,123,195,308,366,235,178,174,111,201,445,448,309,248,156,112,,,,,,,,,,,,,, +7172,Yemen,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,560,1011,1113,799,659,503,446,522,1194,1087,825,736,512,360 +7173,Zambia,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7174,Zambia,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7175,Zambia,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7176,Zambia,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7177,Zambia,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7178,Zambia,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7179,Zambia,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7180,Zambia,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7181,Zambia,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7182,Zambia,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7183,Zambia,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7184,Zambia,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7185,Zambia,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7186,Zambia,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7187,Zambia,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7188,Zambia,1995,91,659,1668,1124,487,231,130,129,1125,1779,717,257,117,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7189,Zambia,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7190,Zambia,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7191,Zambia,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7192,Zambia,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7193,Zambia,2000,349,2175,2610,3045,435,261,174,150,932,1118,1305,186,112,75,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7194,Zambia,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7195,Zambia,2002,1135,1013,3051,2000,788,162,405,1099,1383,2730,1434,657,297,197,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7196,Zambia,2003,302,1733,4182,2390,995,386,308,292,2061,3439,1626,680,297,243,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7197,Zambia,2004,209,1498,3963,2262,968,313,324,247,1811,2961,1646,608,245,192,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7198,Zambia,2005,135,1240,3166,2160,917,358,321,168,1507,2463,1433,569,235,185,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7199,Zambia,2006,150,945,3496,1645,684,323,186,224,1500,2834,1257,452,207,122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7200,Zambia,2007,152,1235,2971,1848,805,319,204,195,1335,2193,1188,558,244,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7201,Zambia,2008,101,1120,3244,2094,737,299,229,165,1246,2062,1114,498,187,115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7202,Zambia,2009,92,1057,3181,2169,792,270,237,145,1051,1935,1151,468,192,126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7203,Zambia,2010,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7204,Zambia,2011,105,1033,2897,2194,810,280,207,151,940,1683,1063,422,162,99,1057,987,3731,3387,1387,672,591,970,1128,2625,1836,849,422,362,800,530,1524,1459,625,226,237,729,648,1320,910,448,256,196,,,,,,,,,,,,,, +7205,Zambia,2012,141,1003,3088,2412,846,319,220,180,1024,1646,1077,376,189,124,852,855,3103,2877,1252,568,536,785,983,2131,1637,777,380,314,744,526,1423,1364,577,272,248,630,616,1196,808,403,209,158,,,,,,,,,,,,,, +7206,Zambia,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1637,2428,7808,6918,2950,1286,1112,1517,2709,5157,3752,1754,941,669 +7207,Zimbabwe,1980,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7208,Zimbabwe,1981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7209,Zimbabwe,1982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7210,Zimbabwe,1983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7211,Zimbabwe,1984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7212,Zimbabwe,1985,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7213,Zimbabwe,1986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7214,Zimbabwe,1987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7215,Zimbabwe,1988,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7216,Zimbabwe,1989,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7217,Zimbabwe,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7218,Zimbabwe,1991,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7219,Zimbabwe,1992,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7220,Zimbabwe,1993,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7221,Zimbabwe,1994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7222,Zimbabwe,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7223,Zimbabwe,1996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7224,Zimbabwe,1997,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7225,Zimbabwe,1998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7226,Zimbabwe,1999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7227,Zimbabwe,2000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7228,Zimbabwe,2001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7229,Zimbabwe,2002,191,600,2548,1662,744,315,159,222,914,2185,1095,421,140,65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7230,Zimbabwe,2003,133,874,3048,2228,981,367,205,180,1232,2856,1480,565,225,114,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7231,Zimbabwe,2004,187,833,2908,2298,1056,366,198,225,1140,2858,1565,622,214,111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7232,Zimbabwe,2005,210,837,2264,1855,762,295,656,269,1136,2242,1255,578,193,603,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7233,Zimbabwe,2006,215,736,2391,1939,896,348,199,237,1020,2424,1355,632,230,96,1558,699,3268,3394,1729,804,543,1458,1217,4013,2806,1400,577,309,288,253,1024,1001,434,177,127,278,403,1129,821,384,148,92,,,,,,,,,,,,,, +7234,Zimbabwe,2007,138,500,3693,0,716,292,153,185,739,3311,0,553,213,90,2347,6460,740,0,222,89,65,3329,7692,748,0,144,82,46,241,2949,98,0,30,18,14,193,2670,120,0,27,12,9,,,,,,,,,,,,,, +7235,Zimbabwe,2008,127,614,0,3316,704,263,185,145,840,0,2890,467,174,105,1364,837,0,5521,1388,613,490,1262,1263,0,5639,1129,490,303,222,252,0,1862,457,183,147,224,394,0,1622,322,142,104,,,,,,,,,,,,,, +7236,Zimbabwe,2009,125,578,,3471,681,293,192,180,873,,3028,419,229,126,1560,860,,6496,1655,882,861,1425,1334,,7023,1551,729,514,244,266,0,1922,491,231,223,210,394,0,1944,438,182,138,,,,,,,,,,,,,, +7237,Zimbabwe,2010,150,710,2208,1682,761,350,252,173,974,2185,1283,490,265,171,1826,821,3342,3270,1545,882,864,1732,1282,4013,2851,1377,789,563,270,243,902,868,418,229,192,220,319,1058,677,338,181,146,,,,,,,,,,,,,, +7238,Zimbabwe,2011,152,784,2467,2071,780,377,278,174,1084,2161,1386,448,274,160,1364,596,2473,2813,1264,702,728,1271,947,2754,2216,962,587,495,250,195,746,796,342,172,172,209,318,802,640,284,137,129,,,,,,,,,,,,,, +7239,Zimbabwe,2012,120,783,2421,2086,796,360,271,173,939,2053,1286,483,231,161,1169,613,2302,2657,1154,708,796,1008,888,2287,1957,829,516,432,233,214,658,789,331,178,182,208,319,710,579,228,140,143,,,,,,,,,,,,,, +7240,Zimbabwe,2013,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1315,1642,5331,5363,2349,1206,1208,1252,2069,4649,3526,1453,811,725 diff --git a/exercises/tabular_window_functions/.DS_Store b/exercises/tabular_window_functions/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/exercises/tabular_window_functions/.DS_Store differ diff --git a/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions-checkpoint.ipynb b/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions-checkpoint.ipynb new file mode 100644 index 0000000..7bb8898 --- /dev/null +++ b/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions-checkpoint.ipynb @@ -0,0 +1,407 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: For each patcher, compute the average number of days they waited between experiments\n", + "\n", + "Here is how to proceed\n", + "1. Use a window function to compute the number of days that elapse between experiment (i.e., the distance between `date`), for each `patcher`. Add that as a new column, `'days from prev'`\n", + "2. Compute the average `'days from prev'` per patcher\n", + "\n", + "With your new awesome vectorization skills, it should take two lines!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "b6b1abff", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('shuffled_QC_passed_2024-07-04_collected_v1.csv', parse_dates=['date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "c0237922", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPpatcherdateslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_age
0OP211209Verji2024-03-13S2821d10S2c8D1Ctrl0.0no13.29888914.470281166.878916-67.9626463450.083.190918-36.132812302.124023-72.63183620.75152.623120NaNNaN0.966102NaNNaNNaNNaNNaN15 mM-59.101382Bielefeldtemporal27.0
1OP221024Verji2024-06-16S3422o24S3c4D1Ctrl0.0no23.96416711.521243137.820797-71.7895514150.093.322754-42.968750465.820312-83.74023414.85124.32417017NaN0.959995NaNNaNNaNNaNNaN8 mM-62.265689Bielefeldtemporal42.0
2OP230810Verji2024-05-14S2523810S2c5D1TTX0.0no7.04305610.12063767.739416-70.62988347100.091.973877-37.817383415.771484-107.66601613.00228.65485810402.0134000.760052NaNNaNNaNNaNNaN8 mM-61.329228Mittetemporal63.0
3OP230209Verji2024-04-27S2_D2323209S2_D2c3D2high K25.0no21.8483337.74550343.009610-68.37158231500.067.163086-29.284668212.036133-61.64550811.05215.78450530672.2024070.958735NaNNaNNaNNaNNaN8 mM-62.577472Bielefeldtemporal63.0
4OP240321Verji2024-04-11S2424321S2c4D1Ctrl0.0no11.5302787.63294132.884808-52.45361321200.084.008789-36.785889403.442383-71.89941414.80695.7911058NaN1.063838324.520817NaNNaNNaNNaN8 mM-63.149769Bielefeldtemporal31.0
\n", + "
" + ], + "text/plain": [ + " OP patcher date slice cell_ch cell_ID day treatment \\\n", + "0 OP211209 Verji 2024-03-13 S2 8 21d10S2c8 D1 Ctrl \n", + "1 OP221024 Verji 2024-06-16 S3 4 22o24S3c4 D1 Ctrl \n", + "2 OP230810 Verji 2024-05-14 S2 5 23810S2c5 D1 TTX \n", + "3 OP230209 Verji 2024-04-27 S2_D2 3 23209S2_D2c3 D2 high K \n", + "4 OP240321 Verji 2024-04-11 S2 4 24321S2c4 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 13.298889 14.470281 166.878916 \n", + "1 0.0 no 23.964167 11.521243 137.820797 \n", + "2 0.0 no 7.043056 10.120637 67.739416 \n", + "3 25.0 no 21.848333 7.745503 43.009610 \n", + "4 0.0 no 11.530278 7.632941 32.884808 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -67.962646 34 50.0 83.190918 -36.132812 302.124023 \n", + "1 -71.789551 41 50.0 93.322754 -42.968750 465.820312 \n", + "2 -70.629883 47 100.0 91.973877 -37.817383 415.771484 \n", + "3 -68.371582 31 500.0 67.163086 -29.284668 212.036133 \n", + "4 -52.453613 21 200.0 84.008789 -36.785889 403.442383 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -72.631836 20.75 152.623120 NaN NaN \n", + "1 -83.740234 14.85 124.324170 17 NaN \n", + "2 -107.666016 13.00 228.654858 10 402.013400 \n", + "3 -61.645508 11.05 215.784505 30 672.202407 \n", + "4 -71.899414 14.80 695.791105 8 NaN \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 0.966102 NaN NaN NaN NaN NaN \n", + "1 0.959995 NaN NaN NaN NaN NaN \n", + "2 0.760052 NaN NaN NaN NaN NaN \n", + "3 0.958735 NaN NaN NaN NaN NaN \n", + "4 1.063838 324.520817 NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \n", + "0 15 mM -59.101382 Bielefeld temporal 27.0 \n", + "1 8 mM -62.265689 Bielefeld temporal 42.0 \n", + "2 8 mM -61.329228 Mitte temporal 63.0 \n", + "3 8 mM -62.577472 Bielefeld temporal 63.0 \n", + "4 8 mM -63.149769 Bielefeld temporal 31.0 " + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f7c93d25", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff2c32f0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "612215d0", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions_solution-checkpoint.ipynb b/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions_solution-checkpoint.ipynb new file mode 100644 index 0000000..0f096a8 --- /dev/null +++ b/exercises/tabular_window_functions/.ipynb_checkpoints/window_functions_solution-checkpoint.ipynb @@ -0,0 +1,526 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: For each patcher, compute the average number of days they waited between experiments\n", + "\n", + "Here is how to proceed\n", + "1. Use a window function to compute the number of days that elapse between experiment (i.e., the distance between `date`), for each `patcher`. Add that as a new column, `'days from prev'`\n", + "2. Compute the average `'days from prev'` per patcher\n", + "\n", + "With your new awesome vectorization skills, it should take two lines!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "8dfc3020", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('shuffled_QC_passed_2024-07-04_collected_v1.csv', parse_dates=['date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "0430951e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPpatcherdateslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_age
0OP211209Verji2024-03-13S2821d10S2c8D1Ctrl0.0no13.29888914.470281166.878916-67.9626463450.083.190918-36.132812302.124023-72.63183620.75152.623120NaNNaN0.966102NaNNaNNaNNaNNaN15 mM-59.101382Bielefeldtemporal27.0
1OP221024Verji2024-06-16S3422o24S3c4D1Ctrl0.0no23.96416711.521243137.820797-71.7895514150.093.322754-42.968750465.820312-83.74023414.85124.32417017NaN0.959995NaNNaNNaNNaNNaN8 mM-62.265689Bielefeldtemporal42.0
2OP230810Verji2024-05-14S2523810S2c5D1TTX0.0no7.04305610.12063767.739416-70.62988347100.091.973877-37.817383415.771484-107.66601613.00228.65485810402.0134000.760052NaNNaNNaNNaNNaN8 mM-61.329228Mittetemporal63.0
3OP230209Verji2024-04-27S2_D2323209S2_D2c3D2high K25.0no21.8483337.74550343.009610-68.37158231500.067.163086-29.284668212.036133-61.64550811.05215.78450530672.2024070.958735NaNNaNNaNNaNNaN8 mM-62.577472Bielefeldtemporal63.0
4OP240321Verji2024-04-11S2424321S2c4D1Ctrl0.0no11.5302787.63294132.884808-52.45361321200.084.008789-36.785889403.442383-71.89941414.80695.7911058NaN1.063838324.520817NaNNaNNaNNaN8 mM-63.149769Bielefeldtemporal31.0
\n", + "
" + ], + "text/plain": [ + " OP patcher date slice cell_ch cell_ID day treatment \\\n", + "0 OP211209 Verji 2024-03-13 S2 8 21d10S2c8 D1 Ctrl \n", + "1 OP221024 Verji 2024-06-16 S3 4 22o24S3c4 D1 Ctrl \n", + "2 OP230810 Verji 2024-05-14 S2 5 23810S2c5 D1 TTX \n", + "3 OP230209 Verji 2024-04-27 S2_D2 3 23209S2_D2c3 D2 high K \n", + "4 OP240321 Verji 2024-04-11 S2 4 24321S2c4 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 13.298889 14.470281 166.878916 \n", + "1 0.0 no 23.964167 11.521243 137.820797 \n", + "2 0.0 no 7.043056 10.120637 67.739416 \n", + "3 25.0 no 21.848333 7.745503 43.009610 \n", + "4 0.0 no 11.530278 7.632941 32.884808 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -67.962646 34 50.0 83.190918 -36.132812 302.124023 \n", + "1 -71.789551 41 50.0 93.322754 -42.968750 465.820312 \n", + "2 -70.629883 47 100.0 91.973877 -37.817383 415.771484 \n", + "3 -68.371582 31 500.0 67.163086 -29.284668 212.036133 \n", + "4 -52.453613 21 200.0 84.008789 -36.785889 403.442383 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -72.631836 20.75 152.623120 NaN NaN \n", + "1 -83.740234 14.85 124.324170 17 NaN \n", + "2 -107.666016 13.00 228.654858 10 402.013400 \n", + "3 -61.645508 11.05 215.784505 30 672.202407 \n", + "4 -71.899414 14.80 695.791105 8 NaN \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 0.966102 NaN NaN NaN NaN NaN \n", + "1 0.959995 NaN NaN NaN NaN NaN \n", + "2 0.760052 NaN NaN NaN NaN NaN \n", + "3 0.958735 NaN NaN NaN NaN NaN \n", + "4 1.063838 324.520817 NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \n", + "0 15 mM -59.101382 Bielefeld temporal 27.0 \n", + "1 8 mM -62.265689 Bielefeld temporal 42.0 \n", + "2 8 mM -61.329228 Mitte temporal 63.0 \n", + "3 8 mM -62.577472 Bielefeld temporal 63.0 \n", + "4 8 mM -63.149769 Bielefeld temporal 31.0 " + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "685a6b77", + "metadata": {}, + "outputs": [], + "source": [ + "df['days from prev'] = df['date'] - df.sort_values('date').groupby('patcher')['date'].shift()" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "75a262c6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
patcherdatedays from prev
251Rosie2024-01-01NaT
102Rosie2024-01-043 days
355Rosie2024-01-040 days
47Rosie2024-01-051 days
477Rosie2024-01-050 days
\n", + "
" + ], + "text/plain": [ + " patcher date days from prev\n", + "251 Rosie 2024-01-01 NaT\n", + "102 Rosie 2024-01-04 3 days\n", + "355 Rosie 2024-01-04 0 days\n", + "47 Rosie 2024-01-05 1 days\n", + "477 Rosie 2024-01-05 0 days" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values(['patcher', 'date'])[['patcher', 'date', 'days from prev']].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "dc9a1853", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "patcher\n", + "Rosie 1 days 05:45:15.789473684\n", + "Verji 0 days 10:53:42.269807280\n", + "Name: days from prev, dtype: timedelta64[ns]" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('patcher')['days from prev'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "de6ee1a8", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61a39610", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d63a56b1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_window_functions/shuffled_QC_passed_2024-07-04_collected_v1.csv b/exercises/tabular_window_functions/shuffled_QC_passed_2024-07-04_collected_v1.csv new file mode 100644 index 0000000..c769d32 --- /dev/null +++ b/exercises/tabular_window_functions/shuffled_QC_passed_2024-07-04_collected_v1.csv @@ -0,0 +1,660 @@ +OP,patcher,date,slice,cell_ch,cell_ID,day,treatment,hrs_incubation,repatch,hrs_after_OP,Rs,Rin,resting_potential,max_spikes,Rheobase,AP_heigth,TH,max_depol,max_repol,membra_time_constant_tau,capacitance,comments,rheo_ramp,AP_halfwidth,Rheobse_ramp,Unnamed: 27,rheos_ramp,comment, ,high K concentration,RMP_from_char,tissue_source,area,patient_age +OP211209,Verji,2024-03-13,S2,8,21d10S2c8,D1,Ctrl,0.0,no,13.29888889,14.47028099,166.8789159,-67.96264648,34,50.0,83.19091797,-36.1328125,302.1240234,-72.63183594,20.75,152.6231201,,,0.966102219,,,,,,15 mM,-59.10138168,Bielefeld,temporal,27.0 +OP221024,Verji,2024-06-16,S3,4,22o24S3c4,D1,Ctrl,0.0,no,23.96416667,11.5212428,137.8207965,-71.78955078,41,50.0,93.32275391,-42.96875,465.8203125,-83.74023438,14.85,124.3241696,17,,0.959995228,,,,,,8 mM,-62.26568939,Bielefeld,temporal,42.0 +OP230810,Verji,2024-05-14,S2,5,23810S2c5,D1,TTX,0.0,no,7.043055556,10.1206367,67.73941573,-70.62988281,47,100.0,91.97387695,-37.81738281,415.7714844,-107.6660156,13.0,228.6548578,10,402.0134,0.760051718,,,,,,8 mM,-61.32922775,Mitte,temporal,63.0 +OP230209,Verji,2024-04-27,S2_D2,3,23209S2_D2c3,D2,high K,25.0,no,21.84833333,7.745502768,43.00961023,-68.37158203,31,500.0,67.16308594,-29.28466797,212.0361328,-61.64550781,11.05,215.7845054,30,672.202407,0.958735269,,,,,,8 mM,-62.57747208,Bielefeld,temporal,63.0 +OP240321,Verji,2024-04-11,S2,4,24321S2c4,D1,Ctrl,0.0,no,11.53027778,7.632941391,32.88480792,-52.45361328,21,200.0,84.00878906,-36.78588867,403.4423828,-71.89941406,14.8,695.7911047,8,,1.063837531,324.5208174,,,,,8 mM,-63.14976883,Bielefeld,temporal,31.0 +OP220127,Rosie,2024-07-22,S2_D2,5,22129S2_D2c5,D2,TTX,24.0,no,46.79444444,9.807291152,53.63303274,-66.90673828,30,150.0,77.74047852,-35.9375,347.65625,-69.82421875,11.4,227.3616555,31,,0.923104978,,,,,31.0,15 mM,-61.29355057,Mitte,temporal,45.0 +OP221024,Verji,2024-06-14,S2_D2,4,22o24S2c5,D2,TTX,24.0,yes,47.46416667,9.592057034,38.5317477,-63.37280273,6,600.0,60.59570313,-22.96142578,158.203125,-41.38183594,3.95,117.7739763,30,,1.239089567,,,,,,8 mM,-63.76218063,Bielefeld,temporal,42.0 +OP221027,Verji,2024-02-01,S2_D2,2,22o27S2c2,D2,TTX,24.0,yes,34.65888889,13.08692097,53.72979843,-69.47021484,33,200.0,76.171875,-34.0637207,290.2832031,-88.98925781,10.9,276.2344934,30,,0.80601395,,,,,,8 mM,-61.88209991,Mitte,temporal,61.0 +OP240215,Verji,2024-02-10,S1,4,24215S1c4,D1,Ctrl,0.0,no,11.72583333,10.02916639,45.2685955,-74.06616211,25,150.0,88.14086914,-42.74291992,333.0078125,-79.95605469,19.25,486.3407864,3,,0.958975243,719.5139838,,,,,8 mM,-60.0295697,Bielefeld,temporal,30.0 +OP230808,Verji,2024-04-04,S5,4,23808S5c4,D1,Ctrl,0.0,no,24.79277778,8.488247607,52.49446801,-74.8840332,23,250.0,88.89770508,-37.53662109,437.0117188,-64.20898438,15.95,493.5312559,28,513.5571186,1.143392566,,,,,,8 mM,-65.06136215,Hamburg,temporal,14.0 +OP220127,Rosie,2024-07-20,S1_D2,8,22129S1_D2c8,D2,Ctrl,24.0,no,44.59944444,29.15487595,244.3463877,-71.60644531,38,50.0,82.00683594,-36.86523438,290.4052734,-84.59472656,12.8,81.71252679,28,,0.92558657,,,,,28.0,15 mM,-59.94002472,Mitte,temporal,45.0 +OP230426,Verji,2024-01-16,S3,6,23426S3c6,D1,high K,0.0,no,24.36611111,7.533919301,60.58603809,-69.48852539,26,100.0,86.51123047,-36.328125,417.6025391,-77.63671875,13.85,241.2742158,11,331.81106,0.904285424,,,,,,8 mM,-61.94321762,Hamburg,temporal,58.0 +OP230810,Verji,2024-05-12,S1,7,23810S1c7,D1,high K,0.0,yes,5.660833333,26.75652963,74.70950316,-64.85595703,53,150.0,90.94238281,-42.93212891,423.9501953,-83.0078125,9.1,239.3168539,5,307.5403,0.965371197,,,,,,8 mM,-61.51349396,Mitte,temporal,63.0 +OP240321,Verji,2024-04-12,S2,8,24321S2c8,D1,Ctrl,0.0,yes,11.53027778,21.40485393,49.62557662,-68.25561523,29,200.0,88.70849609,-38.72070313,383.4228516,-106.0791016,20.2,524.9116574,12,,0.81954569,388.4829494,,,,,8 mM,-61.90836395,Bielefeld,temporal,31.0 +OP220322,Verji,2024-06-28,S1_D2,6,22322S1_D2c6,D2,Ctrl,22.0,no,32.92194444,11.95523615,33.57619545,-65.57617188,31,350.0,90.13061523,-40.06958008,339.1113281,-78.73535156,9.45,423.6082079,17,,0.927595753,,,,,,15 mM,-61.32522614,Bielefeld,temporal,52.0 +OP220120,Rosie,2024-03-02,S2_D2,7,22122S2_D2c7,D2,TTX,23.0,no,37.98083333,17.20997709,250.5832579,-47.66235352,1,-300.0,62.46337891,-41.88232422,182.1289063,-87.03613281,5.0,34.70451176,19,,0.735448619,,,,,,15 mM,-59.95962921,Bielefeld,temporal,50.0 +OP230209,Verji,2024-04-25,S3_D2,3,23209S3c3,D2,Ctrl,25.0,yes,23.94944444,27.8535947,200.3500344,-66.91894531,9,50.0,78.57666016,-38.89770508,306.5185547,-104.4921875,16.5,113.8976195,37; exclude; Rs_end > 30,104.360218,0.706254014,,,,,,8 mM,-60.01862885,Bielefeld,temporal,63.0 +OP220518,Verji,2024-07-10,S2_D2,5,22519S2_D2c5,D2,high K,24.0,no,47.49083333,7.294438443,23.61445361,-61.70043945,6,800.0,75.06713867,-34.58251953,300.4150391,-60.91308594,3.95,198.8227343,28,,1.063950777,,,,,,15 mM,-63.05897186,Bielefeld,frontal,37.0 +OP230314,Verji,2024-07-23,S3,7,23314S3c7,D1,TTX,0.0,yes,8.987777778,8.086421162,55.08455337,-72.44873047,39,150.0,91.66259766,-37.87841797,489.7460938,-90.08789063,13.55,234.9240212,19,,0.839852963,,,300.535018,,,8 mM,-60.00501572,Virchow,temporal,12.0 +OP220217,Verji,2024-06-05,S2_D2,3,22218S2_D2c3,D2,TTX,22.0,no,34.75305556,7.854192223,69.71558251,-73.03466797,30,200.0,61.29150391,-29.75463867,140.2587891,-41.9921875,15.65,284.031681,27,,1.240366976,,,,,,15 mM,-61.11393967,Mitte,temporal,17.0 +OP230808,Verji,2024-04-02,S3,8,23808S3c8,D1,Ctrl,0.0,no,10.92722222,8.565213353,61.80074835,-80.23681641,18,100.0,86.65161133,-41.55273438,325.5615234,-69.09179688,25.8,414.2157766,20,497.8065936,1.12020915,,,,,,8 mM,-61.09218033,Hamburg,temporal,14.0 +OP220914,Verji,2024-07-06,S2_D2,6,22915S2_D2c6,D2,TTX,24.0,no,48.89638889,14.79940085,80.56026762,-52.40478516,2,100.0,21.42944336,-10.54077148,14.6484375,-8.056640625,20.15,262.5348708,22,,2.936208337,,,,,,8 mM,-47.75891815,Bielefeld,temporal,21.0 +OP220111,Rosie,2024-06-11,S1_D2,4,22111S1c4,D2,TTX,21.0,yes,32.75444444,8.588633505,71.51729222,-59.98535156,0,,,,,,17.85,532.2191083,13,,,,,,,,15 mM,-59.99144638,Bielefeld,temporal,51.0 +OP230109,Verji,2024-02-29,S2_D2,2,2311S2_D2c2,D2,high K,24.0,no,46.55611111,12.0591842,102.348767,-65.17333984,5,200.0,67.28515625,-30.53588867,262.6953125,-84.83886719,9.5,126.6460537,34,,0.804893682,,,,,,8 mM,-61.562229,Bielefeld,temporal,42.0 +OP240201,Verji,2024-03-04,S1,6,24201S1c6,D1,high K,0.0,no,9.856111111,19.43676784,55.79062937,-58.35571289,29,450.0,83.99047852,-40.5090332,344.8486328,-61.03515625,17.2,696.6744129,5,,1.237340459,166.1155372,,,,,8 mM,-67.74392349,Mitte,temporal,39.0 +OP210615,Rosie,2024-03-08,S4,2,2021_06_15_0S4c2,D1,TTX,0.0,no,11.5725,7.568696233,43.59352717,-62.06054688,33,500.0,103.137207,-44.30541992,613.7695313,-90.69824219,9.8,389.2441212,manually_corrected,,0.978717772,,,,,,15 mM,-69.04094467,Virchow,temporal,19.0 +OP230808,Verji,2024-04-02,S4,4,23808S4c4,D1,TTX,0.0,no,23.75972222,10.08791051,86.29501911,-76.14746094,17,100.0,85.52856445,-38.18969727,333.0078125,-74.95117188,23.2,368.3224806,23,400.5133504,1.032756149,,,,,,8 mM,-61.9985498,Hamburg,temporal,14.0 +OP210615,Rosie,2024-03-04,S2,2,2021_06_15_0S2c2,D1,Ctrl,0.0,no,9.555555556,14.25318281,48.73435774,-72.68066406,41,400.0,97.1496582,-44.43359375,559.9365234,-73.85253906,12.4,491.916707,manually_corrected,,1.072201415,,,,,,15 mM,-70.3563118,Virchow,temporal,19.0 +OP210323,Rosie,2024-06-02,S6_D2,2,2021_03_25_0S6_D2c1,D2,TTX,16.5,no,45.982222,6.111883637,37.90606881,-63.96484375,10,800.0,63.7878418,-26.26342773,182.2509766,-46.50878906,18.5,663.2472648,37,,1.303423394,,,,,,15 mM,-72.16715439,Virchow,temporal,10.0 +OP230109,Verji,2024-02-26,S2,8,2311S2c8,D1,high K,0.0,no,20.8525,11.5686629,40.27959212,-63.72070313,48,300.0,84.08203125,-37.59765625,380.9814453,-84.71679688,8.3,275.8361055,13,,0.804060607,,,,,,8 mM,-62.4380603,Bielefeld,temporal,42.0 +OP210323,Rosie,2024-05-19,S4,7,2021_03_24_0S4c7,D1,TTX,0.0,no,23.04833333,8.532421262,102.6540583,-70.08056641,19,150.0,87.16430664,-39.69116211,300.5371094,-81.66503906,16.4,226.9405405,17,,0.950841822,,,,,,15 mM,-70.04043732,Virchow,temporal,10.0 +OP220217,Verji,2024-05-30,S3,4,22217S3c4,D1,high K,0.0,no,11.88,8.510487699,38.52877708,-73.65112305,34,450.0,71.29516602,-37.06054688,202.3925781,-67.26074219,11.85,328.5116751,13,,0.932318255,,,,,,15 mM,-64.75763992,Mitte,temporal,17.0 +OP230314,Verji,2024-07-22,S3,5,23314S3c5,D1,TTX,0.0,no,8.987777778,7.485599379,65.50847045,-75.36621094,47,100.0,83.28857422,-37.8112793,396.9726563,-99.12109375,16.5,204.6449659,17,,0.701467788,,,368.502283,,,8 mM,-57.15973892,Virchow,temporal,12.0 +OP230314,Verji,2024-07-20,S3_D2,4,23314S3c3,D2,TTX,23.0,yes,32.72666667,17.47237941,50.63841144,-64.89868164,4,450.0,58.33740234,-35.48583984,204.5898438,-58.95996094,9.9,514.1096672,33,,0.911866182,,,,,,8 mM,-62.15148026,Virchow,temporal,12.0 +OP230420,Verji,2024-01-05,S2,8,23420S2c8,D1,high K,0.0,no,12.18805556,10.15496886,33.77378731,-69.79370117,22,300.0,86.32202148,-36.98730469,432.7392578,-61.03515625,18.3,644.0970999,12; exclude; Rs_end > 30,974.7058235,1.122725061,,,,,,8 mM,-61.19957474,Bielefeld,temporal,13.0 +OP220127,Rosie,2024-06-27,S1_D2,4,22128S1c2,D2,Ctrl,24.0,yes,43.83222222,24.31177946,87.45439608,-68.59741211,9,200.0,69.39086914,-38.17749023,213.3789063,-62.74414063,9.2,142.0221,tau and cap from -150,,1.028491636,,,,,25.0,15 mM,-60.5175528,Mitte,temporal,45.0 +OP220426,Verji,2024-01-21,S2_D2,5,22427S2_D2c5,D2,TTX,24.0,no,47.1325,6.511569126,23.16589737,-67.97485352,17,700.0,58.56933594,-24.42626953,173.2177734,-45.41015625,14.25,409.2410167,26,,1.1037319,,,,,,15 mM,-60.57814545,Bielefeld,temporal,60.0 +OP230808,Verji,2024-03-29,S2_D2,1,23808S2c2,D2,high K,25.0,yes,34.21527778,11.61188763,40.55157565,-67.82226563,14,250.0,86.59667969,-38.32397461,420.6542969,-68.359375,20.3,517.6578988,61,481.8160605,1.323131827,,,,,,8 mM,-59.6189299,Hamburg,temporal,14.0 +OP210615,Rosie,2024-03-06,S4,2,2021_06_15_0S4c1,D1,TTX,0.0,no,11.14805556,7.591803416,45.49713671,-67.10205078,28,450.0,99.70092773,-44.54345703,498.4130859,-84.83886719,10.55,366.2101695,,,0.975118561,,,,,,15 mM,-71.12725922,Virchow,temporal,19.0 +OP230523,Verji,2024-03-11,S3,2,23523S3c2,D1,Ctrl,0.0,yes,13.27361111,8.054329516,43.44103325,-75.16479492,22,200.0,83.30078125,-31.1340332,347.9003906,-72.38769531,16.15,349.3090429,15,651.3517117,1.07139335,,,,,,8 mM,-61.0537587,Hamburg,temporal,16.0 +OP220127,Rosie,2024-01-23,S2,1,22127S2c1,D1,high K,0.0,no,9.303888889,9.155659891,52.54134449,-76.30615234,22,100.0,89.35546875,-37.96386719,345.703125,-93.99414063,23.9,369.4128302,6,,0.878282622,,,,,,15 mM,-58.60017395,Mitte,temporal,45.0 +OP220127,Rosie,2024-01-30,S3_D2,3,22127S3c3,D2,TTX,23.0,yes,34.94666667,8.726772893,44.69449077,-78.76586914,34,250.0,83.19702148,-37.10327148,301.3916016,-76.41601563,17.3,338.2377088,32,,0.954730442,,,,,,15 mM,-61.7574617,Mitte,temporal,45.0 +OP220426,Verji,2024-01-17,S2,6,22427S2c6,D1,TTX,0.0,no,22.85555556,8.11855387,42.98952558,-70.86791992,30,150.0,81.86035156,-35.46142578,228.0273438,-80.078125,16.05,250.7994278,3,,0.920186379,,,,,,15 mM,-58.88047363,Bielefeld,temporal,60.0 +OP231123,Verji,2024-03-27,S2_D2,7,23n23S2_D2c7,D2,high K,19.0,no,31.71361111,7.172977536,45.23349945,-71.06323242,24,150.0,87.48168945,-35.63842773,447.7539063,-79.1015625,16.55,376.0821082,21,,0.896085467,527.8975966,,,,,8 mM,-60.87491974,Bielefeld,temporal,40.0 +OP201029,Rosie,2024-03-17,S1,7,20o29S1c7,D1,Ctrl,0.0,no,7.865555556,20.63484044,75.11329289,-69.03076172,42,350.0,71.80786133,-35.10131836,171.9970703,-58.22753906,7.0,154.4619529,,,1.160363728,,,,,,15 mM,-69.01241547,Mitte,temporal,47.0 +OP210323,Rosie,2024-05-04,S3,6,2021_03_24_0S3c6,D1,Ctrl,0.0,yes,21.22833333,18.24590049,57.02961156,-68.46313477,23,700.0,53.93066406,-33.2824707,156.8603516,-43.9453125,10.7,288.8118616,10,,1.182796526,,,,,,15 mM,-68.46290375,Virchow,temporal,10.0 +OP231123,Verji,2024-03-25,S2,5,23n23S2c5,D1,high K,0.0,no,11.95777778,6.416594228,55.15976306,-73.10791016,29,100.0,88.72680664,-40.13061523,402.4658203,-75.43945313,20.75,399.3750367,8,,1.010076404,415.6938565,,,,,8 mM,-62.93654877,Bielefeld,temporal,40.0 +OP211123,Rosie,2024-01-05,S1_D2,5,21n23S1c4,D2,Ctrl,23.0,yes,34.16111111,12.14987175,45.71300317,-50.93383789,13,50.0,84.80834961,-44.8059082,228.7597656,-63.72070313,23.4,419.9185104,,,1.191881963,,,,,,15 mM,-54.25180237,Bielefeld,temporal,68.0 +OP231130,Verji,2024-01-21,S1,5,23n30S1c5,D1,Ctrl,0.0,no,11.99277778,20.14300934,59.82588333,-60.80932617,29,800.0,68.36547852,-31.46362305,258.5449219,-58.10546875,11.75,632.2233169,1,,1.081763385,0.0,,,,,8 mM,-57.46246033,Bielefeld,temporal,39.0 +OP230817,Verji,2024-05-08,S3,8,23817S3c8,D1,Ctrl,0.0,no,7.576388889,21.3561022,75.35247745,-69.83642578,27,100.0,82.33642578,-39.61791992,286.2548828,-68.72558594,16.9,451.3277914,19,424.6042,1.037192893,,,,,,8 mM,-61.06595032,Mitte,temporal,47.0 +OP240201,Verji,2024-03-04,S1,1,24201S1c1,D1,high K,0.0,no,9.856111111,14.40803495,91.64961766,-75.64086914,43,200.0,73.10791016,-34.83886719,219.7265625,-81.42089844,15.25,225.5018051,0,,0.813042715,305.7701923,,,,,8 mM,-71.11311462,Mitte,temporal,39.0 +OP221027,Verji,2024-01-31,S2,2,22o27S2c2,D1,TTX,0.0,yes,9.679166667,7.087507564,61.17202158,-76.16577148,37,100.0,87.890625,-37.9699707,380.6152344,-78.85742188,21.35,305.6342508,9,,0.879168388,,,,,,8 mM,-57.17740082,Mitte,temporal,61.0 +OP220426,Verji,2024-01-20,S3,5,22427S3c5,D1,high K,0.0,no,24.78472222,7.805099445,36.28028452,-53.43017578,18,200.0,74.76196289,-34.5703125,239.8681641,-76.90429688,13.4,353.5355878,10,,0.866591582,,,,,,15 mM,-59.16793152,Bielefeld,temporal,60.0 +OP211123,Rosie,2024-01-12,S2_D2,7,21n24S2_D2c7,D2,high K,23.0,no,36.54972222,12.32736816,149.6074828,-80.02929688,33,50.0,95.73364258,-44.32983398,424.5605469,-80.81054688,22.5,190.1186178,,,0.955288406,,,,,,15 mM,-60.80821594,Bielefeld,temporal,68.0 +OP221027,Verji,2024-02-05,S2_D2,7,22o27S2_D2c7,D2,TTX,24.0,no,35.15,15.56751424,57.9726908,-50.88500977,21,200.0,74.31640625,-34.2956543,254.6386719,-64.57519531,13.55,318.9701149,34,,0.984890116,,,,,,8 mM,-59.18066528,Mitte,temporal,61.0 +OP221027,Verji,2024-01-30,S2_D2,1,22o27S2c1,D2,TTX,24.0,yes,34.57166667,9.714606889,58.60567723,-73.41918945,30,150.0,76.97753906,-34.73510742,297.7294922,-74.21875,16.3,288.5566721,29,,0.951785601,,,,,,8 mM,-61.65735245,Mitte,temporal,61.0 +OP220111,Rosie,2024-06-14,S5_D2,3,22112S5_D2c3,D2,Ctrl,23.0,no,29.73638889,6.423372154,154.8296837,-66.51000977,32,100.0,80.3527832,-38.15917969,273.0712891,-63.11035156,9.2,93.13117084,6,,1.069578226,,,,,,15 mM,-66.38698517,Bielefeld,temporal,51.0 +OP220602,,2024-07-19,S3_D2,8,22602S3_D2c8,D2,TTX,22.0,no,37.68972222,16.99739632,149.5814704,-66.68701172,25,100.0,65.05737305,-30.82885742,165.2832031,-59.32617188,14.4,112.3474286,34,,0.995200469,,,,,,8 mM,-63.05315857,,, +OP221024,Verji,2024-06-10,S1_D2,4,22o24S1c3,D2,high K,24.0,yes,45.12972222,9.182507114,32.80368941,-74.37744141,5,700.0,70.48950195,-44.15283203,177.8564453,-64.57519531,7.7,308.8293758,24,,1.065969911,,,,,,8 mM,-63.29925247,Bielefeld,temporal,42.0 +OP220308,Verji,2024-06-21,S1,8,22308S1c8,D1,Ctrl,0.0,yes,12.17,26.9429407,124.403892,-71.44775391,40,100.0,79.3762207,-39.86206055,243.5302734,-77.39257813,20.45,201.7175196,4; exclude; Rs_end > 30,,0.938989072,,,,,,15 mM,-62.01251495,Bielefeld,temporal,52.0 +OP220811,Verji,2024-06-09,S2_D2,5,22811S2_D2c5,D2,high K,17.0,no,23.26527778,5.024042715,40.28845612,-68.79272461,23,400.0,72.66845703,-27.11181641,271.484375,-46.75292969,19.15,427.4572207,3,,1.249915167,,,,,,8 mM,-61.54855072,Mitte,temporal,18.0 +OP220623,Verji,2024-01-07,S2,3,22623S2c3,D1,high K,0.0,no,9.266944444,6.567370956,21.87430608,-68.68286133,29,400.0,75.6652832,-29.70581055,292.2363281,-80.32226563,13.1,362.8578191,1,,0.808835298,,,,,,8 mM,-54.82799149,Mitte,frontal,32.0 +OP240417,Verji,2024-02-19,S3_D2,6,24417S3c6,D1,Ctrl,16.0,yes,31.57638889,13.81928135,129.1641464,-75.32958984,25,100.0,84.60693359,-37.18261719,377.4414063,-99.97558594,23.35,252.3525066,37; exclude; Rs_end > 30; exclude; Rs_end > 30,,0.752147864,288.4896163,,,,,8 mM,-61.49481277,Hamburg,temporal,29.0 +OP240503,Verji,2024-04-28,S2,5,24503S2c5,D1,Ctrl,0.0,yes,9.624722222,15.31122745,57.46673777,-59.70458984,22,300.0,80.84106445,-36.29150391,268.6767578,-51.39160156,0.15,690.3603,cap manual adjustment,,1.378315392,435.6145205,,,,,8 mM,-63.65160202,Mitte,temporal,36.0 +OP220111,Rosie,2024-06-10,S1,4,22111S1c4,D1,TTX,0.0,yes,11.38083333,16.88836326,69.73148547,-62.6159668,23,50.0,85.38208008,-41.67480469,348.3886719,-70.3125,28.45,466.357979,0,,0.986559637,,,,,,15 mM,-62.6093895,Bielefeld,temporal,51.0 +OP230808,Verji,2024-03-28,S1,3,23808S1c3,D1,TTX,0.0,no,8.163333333,11.8307557,50.36227256,-73.46191406,17,200.0,85.49804688,-39.3737793,369.7509766,-71.16699219,27.5,683.1842305,2,625.4908497,1.060314711,,,,,,8 mM,-59.71858475,Hamburg,temporal,14.0 +OP211209,Verji,2024-03-21,S1_D2,5,21d10S1_D2c5,D2,high K,18.0,no,30.52,9.991316294,67.3526551,-75.22583008,19,250.0,72.97973633,-29.01000977,269.8974609,-69.58007813,21.65,292.6679868,,,0.91356659,,,,,,15 mM,-61.07623215,Bielefeld,temporal,27.0 +OP201029,Rosie,2024-03-20,S2,2,20o29S2c2,D1,TTX,0.0,yes,9.434722222,12.1449819,70.78392484,-62.41455078,23,250.0,70.72,-30.40771484,182.3730469,-64.69726563,15.35,275.3085933,,,0.982865148,,,,,,15 mM,-62.39529144,Mitte,temporal,47.0 +OP230209,Verji,2024-04-21,S1,3,23209S1c3,D1,TTX,0.0,yes,-4.47,20.24465384,51.06639102,-60.08911133,2,400.0,55.23071289,-33.32519531,148.1933594,-39.91699219,13.4,339.3285935,1; exclude; Rs_end > 30,,1.241602102,,,,,,8 mM,-62.19541824,Bielefeld,temporal,63.0 +OP210323,Rosie,2024-04-12,S1,2,2021_03_24_0S1c2,D1,TTX,0.0,yes,16.9575,7.083269346,56.83749983,-72.14355469,17,300.0,89.20288086,-37.37182617,419.7998047,-85.32714844,15.5,383.0346908,1,,0.919767619,,,,,,15 mM,-72.13410156,Virchow,temporal,10.0 +OP201027,Rosie,2024-03-26,S1,2,20o27S1c2,D1,Ctrl,0.0,yes,7.045277778,10.85912724,61.55433968,-61.4074707,32,150.0,83.78295898,-40.56396484,253.6621094,-68.72558594,15.0,266.695605,,,1.111889773,,,,,,15 mM,-61.38810852,Mitte,temporal,33.0 +OP230209,Verji,2024-04-22,S2,5,23209S2c5,D1,high K,0.0,no,-2.874722222,8.525730043,81.23149337,-69.04907227,53,100.0,82.27539063,-34.91210938,365.4785156,-98.26660156,13.05,141.8316418,8,192.024601,0.713135555,,,,,,8 mM,-58.24603363,Bielefeld,temporal,63.0 +OP201027,Rosie,2024-03-29,S1,7,20o27S1c7,D1,Ctrl,0.0,no,7.045277778,8.786273202,50.1445404,-53.75976563,24,250.0,73.26660156,-36.56616211,181.7626953,-61.88964844,15.6,417.290449,3,,1.120129222,,,,,,15 mM,-53.73915771,Mitte,temporal,33.0 +OP240221,Verji,2024-06-19,S1,4,24221S1c4,D1,high K,0.0,no,11.03888889,16.05173703,137.9807712,-47.58605957,21,100.0,85.55908203,-44.15893555,339.4775391,-118.0419922,11.55,133.640678,2,,0.743333036,28.92096403,,,,,8 mM,-60.35948746,Bielefeld,temporal,37.0 +OP230817,Verji,2024-05-09,S1_D2,7,23817S1_D2c7,D2,TTX,23.0,no,27.70083333,7.552612885,68.78540477,-63.45825195,21,150.0,56.1340332,-23.79760742,144.4091797,-58.34960938,17.2,249.6056687,24,395.9532,0.913314774,,,,,,8 mM,-60.48967346,Mitte,temporal,47.0 +OP231130,Verji,2024-01-21,S1,1,23n30S1c1,D1,Ctrl,0.0,yes,11.99277778,15.62708067,58.6665813,-78.06091309,55,300.0,88.77563477,-41.57714844,352.2949219,-103.515625,13.8,329.3506191,0,,0.8110857,351.5817194,,,,,8 mM,-71.58446503,Bielefeld,temporal,39.0 +OP220602,,2024-05-31,S3,1,22602S3c1,D1,TTX,0.0,no,15.22916667,6.363932512,25.41806753,-69.18945313,27,250.0,71.85058594,-32.88574219,231.6894531,-84.83886719,13.0,339.1592357,12,,0.8076344,,,,,,8 mM,-59.13479095,,, +OP220127,Rosie,2024-02-16,S4_D2,2,22127S4_D2c2,D2,TTX,23.0,no,36.85194444,8.06378854,44.06267247,-76.4831543,16,200.0,69.20776367,-26.93481445,218.75,-65.30761719,19.0,338.9178008,38,,0.931688226,,,,,,15 mM,-61.34517899,Mitte,temporal,45.0 +OP240503,Verji,2024-04-30,S3_D2,8,24503S3c8,D2,high K,17.0,yes,29.17055556,9.674571626,75.22330243,-73.11401367,29,150.0,65.52124023,-31.18896484,177.3681641,-66.04003906,25.5,359.7003874,37,,0.907172712,368.3822794,,,,,8 mM,-61.84618591,Mitte,temporal,36.0 +OP211209,Verji,2024-03-14,S3,8,21d10S3c8,D1,TTX,0.0,no,15.17694444,10.72496566,134.6700001,-58.02001953,33,50.0,84.25292969,-38.79394531,271.9726563,-83.0078125,15.65,125.0473543,,,0.921350286,,,,,,15 mM,-55.01094894,Bielefeld,temporal,27.0 +OP230209,Verji,2024-04-24,S2_D2,7,23209S2c7,D2,high K,25.0,yes,21.84833333,13.01074741,77.26324844,-57.31201172,35,100.0,81.62231445,-30.63964844,316.40625,-92.40722656,12.3,143.7398003,33,246.108204,0.850898052,,,,,,8 mM,-57.31295288,Bielefeld,temporal,63.0 +OP240321,Verji,2024-04-20,S2_D2,2,24321S2_D2c2,D2,Ctrl,17.0,no,29.73333333,25.00260368,277.8319678,-70.76416016,40,50.0,85.9375,-42.35229492,382.3242188,-100.4638672,13.9,107.5248347,34; exclude; Rs_end > 30,,0.772774471,109.7736591,,,,,8 mM,-60.29523041,Bielefeld,temporal,31.0 +OP220322,Verji,2024-06-30,S2_D2,3,22322S2_D2c3,D2,TTX,22.0,no,34.94305556,7.367304985,24.60982382,-70.96557617,3,550.0,65.10009766,-38.07983398,241.0888672,-54.6875,8.7,408.426361,19,,0.955310884,,,,,,15 mM,-61.6800824,Bielefeld,temporal,52.0 +OP220127,Rosie,2024-02-12,S2_D2,6,22127S2_D2c6,D2,high K,23.0,no,32.7325,19.04636954,49.69794487,-72.63793945,24,150.0,85.80322266,-36.05957031,317.1386719,-70.80078125,18.0,396.9205922,28,,0.982409117,,,,,,15 mM,-62.11214584,Mitte,temporal,45.0 +OP220127,Rosie,2024-07-06,S3,2,22128S3c2,D1,high K,0.0,no,22.49333333,10.5057559,54.99366521,-72.69897461,12,700.0,85.42480469,-35.18676758,407.1044922,-85.44921875,11.95,405.6398,manually_adj_inj,,0.88737641,,,,,14.0,15 mM,-69.28528931,Mitte,temporal,45.0 +OP220111,Rosie,2024-06-17,S1_D2,4,22112S1_D2c2,D2,TTX,21.0,no,33.98666667,9.484461788,66.02868537,-69.10400391,26,250.0,77.25830078,-33.88671875,322.5097656,-64.20898438,11.05,188.9803758,19,,0.992485326,,,,,,15 mM,-69.08026917,Bielefeld,temporal,51.0 +OP230808,Verji,2024-04-08,S3_D2,2,23808S3_D2c2,D2,Ctrl,25.0,no,35.75638889,8.11929593,55.1986248,-77.72827148,9,250.0,75.13427734,-38.09204102,261.2304688,-58.47167969,24.65,488.0551057,69,605.5101837,1.122261401,,,,,,8 mM,-59.79965714,Hamburg,temporal,14.0 +OP230109,Verji,2024-02-23,S2,1,2311S2c1,D1,high K,0.0,yes,20.8525,11.8984563,32.67588579,-55.00488281,1,250.0,76.86157227,-49.05395508,277.2216797,-59.81445313,9.0,224.9519451,7,,1.129772509,,,,,,8 mM,-60.30499054,Bielefeld,temporal,42.0 +OP240321,Verji,2024-04-08,S1,1,24321S1c1,D1,high K,0.0,no,9.830277778,14.68695264,64.47039974,-49.51171875,15,200.0,64.97802734,-33.203125,171.1425781,-70.80078125,21.75,436.4384568,0,,0.937077429,55.32184406,,,,,8 mM,-60.1537262,Bielefeld,temporal,31.0 +OP220228,Verji,2024-05-20,S2_D2,5,22228S2c6,D2,TTX,23.0,yes,38.60805556,7.026996492,27.35234819,-73.79760742,19,400.0,56.26220703,-23.34594727,133.6669922,-40.52734375,15.35,428.0755745,22,,1.284542472,,,,,,15 mM,-61.37136124,Bielefeld,temporal,33.0 +OP231109,Verji,2024-01-11,S1,2,23n09S1c2,D1,Ctrl,0.0,no,5.016944444,9.160783254,94.60849635,-70.50170898,41,150.0,78.05175781,-35.68115234,270.6298828,-65.67382813,26.1,345.8329155,1,,1.052610637,289.9296643,,,,,8 mM,-54.33382431,Mitte,temporal,44.0 +OP220217,Verji,2024-05-28,S2_D2,6,22217S2c6,D2,TTX,22.0,yes,34.21222222,15.88834982,133.2850322,-79.85229492,29,100.0,62.73803711,-32.48291016,143.4326172,-54.44335938,24.65,265.5263642,24,,1.067558287,,,,,,15 mM,-62.85704315,Mitte,temporal,17.0 +OP230523,Verji,2024-03-09,S1,2,23523S1c2,D1,TTX,0.0,yes,9.898888889,20.81798156,103.8518342,-78.0456543,27,50.0,88.59863281,-42.97485352,356.6894531,-77.63671875,22.65,282.8487805,1,272.7990933,0.98362592,,,,,,8 mM,-63.42125,Hamburg,temporal,16.0 +OP211209,Verji,2024-03-24,S3_D2,2,21d10S3_D2c2,D2,TTX,18.0,no,34.725,7.868088358,80.58351523,-79.84313965,18,250.0,63.61694336,-23.828125,179.5654297,-57.86132813,18.45,279.3759704,,,0.955020815,,,,,,15 mM,-61.64818573,Bielefeld,temporal,27.0 +OP231123,Verji,2024-03-27,S2_D2,5,23n23S2_D2c5,D2,high K,19.0,no,31.71361111,6.369858688,48.70777117,-75.79956055,22,200.0,83.64257813,-34.97314453,407.9589844,-82.64160156,19.9,359.6708218,20,,0.859003878,562.3387446,,,,,8 mM,-60.70497925,Bielefeld,temporal,40.0 +OP220623,Verji,2024-01-09,S4,6,22623S4c6,D1,TTX,0.0,no,12.90611111,8.789322911,81.75947704,-60.29663086,32,200.0,74.55444336,-35.21118164,219.4824219,-60.66894531,12.1,155.183092,17,,1.019203423,,,,,,8 mM,-61.5940918,Mitte,frontal,32.0 +OP221020,Verji,2024-01-28,S6_D2,4,22o21S6_D2c4,D2,high K,20.0,no,33.4275,6.058090218,40.81383928,-64.46533203,17,500.0,74.8840332,-29.69970703,314.9414063,-66.04003906,15.5,501.8814229,13,,0.947928896,,,,,,8 mM,-62.32504959,Mitte,temporal,25.0 +OP221020,Verji,2024-01-29,S6_D2,6,22o21S6_D2c6,D2,high K,20.0,no,33.4275,7.2884183,51.77505905,-65.46630859,19,350.0,78.42407227,-27.93579102,348.2666016,-64.94140625,10.85,237.8145819,14,,0.993077044,,,,,,8 mM,-62.63967575,Mitte,temporal,25.0 +OP231130,Verji,2024-01-26,S2_D2,7,23n30S2_D2c7,D2,Ctrl,21.0,no,34.33166667,8.566453943,67.89862467,-58.95385742,27,500.0,79.07104492,-35.33325195,376.2207031,-78.49121094,8.4,275.2512,15,,0.912125624,523.4874496,,,,,8 mM,-60.89023193,Bielefeld,temporal,39.0 +OP230808,Verji,2024-04-03,S4,5,23808S4c5,D1,TTX,0.0,yes,23.75972222,8.731586121,63.94811293,-81.04858398,15,150.0,88.72680664,-38.56811523,374.0234375,-73.12011719,29.65,574.2146572,24,656.1518717,1.093037518,,,,,,8 mM,-61.99093338,Hamburg,temporal,14.0 +OP220120,Rosie,2024-03-01,S2_D2,4,22122S2_D2c4,D2,TTX,23.0,no,37.98083333,7.510802767,20.48972647,-50.32958984,1,1300.0,67.91381836,-31.45141602,198.9746094,-64.69726563,4.15,499.9529412,17,,0.93479198,,,,,,15 mM,-59.16356979,Bielefeld,temporal,50.0 +OP211123,Rosie,2024-03-30,S2,4,2021_11_24_0S2c4,D1,TTX,0.0,no,23.76555556,26.0966228,91.56724082,-71.94213867,34,100.0,92.43774414,-37.90283203,322.3876953,-85.32714844,18.3,269.7500675,,,1.020629271,,,,,,15 mM,-60.05401672,Bielefeld,temporal,68.0 +OP211123,Rosie,2024-01-04,S1,4,21n23S1c4,D1,Ctrl,0.0,yes,10.71861111,8.187239223,38.05536764,-61.95068359,27,300.0,87.41455078,-35.32104492,283.203125,-78.73535156,15.25,343.4446735,,,0.926819288,,,,,,15 mM,-61.91999481,Bielefeld,temporal,68.0 +OP220217,Verji,2024-05-30,S3_D2,3,22217S3c3,D2,high K,22.0,yes,36.31111111,9.166298022,75.25294752,-71.1730957,39,200.0,79.52270508,-32.44628906,311.5234375,-71.77734375,15.5,263.4356846,30,,0.886507296,,,,,,15 mM,-61.86466202,Mitte,temporal,17.0 +OP220623,Verji,2024-01-08,S3,6,22623S3c6,D1,Ctrl,0.0,no,11.15611111,7.217536181,30.66001016,-76.63574219,30,100.0,90.75927734,-42.50488281,336.7919922,-99.24316406,21.65,376.9538789,11,,0.775832236,,,,,,8 mM,-59.41052475,Mitte,frontal,32.0 +OP240118,Verji,2024-07-31,S2_D2,3,24118S2_D2c3,D2,high K,21.0,no,28.92055556,9.219492243,71.08186755,-65.66772461,24,300.0,78.10668945,-38.58032227,351.6845703,-59.08203125,19.4,500.156727,14,,1.126618215,447.6449215,,,,,8 mM,-60.47513367,Mitte,temporal,58.0 +OP221024,Verji,2024-06-16,S1_D2,5,22o24S1_D2c5,D2,high K,24.0,no,45.12972222,10.66227707,80.37507058,-51.42211914,14,-300.0,69.83642578,-32.35473633,248.4130859,-54.19921875,10.8,159.0536629,25,,1.184782058,,,,,,8 mM,-57.97613998,Bielefeld,temporal,42.0 +OP210323,Rosie,2024-05-10,S3_D2,5,2021_03_24_0S3c6,D2,Ctrl,21.0,yes,44.413056,6.657330264,61.5303277,-69.91577148,22,400.0,83.2824707,-34.32006836,345.9472656,-68.96972656,15.65,381.5619048,36,,1.085706043,,,,,,15 mM,-69.85492676,Virchow,temporal,10.0 +OP221024,Verji,2024-06-16,S3,3,22o24S3c3,D1,Ctrl,0.0,no,23.96416667,8.992057281,99.51333036,-69.09790039,36,100.0,91.40625,-39.25170898,525.390625,-83.37402344,15.35,171.3760818,16,,0.849344649,,,,,,8 mM,-61.23429367,Bielefeld,temporal,42.0 +OP221024,Verji,2024-06-10,S1,2,22o24S1c2,D1,high K,0.0,yes,21.08555556,9.362432704,46.972693,-69.75097656,34,250.0,85.51025391,-37.70751953,418.4570313,-61.5234375,11.25,251.2883436,1,,1.089130051,,,,,,8 mM,-62.87847504,Bielefeld,temporal,42.0 +OP211123,Rosie,2024-04-09,S3_D2,2,2021_11_25_0S3_D2c3,D2,Ctrl,24.0,no,49.09388889,21.10380646,190.465595,-64.03198242,2,100.0,46.42944336,-26.45263672,43.21289063,-15.13671875,33.5,173.389354,,,2.719383013,,,,,,15 mM,-61.12625565,Bielefeld,temporal,68.0 +OP221027,Verji,2024-02-04,S3,1,22o27S3c1,D1,Ctrl,0.0,no,11.07,8.066904806,42.5484786,-73.42529297,37,50.0,87.72583008,-35.71166992,392.9443359,-91.06445313,24.6,377.7379569,15,,0.821365849,,,,,,8 mM,-52.82335205,Mitte,temporal,61.0 +OP240221,Verji,2024-06-20,S1,7,24221S1c7,D1,high K,0.0,yes,11.03888889,12.3396884,68.35158183,-55.93261719,34,200.0,83.48388672,-38.43383789,314.9414063,-72.38769531,13.25,346.7859425,5,,1.03983575,157.7452582,,,,,8 mM,-60.75606796,Bielefeld,temporal,37.0 +OP210323,Rosie,2024-04-20,S1,5,2021_03_24_0S1c5,D1,TTX,0.0,no,17.50694444,7.609105156,43.09483836,-70.31860352,18,400.0,91.87011719,-41.26586914,375.4882813,-61.64550781,16.5,474.2736842,3,,1.285444107,,,,,,15 mM,-70.30480972,Virchow,temporal,10.0 +OP220127,Rosie,2024-07-11,S4,4,22128S4c4,D1,Ctrl,0.0,yes,25.40166667,9.122283152,23.16715806,-67.68798828,19,500.0,53.13110352,-44.68383789,241.5771484,-64.69726563,0.15,14.93981763,21,,,,,,,21.0,15 mM,-57.97163834,Mitte,temporal,45.0 +OP220914,Verji,2024-07-05,S2_D2,3,22915S2c4,D2,TTX,24.0,yes,48.47833333,19.75204264,73.06861364,-57.26318359,5,200.0,23.27880859,-10.91308594,16.96777344,-10.86425781,14.0,220.3419789,18,,2.077205595,,,,,,8 mM,-62.98962296,Bielefeld,temporal,21.0 +OP220127,Rosie,2024-01-18,S1,5,22127S1c5,D1,Ctrl,0.0,no,7.288611111,7.876329631,53.81299506,-75.92163086,17,150.0,84.41772461,-38.00048828,315.4296875,-85.9375,19.0,344.3539823,inh??,,0.877814471,,,,,,15 mM,-61.62779877,Mitte,temporal,45.0 +OP230314,Verji,2024-07-14,S2,2,23314S2c2,D1,high K,0.0,no,7.5825,8.135544825,57.89567555,-64.63623047,41,300.0,88.29956055,-34.85107422,504.3945313,-90.8203125,10.15,257.4266254,7,,0.803290871,,,412.183739,,,8 mM,-63.90576553,Virchow,temporal,12.0 +OP230109,Verji,2024-03-02,S3_D2,2,2311S3_D2c2,D2,Ctrl,24.0,no,48.18694444,11.26591557,37.29130323,-67.14477539,28,350.0,86.33422852,-39.41040039,422.6074219,-110.2294922,9.65,382.3593712,40,,0.667487938,,,,,,8 mM,-63.56005234,Bielefeld,temporal,42.0 +OP210615,Rosie,2024-03-08,S5,3,2021_06_16_0S5c1,D2,Ctrl,0.0,no,28.98972222,12.55375928,129.6069988,-67.70019531,17,500.0,77.80761719,-42.38891602,360.3515625,-35.76660156,12.15,304.3816514,,,1.543316884,,,,,,15 mM,-67.70525421,Virchow,temporal,19.0 +OP220518,Verji,2024-07-08,S4,1,22519S4c1,D1,TTX,0.0,no,28.25555556,13.39525598,84.83960652,-61.95678711,20,200.0,82.39135742,-39.60571289,349.1210938,-104.1259766,12.0,159.0036393,13,,0.698413213,,,,,,15 mM,-62.05020187,Bielefeld,frontal,37.0 +OP220127,Rosie,2024-07-16,S4_D2,3,22128S4c4,D2,Ctrl,24.0,yes,50.36333333,11.71369939,32.67054046,-69.85473633,12,250.0,78.03344727,-37.07885742,363.7695313,-92.16308594,18.35,496.9361983,manually_corrected,,0.785428949,,,,,6.0,15 mM,-59.20965195,Mitte,temporal,45.0 +OP220127,Rosie,2024-07-18,S4,8,22128S4c8,D1,Ctrl,0.0,no,25.40166667,8.629636962,60.7298476,-69.59228516,10,500.0,77.1484375,-38.29345703,257.4462891,-68.72558594,5.05,206.0752179,24,,1.034459208,,,,,24.0,15 mM,-59.37089462,Mitte,temporal,45.0 +OP211123,Rosie,2024-04-01,S2,5,2021_11_24_0S2c5,D1,TTX,0.0,no,23.76555556,10.9142128,59.94672248,-50.34179688,47,300.0,94.34204102,-31.42089844,398.6816406,-76.04980469,9.4,192.6323952,,,0.992225141,,,,,,15 mM,-60.13902908,Bielefeld,temporal,68.0 +OP230808,Verji,2024-04-01,S3,4,23808S3c4,D1,Ctrl,0.0,no,10.92722222,18.59292205,78.30694372,-74.73754883,17,-300.0,82.54394531,-46.00219727,313.7207031,-72.75390625,38.2,603.5378978,17,410.1136705,1.03353115,,,,,,8 mM,-60.57568039,Hamburg,temporal,14.0 +OP220322,Verji,2024-06-26,S1_D2,1,22322S1_D2c1,D2,Ctrl,22.0,no,32.92194444,13.94190988,41.33163086,-67.0715332,30,250.0,82.9284668,-38.3605957,291.2597656,-71.41113281,12.55,308.5059265,13,,0.969443049,,,,,,15 mM,-59.11999313,Bielefeld,temporal,52.0 +OP230109,Verji,2024-02-26,S2_D2,5,2311S2c7,D2,high K,24.0,yes,46.2775,8.594446103,34.11516418,-46.72241211,26,450.0,75.85449219,-35.69946289,331.7871094,-83.12988281,1.75,105.4117647,32,,0.782910244,,,,,,8 mM,-60.73864365,Bielefeld,temporal,42.0 +OP240321,Verji,2024-04-13,S4,6,24321S4c6,D1,high K,0.0,no,14.44,12.90046696,49.35565174,-76.30615234,35,150.0,90.08178711,-40.99121094,406.9824219,-93.75,21.6,426.6358047,23,,0.830009591,515.5971866,,,,,8 mM,-64.50559067,Bielefeld,temporal,31.0 +OP230810,Verji,2024-05-12,S1,5,23810S1c5,D1,high K,0.0,yes,5.660833333,25.46841192,79.0432156,-65.1550293,55,100.0,85.49194336,-43.07250977,389.7705078,-80.078125,11.45,241.5927882,3,224.5875,0.966592916,,,,,,8 mM,-60.8608934,Mitte,temporal,63.0 +OP240417,Verji,2024-02-21,S1_D2,1,24417S1_D2c1,D2,Ctrl,16.0,no,27.47166667,8.466645628,64.9064782,-71.72241211,22,50.0,81.9519043,-34.70458984,337.4023438,-96.80175781,22.15,324.4573983,22,,0.775243791,351.9117304,,,,,8 mM,-52.23121353,Hamburg,temporal,29.0 +OP220228,Verji,2024-05-20,S3,2,22228S3c2,D1,Ctrl,0.0,no,16.45583333,15.41093987,79.95721124,-71.76513672,39,100.0,90.21606445,-42.63305664,283.3251953,-97.65625,14.65,171.6307472,11,,0.864059174,,,,,,15 mM,-58.95274002,Bielefeld,temporal,33.0 +OP211123,Rosie,2024-01-11,S2,6,21n23S2c6,D1,high K,0.0,no,13.02277778,7.427587005,31.14729037,-62.51220703,11,350.0,74.15161133,-36.8347168,136.3525391,-47.36328125,13.35,534.7833741,,,1.416694541,,,,,,15 mM,-56.99469803,Bielefeld,temporal,68.0 +OP221027,Verji,2024-01-29,S1,1,22o27S1c1,D1,high K,0.0,no,8.293888889,9.756233648,81.64484463,-73.60839844,30,100.0,89.09912109,-35.98632813,427.6123047,-64.33105469,22.6,285.2684129,0,,1.122933865,,,,,,8 mM,-59.49905487,Mitte,temporal,61.0 +OP220127,Rosie,2024-02-10,S1_D2,4,22127S1_D2c4,D2,Ctrl,23.0,no,30.59527778,6.997351569,26.71901684,-70.84960938,18,500.0,71.23413086,-28.67431641,225.5859375,-65.67382813,15.05,530.2778495,24,,0.934864447,,,,,,15 mM,-61.80704712,Mitte,temporal,45.0 +OP220127,Rosie,2024-02-06,S3_D2,6,22127S3c6,D2,TTX,23.0,yes,34.94666667,13.11982914,58.35267399,-80.01098633,22,100.0,78.05786133,-34.60693359,214.9658203,-77.02636719,19.6,252.5571372,35,,0.939139147,,,,,,15 mM,-60.8224144,Mitte,temporal,45.0 +OP240503,Verji,2024-04-28,S2_D2,5,24503S2c5,D2,Ctrl,17.0,yes,27.96944444,9.693240931,28.50530594,-54.45556641,20,600.0,72.93701172,-30.05981445,248.9013672,-50.17089844,0.15,391.6072,29,,1.201653929,451.1250375,,,,,8 mM,-59.79904938,Mitte,temporal,36.0 +OP220602,,2024-06-21,S3_D2,3,22602S3c6,D2,TTX,22.0,yes,37.41166667,10.51741336,36.93244638,-61.58447266,16,350.0,37.75024414,-15.76538086,57.86132813,-47.97363281,3.7,90.8176779,30,,1.018850712,,,,,,8 mM,-62.29711243,,, +OP221024,Verji,2024-06-10,S1,3,22o24S1c3,D1,high K,0.0,yes,21.08555556,9.786674655,55.84245944,-73.77929688,33,100.0,86.73095703,-41.87011719,341.796875,-86.9140625,13.8,222.4291195,2,,0.859553431,,,,,,8 mM,-60.02488037,Bielefeld,temporal,42.0 +OP221024,Verji,2024-06-14,S2_D2,3,22o24S2c4,D2,TTX,24.0,yes,47.21277778,19.80432492,52.02472251,-66.24145508,15,250.0,70.36743164,-34.17358398,197.1435547,-69.09179688,14.7,384.4290503,29,,0.969108338,,,,,,8 mM,-62.68482742,Bielefeld,temporal,42.0 +OP210323,Rosie,2024-05-31,S6,2,2021_03_24_0S6c5,D1,TTX,0.0,no,28.0475,7.069582217,126.3669356,-61.59667969,36,250.0,77.17285156,-30.7800293,334.4726563,-79.58984375,8.9,86.0534671,26,,0.83597138,,,,,,15 mM,-70.0887645,Virchow,temporal,10.0 +OP211209,Verji,2024-03-20,S5,4,21d10S5c4,D1,high K,0.0,yes,18.54833333,19.51643038,47.01012001,-71.66137695,28,200.0,79.90112305,-40.39306641,246.2158203,-60.18066406,23.95,784.7936,,,1.173126203,,,,,,15 mM,-63.47950897,Bielefeld,temporal,27.0 +OP230209,Verji,2024-04-27,S2_D2,8,23209S2_D2c8,D2,high K,25.0,no,21.84833333,10.03387554,91.53775788,-62.40234375,35,150.0,70.66040039,-27.38647461,271.484375,-79.71191406,13.55,144.4392973,34,247.758259,0.840377946,,,,,,8 mM,-62.39974518,Bielefeld,temporal,63.0 +OP220602,,2024-06-11,S3,6,22602S3c6,D1,TTX,0.0,yes,15.22916667,6.499059954,26.96339816,-72.38769531,30,200.0,66.56494141,-31.42089844,152.7099609,-65.91796875,14.85,288.7862315,17,,0.972905637,,,,,,8 mM,-59.6360379,,, +OP220914,Verji,2024-07-05,S3_D2,1,22915S3c6,D2,Ctrl,24.0,yes,50.33444444,11.59657556,44.35956273,-66.64428711,11,450.0,47.19238281,-9.704589844,59.5703125,-21.60644531,9.85,271.6875,24,,2.186626811,,,,,,8 mM,-60.6560463,Bielefeld,temporal,21.0 +OP230808,Verji,2024-04-03,S5,2,23808S5c2,D1,Ctrl,0.0,no,24.79277778,17.19904485,75.89440972,-73.16894531,21,200.0,84.89379883,-37.45117188,401.9775391,-74.58496094,15.75,348.242915,27,337.3612454,0.9421223,,,,,,8 mM,-62.08622925,Hamburg,temporal,14.0 +OP221020,Verji,2024-01-28,S5_D2,7,22o21S5_D2c7,D2,Ctrl,20.0,no,31.66277778,14.60486232,55.41783323,-50.33569336,12,300.0,68.33496094,-32.07397461,191.0400391,-36.1328125,17.4,484.8326531,10,,1.802421399,,,,,,8 mM,-61.39603683,Mitte,temporal,25.0 +OP230426,Verji,2024-01-16,S3,4,23426S3c4,D1,high K,0.0,no,24.36611111,8.550426449,41.49446295,-72.94311523,43,200.0,79.94995117,-37.31689453,355.9570313,-91.18652344,13.0,309.8065455,9,534.977833,0.729802573,,,,,,8 mM,-60.25913116,Hamburg,temporal,58.0 +OP220518,Verji,2024-07-07,S1,8,22519S1c8,D1,Ctrl,0.0,no,21.6325,9.748035718,37.98830503,-58.72192383,29,200.0,88.22021484,-37.97607422,302.3681641,-66.16210938,10.8,297.8909091,4,,1.075476164,,,,,,15 mM,-57.92003006,Bielefeld,frontal,37.0 +OP211123,Rosie,2024-01-07,S1,7,21n23S1c7,D1,Ctrl,0.0,no,10.71861111,9.474495001,56.02803552,-56.24389648,3,200.0,19.07958984,-13.07983398,24.16992188,-19.89746094,9.5,198.1514959,,,0.966513407,,,,,,15 mM,-56.22396103,Bielefeld,temporal,68.0 +OP220914,Verji,2024-07-03,S1,3,22915S1c3,D1,high K,0.0,no,22.15861111,9.195096399,106.882222,-75.73852539,18,100.0,71.80175781,-32.40356445,111.6943359,-26.61132813,26.85,308.7090526,1,,2.419354957,,,,,,8 mM,-60.9158136,Bielefeld,temporal,21.0 +OP231130,Verji,2024-01-25,S2_D2,6,23n30S2_D2c6,D2,Ctrl,21.0,no,34.33166667,7.483370401,60.24605052,-68.10302734,43,200.0,88.671875,-36.85302734,510.6201172,-114.5019531,10.2,209.2884158,14,,2.401554283,498.6466216,,,,,8 mM,-60.56877396,Bielefeld,temporal,39.0 +OP211209,Verji,2024-03-12,S1,5,21d10S1c5,D1,high K,0.0,no,11.50583333,8.43572654,55.83052432,-75.5065918,20,200.0,85.11352539,-39.61791992,340.2099609,-95.94726563,15.2,250.1625314,,,0.856530059,,,,,,15 mM,-63.21465912,Bielefeld,temporal,27.0 +OP231109,Verji,2024-01-14,S2,8,23n09S2c8,D1,high K,0.0,yes,5.535,11.87209051,78.30865164,-70.40405273,25,800.0,51.33666992,-25.72631836,136.5966797,-43.57910156,12.85,398.362157,12,,1.068929243,0.0,,,,,8 mM,-61.78157059,Mitte,temporal,44.0 +OP220217,Verji,2024-06-02,S3,8,22217S3c8,D1,high K,0.0,no,11.88,12.41443569,129.1635122,-75.31738281,32,50.0,87.05444336,-41.16821289,333.3740234,-101.6845703,15.7,121.1343537,17,,0.787790582,,,,,,15 mM,-57.22033875,Mitte,temporal,17.0 +OP230314,Verji,2024-07-19,S3,2,23314S3c2,D1,TTX,0.0,no,8.987777778,9.368170983,50.24005521,-63.59863281,31,150.0,90.42358398,-32.88574219,492.3095703,-74.70703125,13.1,225.6891693,14,,0.964257748,,,258.713624,,,8 mM,-58.70283783,Virchow,temporal,12.0 +OP220127,Rosie,2024-01-27,S3,1,22127S3c1,D1,TTX,0.0,no,11.24444444,14.02249839,105.4252861,-83.58154297,16,50.0,84.46655273,-37.29248047,235.8398438,-71.53320313,18.8,148.3714836,10,,1.064420766,,,,,,15 mM,-56.00355545,Mitte,temporal,45.0 +OP240411,Verji,2024-02-09,S1_D2,5,24411S1_D2c5,D2,Ctrl,18.0,no,31.11666667,18.68227738,66.88604847,-72.4609375,31,150.0,83.25805664,-41.63208008,417.1142578,-83.49609375,17.1,442.95083,26,,0.881120538,511.6670556,,,,,8 mM,-63.40537842,Bielefeld,temporal,46.0 +OP240411,Verji,2024-02-07,S3,2,24411S3c2,D1,Ctrl,0.0,yes,15.32305556,9.275814484,140.6164837,-72.3449707,46,150.0,80.9387207,-34.05761719,330.2001953,-83.984375,19.2,173.1752271,16,,0.811604765,230.7076903,,,,,8 mM,-62.10460373,Bielefeld,temporal,46.0 +OP220228,Verji,2024-05-19,S1,7,22228S1c7,D1,high K,0.0,yes,13.01777778,9.302653435,35.27534379,-57.60498047,26,300.0,80.05371094,-33.56323242,244.9951172,-74.34082031,8.6,215.2825057,4,,0.969376414,,,,,,15 mM,-55.97195953,Bielefeld,temporal,33.0 +OP220228,Verji,2024-05-18,S1,3,22228S1c3,D1,high K,0.0,no,13.01777778,10.94570997,40.15273033,-71.25244141,25,200.0,84.11254883,-36.12670898,280.0292969,-72.38769531,18.15,429.4145848,2,,1.04502126,,,,,,15 mM,-61.53337463,Bielefeld,temporal,33.0 +OP230109,Verji,2024-02-29,S1_D2,5,2311S1_D2c5,D2,TTX,24.0,no,44.32472222,6.754819034,24.91202102,-49.61547852,18,300.0,56.86645508,-24.609375,198.2421875,-73.60839844,17.15,355.0039166,26,,0.744011464,,,,,,8 mM,-55.40875076,Bielefeld,temporal,42.0 +OP220111,Rosie,2024-06-13,S1,7,22111S1c7,D1,TTX,0.0,yes,11.38083333,10.99482239,35.99698297,-59.55810547,1,800.0,73.92578125,-44.86083984,254.2724609,-46.75292969,12.6,598.3721739,2,,1.454789218,,,,,,15 mM,-59.54016541,Bielefeld,temporal,51.0 +OP230810,Verji,2024-05-15,S3,1,23810S3c1,D1,Ctrl,0.0,no,9.101111111,10.14030961,120.2157991,-66.64428711,40,50.0,74.56665039,-36.37084961,270.7519531,-78.97949219,19.5,151.058156,14,172.1157,0.838170863,,,,,,8 mM,-56.2941983,Mitte,temporal,63.0 +OP220120,Rosie,2024-02-25,S2,3,22121S2c3,D1,TTX,0.0,no,14.21611111,10.36475513,40.77368986,-69.53735352,21,250.0,88.27514648,-34.0637207,348.7548828,-73.73046875,11.45,239.8936061,7,,1.044476124,,,,,,15 mM,-64.1073671,Bielefeld,temporal,50.0 +OP220127,Rosie,2024-07-29,S4_D2,7,22129S4_D2c7,D2,Ctrl,24.0,no,50.68444,14.06382,35.75114,-68.0298,20,600.0,85.9436,-37.5488,422.8516,-71.6553,9.45,452.7158,42,,1.011375398,,,,,41.0,15 mM,-68.00325806,Mitte,temporal,45.0 +OP230314,Verji,2024-07-22,S3,6,23314S3c6,D1,TTX,0.0,no,8.987777778,7.931174156,58.83059441,-74.36523438,34,100.0,82.58056641,-40.00244141,362.5488281,-94.60449219,16.55,242.9706093,18,,0.761217709,,,369.59732,,,8 mM,-59.10048904,Virchow,temporal,12.0 +OP230109,Verji,2024-02-24,S2,5,2311S2c5,D1,high K,0.0,no,20.8525,13.79298611,98.5777257,-53.90625,1,50.0,81.14624023,-48.76708984,356.9335938,-122.9248047,6.05,67.13389773,10,,0.601502835,,,,,,8 mM,-61.78229919,Bielefeld,temporal,42.0 +OP230314,Verji,2024-07-24,S3_D2,7,23314S3c7,D2,TTX,23.0,yes,32.93638889,9.940070715,56.89393257,-62.64648438,21,250.0,75.10986328,-27.99682617,357.6660156,-75.68359375,12.6,249.9254237,36; exclude; Rs_end > 30,,0.826261637,,,347.178239,,,8 mM,-59.80044037,Virchow,temporal,12.0 +OP230808,Verji,2024-03-28,S1,6,23808S1c6,D1,TTX,0.0,no,8.163333333,10.39475376,106.0826492,-83.30078125,1664,-300.0,71.08154297,-15.05737305,237.4267578,-69.70214844,13.05,98.94086071,5,,1.025354282,,,,,,8 mM,-32.68441467,Hamburg,temporal,14.0 +OP221024,Verji,2024-06-10,S1_D2,3,22o24S1c2,D2,high K,24.0,yes,45.12972222,10.12949209,28.35704489,-64.1784668,2,900.0,64.9230957,-35.93139648,158.5693359,-33.93554688,5.05,273.9708609,23,,1.773285869,,,,,,8 mM,-64.17258881,Bielefeld,temporal,42.0 +OP220217,Verji,2024-05-26,S1,6,22217S1c6,D1,Ctrl,0.0,no,7.946944444,11.55743483,64.77569698,-77.72827148,48,100.0,96.42944336,-42.55981445,307.7392578,-103.2714844,12.2,141.8125576,3,,0.869594237,,,,,,15 mM,-60.95539566,Mitte,temporal,17.0 +OP221020,Verji,2024-01-28,S5_D2,2,22o21S5_D2c2,D2,Ctrl,20.0,no,31.66277778,7.435570276,32.20945132,-61.14501953,15,400.0,69.48852539,-32.03125,206.4208984,-43.33496094,13.0,377.6453901,7,,1.432495862,,,,,,8 mM,-65.25906036,Mitte,temporal,25.0 +OP240417,Verji,2024-02-20,S3,8,24417S3c8,D1,Ctrl,0.0,no,15.24944444,15.75260523,86.19896937,-48.51074219,39,200.0,79.90112305,-34.91210938,358.5205078,-94.7265625,17.0,296.779968,21; exclude; Rs_end > 30,,0.722794161,82.71275709,,,,,8 mM,-60.85140671,Hamburg,temporal,29.0 +OP220217,Verji,2024-05-26,S2,2,22217S2c2,D1,TTX,0.0,yes,10.37611111,15.7685395,142.7530632,-76.45263672,27,50.0,85.87036133,-48.2421875,202.2705078,-95.45898438,17.85,148.4540102,6,,0.915999554,,,,,,15 mM,-62.02317886,Mitte,temporal,17.0 +OP220811,Verji,2024-06-09,S3_D2,8,22811S3_D2c8,D2,TTX,17.0,no,25.69194444,15.48765425,64.87003085,-63.42163086,33,250.0,78.43017578,-31.72607422,312.0117188,-75.31738281,17.45,363.5102352,10,,0.877296965,,,,,,8 mM,-61.40568298,Mitte,temporal,18.0 +OP231123,Verji,2024-03-26,S2_D2,2,23n23S2_D2c2,D2,high K,19.0,no,31.71361111,5.938039705,63.2568905,-75.4699707,37,200.0,79.68139648,-37.3046875,297.9736328,-75.68359375,16.65,271.7067729,18; exclude; Rs_end > 30,,0.950352873,523.5174506,,,,,8 mM,-60.3600975,Bielefeld,temporal,40.0 +OP230810,Verji,2024-05-16,S3,5,23810S3c5,D1,Ctrl,0.0,no,9.101111111,9.074148603,63.67820363,-74.8046875,39,100.0,89.19677734,-38.88549805,408.9355469,-81.90917969,21.55,299.3431115,16,459.4953,0.892747443,,,,,,8 mM,-59.79551285,Mitte,temporal,63.0 +OP210615,Rosie,2024-03-02,S1,2,2021_06_15_0S1c2,D1,TTX,0.0,no,6.974444444,29.37756123,80.26151773,-75.59814453,32,350.0,76.81274414,-34.91210938,274.6582031,-55.90820313,7.0,138.7634604,,,1.166099239,,,,,,15 mM,-75.62946228,Virchow,temporal,19.0 +OP240503,Verji,2024-05-01,S3_D2,3,24503S3_D2c3,D2,high K,17.0,no,29.17055556,11.60014198,84.07619565,-53.80249023,27,150.0,73.29101563,-34.48486328,243.0419922,-104.8583984,19.05,264.9534805,33,,0.699597174,112.8937631,,,,,8 mM,-61.58322662,Mitte,temporal,36.0 +OP230314,Verji,2024-07-26,S4_D2,6,23314S4_D2c6,D2,Ctrl,23.0,no,34.25055556,12.49208469,207.3890798,-77.88696289,48,100.0,80.1574707,-34.71679688,450.3173828,-117.3095703,14.4,100.3528711,49,,0.599684489,,,299.619987,,,8 mM,-61.6056337,Virchow,temporal,12.0 +OP220120,Rosie,2024-02-24,S2,1,22121S2c1,D1,TTX,0.0,no,14.21611111,9.462642324,50.5737015,-77.77709961,26,100.0,94.11010742,-40.27099609,399.9023438,-71.04492188,19.75,328.0121642,6,,1.033673933,,,,,,15 mM,-60.07064713,Bielefeld,temporal,50.0 +OP240417,Verji,2024-02-13,S1,4,24417S1c4,D1,Ctrl,0.0,no,9.533055556,10.91244348,109.9015451,-70.59936523,30,100.0,82.64770508,-36.37695313,349.3652344,-77.27050781,20.65,274.6181818,3,,0.92916031,228.2176073,,,,,8 mM,-61.16168457,Hamburg,temporal,29.0 +OP220518,Verji,2024-07-09,s6,6,22519s6c6,D1,Ctrl,0.0,no,32.00833333,14.15225349,72.10653878,-47.02148438,22,150.0,81.7199707,-36.17553711,318.2373047,-91.43066406,6.65,121.6,25,,0.791771797,,,,,,15 mM,-59.43434067,Bielefeld,frontal,37.0 +OP210323,Rosie,2024-05-19,S4,6,2021_03_24_0S4c6,D1,TTX,0.0,no,23.04833333,7.138458786,61.59915037,-73.03466797,6,400.0,86.88354492,-38.25073242,404.6630859,-84.10644531,14.6,296.0475248,16,,0.927250601,,,,,,15 mM,-72.99710083,Virchow,temporal,10.0 +OP230808,Verji,2024-04-06,S1_D2,2,23808S1_D2c2,D2,TTX,25.0,no,33.29638889,8.084762148,80.84846091,-77.23999023,11,150.0,70.95336914,-30.95703125,259.0332031,-52.97851563,33.6,452.1580287,56,487.8462615,1.248623118,,,,,,8 mM,-59.99172531,Hamburg,temporal,14.0 +OP221027,Verji,2024-02-05,S3_D2,2,22o27S3c2,D2,Ctrl,24.0,yes,36.47166667,8.413644313,58.52921935,-73.6328125,48,100.0,88.54370117,-40.90576172,398.8037109,-79.46777344,12.35,196.8311284,37,,0.931550364,,,,,,8 mM,-58.8679126,Mitte,temporal,61.0 +OP240321,Verji,2024-04-13,S3,3,24321S3c3,D1,Ctrl,0.0,no,13.06416667,6.946856511,53.02088922,-74.51171875,26,150.0,85.33935547,-36.29150391,372.8027344,-77.1484375,19.45,385.5641863,15,,0.927598011,552.1084036,,,,,8 mM,-59.7037056,Bielefeld,temporal,31.0 +OP240411,Verji,2024-02-09,S2_D2,5,24411S2c5,D2,high K,18.0,yes,33.32833333,14.51770727,102.5430427,-70.30639648,45,200.0,74.21875,-33.99658203,299.4384766,-87.64648438,13.6,252.3469989,36,,0.760328104,398.3532784,,,,,8 mM,-61.93764832,Bielefeld,temporal,46.0 +OP240417,Verji,2024-02-12,S1_D2,2,24417S1c2,D2,Ctrl,16.0,yes,27.47166667,19.61963713,123.3555607,-81.42700195,28,50.0,91.43066406,-47.49755859,459.5947266,-94.48242188,26.5,315.5348837,23,,0.791991558,314.2904763,,,,,8 mM,-64.37795044,Hamburg,temporal,29.0 +OP210323,Rosie,2024-06-02,S4_D2,1,2021_03_25_0S6_D2c1,D2,TTX,24.0,no,48.612778,17.70347943,262.6274035,-54.93164063,6,200.0,46.72851563,-28.07617188,102.0507813,-82.51953125,4.9,35.56217054,42,,0.683458127,,,,,,15 mM,-67.18881363,Virchow,temporal,10.0 +OP211123,Rosie,2024-04-04,S3,2,2021_11_24_0S3c2,D1,Ctrl,0.0,no,25.49694444,21.30945627,74.9212993,-67.48657227,39,150.0,83.50219727,-35.29052734,405.0292969,-113.8916016,13.5,239.8958785,,,0.724449682,,,,,,15 mM,-60.35238892,Bielefeld,temporal,68.0 +OP211209,Verji,2024-03-13,S2,6,21d10S2c6,D1,Ctrl,0.0,no,13.29888889,20.05491793,92.2475973,-70.3125,38,-300.0,73.97460938,-48.24829102,198.9746094,-75.68359375,26.0,256.6168675,,,0.903698941,,,,,,15 mM,-55.47584076,Bielefeld,temporal,27.0 +OP211209,Verji,2024-03-20,S5_D2,5,21d10S5c4,D2,high K,18.0,yes,38.62972222,5.770413156,29.26141299,-70.39794922,16,450.0,70.56884766,-27.0690918,248.2910156,-46.99707031,17.2,510.515942,,,1.32185427,,,,,,15 mM,-61.44616989,Bielefeld,temporal,27.0 +OP240411,Verji,2024-02-06,S2_D2,1,24411S2c1,D2,high K,18.0,yes,32.95638889,8.334740611,67.00655397,-70.44067383,37,250.0,81.37817383,-32.46459961,373.7792969,-89.23339844,17.2,287.9967297,30,,0.807577882,452.1150705,,,,,8 mM,-62.00080978,Bielefeld,temporal,46.0 +OP240417,Verji,2024-02-15,S1,6,24417S1c6,D1,Ctrl,0.0,yes,9.533055556,10.53358843,67.57135556,-66.27807617,30,200.0,82.52563477,-33.82568359,365.234375,-78.36914063,20.0,391.026253,5,,0.930314405,330.7010234,,,,,8 mM,-60.87614349,Hamburg,temporal,29.0 +OP210323,Rosie,2024-05-16,S4,4,2021_03_24_0S4c4,D1,TTX,0.0,no,23.04833333,9.590149102,90.24426951,-72.60742188,21,200.0,88.94042969,-38.57421875,441.0400391,-89.59960938,15.9,325.0225827,manually_corrected,,0.958427538,,,,,,15 mM,-72.60604004,Virchow,temporal,10.0 +OP230209,Verji,2024-04-24,S3,2,23209S3c2,D1,Ctrl,0.0,yes,-1.504722222,10.78123218,105.1477918,-60.68725586,29,150.0,82.3425293,-36.58447266,302.3681641,-91.43066406,12.8,130.8675195,12,138.081904,0.8433602,,,,,,8 mM,-60.89197357,Bielefeld,temporal,63.0 +OP220308,Verji,2024-06-22,S3,7,22308S3c7,D1,TTX,0.0,no,15.60305556,7.827827594,40.35691738,-73.83422852,45,200.0,89.69116211,-41.53442383,337.7685547,-77.75878906,11.6,315.9674148,12,,0.971664638,,,,,,15 mM,-62.16483994,Bielefeld,temporal,52.0 +OP201029,Rosie,2024-03-18,S1,8,20o29S1c8,D1,Ctrl,0.0,no,7.865555556,6.997220381,43.75053727,-60.77880859,27,400.0,73.83422852,-35.31494141,191.0400391,-60.42480469,13.75,420.2985075,,,1.094900271,,,,,,15 mM,-60.77311935,Mitte,temporal,47.0 +OP240117,Verji,2024-07-31,S2_D2,2,24117S2_D2c2,D1,Ctrl,20.0,no,26.4242,10.50217642,90.84176523,-66.79077148,32,150.0,81.54296875,-39.72167969,293.7011719,-87.52441406,18.95,306.1901381,1,,0.86169639,268.0289343,,,,,8 mM,-60.93274017,Hamburg,temporal,55.0 +OP211123,Rosie,2024-04-03,S2,7,2021_11_24_0S2c7,D1,TTX,0.0,no,23.76555556,15.32528958,65.20746198,-72.19848633,32,150.0,89.1418457,-35.77880859,350.5859375,-88.98925781,19.45,359.2658399,,,0.850153038,,,,,,15 mM,-61.58568665,Bielefeld,temporal,68.0 +OP240321,Verji,2024-04-18,S1_D2,6,24321S1_D2c6,D2,high K,17.0,no,28.00555556,16.25695769,40.28967677,-46.6796875,19,500.0,78.21655273,-36.71875,274.2919922,-69.09179688,14.85,594.1450549,31; exclude; Rs_end > 30,,0.999887966,189.8463282,,,,,8 mM,-66.75645996,Bielefeld,temporal,31.0 +OP230314,Verji,2024-07-16,S2_D2,2,23314S2c3,D2,high K,23.0,yes,30.87,22.15537285,57.50227812,-67.82836914,21,200.0,81.77490234,-37.48779297,361.4501953,-69.82421875,14.7,366.0255319,30; exclude; Rs_end > 30,,0.965786577,,,456.731891,,,8 mM,-60.48879898,Virchow,temporal,12.0 +OP240503,Verji,2024-04-30,S3_D2,6,24503S3c6,D2,high K,17.0,yes,29.17055556,9.111475052,78.07519622,-76.86767578,41,150.0,73.01025391,-28.83300781,297.4853516,-70.55664063,28.6,343.7875275,35,,0.874271801,372.7324244,,,,,8 mM,-60.93699051,Mitte,temporal,36.0 +OP230817,Verji,2024-05-10,S2_D2,5,23817S2_D2c5,D2,high K,23.0,no,29.09,8.902212776,71.96662028,-72.25952148,24,150.0,72.75390625,-27.86865234,241.6992188,-64.81933594,18.25,271.9490678,27,378.7026,0.970257963,,,,,,8 mM,-62.8398439,Mitte,temporal,47.0 +OP220602,,2024-07-04,S1_D2,7,22602S1_D2c7,D2,high K,22.0,no,34.6875,6.130847732,27.71764994,-68.92089844,19,400.0,67.48657227,-24.87792969,217.6513672,-46.99707031,13.5,472.1109925,24,,1.205499782,,,,,,8 mM,-62.83143753,,, +OP220127,Rosie,2024-07-29,S4_D2,8,22129S4_D2c8,D2,Ctrl,24.0,no,50.68444,9.702294,63.53383,-70.5017,27,300.0,85.02808,-34.5764,428.9551,-80.5664,11.45,247.8161,43,,0.893786474,,,,,42.0,15 mM,-70.48185379,Mitte,temporal,45.0 +OP220914,Verji,2024-07-04,S3,6,22915S3c6,D1,Ctrl,0.0,yes,27.14972222,6.164141235,20.39120868,-55.34057617,12,800.0,62.06665039,-27.49633789,93.38378906,-23.4375,6.1,434.5321739,12,,2.339909803,,,,,,8 mM,-59.43974884,Bielefeld,temporal,21.0 +OP210323,Rosie,2024-05-24,S6,2,2021_03_24_0S5c1,D1,TTX,0.0,no,26.994722,7.784184231,50.38181172,-63.53149414,3,250.0,29.54711914,-12.13989258,25.390625,-27.34375,12.15,251.8223909,22,,1.606264185,,,,,,15 mM,-69.99474945,Virchow,temporal,10.0 +OP240503,Verji,2024-04-30,S3,6,24503S3c6,D1,high K,0.0,yes,11.37694444,19.06985827,84.37931121,-73.84033203,45,150.0,71.78955078,-35.62011719,347.7783203,-58.95996094,28.9,403.8359062,17; exclude; Rs_end > 30,,0.992082,344.6214874,,,,,8 mM,-62.32868988,Mitte,temporal,36.0 +OP240221,Verji,2024-06-20,S1,6,24221S1c6,D1,high K,0.0,no,11.03888889,28.46934763,92.09385143,-73.12011719,49,100.0,82.62329102,-41.18041992,347.0458984,-84.35058594,15.5,287.7643059,4,,0.88288824,385.1528384,,,,,8 mM,-61.13145767,Bielefeld,temporal,37.0 +OP201029,Rosie,2024-03-22,S2_D2,2,20o29S2c2,D2,TTX,20.0,yes,29.90916667,17.49,69.24,-74.11499023,8,400.0,54.95605469,-20.15991211,125.9765625,-39.55078125,8.1,159.2206,,,1.307468332,,,,manually_correction,,15 mM,-74.11967306,Mitte,temporal,47.0 +OP210323,Rosie,2024-04-19,S1_D2,8,2021_03_24_0S1c4,D2,TTX,22.0,yes,41.045278,14.16359973,123.6027845,-65.3503418,7,200.0,51.20849609,-26.06811523,216.9189453,-89.47753906,4.45,65.74283138,29,,0.615566086,,,,,,15 mM,-70.91261093,Virchow,temporal,10.0 +OP220228,Verji,2024-05-20,S3,1,22228S3c1,D1,Ctrl,0.0,yes,16.45583333,12.59685025,48.80658018,-73.23608398,25,100.0,87.64648438,-36.98120117,308.3496094,-73.97460938,24.05,346.1003074,10,,0.987659218,,,,,,15 mM,-54.11123474,Bielefeld,temporal,33.0 +OP240117,Verji,2024-07-27,S2,7,24117S2c7,D1,Ctrl,0.0,no,10.20888889,11.25548493,91.91600215,-65.01464844,41,150.0,85.90698242,-39.01977539,287.109375,-89.11132813,17.7,313.1714903,3,,0.831036766,237.5779193,,,,,8 mM,-60.77620743,Hamburg,temporal,55.0 +OP220217,Verji,2024-05-27,S2_D2,2,22217S2c2,D2,TTX,22.0,yes,33.99166667,18.13155068,116.138566,-75.1159668,27,0.0,72.63793945,-38.71459961,188.3544922,-71.41113281,22.45,358.4998051,23,,0.959547275,,,,,,15 mM,-51.26950165,Mitte,temporal,17.0 +OP230109,Verji,2024-02-25,S2,7,2311S2c7,D1,high K,0.0,yes,20.8525,11.93618222,45.08424713,-67.09594727,49,250.0,82.97729492,-38.37280273,363.8916016,-83.0078125,9.05,248.5753562,12,,0.801776934,,,,,,8 mM,-61.62123215,Bielefeld,temporal,42.0 +OP240417,Verji,2024-02-21,S2_D2,2,24417S2c2,D2,high K,16.0,yes,29.90805556,11.36884095,80.52932785,-73.50463867,23,100.0,84.72900391,-34.42382813,458.1298828,-94.11621094,23.7,324.3949875,29,,1.027538205,388.1829394,,,,,8 mM,-59.17502167,Hamburg,temporal,29.0 +OP240507,Verji,2024-01-10,S2_D2,4,24507S2c5,D2,high K,17.0,yes,29.12694444,18.9552835,50.32373039,-50.8605957,20,500.0,73.05908203,-35.09521484,314.3310547,-79.95605469,0.15,23.97658537,21; exclude; Rs_end > 30,,0.811532107,255.6685223,,,,,8 mM,-53.57775635,Hamburg,temporal,16.0 +OP211209,Verji,2024-03-19,S5,2,21d10S5c2,D1,high K,0.0,no,18.54833333,8.199848817,48.83822766,-72.93701172,23,200.0,78.41186523,-29.42504883,225.4638672,-63.11035156,20.1,358.149429,,,1.095961539,,,,,,15 mM,-60.74420547,Bielefeld,temporal,27.0 +OP220228,Verji,2024-05-23,S3,6,22228S3c6,D1,Ctrl,0.0,yes,16.45583333,20.88184397,49.35850581,-72.76611328,32,100.0,86.78588867,-39.19067383,260.7421875,-69.70214844,19.75,420.7854356,15,,1.031004411,,,,,,15 mM,-61.28387939,Bielefeld,temporal,33.0 +OP220811,Verji,2024-06-07,S2_D2,1,22811S2_D2c1,D2,high K,17.0,no,23.26527778,6.346277248,43.37394322,-57.84301758,25,450.0,76.69677734,-28.79638672,317.6269531,-64.08691406,17.4,378.8459801,0,,0.982923356,,,,,,8 mM,-60.71844376,Mitte,temporal,18.0 +OP221020,Verji,2024-01-28,S5_D2,6,22o21S5_D2c6,D2,Ctrl,20.0,no,31.66277778,7.049154391,39.90329308,-72.70507813,23,300.0,78.82080078,-33.22753906,311.8896484,-65.79589844,18.45,389.7934236,9,,0.976485054,,,,,,8 mM,-60.89603516,Mitte,temporal,25.0 +OP221024,Verji,2024-06-13,S2,4,22o24S2c4,D1,TTX,0.0,yes,22.44666667,11.04390653,41.84442835,-70.76416016,30,200.0,87.5,-39.78881836,417.1142578,-77.27050781,15.75,376.9875822,10,,0.909445689,,,,,,8 mM,-60.24489349,Bielefeld,temporal,42.0 +OP220217,Verji,2024-06-03,S1_D2,6,22218S1_D2c6,D2,Ctrl,22.0,no,32.48944444,9.274831342,57.53145112,-73.87695313,24,150.0,84.36279297,-36.90185547,300.4150391,-72.14355469,18.35,308.3552821,21,,1.0634956,,,,,,15 mM,-62.0959848,Mitte,temporal,17.0 +OP230426,Verji,2024-01-16,S3,5,23426S3c5,D1,high K,0.0,no,24.36611111,7.225007513,38.36266736,-69.6105957,33,150.0,87.51220703,-38.7878418,412.5976563,-81.78710938,15.0,372.3636364,10,423.554118,0.895493486,,,,,,8 mM,-60.92206757,Hamburg,temporal,58.0 +OP210323,Rosie,2024-04-26,S1,8,2021_03_24_0S1c8,D1,TTX,0.0,no,17.50694444,7.630186283,78.18487178,-67.08984375,18,250.0,84.81445313,-37.79296875,298.5839844,-75.80566406,19.35,335.304495,5,,1.024783202,,,,,,15 mM,-67.05703369,Virchow,temporal,10.0 +OP240221,Verji,2024-06-19,S1,3,24221S1c3,D1,high K,0.0,yes,11.03888889,15.19987599,59.41465581,-67.87109375,35,200.0,80.92041016,-39.39819336,318.359375,-89.84375,20.5,591.3239437,1,,0.825399979,492.3464115,,,,,8 mM,-59.54050186,Bielefeld,temporal,37.0 +OP240417,Verji,2024-02-15,S1_D2,6,24417S1c6,D2,Ctrl,16.0,yes,27.47166667,12.76924171,55.73877309,-66.90063477,31,300.0,74.89624023,-26.39160156,314.0869141,-64.57519531,12.35,229.9345455,25,,0.99835308,427.9042635,,,,,8 mM,-62.42892487,Hamburg,temporal,29.0 +OP230109,Verji,2024-02-28,S1_D2,3,2311S1_D2c3,D2,TTX,24.0,no,44.32472222,6.887046081,39.37708426,-68.06640625,7,350.0,62.84790039,-27.16064453,230.46875,-60.546875,13.8,325.5568035,24,,0.877284156,,,,,,8 mM,-61.09482574,Bielefeld,temporal,42.0 +OP240201,Verji,2024-03-08,S2_D2,2,24201S2_D2c2,D2,Ctrl,20.0,no,30.65472222,11.67200895,49.84756524,-71.81396484,15,400.0,72.35107422,-34.94262695,233.1542969,-42.96875,17.55,579.1323263,19,,1.383787642,845.0981699,,,,,8 mM,-61.2813443,Mitte,temporal,39.0 +OP220127,Rosie,2024-06-19,S1,1,22128S1c1,D1,Ctrl,0.0,no,19.20166667,14.05305311,46.17085776,-53.58886719,6,500.0,63.98925781,-37.70141602,125.6103516,-42.96875,6.85,244.3332,manually_adj_inj,,1.380565863,,,,,0.0,15 mM,-55.93905533,Mitte,temporal,45.0 +OP220127,Rosie,2024-02-16,S2_D2,8,22127S2_D2c8,D2,high K,23.0,no,32.7325,8.890552192,37.91774878,-61.95678711,17,400.0,80.07202148,-33.74023438,264.1601563,-57.73925781,14.75,467.4352031,30,,1.229008289,,,,,,15 mM,-61.49198029,Mitte,temporal,45.0 +OP210323,Rosie,2024-05-15,S4,2,2021_03_24_0S4c2,D1,TTX,0.0,no,23.04833333,16.80842457,172.2459493,-73.29711914,27,150.0,87.64648438,-37.67700195,404.0527344,-85.81542969,19.9,245.8835596,13,,0.878334218,,,,,,15 mM,-73.22010208,Virchow,temporal,10.0 +OP220127,Rosie,2024-01-20,S1,7,22127S1c7,D1,Ctrl,0.0,no,7.288611111,8.717942839,74.48012732,-79.97436523,25,100.0,87.73803711,-40.33813477,322.3876953,-95.33691406,20.85,300.4453826,4,,0.858603269,,,,,,15 mM,-61.47163727,Mitte,temporal,45.0 +OP220426,Verji,2024-01-18,S3,3,22427S3c3,D1,high K,0.0,yes,24.78472222,14.69289725,61.06627519,-69.26879883,30,150.0,81.7565918,-35.36987305,288.9404297,-78.125,21.0,404.5432099,8,,0.877826816,,,,,,15 mM,-61.62928177,Bielefeld,temporal,60.0 +OP211123,Rosie,2024-04-07,S3,7,2021_11_24_0S3c7,D1,Ctrl,0.0,no,25.49694444,10.98904107,81.54374779,-72.64404297,46,100.0,94.65332031,-39.40429688,436.8896484,-112.1826172,14.3,157.5596503,,,0.789723364,,,,,,15 mM,-60.07406998,Bielefeld,temporal,68.0 +OP240417,Verji,2024-02-16,S3,2,24417S3c2,D1,Ctrl,0.0,no,15.24944444,25.1133928,111.9061667,-72.16796875,33,100.0,82.06176758,-39.02587891,375.6103516,-87.890625,23.65,330.6156997,16,,0.804465902,308.6202873,,,,,8 mM,-59.71862778,Hamburg,temporal,29.0 +OP231130,Verji,2024-01-25,S1_D2,4,23n30S1_D2c4,D2,wash in high K,21.0,no,32.69944444,18.99990833,78.69863438,-53.76586914,34,200.0,76.91040039,-35.0769043,327.6367188,-73.48632813,18.15,403.4865672,9,,0.894415557,160.1153372,,,,,8 mM,-59.20614609,Bielefeld,temporal,39.0 +OP220228,Verji,2024-05-20,S2,6,22228S2c6,D1,TTX,0.0,yes,14.85305556,10.38374782,31.59037865,-69.36035156,35,200.0,87.20703125,-35.85205078,247.1923828,-77.51464844,15.5,448.282436,9,,0.979333572,,,,,,15 mM,-60.06162994,Bielefeld,temporal,33.0 +OP220322,Verji,2024-06-25,S3,6,22322S3c6,D1,high K,0.0,no,14.25722222,7.941083205,31.40239003,-55.10864258,22,150.0,89.6484375,-43.26782227,261.5966797,-80.93261719,10.5,265.4814815,11,,1.10270477,,,,,,15 mM,-59.17220581,Bielefeld,temporal,52.0 +OP210323,Rosie,2024-06-02,S1_D2,1,2021_03_25_0S1_D2c1,D2,TTX,22.0,no,42.038056,19.70660067,82.45608982,-68.48754883,12,300.0,73.96240234,-28.16162109,236.328125,-47.97363281,13.9,207.8846189,32; exclude; Rs_end > 30,,1.276667488,,,,,,15 mM,-70.02277908,Virchow,temporal,10.0 +OP240507,Verji,2024-01-11,S3_D2,6,24507S3_D2c6,D2,Ctrl,17.0,no,31.47138889,12.18102556,45.63257558,-56.90917969,23,350.0,84.85717773,-37.09716797,332.8857422,-81.90917969,20.2,733.8288248,27,,0.899682815,249.6683223,,,,,8 mM,-61.83390396,Hamburg,temporal,16.0 +OP240215,Verji,2024-02-10,S1,3,24215S1c3,D1,Ctrl,0.0,no,11.72583333,6.263417105,69.92492438,-71.83837891,29,250.0,75.91552734,-35.63842773,269.6533203,-59.20410156,22.3,379.5981299,2,,1.096868056,436.3345445,,,,,8 mM,-59.95096344,Bielefeld,temporal,30.0 +OP240321,Verji,2024-04-12,S2_D2,8,24321S2c8,D2,Ctrl,17.0,yes,29.92277778,15.35227553,52.967462,-68.75,15,100.0,82.97729492,-40.78369141,280.8837891,-94.36035156,25.15,724.1785589,38,,0.856868651,436.4245475,,,,,8 mM,-60.55378326,Bielefeld,temporal,31.0 +OP220127,Rosie,2024-01-28,S3,2,22127S3c2,D1,TTX,0.0,yes,11.24444444,11.99584897,105.2297903,-66.83959961,4,50.0,90.17944336,-46.66748047,219.8486328,-89.84375,15.75,160.7775701,11,,0.995209169,,,,,,15 mM,-59.19040115,Mitte,temporal,45.0 +OP221024,Verji,2024-06-16,S3,5,22o24S3c5,D1,Ctrl,0.0,no,23.96416667,7.594409272,45.93332181,-72.43041992,26,200.0,86.43798828,-35.81542969,413.6962891,-93.26171875,13.2,226.1043387,18,,0.746799258,,,,,,8 mM,-60.62566452,Bielefeld,temporal,42.0 +OP220623,Verji,2024-01-07,S2,5,22623S2c5,D1,high K,0.0,no,9.266944444,8.100154874,32.366858,-71.50878906,13,200.0,83.28857422,-37.43286133,383.0566406,-79.22363281,12.2,267.2256684,2,,0.866514786,,,,,,8 mM,-58.27890594,Mitte,frontal,32.0 +OP210615,Rosie,2024-03-03,S1,7,2021_06_15_0S1c7,D1,TTX,0.0,no,6.974444444,8.783499649,54.72911078,-68.70117188,37,200.0,89.28833008,-39.44091797,375.0,-83.61816406,11.05,257.3464108,,,0.928413379,,,,,,15 mM,-68.69131546,Virchow,temporal,19.0 +OP231130,Verji,2024-01-23,S2,8,23n30S2c8,D1,high K,0.0,yes,12.98361111,9.484605043,63.77992321,-73.14453125,41,150.0,89.00146484,-36.85913086,327.8808594,-88.13476563,19.7,367.4044394,6,,0.890428468,496.1865396,,,,,8 mM,-60.28375305,Bielefeld,temporal,39.0 +OP220811,Verji,2024-06-09,S3_D2,5,22811S3_D2c5,D2,TTX,17.0,no,25.69194444,7.821654527,56.09617591,-61.16943359,25,300.0,69.32983398,-27.86254883,254.8828125,-52.61230469,14.7,248.4216606,8,,1.087222637,,,,,,8 mM,-62.505495,Mitte,temporal,18.0 +OP211123,Rosie,2024-01-01,S1,1,21n23S1c1,D1,Ctrl,0.0,no,10.71861111,7.849354813,40.95147876,-60.35766602,24,150.0,93.40820313,-41.07055664,377.0751953,-93.99414063,21.0,421.3888549,,,0.84976978,,,,,,15 mM,-60.33960999,Bielefeld,temporal,68.0 +OP220308,Verji,2024-06-21,S1,7,22308S1c7,D1,Ctrl,0.0,no,12.17,8.522516999,53.58722859,-51.08032227,30,250.0,83.48388672,-36.30981445,267.4560547,-69.82421875,17.0,393.9575672,3,,1.054488383,,,,,,15 mM,-60.0561673,Bielefeld,temporal,52.0 +OP221024,Verji,2024-06-16,S2_D2,6,22o24S2_D2c6,D2,TTX,24.0,no,47.575,8.558724495,44.97863187,-69.43969727,18,250.0,63.26904297,-28.64990234,214.9658203,-77.88085938,11.55,314.6054863,32,,0.753311109,,,,,,8 mM,-60.55082825,Bielefeld,temporal,42.0 +OP230209,Verji,2024-04-26,S1_D2,5,23209S1_D2c5,D2,TTX,25.0,no,19.9175,9.712582043,76.54923189,-61.77978516,25,200.0,79.27246094,-31.23779297,350.3417969,-77.27050781,15.75,300.9306122,21,233.816691,0.886561944,,,,,,8 mM,-60.54566696,Bielefeld,temporal,63.0 +OP220217,Verji,2024-05-25,S1_D2,1,22217S1c1,D2,Ctrl,22.0,yes,31.77861111,12.35506024,86.47702787,-67.32788086,35,50.0,67.86499023,-34.58862305,128.1738281,-43.33496094,18.55,428.664598,18,,1.511119857,,,,,,15 mM,-53.89203979,Mitte,temporal,17.0 +OP201027,Rosie,2024-03-29,S2,1,20o27S2c1,D1,TTX,0.0,no,9.108055556,11.57067254,42.07221673,-50.62255859,2,200.0,32.06176758,-17.21801758,45.16601563,-21.36230469,10.75,273.9160187,5,,1.330091432,,,,,,15 mM,-50.61670105,Mitte,temporal,33.0 +OP240117,Verji,2024-07-30,S1_D2,2,24117S1_D2c2,D2,Ctrl,23.0,no,30.95694444,11.35346852,105.6817834,-58.43505859,33,150.0,80.80444336,-37.00561523,301.3916016,-105.2246094,14.7,242.6647859,5,,0.786056208,164.1654722,,,,,8 mM,-57.43708237,Hamburg,temporal,55.0 +OP240117,Verji,2024-07-31,S2_D2,4,24117S2_D2c4,D1,Ctrl,20.0,no,26.4242,17.1883851,139.095453,-76.91650391,61,100.0,78.4362793,-40.68603516,316.0400391,-95.09277344,19.8,201.3675978,3,,0.740537194,295.5398513,,,,,8 mM,-59.56116104,Hamburg,temporal,55.0 +OP240118,Verji,2024-07-31,S2,7,24118S2c7,D1,high K,0.0,no,8.083888889,9.079010471,82.00862257,-60.16845703,42,250.0,83.20922852,-38.56201172,307.9833984,-89.84375,14.0,317.0366275,11,,0.838811245,330.8810294,,,,,8 mM,-61.99092041,Mitte,temporal,58.0 +OP230420,Verji,2024-01-02,S1,6,23420S1c6,D1,TTX,0.0,no,10.41638889,8.820133954,35.97108195,-54.95605469,22,300.0,76.66015625,-29.82788086,270.6298828,-52.24609375,14.85,426.0987741,3,173.9157972,1.266334769,,,,,,8 mM,-59.61597931,Bielefeld,temporal,13.0 +OP220602,,2024-05-18,S2,6,22602S2c6,D1,Ctrl,0.0,no,13.75444444,9.677079992,49.25383277,-52.48413086,3,150.0,72.00927734,-41.25366211,153.1982422,-73.36425781,5.05,116.2884048,11,,0.964836554,,,,,,8 mM,-53.1770369,,, +OP230109,Verji,2024-03-03,S3_D2,4,2311S3_D2c4,D2,Ctrl,24.0,no,48.18694444,9.77584181,35.10349866,-72.38769531,33,400.0,86.2121582,-43.48144531,450.4394531,-77.51464844,10.25,313.3134328,42,,0.909188407,,,,,,8 mM,-61.22377167,Bielefeld,temporal,42.0 +OP230314,Verji,2024-07-25,S4,8,23314S4c8,D1,Ctrl,0.0,no,10.49277778,14.36484313,59.95899853,-54.31518555,32,200.0,89.41650391,-39.09301758,473.5107422,-78.73535156,12.3,251.1192523,28; exclude; Rs_end > 30,,0.912745262,,,150.215007,,,8 mM,-58.85796753,Virchow,temporal,12.0 +OP220217,Verji,2024-05-31,S3,6,22217S3c6,D1,high K,0.0,no,11.88,8.861853193,63.94871696,-76.65405273,34,100.0,77.01416016,-36.27319336,189.6972656,-79.71191406,22.9,277.71547,15,,0.90259798,,,,,,15 mM,-58.14128174,Mitte,temporal,17.0 +OP240321,Verji,2024-04-09,S1,7,24321S1c7,D1,high K,0.0,no,9.830277778,8.999935019,53.27392018,-55.62744141,33,300.0,78.07617188,-33.96606445,273.8037109,-89.59960938,21.1,464.6537634,4,,0.806692721,108.6036201,,,,,8 mM,-60.33785324,Bielefeld,temporal,31.0 +OP201029,Rosie,2024-03-18,S1,8,20o29S1c8,D1,Ctrl,0.0,no,6.178888889,20.38482719,67.87151177,-69.58618164,39,300.0,72.41821289,-34.27734375,190.3076172,-62.62207031,12.6,223.2973499,,,1.148857739,,,,,,15 mM,-69.58204453,Mitte,temporal,47.0 +OP220120,Rosie,2024-02-20,S1,1,22121S1c1,D1,high K,0.0,no,12.61361111,8.373694758,35.31743652,-75.1159668,25,250.0,95.81298828,-38.37280273,457.7636719,-89.84375,14.8,305.0103145,0,,0.880971618,,,,,,15 mM,-63.75021851,Bielefeld,temporal,50.0 +OP221027,Verji,2024-02-02,S2,7,22o27S2c7,D1,TTX,0.0,no,9.679166667,13.16751874,76.78538465,-70.70922852,40,-300.0,94.28100586,-38.0065918,420.2880859,-79.58984375,10.55,160.2700046,14,,0.942054004,,,,,,8 mM,-61.88760284,Mitte,temporal,61.0 +OP230420,Verji,2024-01-02,S1,3,23420S1c3,D1,TTX,0.0,no,10.41638889,7.86717388,48.728367,-69.57397461,26,300.0,78.44848633,-32.04345703,350.0976563,-67.13867188,17.3,393.3979181,1,585.1028368,1.006321207,,,,,,8 mM,-60.46029755,Bielefeld,temporal,13.0 +OP220127,Rosie,2024-02-06,S4,1,22127S4c1,D1,TTX,0.0,no,13.14,11.31307505,36.95792111,-59.14306641,15,150.0,76.45263672,-33.01391602,214.84375,-68.84765625,22.45,535.7914057,18,,1.013528165,,,,,,15 mM,-51.61471725,Mitte,temporal,45.0 +OP240411,Verji,2024-02-06,S2,1,24411S2c1,D1,high K,0.0,yes,13.15111111,13.08889851,58.30619249,-71.27685547,38,200.0,79.79125977,-37.5793457,329.9560547,-84.83886719,23.0,415.0132159,8; exclude; Rs_end > 30,,0.83047811,492.2564085,,,,,8 mM,-59.9469545,Bielefeld,temporal,46.0 +OP240321,Verji,2024-04-17,S4,7,24321S4c7,D1,high K,0.0,no,14.44,7.35440845,44.32746951,-81.92749023,32,150.0,87.28637695,-40.13671875,356.9335938,-106.4453125,24.15,495.5211021,24,,0.755530143,766.8555619,,,,,8 mM,-62.70364975,Bielefeld,temporal,31.0 +OP220322,Verji,2024-06-26,S3_D2,6,22322S3c7,D2,high K,22.0,yes,36.83888889,7.826844003,35.39196156,-68.89038086,32,200.0,87.7746582,-38.95874023,302.734375,-88.98925781,10.4,246.5898698,24,,0.8921461,,,,,,15 mM,-60.58758072,Bielefeld,temporal,52.0 +OP240503,Verji,2024-05-02,S3_D2,7,24503S3c7,D2,high K,17.0,yes,29.17055556,12.06648987,59.41965483,-76.52587891,32,250.0,64.5690918,-35.22338867,249.1455078,-91.30859375,20.95,418.3361365,36,,0.663181972,584.6894896,,,,,8 mM,-61.41303909,Mitte,temporal,36.0 +OP230420,Verji,2024-01-06,S2_D2,4,23420S2c4,D2,high K,19.0,yes,31.39111111,8.203241825,33.07277794,-64.09912109,12,500.0,74.73144531,-27.57568359,170.4101563,-25.87890625,7.55,349.9270156,38,671.9390646,2.3157393,,,,,,8 mM,-61.24166061,Bielefeld,temporal,13.0 +OP240411,Verji,2024-02-09,S3_D2,4,24411S3_D2c4,D2,Ctrl,18.0,no,35.3,9.440213464,147.9477743,-64.50195313,43,150.0,75.36621094,-38.48266602,247.6806641,-79.46777344,13.1,137.1440256,42,,0.854413493,174.3958132,,,,,8 mM,-58.62794159,Bielefeld,temporal,46.0 +OP220127,Rosie,2024-07-09,S4,2,22128S4c2,D1,Ctrl,0.0,no,25.40166667,23.18824373,84.36887609,-73.42529297,27,150.0,80.13305664,-36.4440918,253.0517578,-73.2421875,21.75,305.7941,manually_adj_inj,,0.963487963,,,,,20.0,15 mM,-55.53948975,Mitte,temporal,45.0 +OP210323,Rosie,2024-05-11,S3_D2,8,2021_03_24_0S3c8,D2,Ctrl,21.0,yes,43.934722,9.675620347,49.74803264,-74.84741211,23,450.0,81.26220703,-33.50830078,321.2890625,-64.453125,13.15,375.6749782,34,,1.080005518,,,,,,15 mM,-71.06313156,Virchow,temporal,10.0 +OP220602,,2024-07-16,S3_D2,4,22602S3_D2c4,D2,TTX,22.0,no,37.54944444,6.515307994,30.21130412,-59.03320313,19,300.0,61.82250977,-25.1953125,161.0107422,-48.58398438,11.35,339.0308113,31,,1.10081758,,,,,,8 mM,-63.75360565,,, +OP230420,Verji,2024-01-01,S1,1,23420S1c1,D1,TTX,0.0,no,10.41638889,6.675642783,39.02530066,-74.28588867,24,200.0,80.74951172,-35.27832031,336.1816406,-60.79101563,19.4,510.6017671,0,753.3801127,1.151008709,,,,,,8 mM,-61.82855423,Bielefeld,temporal,13.0 +OP230109,Verji,2024-03-01,S2_D2,8,2311S2_D2c8,D2,high K,24.0,no,46.55611111,7.142124874,66.50965105,-72.97973633,27,300.0,86.12060547,-37.60986328,445.4345703,-75.31738281,12.4,269.2665341,38,,0.907096786,,,,,,8 mM,-61.44799988,Bielefeld,temporal,42.0 +OP230817,Verji,2024-05-08,S1_D2,3,23817S1_D2c3,D2,TTX,23.0,no,27.70083333,8.956366741,59.84267001,-70.93505859,17,200.0,57.45849609,-25.20141602,142.9443359,-50.65917969,19.25,294.7588785,21,437.2646,1.055696831,,,,,,8 mM,-59.13998245,Mitte,temporal,47.0 +OP230109,Verji,2024-02-26,S3,3,2311S3c3,D1,Ctrl,0.0,no,23.58111111,15.49846979,38.09356486,-68.50280762,40,150.0,90.13061523,-49.74975586,477.4169922,-112.3046875,14.9,549.2049494,15,,0.648946849,,,,,,8 mM,-60.73683701,Bielefeld,temporal,42.0 +OP240503,Verji,2024-04-28,S2_D2,3,24503S2c3,D2,Ctrl,17.0,yes,27.96944444,21.14474358,52.28362239,-61.38916016,22,350.0,74.05395508,-42.15087891,261.4746094,-59.44824219,0.15,20.39502075,28,,1.056456971,494.9264975,,,,,8 mM,-61.1649234,Mitte,temporal,36.0 +OP240503,Verji,2024-04-29,S3,5,24503S3c5,D1,high K,0.0,yes,11.37694444,9.810366532,74.63081645,-76.73339844,39,150.0,79.30908203,-33.33129883,324.4628906,-84.83886719,24.35,344.8145203,16,,0.810659151,419.0539685,,,,,8 mM,-61.39230179,Mitte,temporal,36.0 +OP220127,Rosie,2024-07-01,S2,6,22128S2c6,D1,TTX,0.0,yes,20.765,7.807692818,38.23174925,-75.0,27,350.0,93.76831055,-43.81103516,489.6240234,-126.7089844,10.05,375.0779043,10,,0.634774335,,,,,10.0,15 mM,-70.84277039,Mitte,temporal,45.0 +OP230808,Verji,2024-03-29,S2,7,23808S2c7,D1,high K,0.0,no,9.599722222,17.32489001,51.99144137,-74.74975586,17,150.0,88.82446289,-41.55883789,392.3339844,-67.99316406,29.4,593.5792976,13,552.8884296,1.06063396,,,,,,8 mM,-64.07546417,Hamburg,temporal,14.0 +OP230808,Verji,2024-04-06,S1_D2,7,23808S1_D2c7,D2,TTX,25.0,no,33.29638889,11.4377309,142.8314949,-72.10083008,6,100.0,63.63525391,-33.38012695,184.3261719,-31.49414063,30.55,312.9297906,59,189.8763292,1.956534702,,,,,,8 mM,-62.28236816,Hamburg,temporal,14.0 +OP221024,Verji,2024-06-17,S3_D2,2,22o24S3_D2c2,D2,Ctrl,24.0,no,50.01027778,7.345219018,37.01188806,-63.03100586,10,600.0,64.30053711,-27.58789063,225.5859375,-75.56152344,9.8,219.7990418,33,,0.802658632,,,,,,8 mM,-61.95141037,Bielefeld,temporal,42.0 +OP240201,Verji,2024-03-08,S2_D2,7,24201S2_D2c7,D2,Ctrl,20.0,no,31.16416667,13.69269489,76.25239644,-66.11938477,37,150.0,78.03344727,-29.44335938,311.5234375,-89.35546875,15.6,228.4096515,24,,0.785888373,345.5515184,,,,,8 mM,-60.74756653,Mitte,temporal,39.0 +OP230109,Verji,2024-02-24,S2,6,2311S2c6,D1,high K,0.0,no,20.8525,15.82506011,138.0202564,-71.67358398,33,100.0,80.18798828,-40.16113281,334.2285156,-111.2060547,4.95,54.12132132,11,,0.681809675,,,,,,8 mM,-66.84029236,Bielefeld,temporal,42.0 +OP230420,Verji,2024-01-02,S1_D2,8,23420S1c8,D2,TTX,19.0,yes,29.63333333,8.27161387,30.60725912,-70.74584961,1,1300.0,48.88305664,-20.85571289,100.9521484,-27.46582031,13.25,864.8924303,29,565.9388646,1.504127172,,,,,,8 mM,-61.28396652,Bielefeld,temporal,13.0 +OP220308,Verji,2024-06-21,S1,5,22308S1c5,D1,Ctrl,0.0,no,12.17,11.98259768,72.97040459,-78.37524414,35,100.0,88.34838867,-40.40527344,325.9277344,-83.61816406,21.35,268.1474895,2,,0.879131407,,,,,,15 mM,-57.60974518,Bielefeld,temporal,52.0 +OP240411,Verji,2024-02-08,S3,3,24411S3c3,D1,Ctrl,0.0,no,15.32305556,10.17931707,71.11000869,-68.17626953,34,150.0,79.21142578,-32.91625977,337.7685547,-89.35546875,20.7,434.8061538,17,,0.779389797,415.8438615,,,,,8 mM,-59.99896011,Bielefeld,temporal,46.0 +OP210615,Rosie,2024-03-12,S4_D2,2,2021_06_16_0S4_D1c3,D2,TTX,20.3,no,33.78388889,17.61494514,53.0830001,-59.32006836,23,250.0,68.11523438,-29.4921875,246.4599609,-43.82324219,13.5,602.6811989,,,1.281173208,,,,,,15 mM,-69.40453964,Virchow,temporal,19.0 +OP220127,Rosie,2024-01-31,S3,5,22127S3c5,D1,TTX,0.0,yes,11.24444444,9.544475502,47.83354259,-77.70996094,20,100.0,88.78173828,-36.24267578,349.3652344,-83.25195313,20.15,329.9726137,14,,0.945234919,,,,,,15 mM,-60.18112961,Mitte,temporal,45.0 +OP240321,Verji,2024-04-17,S1_D2,5,24321S1_D2c5,D2,high K,17.0,no,28.00555556,17.29944991,68.75175937,-68.34716797,24,100.0,81.43920898,-40.40527344,279.7851563,-90.33203125,24.05,434.9174393,30,,0.844001518,290.2596753,,,,,8 mM,-62.08648849,Bielefeld,temporal,31.0 +OP240417,Verji,2024-02-16,S3,5,24417S3c5,D1,Ctrl,0.0,no,15.24944444,12.97490749,91.89792623,-48.18115234,32,150.0,77.75878906,-34.47265625,342.5292969,-71.16699219,18.7,264.3492666,18; exclude; Rs_end > 30,,0.945585706,81.93273109,,,,,8 mM,-61.04722763,Hamburg,temporal,29.0 +OP230426,Verji,2024-01-14,S1,8,23426S1c8,D1,Ctrl,0.0,no,21.42833333,9.104908937,128.6879089,-72.72949219,32,100.0,92.82836914,-44.3359375,492.6757813,-92.40722656,11.25,196.7129136,5,228.877629,0.824561445,,,,,,8 mM,-64.70461487,Hamburg,temporal,58.0 +OP230109,Verji,2024-03-02,S3_D2,1,2311S3_D2c1,D2,Ctrl,24.0,no,48.18694444,6.537602029,37.69412217,-72.00927734,26,350.0,79.90722656,-32.1472168,333.6181641,-80.44433594,11.9,313.0784424,39,,0.870267242,,,,,,8 mM,-61.06909546,Bielefeld,temporal,42.0 +OP230817,Verji,2024-05-08,S3,6,23817S3c6,D1,Ctrl,0.0,no,7.576388889,6.378030146,83.31209596,-70.70922852,25,150.0,65.12451172,-26.8737793,169.3115234,-50.65917969,18.75,293.830703,17,382.4827,1.169611959,,,,,,8 mM,-59.91347687,Mitte,temporal,47.0 +OP220518,Verji,2024-07-08,S4,6,22519S4c6,D1,TTX,0.0,no,28.65777778,10.15526921,39.25969019,-68.18237305,7,300.0,78.14331055,-40.36254883,274.1699219,-81.90917969,10.5,183.012766,17,,0.816956097,,,,,,15 mM,-64.28639297,Bielefeld,frontal,37.0 +OP230810,Verji,2024-05-11,S1,4,23810S1c4,D1,high K,0.0,no,5.660833333,9.889564039,33.91550875,-63.62915039,50,300.0,88.14697266,-38.07373047,358.6425781,-71.89941406,7.4,230.936381,2,436.0045,0.985160862,,,,,,8 mM,-61.63149551,Mitte,temporal,63.0 +OP230808,Verji,2024-04-08,S3_D2,4,23808S3_D2c4,D2,Ctrl,25.0,no,35.75638889,6.933973943,39.73174516,-58.4777832,7,250.0,75.1159668,-32.93457031,264.1601563,-50.65917969,19.35,525.7552239,70,292.0897363,1.416427238,,,,,,8 mM,-54.16771835,Hamburg,temporal,14.0 +OP220518,Verji,2024-07-07,S1,6,22519S1c6,D1,Ctrl,0.0,no,21.6325,5.727807449,26.77346398,-73.42529297,29,150.0,86.35864258,-41.19262695,325.0732422,-90.33203125,13.2,285.1269611,2,,0.804193551,,,,,,15 mM,-57.42651184,Bielefeld,frontal,37.0 +OP220217,Verji,2024-06-03,S1_D2,8,22218S1_D2c8,D2,Ctrl,22.0,no,32.48944444,12.62715842,101.8551684,-69.67773438,34,100.0,88.95263672,-40.48461914,382.0800781,-88.25683594,17.5,176.009822,22,,0.861675774,,,,,,15 mM,-59.82177673,Mitte,temporal,17.0 +OP240503,Verji,2024-04-30,S3,8,24503S3c8,D1,high K,0.0,yes,11.37694444,23.99158012,77.88867565,-66.52832031,40,200.0,54.91333008,-28.28369141,132.0800781,-44.79980469,17.35,230.826147,19; exclude; Rs_end > 30,,1.231711905,276.8792293,,,,,8 mM,-62.72207489,Mitte,temporal,36.0 +OP211209,Verji,2024-03-15,S4,2,21d10S4c2,D1,TTX,0.0,no,16.86083333,8.478921351,63.10909076,-69.87304688,40,200.0,83.3984375,-35.22949219,256.4697266,-86.54785156,18.4,235.8424408,,,0.875158719,,,,,,15 mM,-62.90255936,Bielefeld,temporal,27.0 +OP220127,Rosie,2024-06-29,S1,7,22128S1c7,D1,Ctrl,0.0,no,19.20166667,23.01910549,116.2851146,-77.15454102,29,50.0,82.62329102,-36.57836914,313.4765625,-79.71191406,21.6,193.6494665,5,,0.931722013,,,,,5.0,15 mM,-60.60171585,Mitte,temporal,45.0 +OP230314,Verji,2024-07-14,S1,8,23314S1c8,D1,high K,0.0,no,5.940833333,22.05420381,97.59612952,-67.35839844,52,100.0,79.43115234,-41.33300781,325.0732422,-111.5722656,13.3,186.4047904,5,,0.776088957,,,201.505075,,,8 mM,-61.03557465,Virchow,temporal,12.0 +OP230523,Verji,2024-03-11,S3,8,23523S3c8,D1,Ctrl,0.0,yes,13.27361111,9.536930828,67.59967925,-79.44946289,24,150.0,85.33935547,-35.7421875,355.5908203,-80.078125,21.55,320.6859219,21,475.8758625,0.946046005,,,,,,8 mM,-60.85445969,Hamburg,temporal,16.0 +OP210323,Rosie,2024-04-24,S1_D2,6,2021_03_24_0S1c6,D2,TTX,22.0,yes,41.643889,16.57444943,55.42876655,-68.51806641,16,500.0,57.37304688,-22.19848633,146.1181641,-29.90722656,7.25,209.4955908,31,,1.612595512,,,,,,15 mM,-70.25225983,Virchow,temporal,10.0 +OP240201,Verji,2024-03-04,S1,3,24201S1c3,D1,high K,0.0,no,9.856111111,10.30457154,56.28737597,-56.84204102,24,500.0,79.40673828,-34.66186523,289.5507813,-75.68359375,18.6,602.2577075,2,,0.937866408,181.7160572,,,,,8 mM,-71.69730026,Mitte,temporal,39.0 +OP220127,Rosie,2024-07-04,S2,8,22128S2c8,D1,TTX,0.0,no,20.765,13.17042505,56.99402302,-70.04394531,21,450.0,92.16918945,-40.86914063,483.1542969,-85.08300781,15.5,521.9979445,12,,0.959147462,,,,,12.0,15 mM,-71.35955261,Mitte,temporal,45.0 +OP221024,Verji,2024-06-14,S2,5,22o24S2c5,D1,TTX,0.0,yes,22.44666667,7.519762598,46.53414832,-73.86474609,33,150.0,88.76953125,-38.65356445,414.6728516,-73.60839844,13.7,253.3417607,11,,0.94454288,,,,,,8 mM,-60.33580963,Bielefeld,temporal,42.0 +OP220217,Verji,2024-06-01,S3,7,22217S3c7,D1,high K,0.0,no,11.88,22.37954071,69.42446686,-73.08959961,31,150.0,79.30908203,-37.25585938,253.6621094,-83.74023438,18.1,293.9052527,16,,0.8489795,,,,,,15 mM,-62.40558319,Mitte,temporal,17.0 +OP220602,,2024-01-15,S1,4,22602S1c4,D1,high K,0.0,no,12.15055556,5.696342098,22.17503814,-70.77026367,24,450.0,75.84838867,-35.30273438,223.1445313,-51.63574219,14.8,498.4238438,2,,1.185701423,,,,,,8 mM,-65.18812393,,, +OP210323,Rosie,2024-06-10,S5_D2,2,2021_03_25_0S4_D2c1,D2,Ctrl,23.5,no,49.888611,8.062325511,134.2167879,-78.05786133,26,100.0,90.91796875,-37.73803711,512.2070313,-82.76367188,16.8,191.0803193,49,,0.900221319,,,,,,15 mM,-71.26789474,Virchow,temporal,10.0 +OP210323,Rosie,2024-04-28,S3,2,2021_03_24_0S3c2,D1,Ctrl,0.0,yes,20.55972222,11.26051255,78.24355071,-72.71118164,22,300.0,93.75610352,-39.20288086,545.8984375,-79.71191406,19.05,506.6805195,8,,0.959049863,,,,,,15 mM,-72.68165649,Virchow,temporal,10.0 +OP220127,Rosie,2024-02-12,S2_D2,2,22127S2_D2c2,D2,high K,23.0,no,32.7325,8.407270816,48.74606713,-77.33154297,18,250.0,82.66601563,-33.78295898,280.2734375,-77.51464844,23.45,508.8805298,25,,0.902211635,,,,,,15 mM,-62.76155319,Mitte,temporal,45.0 +OP240117,Verji,2024-07-30,S2_D2,1,24117S2_D2c1,D1,Ctrl,20.0,no,26.4242,11.44098428,84.47205149,-59.64355469,38,200.0,81.28051758,-34.90600586,305.2978516,-81.42089844,14.55,230.6600871,0,,0.895243543,213.3071102,,,,,8 mM,-60.86702438,Hamburg,temporal,55.0 +OP220127,Rosie,2024-01-25,S2_D2,5,22127S2c5,D2,high K,23.0,yes,32.7325,9.862033416,57.28637607,-75.87890625,26,200.0,80.99975586,-30.77392578,275.8789063,-81.29882813,16.9,304.6090209,27,,0.873977306,,,,,,15 mM,-61.18716629,Mitte,temporal,45.0 +OP240507,Verji,2024-01-10,S2,6,24507S2c6,D1,high K,0.0,no,10.99111111,10.92189913,49.61267498,-53.90014648,23,200.0,84.91210938,-37.98828125,351.1962891,-76.29394531,15.3,409.2656327,9,,1.032390974,102.3934131,,,,,8 mM,-61.09294525,Hamburg,temporal,16.0 +OP210323,Rosie,2024-04-12,S1_D2,4,2021_03_24_0S1c2,D2,TTX,22.0,yes,41.045278,6.044853828,29.11483676,-69.78759766,7,800.0,48.76098633,-20.88012695,93.99414063,-25.75683594,8.75,456.5605096,28,,1.818207352,,,,,,15 mM,-71.02371124,Virchow,temporal,10.0 +OP220127,Rosie,2024-06-30,S2,1,22128S2c1,D1,TTX,0.0,no,20.765,7.566834418,37.89253519,-67.8527832,19,800.0,84.55200195,-34.80224609,390.0146484,-67.50488281,10.35,418.0141,manually_adj_inj,,1.019139291,,,,,6.0,15 mM,-68.17939911,Mitte,temporal,45.0 +OP240117,Verji,2024-07-31,S2_D2,3,24117S2_D2c3,D1,Ctrl,20.0,no,26.4242,7.925609012,70.667672,-63.03100586,30,200.0,76.51977539,-36.12060547,273.8037109,-96.06933594,15.9,311.4233114,2,,0.727939307,237.8779293,,,,,8 mM,-61.17070938,Hamburg,temporal,55.0 +OP210323,Rosie,2024-05-18,S4,5,2021_03_24_0S4c5,D1,TTX,0.0,no,23.04833333,8.956999411,54.53104909,-74.51782227,16,400.0,86.6027832,-38.72070313,380.2490234,-80.32226563,17.25,438.1767442,15,,0.972709883,,,,,,15 mM,-74.52035751,Virchow,temporal,10.0 +OP230420,Verji,2024-01-05,S2_D2,8,23420S2c7,D2,high K,19.0,yes,31.39111111,7.713653313,30.01570082,-63.01269531,14,500.0,85.02807617,-32.37915039,240.8447266,-32.83691406,9.0,447.5144158,41,685.3961799,2.089426026,,,,,,8 mM,-60.07796478,Bielefeld,temporal,13.0 +OP220127,Rosie,2024-07-26,S3_D2,7,22129S3_D2c7,D2,high K,24.0,no,49.07583333,15.41208792,105.7811294,-45.21484375,7,300.0,61.34033203,-35.8581543,314.8193359,-187.1337891,3.75,53.03409581,37,,0.386361075,,,,,37.0,15 mM,-62.37806992,Mitte,temporal,45.0 +OP220322,Verji,2024-06-25,S2,6,22322S2c6,D1,TTX,0.0,no,12.45194444,7.956380844,38.77242051,-70.67871094,29,200.0,87.63427734,-37.3840332,298.7060547,-68.359375,10.75,220.9887077,6,,1.035384242,,,,,,15 mM,-61.51928101,Bielefeld,temporal,52.0 +OP221020,Verji,2024-01-28,S4_D2,4,22o21S4_D2c4,D2,TTX,20.0,no,29.72861111,7.613993266,41.27707007,-75.14038086,19,200.0,72.27172852,-31.24389648,271.484375,-50.53710938,23.05,361.2158776,3,,1.280341857,,,,,,8 mM,-60.83120071,Mitte,temporal,25.0 +OP220308,Verji,2024-06-20,S1,3,22308S1c3,D1,Ctrl,0.0,no,12.17,14.71614506,139.817799,-76.13525391,27,50.0,89.7277832,-41.52832031,294.6777344,-78.36914063,14.95,120.7199606,0,,0.985303103,,,,,,15 mM,-57.45852081,Bielefeld,temporal,52.0 +OP201029,Rosie,2024-03-24,S2,4,20o29S2c4,D1,TTX,0.0,no,9.434722222,24.21248594,88.66876957,-66.56494141,20,250.0,61.30981445,-30.70678711,135.8642578,-47.48535156,11.95,193.0856016,,,1.239714465,,,,,,15 mM,-66.64339279,Mitte,temporal,47.0 +OP220426,Verji,2024-01-21,S4_D2,2,22427S4c6,D2,Ctrl,24.0,yes,44.96472222,9.948346991,43.5896815,-64.03808594,20,300.0,69.52514648,-29.4128418,153.8085938,-47.72949219,9.75,230.6772563,19,,1.235679977,,,,,,15 mM,-61.97793671,Bielefeld,temporal,60.0 +OP220127,Rosie,2024-02-17,S4_D2,6,22127S4_D2c6,D2,TTX,23.0,no,36.85194444,8.502048479,53.48807838,-79.84619141,21,100.0,71.71020508,-33.24584961,220.4589844,-77.75878906,25.45,294.5763335,41,,0.844959188,,,,,,15 mM,-56.67318161,Mitte,temporal,45.0 +OP230109,Verji,2024-02-27,S3,5,2311S3c5,D1,Ctrl,0.0,no,23.58111111,8.049398714,39.26399226,-75.73242188,24,200.0,88.7878418,-42.98095703,430.5419922,-90.45410156,10.75,256.0,16,,0.789030286,,,,,,8 mM,-61.50154633,Bielefeld,temporal,42.0 +OP211209,Verji,2024-03-15,S4,4,21d10S4c4,D1,TTX,0.0,no,16.86083333,11.43787597,70.48390449,-72.41821289,45,150.0,84.57641602,-39.23339844,272.2167969,-85.69335938,17.7,252.5004789,,,0.888858053,,,,,,15 mM,-62.05386581,Bielefeld,temporal,27.0 +OP221020,Verji,2024-01-29,S6_D2,8,22o21S6_D2c8,D2,high K,20.0,no,33.4275,10.47091713,32.93464403,-64.88037109,29,450.0,84.11254883,-33.44116211,423.0957031,-83.0078125,9.45,349.5006772,16,,0.83853321,,,,,,8 mM,-61.22122147,Mitte,temporal,25.0 +OP220127,Rosie,2024-01-23,S2,4,22127S2c4,D1,high K,0.0,no,9.303888889,9.008443755,35.1473217,-78.10668945,23,150.0,84.65576172,-40.10620117,258.5449219,-85.81542969,22.0,507.6732394,7,,0.898855232,,,,,,15 mM,-59.06792999,Mitte,temporal,45.0 +OP220127,Rosie,2024-01-17,S1,2,22127S1c2,D1,Ctrl,0.0,no,7.288611111,8.310721527,48.7790831,-76.89208984,25,150.0,90.66772461,-41.07055664,325.4394531,-95.09277344,19.3,379.3775645,0,,0.851768694,,,,,,15 mM,-62.29293533,Mitte,temporal,45.0 +OP231123,Verji,2024-03-24,S1,4,23n23S1c4,D1,Ctrl,0.0,no,9.935555556,22.68089321,77.7152084,-72.88818359,34,50.0,87.9699707,-42.62084961,370.8496094,-89.11132813,27.2,444.977334,2,,0.860672277,365.7121904,,,,,8 mM,-61.50239609,Bielefeld,temporal,40.0 +OP220127,Rosie,2024-07-22,S2_D2,7,22129S2_D2c7,D2,TTX,24.0,no,47.00861111,20.03880574,102.5905442,-67.35839844,30,100.0,82.51342773,-35.14404297,363.1591797,-75.31738281,13.8,167.3569208,32,,0.889146464,,,,,32.0,15 mM,-61.52571472,Mitte,temporal,45.0 +OP220322,Verji,2024-06-26,S1_D2,2,22322S1_D2c2,D2,Ctrl,22.0,no,32.92194444,8.428064398,22.42904461,-63.87939453,16,350.0,79.60205078,-40.625,230.9570313,-68.72558594,16.7,532.8389484,14,,0.99863945,,,,,,15 mM,-59.84509964,Bielefeld,temporal,52.0 +OP211209,Verji,2024-03-19,S5_D2,1,21d10S5c1,D2,high K,18.0,yes,38.62972222,17.54360853,31.32344949,-65.06347656,22,450.0,76.32446289,-32.39135742,312.8662109,-65.67382813,14.0,436.490961,,,0.976828717,,,,,,15 mM,-67.92901184,Bielefeld,temporal,27.0 +OP220322,Verji,2024-07-02,S2_D2,7,22322S2c8,D2,TTX,22.0,yes,34.94305556,13.89952086,37.63278602,-67.80395508,30,300.0,83.3984375,-34.77172852,331.0546875,-61.15722656,9.25,310.557377,21,,1.092899316,,,,,,15 mM,-62.50404282,Bielefeld,temporal,52.0 +OP220127,Rosie,2024-06-21,S1,2,22128S1c2,D1,Ctrl,0.0,yes,19.20166667,14.2415657,133.988716,-78.52172852,39,150.0,89.75830078,-38.37280273,412.2314453,-84.10644531,14.75,104.8585,manually_adj_inj,,0.866369593,,,,,1.0,15 mM,-55.43099899,Mitte,temporal,45.0 +OP220120,Rosie,2024-07-31,S1_D2,2,22121S1c8,D2,Ctrl,23.0,yes,46.4225,21.56228136,116.147612,-76.62963867,31,100.0,89.47753906,-39.48974609,361.9384766,-96.43554688,31.95,234.7394,,,0.871826381,,,,inj_fix,,15 mM,-52.44422913,Bielefeld,temporal,50.0 +OP231109,Verji,2024-01-14,S1,7,23n09S1c7,D1,Ctrl,0.0,no,5.016944444,14.76206099,46.91589011,-66.07055664,28,300.0,72.86376953,-34.61914063,232.5439453,-67.26074219,9.9,344.7430393,5,,1.037331314,307.9902663,,,,,8 mM,-58.56504822,Mitte,temporal,44.0 +OP240201,Verji,2024-03-04,S1,2,24201S1c2,D1,high K,0.0,no,9.856111111,11.21822981,81.65572842,-76.01318359,44,50.0,80.5480957,-35.16235352,280.7617188,-86.05957031,33.8,310.0667413,1,,0.833160376,397.4232474,,,,,8 mM,-51.18600235,Mitte,temporal,39.0 +OP220217,Verji,2024-05-26,S1,2,22217S1c2,D1,Ctrl,0.0,no,7.946944444,15.45706138,135.9415142,-77.33764648,46,50.0,89.68505859,-42.85888672,267.3339844,-92.65136719,15.9,120.6882557,1,,0.870521903,,,,,,15 mM,-61.75159393,Mitte,temporal,17.0 +OP220322,Verji,2024-06-25,S3,7,22322S3c7,D1,high K,0.0,yes,14.25722222,17.07594954,42.51733175,-68.25561523,45,200.0,87.86010742,-42.63305664,385.3759766,-93.13964844,11.8,372.8663452,12,,0.836066893,,,,,,15 mM,-61.74787827,Bielefeld,temporal,52.0 +OP220127,Rosie,2024-07-04,S2,7,22128S2c7,D1,TTX,0.0,no,20.765,7.587496876,36.40393217,-68.02978516,22,500.0,78.29589844,-37.37792969,305.5419922,-92.7734375,9.6,324.3018557,11,,0.798225082,,,,,11.0,15 mM,-70.07893616,Mitte,temporal,45.0 +OP220308,Verji,2024-06-20,S1,4,22308S1c4,D1,Ctrl,0.0,no,12.17,19.73230303,79.3243834,-74.47509766,36,50.0,82.93457031,-39.98413086,251.4648438,-61.88964844,24.0,263.5495979,1,,1.082590036,,,,,,15 mM,-56.90159531,Bielefeld,temporal,52.0 +OP210323,Rosie,2024-06-08,S4_D2,8,2021_03_25_0S4_D2c8,D2,TTX,24.0,no,49.516111,14.14597822,482.9881207,-59.95483398,5,100.0,66.33911133,-34.36889648,247.5585938,-82.39746094,4.1,30.15685746,48; exclude; Rs_end > 30,,0.740635802,,,,,,15 mM,-67.00526917,Virchow,temporal,10.0 +OP211123,Rosie,2024-01-04,S1,2,21n23S1c2,D1,Ctrl,0.0,no,10.71861111,12.79079175,36.53479424,-62.47558594,32,350.0,86.8347168,-39.27612305,266.2353516,-89.47753906,14.25,481.385567,,,0.843970155,,,,,,15 mM,-62.46054016,Bielefeld,temporal,68.0 +OP220120,Rosie,2024-02-27,S2,6,22121S2c6,D1,TTX,0.0,no,14.21611111,10.01522106,39.36095982,-61.74316406,22,100.0,85.67504883,-42.51708984,250.0,-84.22851563,20.2,401.6466019,9,,0.940396199,,,,,,15 mM,-57.16205734,Bielefeld,temporal,50.0 +OP211123,Rosie,2024-01-09,S2,1,21n23S2c1,D1,high K,0.0,no,13.02277778,9.537340187,62.36423964,-60.05249023,24,150.0,89.89257813,-40.06958008,378.2958984,-84.59472656,17.1,218.1981308,,,0.884694031,,,,,,15 mM,-59.9841011,Bielefeld,temporal,68.0 +OP230209,Verji,2024-04-27,S3_D2,7,23209S3_D2c7,D2,Ctrl,25.0,no,23.94944444,8.797605912,140.5601509,-65.97900391,26,100.0,79.39453125,-30.85327148,365.9667969,-77.27050781,21.1,200.6398143,39,317.41058,0.83965797,,,,,,8 mM,-61.28153488,Bielefeld,temporal,63.0 +OP220228,Verji,2024-05-20,S3_D2,1,22228S3c1,D2,Ctrl,23.0,yes,40.96055556,6.6129101,35.81818408,-70.96557617,33,500.0,71.03271484,-27.27661133,207.3974609,-44.55566406,13.55,328.4071006,25,,1.365305654,,,,,,15 mM,-58.70795258,Bielefeld,temporal,33.0 +OP230314,Verji,2024-07-24,S4,5,23314S4c5,D1,Ctrl,0.0,no,10.49277778,19.62398843,79.94941876,-66.21704102,38,100.0,86.52954102,-39.14794922,397.3388672,-90.94238281,15.5,317.8372966,25,,0.77952187,,,282.879429,,,8 mM,-60.90761658,Virchow,temporal,12.0 +OP211209,Verji,2024-03-20,S1_D2,3,21d10S1_D2c3,D2,high K,18.0,no,30.52,12.46411919,80.59900233,-68.37768555,29,200.0,70.65429688,-32.04345703,204.8339844,-81.90917969,21.8,267.6442113,,,0.862808404,,,,,,15 mM,-57.73243149,Bielefeld,temporal,27.0 +OP221020,Verji,2024-01-28,S6_D2,2,22o21S6_D2c2,D2,high K,20.0,no,33.4275,21.01995359,57.54313245,-61.63330078,20,350.0,63.671875,-31.92138672,197.7539063,-46.14257813,26.15,767.8164875,12,,1.138023178,,,,,,8 mM,-62.82082886,Mitte,temporal,25.0 +OP211209,Verji,2024-03-15,S4,5,21d10S4c5,D1,TTX,0.0,no,16.86083333,6.647148777,35.55886975,-71.51489258,23,150.0,84.53979492,-37.1887207,360.5957031,-77.39257813,29.65,584.5795427,,,0.963097328,,,,,,15 mM,-58.30245193,Bielefeld,temporal,27.0 +OP230314,Verji,2024-07-24,S4,7,23314S4c7,D1,Ctrl,0.0,yes,10.49277778,8.867275172,51.33791997,-63.82446289,38,200.0,96.63085938,-40.49682617,505.7373047,-99.97558594,11.4,285.8111706,27,,0.760912792,,,304.390146,,,8 mM,-61.26670181,Virchow,temporal,12.0 +OP211209,Verji,2024-03-13,S3,7,21d10S3c7,D1,TTX,0.0,no,15.17694444,8.161538435,37.49641296,-50.26855469,27,250.0,77.12402344,-33.67919922,231.5673828,-81.29882813,15.3,380.3872534,,,0.896000758,,,,,,15 mM,-57.0918515,Bielefeld,temporal,27.0 +OP230209,Verji,2024-04-21,S2,2,23209S2c2,D1,high K,0.0,no,-2.874722222,10.1433057,74.89412827,-58.2824707,45,150.0,75.30517578,-33.3190918,320.1904297,-90.33203125,10.95,124.6732453,6,170.423521,0.752228432,,,,,,8 mM,-58.98840515,Bielefeld,temporal,63.0 +OP221027,Verji,2024-01-30,S2,1,22o27S2c1,D1,TTX,0.0,yes,9.679166667,6.155731873,51.43651151,-78.35693359,36,-300.0,85.16845703,-38.66577148,374.7558594,-77.02636719,23.75,396.2525458,8,,0.88592002,,,,,,8 mM,-53.55212463,Mitte,temporal,61.0 +OP220602,,2024-03-26,S1,6,22602S1c6,D1,high K,0.0,no,12.15055556,6.735870881,28.41774692,-72.80883789,31,150.0,80.16967773,-35.29663086,260.7421875,-74.34082031,16.35,307.0239542,4,,0.911651215,,,,,,8 mM,-59.97984024,,, +OP221027,Verji,2024-02-06,S3_D2,6,22o27S3_D2c6,D2,Ctrl,24.0,no,37.03916667,8.553550256,56.84382906,-66.21704102,27,150.0,89.33105469,-37.51220703,458.7402344,-94.48242188,17.05,349.6210263,manually corrected HW,,0.78221732,,,,,,8 mM,-61.95102509,Mitte,temporal,61.0 +OP211209,Verji,2024-03-18,S5,1,21d10S5c1,D1,high K,0.0,yes,18.54833333,7.811923414,36.90389115,-68.78662109,22,300.0,88.58642578,-34.97924805,367.3095703,-80.68847656,14.85,361.7879554,,,0.95847288,,,,,,15 mM,-62.18035385,Bielefeld,temporal,27.0 +OP231123,Verji,2024-03-25,S1,8,23n23S1c8,D1,Ctrl,0.0,no,9.935555556,9.160818923,94.36786612,-72.66845703,32,100.0,83.63647461,-35.13793945,314.5751953,-79.95605469,24.0,261.5337546,5,,0.932714846,262.2087403,,,,,8 mM,-60.18246964,Bielefeld,temporal,40.0 +OP240411,Verji,2024-02-09,S2_D2,4,24411S2c4,D2,high K,18.0,yes,33.32833333,8.805756443,75.59854705,-59.41772461,27,350.0,74.40185547,-29.01000977,285.7666016,-76.171875,9.9,208.217715,35,,0.822721551,284.0494683,,,,,8 mM,-64.57589218,Bielefeld,temporal,46.0 +OP220127,Rosie,2024-07-02,S2_D2,6,22128S2c6,D2,TTX,24.0,yes,46.36055556,11.25433813,32.36111316,-66.24145508,21,300.0,76.42211914,-41.60766602,314.3310547,-114.6240234,10.55,636.6526703,29,,0.638589762,,,,,29.0,15 mM,-61.0793013,Mitte,temporal,45.0 +OP240201,Verji,2024-03-06,S1_D2,2,24201S1_D2c2,D2,high K,20.0,no,29.45305556,11.40509985,96.18467695,-79.99267578,33,200.0,69.51904297,-29.83398438,254.3945313,-81.42089844,23.45,343.6536673,15,,0.777066731,332.7410914,,,,,8 mM,-59.44737183,Mitte,temporal,39.0 +OP220127,Rosie,2024-01-29,S3,3,22127S3c3,D1,TTX,0.0,yes,11.24444444,19.78402751,65.64620828,-77.13012695,23,50.0,91.63818359,-43.57299805,335.5712891,-84.9609375,32.05,389.9793539,12,,0.94437672,,,,,,15 mM,-57.59432983,Mitte,temporal,45.0 +OP220127,Rosie,2024-01-30,S3,4,22127S3c4,D1,TTX,0.0,yes,11.24444444,10.53439202,64.70151402,-76.98974609,24,50.0,91.70532227,-39.56298828,293.0908203,-83.49609375,22.95,281.5520779,13,,0.961157088,,,,,,15 mM,-59.91562134,Mitte,temporal,45.0 +OP211209,Verji,2024-03-16,S4,6,21d10S4c6,D1,TTX,0.0,no,16.86083333,8.442177704,43.11814899,-75.85449219,31,250.0,82.69042969,-37.24365234,220.0927734,-74.82910156,17.05,354.052218,,,0.988511271,,,,,,15 mM,-64.81771149,Bielefeld,temporal,27.0 +OP231123,Verji,2024-03-25,S2,4,23n23S2c4,D1,high K,0.0,no,11.95777778,7.894233982,173.8261386,-77.13012695,46,100.0,81.90307617,-35.77270508,334.1064453,-73.36425781,23.9,196.4764676,7,,0.89973391,240.2780093,,,,,8 mM,-58.19835022,Bielefeld,temporal,40.0 +OP220426,Verji,2024-01-20,S4,5,22427S4c5,D1,Ctrl,0.0,no,26.92055556,7.379796886,24.40440787,-61.43188477,30,450.0,85.8215332,-37.45117188,343.0175781,-74.95117188,5.45,261.472328,15,,0.956681649,,,,,,15 mM,-61.4922142,Bielefeld,temporal,60.0 +OP230209,Verji,2024-04-25,S3,4,23209S3c4,D1,Ctrl,0.0,no,-1.504722222,7.527234505,58.5992257,-72.71728516,42,150.0,84.99145508,-35.34545898,390.7470703,-84.59472656,15.2,223.2512775,14,170.288514,0.791140306,,,,,,8 mM,-60.02501266,Bielefeld,temporal,63.0 +OP211209,Verji,2024-03-22,S2_D2,3,21d10S2_D2c3,D2,Ctrl,18.0,no,32.85888889,9.561012032,40.38834816,-74.83520508,25,150.0,83.6730957,-40.96679688,244.3847656,-65.18554688,19.15,300.9626859,,,1.165189312,,,,,,15 mM,-58.31745102,Bielefeld,temporal,27.0 +OP220623,Verji,2024-01-09,S4,1,22623S4c1,D1,TTX,0.0,yes,12.90611111,7.128821582,39.45025408,-65.27709961,26,400.0,76.55029297,-33.06884766,311.2792969,-57.00683594,10.2,231.4637119,14,,1.097791645,,,,,,8 mM,-61.15372162,Mitte,frontal,32.0 +OP220322,Verji,2024-07-01,S2_D2,4,22322S2_D2c4,D2,TTX,22.0,no,34.94305556,7.454915676,27.69312709,-64.74609375,3,500.0,53.02734375,-28.13110352,110.1074219,-36.62109375,9.65,389.902836,20,,1.265881866,,,,,,15 mM,-61.44793198,Bielefeld,temporal,52.0 +OP240507,Verji,2024-01-10,S3,2,24507S3c2,D1,Ctrl,0.0,no,13.35833333,30.02004502,50.41696127,-52.75268555,9,1200.0,67.16308594,-36.02294922,321.7773438,-59.81445313,0.15,45.9364486,12; exclude; Rs_end > 30,,0.962486019,520.9373646,,,,,8 mM,-58.46185867,Hamburg,temporal,16.0 +OP220602,,2024-07-04,S2_D2,7,22602S2_D2c7,D2,Ctrl,22.0,no,36.10416667,17.83594806,51.42878852,-67.56591797,28,200.0,77.58178711,-35.34545898,227.9052734,-61.76757813,17.4,455.4019169,28,,1.083217872,,,,,,8 mM,-62.36792206,,, +OP220127,Rosie,2024-06-27,S1,4,22128S1c4,D1,Ctrl,0.0,yes,19.20166667,8.466725682,48.84358909,-75.91552734,36,250.0,84.69848633,-39.24560547,350.0976563,-75.56152344,14.9,331.9124405,2,,0.970145828,,,,,2.0,15 mM,-61.85932907,Mitte,temporal,45.0 +OP220322,Verji,2024-06-24,S1,7,22322S1c7,D1,Ctrl,0.0,no,10.66527778,6.552417488,29.5114112,-70.55053711,35,200.0,89.44702148,-38.13476563,357.6660156,-60.05859375,13.25,360.013267,3,,1.166368749,,,,,,15 mM,-61.08654404,Bielefeld,temporal,52.0 +OP221024,Verji,2024-06-10,S1,1,22o24S1c1,D1,high K,0.0,yes,21.08555556,10.90931827,69.32492654,-75.80566406,26,-300.0,88.72070313,-44.64111328,483.2763672,-65.18554688,15.95,204.4794992,0,,1.121075787,,,,,,8 mM,-57.89408249,Bielefeld,temporal,42.0 +OP230808,Verji,2024-04-02,S3,5,23808S3c5,D1,Ctrl,0.0,no,10.92722222,7.88960956,60.04895348,-80.54199219,19,100.0,90.21606445,-39.6484375,397.9492188,-74.58496094,26.7,479.9262754,18,605.0301677,1.073589231,,,,,,8 mM,-61.89890442,Hamburg,temporal,14.0 +OP230109,Verji,2024-02-23,S2_D2,1,2311S2c1,D2,high K,24.0,yes,46.09027778,10.24690558,54.58327572,-68.37768555,30,200.0,82.31201172,-36.63330078,411.0107422,-70.3125,8.4,156.5706485,30,,0.888556758,,,,,,8 mM,-61.58459412,Bielefeld,temporal,42.0 +OP211123,Rosie,2024-04-03,S2,8,2021_11_24_0S2c8,D1,TTX,0.0,no,23.76555556,11.54494517,151.3791249,-63.58642578,34,100.0,88.74511719,-44.23828125,285.5224609,-65.30761719,15.6,170.5072715,,,1.11684723,,,,,,15 mM,-59.82180786,Bielefeld,temporal,68.0 +OP240503,Verji,2024-04-29,S3_D2,5,24503S3c5,D2,high K,17.0,yes,29.17055556,9.794647626,73.17793985,-72.59521484,26,150.0,75.65307617,-30.18798828,267.9443359,-83.74023438,21.55,297.0763147,34,,0.823667157,346.4515484,,,,,8 mM,-60.72475372,Mitte,temporal,36.0 +OP240117,Verji,2024-07-26,S1,7,24117S1c7,D1,Ctrl,0.0,no,9.007222222,11.22800094,229.6532263,-71.89941406,48,100.0,79.86450195,-37.56713867,274.5361328,-83.86230469,17.55,134.7418932,1,,0.859229402,171.8757292,,,,,8 mM,-60.10082916,Hamburg,temporal,55.0 +OP220217,Verji,2024-05-24,S1,1,22217S1c1,D1,Ctrl,0.0,yes,7.946944444,10.66103213,76.33388378,-73.3215332,36,150.0,77.08740234,-38.80004883,184.8144531,-87.890625,21.45,256.4296242,0,,0.868433288,,,,,,15 mM,-60.9327861,Mitte,temporal,17.0 +OP240507,Verji,2024-01-09,S2,4,24507S2c4,D1,high K,0.0,no,10.99111111,12.36416637,72.87736705,-62.17041016,16,100.0,80.94482422,-38.04321289,271.3623047,-72.265625,27.45,506.1798537,7,,1.022462166,197.6765892,,,,,8 mM,-59.10916031,Hamburg,temporal,16.0 +OP230817,Verji,2024-05-02,S1,2,23817S1c2,D1,TTX,0.0,no,5.061944444,13.18504707,56.66863871,-71.70410156,33,100.0,82.40356445,-39.27001953,268.7988281,-77.1484375,22.85,412.0796918,1,468.6156,0.954787802,,,,,,8 mM,-60.9901799,Mitte,temporal,47.0 +OP220914,Verji,2024-07-04,S1,4,22915S1c4,D1,high K,0.0,no,22.15861111,11.32184087,186.5099615,-70.29418945,15,50.0,81.89697266,-34.57641602,182.0068359,-24.90234375,20.35,161.616287,2,,2.464322583,,,,,,8 mM,-59.02662552,Bielefeld,temporal,21.0 +OP230109,Verji,2024-02-22,S1,8,2311S1c8,D1,TTX,0.0,yes,19.0325,6.148548937,25.34815766,-71.38061523,26,250.0,89.93530273,-37.35351563,462.6464844,-84.83886719,13.15,403.6526464,manually_corrected,,0.843977527,,,,,,8 mM,-59.76012955,Bielefeld,temporal,42.0 +OP230808,Verji,2024-04-03,S5,1,23808S5c1,D1,Ctrl,0.0,no,24.79277778,7.618060495,46.22288171,-66.62597656,29,500.0,79.82177734,-35.47973633,329.2236328,-59.44824219,14.2,417.6890485,26,540.9180306,1.071890005,,,,,,8 mM,-62.24109924,Hamburg,temporal,14.0 +OP221020,Verji,2024-01-27,S4_D2,2,22o21S4_D2c2,D2,TTX,20.0,no,29.72861111,8.398708399,35.9606823,-66.45507813,11,450.0,61.81030273,-23.88305664,193.7255859,-48.828125,20.6,440.3266797,1,,1.182197457,,,,,,8 mM,-63.15130936,Mitte,temporal,25.0 +OP210615,Rosie,2024-03-03,S1,4,2021_06_15_0S1c4,D1,TTX,0.0,no,6.974444444,25.3842994,67.79520399,-74.51782227,26,550.0,46.03881836,-35.40039063,99.85351563,-29.05273438,5.5,103.6962025,,,1.796833186,,,,,,15 mM,-74.49651169,Virchow,temporal,19.0 +OP201029,Rosie,2024-03-25,S2,7,20o29S2c7,D1,TTX,0.0,no,9.434722222,9.222800216,69.51135532,-62.3046875,17,350.0,63.89770508,-31.7199707,148.6816406,-51.7578125,11.65,212.4358375,,,1.170198307,,,,,,15 mM,-62.32721558,Mitte,temporal,47.0 +OP220322,Verji,2024-06-26,S1_D2,3,22322S1_D2c3,D2,Ctrl,22.0,no,32.92194444,4.849723324,20.08404265,-63.33618164,17,700.0,85.57128906,-40.74707031,297.6074219,-59.93652344,7.85,381.6451039,15,,1.158748512,,,,,,15 mM,-61.61914749,Bielefeld,temporal,52.0 +OP240117,Verji,2024-07-26,S2,6,24117S2c6,D1,Ctrl,0.0,no,10.20888889,10.77712533,77.17935481,-57.77587891,27,200.0,81.74438477,-38.8671875,293.8232422,-86.9140625,12.6,240.6041958,2,,0.854404659,145.0548352,,,,,8 mM,-61.56998184,Hamburg,temporal,55.0 +OP220127,Rosie,2024-01-31,S3_D2,5,22127S3c5,D2,TTX,23.0,yes,34.94666667,9.305166246,45.0640029,-79.79125977,16,250.0,80.59692383,-42.37060547,256.2255859,-80.20019531,12.15,283.5692308,34,,0.929923618,,,,,,15 mM,-62.90384979,Mitte,temporal,45.0 +OP240503,Verji,2024-04-28,S2,3,24503S2c3,D1,Ctrl,0.0,yes,9.624722222,11.99764633,59.64439376,-57.95288086,22,250.0,80.03540039,-36.20605469,254.6386719,-62.62207031,0.15,523.5212,cap manual adjustment,,1.172528054,225.4275143,,,,,8 mM,-60.83785049,Mitte,temporal,36.0 +OP220602,,2024-04-27,S2,3,22602S2c3,D1,Ctrl,0.0,no,13.75444444,8.545286944,50.64742043,-69.67163086,29,150.0,80.37109375,-34.66186523,287.4755859,-79.58984375,15.8,226.4804899,8,,0.90884302,,,,,,8 mM,-58.4927977,,, +OP220120,Rosie,2024-07-30,S1,8,22121S1c8,D1,Ctrl,0.0,yes,23.69722222,16.700897,127.932848,-65.31982422,37,150.0,80.71899414,-38.97094727,226.8066406,-87.03613281,18.65,241.5506719,,,0.882391202,,,,,,15 mM,-64.48043945,Bielefeld,temporal,50.0 +OP220322,Verji,2024-07-03,S3_D2,3,22322S3_D2c3,D2,high K,22.0,no,36.52277778,16.56685795,52.72689878,-58.93554688,29,250.0,81.68334961,-38.50097656,314.3310547,-58.22753906,5.95,165.7904762,22,,1.166314147,,,,,,15 mM,-63.02653992,Bielefeld,temporal,52.0 +OP220120,Rosie,2024-03-02,S2_D2,5,22122S2_D2c5,D2,TTX,23.0,no,37.98083333,7.547028107,21.20599429,-50.01831055,6,900.0,34.77172852,-23.08959961,47.36328125,-17.33398438,0.15,15.60380952,18,,1.178113553,,,,,,15 mM,-59.23936127,Bielefeld,temporal,50.0 +OP211209,Verji,2024-03-13,S3,5,21d10S3c5,D1,TTX,0.0,no,15.17694444,6.423325674,43.69179197,-75.50048828,35,250.0,79.12597656,-32.63549805,276.9775391,-70.92285156,16.15,309.2946815,,,1.003666938,,,,,,15 mM,-59.35357269,Bielefeld,temporal,27.0 +OP220127,Rosie,2024-01-31,S3_D2,4,22127S3c4,D2,TTX,23.0,yes,34.94666667,11.37950073,47.43267185,-75.09155273,27,300.0,76.2512207,-37.07275391,221.5576172,-65.55175781,13.55,293.6550265,33,,1.032847797,,,,,,15 mM,-63.25423325,Mitte,temporal,45.0 +OP240117,Verji,2024-07-30,S1_D2,8,24117S1_D2c8,D2,Ctrl,23.0,no,30.95694444,8.928242871,70.41242606,-57.01904297,30,200.0,78.47290039,-31.32324219,306.640625,-72.50976563,15.35,258.8722594,7,,0.931446463,185.1061702,,,,,8 mM,-60.7899501,Hamburg,temporal,55.0 +OP221027,Verji,2024-02-01,S2,3,22o27S2c3,D1,TTX,0.0,no,9.679166667,7.058307001,31.33281368,-53.61328125,24,250.0,73.26660156,-35.53466797,277.8320313,-56.88476563,17.75,469.815832,10,,1.076363284,,,,,,8 mM,-56.43325989,Mitte,temporal,61.0 +OP230523,Verji,2024-03-10,S2,7,23523S2c7,D1,high K,0.0,yes,11.8525,17.02795599,103.6896391,-76.83105469,31,-300.0,82.44628906,-38.83056641,357.1777344,-67.74902344,31.2,368.950415,12,363.5521184,1.038446744,,,,,,8 mM,-59.48517334,Hamburg,temporal,16.0 +OP240321,Verji,2024-04-13,S4,3,24321S4c3,D1,high K,0.0,no,14.44,12.76562276,54.90833548,-77.68554688,33,50.0,88.06762695,-45.08666992,348.1445313,-82.27539063,29.4,499.9373119,21,,0.914276019,617.4205807,,,,,8 mM,-61.18321259,Bielefeld,temporal,31.0 +OP220111,Rosie,2024-06-16,S1_D2,8,22112S1_D2c8,D2,TTX,21.0,no,33.63027778,9.508328482,109.0676843,-60.87036133,30,50.0,82.04345703,-33.80126953,326.4160156,-69.58007813,23.25,220.6359687,17,,0.948149574,,,,,,15 mM,-60.79352325,Bielefeld,temporal,51.0 +OP220127,Rosie,2024-07-06,S3_D2,3,22128S3c6,D2,high K,24.0,yes,48.57888889,11.92603885,46.01566112,-72.58911133,21,200.0,77.734375,-31.39648438,311.7675781,-87.52441406,16.2,346.5023499,35,,0.792883928,,,,,35.0,15 mM,-59.70334335,Mitte,temporal,45.0 +OP230420,Verji,2024-01-02,S1,8,23420S1c8,D1,TTX,0.0,yes,10.41638889,6.000399595,31.59991662,-70.55053711,22,350.0,81.01196289,-33.06884766,309.4482422,-61.40136719,16.65,575.5139241,5,786.9278976,1.182829516,,,,,,8 mM,-60.9563504,Bielefeld,temporal,13.0 +OP220228,Verji,2024-05-21,S3,3,22228S3c3,D1,Ctrl,0.0,no,16.45583333,10.60749625,50.49957333,-72.90039063,41,100.0,97.15576172,-42.70629883,453.9794922,-80.078125,16.65,283.5692308,12,,0.97542911,,,,,,15 mM,-59.45195053,Bielefeld,temporal,33.0 +OP230209,Verji,2024-04-21,S2,1,23209S2c1,D1,high K,0.0,yes,-2.874722222,5.639504191,41.17612284,-62.64648438,39,450.0,71.65527344,-30.96923828,253.0517578,-72.63183594,12.8,289.6618785,5,677.995933,0.847731689,,,,,,8 mM,-59.82920959,Bielefeld,temporal,63.0 +OP220228,Verji,2024-05-19,S2,5,22228S2c5,D1,TTX,0.0,no,14.85305556,9.695520539,50.1463858,-57.25708008,40,150.0,86.54174805,-38.37280273,301.0253906,-98.99902344,21.4,528.0385542,8,,0.797740167,,,,,,15 mM,-60.16049988,Bielefeld,temporal,33.0 +OP231109,Verji,2024-01-14,S2,7,23n09S2c7,D1,high K,0.0,no,5.535,9.106013132,96.0378979,-75.08544922,37,150.0,86.92016602,-36.98120117,331.6650391,-87.76855469,19.8,469.129718,11,,0.83326724,307.9902663,,,,,8 mM,-59.81362976,Mitte,temporal,44.0 +OP220127,Rosie,2024-07-07,S3,7,22128S3c7,D1,high K,0.0,no,22.49333333,9.593420684,78.66628856,-74.59106445,31,250.0,87.92114258,-37.12768555,344.3603516,-92.89550781,15.5,294.7788741,18,,0.863457534,,,,,18.0,15 mM,-70.70372269,Mitte,temporal,45.0 +OP231123,Verji,2024-03-25,S1_D2,8,23n23S1_D2c8,D2,Ctrl,19.0,no,30.38972222,9.495077355,140.6327013,-82.31811523,19,200.0,71.33789063,-33.22753906,234.4970703,-67.74902344,13.7,226.6136295,16,,0.977783695,244.7481583,,,,,8 mM,-57.24612091,Bielefeld,temporal,40.0 +OP220322,Verji,2024-06-24,S1,3,22322S1c3,D1,Ctrl,0.0,no,10.66527778,7.194921663,30.39460455,-65.58837891,23,250.0,85.76660156,-37.91503906,330.5664063,-87.76855469,11.6,289.9380625,0,,0.896503946,,,,,,15 mM,-61.79714706,Bielefeld,temporal,52.0 +OP221024,Verji,2024-06-11,S2,1,22o24S2c1,D1,TTX,0.0,no,22.44666667,8.604516549,30.18913213,-48.68774414,2,350.0,37.06665039,-20.50170898,65.30761719,-27.83203125,8.7,342.2348139,8,,1.084805891,,,,,,8 mM,-57.17624695,Bielefeld,temporal,42.0 +OP220602,,2024-03-07,S1_D2,4,22602S1c5,D2,high K,22.0,yes,34.415,11.30825342,47.25974236,-47.05200195,1,200.0,73.33374023,-40.67993164,159.0576172,-57.6171875,3.6,159.6276049,22,,1.196744513,,,,,,8 mM,-53.83101349,,, +OP240503,Verji,2024-04-28,S2,6,24503S2c6,D1,Ctrl,0.0,no,9.624722222,13.68131269,54.08439262,-65.35644531,28,200.0,84.11254883,-39.08081055,303.5888672,-64.453125,21.9,582.4831169,11,,1.218793035,370.4823494,,,,,8 mM,-57.38546188,Mitte,temporal,36.0 +OP220127,Rosie,2024-06-28,S1_D2,5,22128S1c4,D2,Ctrl,24.0,yes,44.1275,9.749425824,48.43487491,-69.51904297,40,200.0,89.16015625,-37.73803711,422.3632813,-77.1484375,9.8,227.5878101,26,,0.976986885,,,,,26.0,15 mM,-61.6497551,Mitte,temporal,45.0 +OP211123,Rosie,2024-01-10,S2,5,21n23S2c5,D1,high K,0.0,no,13.02277778,7.943163267,33.79817611,-61.62719727,25,250.0,87.3046875,-29.77905273,298.2177734,-75.43945313,14.15,298.1782637,,,0.985890698,,,,,,15 mM,-61.2234761,Bielefeld,temporal,68.0 +OP230808,Verji,2024-04-06,S6,4,23808S6c4,D1,high K,0.0,yes,26.92027778,8.558555913,66.21168608,-81.59179688,15,150.0,87.21313477,-37.41455078,358.1542969,-78.00292969,25.8,430.8941896,34,672.2924097,1.007731375,,,,,,8 mM,-60.77840912,Hamburg,temporal,14.0 +OP220217,Verji,2024-06-07,S2_D2,8,22218S2_D2c8,D2,TTX,22.0,no,34.75305556,11.92866691,194.6156853,-54.52270508,30,100.0,76.04370117,-36.74926758,265.0146484,-82.76367188,15.2,122.0469493,28,,0.858798686,,,,,,15 mM,-60.15599762,Mitte,temporal,17.0 +OP230808,Verji,2024-03-30,S2,8,23808S2c8,D1,high K,0.0,yes,9.599722222,7.826529285,38.6927171,-74.5300293,23,150.0,88.03710938,-39.41040039,352.0507813,-69.94628906,22.6,532.3916607,14,691.6430548,1.054541814,,,,,,8 mM,-62.34673767,Hamburg,temporal,14.0 +OP220811,Verji,2024-06-08,S2_D2,4,22811S2_D2c4,D2,high K,17.0,no,23.26527778,8.987975656,62.07735907,-59.1796875,26,300.0,68.73779297,-26.61743164,212.1582031,-48.21777344,14.85,240.2986667,2; exclude; Rs_end > 30,,1.18450913,,,,,,8 mM,-60.19162048,Mitte,temporal,18.0 +OP211209,Verji,2024-03-18,S4,8,21d10S4c8,D1,TTX,0.0,no,16.86083333,9.561624237,92.74219702,-69.61669922,28,100.0,89.44091797,-39.41040039,297.8515625,-79.58984375,15.0,204.7147022,,,0.986719179,,,,,,15 mM,-60.10773666,Bielefeld,temporal,27.0 +OP221024,Verji,2024-06-14,S2,6,22o24S2c6,D1,TTX,0.0,no,22.44666667,6.338786573,36.02503119,-71.08764648,22,300.0,88.46435547,-37.79296875,431.3964844,-70.55664063,10.9,281.2371654,12,,0.954466435,,,,,,8 mM,-61.42349838,Bielefeld,temporal,42.0 +OP230109,Verji,2024-02-24,S2,2,2311S2c2,D1,high K,0.0,no,20.8525,13.02227706,157.2082139,-62.39013672,17,-300.0,71.34399414,-30.51757813,207.2753906,-39.91699219,16.55,104.7942802,8,,1.527415926,,,,,,8 mM,-55.10668106,Bielefeld,temporal,42.0 +OP220120,Rosie,2024-02-28,S1_D2,5,22122S1_D2c5,D2,high K,23.0,no,36.00722222,7.813918798,53.54980264,-76.09863281,18,200.0,84.13085938,-37.45727539,348.2666016,-87.03613281,15.7,300.6765634,14,,0.849123416,,,,,,15 mM,-61.38199173,Bielefeld,temporal,50.0 +OP201029,Rosie,2024-03-19,S1,3,20o29S1c3,D1,Ctrl,0.0,no,7.865555556,15.91559064,77.16436189,-61.04125977,22,100.0,70.59936523,-43.93920898,174.0722656,-49.8046875,9.8,175.7670498,,,1.289478466,,,,,,15 mM,-61.00458221,Mitte,temporal,47.0 +OP240215,Verji,2024-02-11,S1_D2,1,24215S1c1,D2,Ctrl,17.0,yes,28.55416667,9.06040533,62.48006637,-64.59350586,17,200.0,75.43334961,-34.01489258,237.6708984,-58.10546875,23.3,523.6587106,12,,1.156730682,268.6289543,,,,,8 mM,-61.11916382,Bielefeld,temporal,30.0 +OP220127,Rosie,2024-01-25,S2,5,22127S2c5,D1,high K,0.0,yes,9.303888889,8.227546136,45.926301,-73.65722656,33,150.0,88.70239258,-37.05444336,331.2988281,-101.8066406,17.65,313.3018418,8,,0.789142101,,,,,,15 mM,-58.84163193,Mitte,temporal,45.0 +OP240417,Verji,2024-02-16,S1,7,24417S1c7,D1,Ctrl,0.0,no,9.533055556,10.9010961,66.66537083,-57.94067383,31,250.0,77.47192383,-32.98950195,275.8789063,-87.76855469,18.15,389.7373526,6,,0.835423376,229.6276543,,,,,8 mM,-60.97737152,Hamburg,temporal,29.0 +OP230420,Verji,2024-01-03,S2_D2,2,23420S2c2,D2,high K,19.0,yes,30.98388889,9.968065615,36.3802336,-68.51196289,24,400.0,84.40551758,-30.52978516,394.0429688,-75.07324219,11.6,390.6565262,31,765.9555319,0.930062058,,,,,,8 mM,-59.85708862,Bielefeld,temporal,13.0 +OP220322,Verji,2024-06-27,S1_D2,5,22322S1_D2c5,D2,Ctrl,22.0,no,32.92194444,10.37364917,46.67805794,-68.74389648,41,200.0,81.38427734,-39.66064453,284.7900391,-75.1953125,10.5,268.8,16,,0.983115732,,,,,,15 mM,-61.79618927,Bielefeld,temporal,52.0 +OP220308,Verji,2024-06-21,S1_D2,7,22308S1c8,D2,Ctrl,20.0,yes,36.46888889,16.18039871,112.6543651,-47.14355469,20,200.0,72.20458984,-37.92724609,200.5615234,-53.22265625,11.4,154.5532478,14,,1.208637391,,,,,,15 mM,-57.81399338,Bielefeld,temporal,52.0 +OP231123,Verji,2024-03-24,S1,1,23n23S1c1,D1,Ctrl,0.0,no,9.935555556,7.385476161,58.31092722,-71.02050781,34,150.0,80.08422852,-34.46044922,333.8623047,-72.02148438,25.6,359.2551606,0,,0.948385447,496.6665556,,,,,8 mM,-57.68329117,Bielefeld,temporal,40.0 +OP230314,Verji,2024-07-18,S2,7,23314S2c7,D1,high K,0.0,no,7.5825,9.881555581,132.2281346,-75.51269531,48,100.0,81.68334961,-31.49414063,418.4570313,-109.8632813,13.05,147.7617139,11,,0.628082553,,,303.940131,,,8 mM,-60.27200439,Virchow,temporal,12.0 +OP221027,Verji,2024-02-05,S3,3,22o27S3c3,D1,Ctrl,0.0,no,11.07,9.843946351,54.92829172,-56.53686523,24,150.0,80.75561523,-35.94360352,299.1943359,-63.96484375,13.6,228.6530528,17,,1.055618671,,,,,,8 mM,-58.39441132,Mitte,temporal,61.0 +OP230109,Verji,2024-02-22,S1,2,2311S1c2,D1,TTX,0.0,yes,19.0325,7.74627878,47.439058,-71.77124023,35,100.0,91.74804688,-37.63427734,442.9931641,-67.87109375,19.3,273.6574643,1,,1.015149893,,,,,,8 mM,-55.71777023,Bielefeld,temporal,42.0 +OP231109,Verji,2024-01-14,S2,2,23n09S2c2,D1,high K,0.0,yes,5.535,8.860476921,71.09933762,-66.64428711,43,100.0,79.96826172,-37.5,257.5683594,-67.01660156,17.8,228.7334902,8,,1.026145745,253.7484583,,,,,8 mM,-60.68150299,Mitte,temporal,44.0 +OP240215,Verji,2024-02-11,S2_D2,2,24215S2c2,D2,high K,17.0,yes,30.47527778,12.95342465,39.00108534,-73.18725586,21,150.0,82.97119141,-36.20605469,326.7822266,-87.03613281,18.35,382.2586141,17; exclude; Rs_end > 30,,0.832962082,748.1349378,,,,,8 mM,-58.07454956,Bielefeld,temporal,30.0 +OP210323,Rosie,2024-04-09,S1,1,2021_03_24_0S1c1,D1,TTX,0.0,yes,16.9575,14.31061635,153.6424644,-71.32568359,32,150.0,74.71313477,-38.67797852,498.2910156,-165.6494141,7.65,86.61893573,manually_corrected,,0.426141583,,,,,,15 mM,-71.3042009,Virchow,temporal,10.0 +OP221027,Verji,2024-02-02,S2,5,22o27S2c5,D1,TTX,0.0,no,9.679166667,10.17094489,107.7500857,-71.59423828,38,-300.0,89.5690918,-38.97094727,381.7138672,-60.42480469,14.95,139.2104575,12,,1.24877545,,,,,,8 mM,-57.30952667,Mitte,temporal,61.0 +OP220127,Rosie,2024-07-25,S2_D2,8,22129S2_D2c8,D2,TTX,24.0,no,47.00861111,9.003465897,48.65744516,-65.02075195,24,250.0,79.90722656,-32.98339844,360.1074219,-75.07324219,14.1,323.0970629,33,,0.874637044,,,,,33.0,15 mM,-61.22446808,Mitte,temporal,45.0 +OP240201,Verji,2024-03-05,S2,1,24201S2c1,D1,Ctrl,0.0,no,11.55388889,7.517338792,52.8149681,-67.90161133,28,250.0,85.60791016,-33.54492188,408.8134766,-81.54296875,19.55,443.6387812,8,,0.913293499,550.6983566,,,,,8 mM,-61.21498108,Mitte,temporal,39.0 +OP220518,Verji,2024-07-11,S3_D2,6,22519S3_D2c6,D2,TTX,24.0,no,49.34388889,12.58692067,111.0820022,-67.34008789,6,-300.0,69.58618164,-36.06567383,222.0458984,-61.5234375,11.1,86.64240114,33,,0.984123863,,,,,,15 mM,-59.16946442,Bielefeld,frontal,37.0 +OP210323,Rosie,2024-05-22,S5,2,2021_03_24_0S5c1,D1,Ctrl,0.0,no,25.06138889,13.23396972,174.7552574,-65.69824219,28,100.0,92.22412109,-40.06347656,487.7929688,-96.55761719,16.35,137.6205497,19,,0.810843979,,,,,,15 mM,-69.88251038,Virchow,temporal,10.0 +OP240417,Verji,2024-02-18,S3,6,24417S3c6,D1,Ctrl,0.0,yes,15.24944444,17.95915531,51.57457558,-48.95019531,23,100.0,80.68237305,-40.35644531,255.3710938,-85.81542969,22.3,289.511252,19; exclude; Rs_end > 30; exclude; Rs_end > 30,,0.884513624,,,,,,8 mM,-67.18292725,Hamburg,temporal,29.0 +OP240321,Verji,2024-04-09,S1,8,24321S1c8,D1,high K,0.0,no,9.830277778,8.687671673,51.21022987,-65.52124023,37,150.0,78.85742188,-35.36987305,256.3476563,-79.34570313,20.1,337.7624615,5,,0.919938703,310.1203373,,,,,8 mM,-57.74256592,Bielefeld,temporal,31.0 +OP240411,Verji,2024-02-06,S1,8,24411S1c8,D1,Ctrl,0.0,no,11.24083333,23.64922188,56.36350039,-64.52636719,40,100.0,76.11694336,-37.08496094,257.0800781,-75.68359375,19.65,242.2465011,7; exclude; Rs_end > 30,,0.911321783,212.1370712,,,,,8 mM,-60.41564621,Bielefeld,temporal,46.0 +OP220518,Verji,2024-07-09,s6,2,22519s6c2,D1,Ctrl,0.0,no,32.00833333,19.43667951,104.0752817,-64.47143555,17,100.0,88.22021484,-42.39501953,334.4726563,-76.41601563,5.2,79.06895592,23,,0.903747566,,,,,,15 mM,-63.46298508,Bielefeld,frontal,37.0 +OP240321,Verji,2024-04-13,S3,7,24321S3c7,D1,Ctrl,0.0,no,13.06416667,8.810649087,83.3280164,-68.87817383,30,150.0,80.5847168,-36.85302734,272.5830078,-81.0546875,22.65,395.6264392,19,,0.937969456,339.9413314,,,,,8 mM,-59.20139679,Bielefeld,temporal,31.0 +OP210323,Rosie,2024-05-29,S6,2,2021_03_24_0S6c3,D1,TTX,0.0,no,27.590278,10.86341128,72.95862741,-73.02246094,15,300.0,56.04248047,-29.03442383,125.2441406,-41.25976563,9.5,222.6723891,24,,1.287480605,,,,,,15 mM,-71.70164139,Virchow,temporal,10.0 +OP240201,Verji,2024-03-06,S1_D2,5,24201S1_D2c5,D2,high K,20.0,no,29.45305556,6.58356222,62.71807114,-75.83618164,18,350.0,71.82617188,-26.37939453,301.7578125,-74.82910156,19.8,410.636962,16,,0.82397949,745.7348578,,,,,8 mM,-61.77360016,Mitte,temporal,39.0 +OP230817,Verji,2024-05-11,S2_D2,7,23817S2_D2c7,D2,high K,23.0,no,29.09,8.815965302,45.82001767,-71.96044922,23,350.0,66.1315918,-29.03442383,188.9648438,-66.40625,15.7,302.978563,28,130.2343,0.942265993,,,,,,8 mM,-59.94914551,Mitte,temporal,47.0 +OP220111,Rosie,2024-06-15,S5_D2,6,22112S5_D2c6,D2,Ctrl,23.0,no,29.92472222,14.2039051,59.35750619,-62.28637695,36,100.0,93.73168945,-40.20996094,410.6445313,-81.90917969,20.0,388.0165779,7,,0.923648235,,,,,,15 mM,-62.28728912,Bielefeld,temporal,51.0 +OP211209,Verji,2024-03-17,S4,7,21d10S4c7,D1,TTX,0.0,no,16.86083333,7.449245635,41.67053868,-73.89526367,27,250.0,87.59155273,-35.05249023,331.5429688,-68.60351563,13.6,320.8385889,,,1.096537811,,,,,,15 mM,-65.3482486,Bielefeld,temporal,27.0 +OP221027,Verji,2024-02-05,S3,2,22o27S3c2,D1,Ctrl,0.0,yes,11.07,9.953828519,70.89452357,-73.49243164,33,50.0,84.93652344,-35.79101563,334.8388672,-75.07324219,19.85,220.4150457,16,,0.915298627,,,,,,8 mM,-55.20203781,Mitte,temporal,61.0 +OP240201,Verji,2024-03-05,S1,8,24201S1c8,D1,high K,0.0,no,9.856111111,8.334526892,74.69525761,-73.31542969,37,200.0,83.97216797,-37.49389648,312.6220703,-79.46777344,19.9,327.351004,7,,0.91553694,315.9105304,,,,,8 mM,-69.47863617,Mitte,temporal,39.0 +OP220308,Verji,2024-06-23,S3,8,22308S3c8,D1,TTX,0.0,no,15.60305556,9.160275916,47.96446617,-51.55029297,46,250.0,86.04125977,-39.06860352,251.953125,-63.4765625,7.8,198.903035,13,,1.152188325,,,,,,15 mM,-0.284614105,Bielefeld,temporal,52.0 +OP220811,Verji,2024-06-08,S2_D2,3,22811S2_D2c3,D2,high K,17.0,no,23.26527778,7.055187576,38.20410092,-62.73803711,22,450.0,73.91357422,-28.77197266,279.7851563,-52.36816406,20.65,508.7663158,1,,1.158498711,,,,,,8 mM,-62.72726624,Mitte,temporal,18.0 +OP211209,Verji,2024-03-23,S2_D2,8,21d10S2_D2c8,D2,Ctrl,18.0,no,32.85888889,15.32648948,144.0754068,-66.65039063,29,100.0,75.40283203,-33.94165039,191.2841797,-61.27929688,20.4,158.0300709,,,1.06437926,,,,,,15 mM,-55.53968887,Bielefeld,temporal,27.0 +OP220602,,2024-06-22,S3,7,22602S3c7,D1,TTX,0.0,yes,15.22916667,6.921903777,27.3294225,-66.41845703,31,350.0,77.74658203,-32.33032227,247.8027344,-61.64550781,12.55,370.1515752,18,,1.028800854,,,,,,8 mM,-62.95790314,,, +OP230109,Verji,2024-02-28,S3_D2,5,2311S3c7,D2,Ctrl,24.0,yes,48.18694444,10.02771222,36.0568183,-63.64135742,25,350.0,80.52978516,-36.46240234,330.4443359,-75.68359375,10.2,303.0223028,43,,0.954831846,,,,,,8 mM,-61.23121948,Bielefeld,temporal,42.0 +OP230810,Verji,2024-05-13,S2,3,23810S2c3,D1,TTX,0.0,no,7.043055556,9.813709187,43.30366327,-68.34716797,33,150.0,92.21801758,-38.21411133,503.4179688,-82.51953125,18.15,511.3836629,8,579.0793,0.927930576,,,,,,8 mM,-60.64728134,Mitte,temporal,63.0 +OP211123,Rosie,2024-01-05,S1,5,21n23S1c5,D1,Ctrl,0.0,no,10.71861111,7.587403374,34.49835345,-69.14672852,20,400.0,84.66796875,-38.7512207,291.1376953,-77.1484375,12.05,350.048227,,,0.97193521,,,,,,15 mM,-69.13230453,Bielefeld,temporal,68.0 +OP220228,Verji,2024-05-24,S3_D2,2,22228S3_D2c2,D2,Ctrl,23.0,no,40.96055556,8.828194156,31.56405404,-70.99609375,20,500.0,74.07836914,-30.36499023,238.0371094,-59.44824219,11.55,347.5393939,26,,1.025796648,,,,,,15 mM,-61.48842606,Bielefeld,temporal,33.0 +OP210323,Rosie,2024-04-15,S1,4,2021_03_24_0S1c4,D1,TTX,0.0,yes,16.9575,6.001432419,44.45456791,-72.09472656,15,500.0,88.07983398,-36.95068359,419.921875,-75.80566406,14.3,458.495499,manually_corrected,,1.112123198,,,,,,15 mM,-72.08970688,Virchow,temporal,10.0 +OP240201,Verji,2024-03-07,S1_D2,7,24201S1_D2c7,D2,high K,20.0,no,29.45305556,7.857365917,63.98318093,-67.02880859,19,250.0,67.79785156,-28.69262695,217.2851563,-62.01171875,18.25,390.6048334,17,,1.004357392,353.6517884,,,,,8 mM,-61.25591019,Mitte,temporal,39.0 +OP220518,Verji,2024-07-11,S3_D2,7,22519S3_D2c7,D2,TTX,24.0,no,49.34388889,7.162305858,39.71913713,-67.42553711,10,200.0,67.84057617,-27.6184082,229.9804688,-50.90332031,14.35,289.7232286,34,,1.212847368,,,,,,15 mM,-57.12844147,Bielefeld,frontal,37.0 +OP230209,Verji,2024-04-26,S3,5,23209S3c5,D1,Ctrl,0.0,no,-1.504722222,19.30694502,211.04548,-49.43237305,31,-300.0,70.88623047,-26.92260742,277.8320313,-112.0605469,9.2,60.48667737,15,35.341767,0.627174591,,,,,,8 mM,-51.47344025,Bielefeld,temporal,63.0 +OP220127,Rosie,2024-01-25,S2,6,22127S2c6,D1,high K,0.0,no,9.303888889,6.663364233,37.43311749,-76.01928711,25,150.0,90.94848633,-39.80102539,334.8388672,-92.7734375,17.85,372.7908222,9,,0.851883301,,,,,,15 mM,-61.24170425,Mitte,temporal,45.0 +OP221024,Verji,2024-06-13,S2,2,22o24S2c2,D1,TTX,0.0,no,22.44666667,8.03896903,38.1246931,-68.13354492,23,250.0,86.06567383,-35.80322266,358.3984375,-78.97949219,12.55,311.3084027,9,,0.963505408,,,,,,8 mM,-60.434897,Bielefeld,temporal,42.0 +OP240117,Verji,2024-07-28,S2,8,24117S2c8,D1,Ctrl,0.0,no,10.20888889,15.31146402,71.15142991,-56.62841797,37,500.0,80.859375,-36.4440918,260.9863281,-66.16210938,8.5,308.4473976,4,,1.034090488,155.9751992,,,,,8 mM,-65.71673477,Hamburg,temporal,55.0 +OP220518,Verji,2024-07-13,S6_D2,3,22519S6_D2c3,D2,Ctrl,24.0,no,54.17388889,14.59702048,130.0090539,-70.8190918,25,100.0,88.2019043,-39.87426758,475.2197266,-85.44921875,15.65,120.0700539,manually_correctde,,0.88999314,,,,,,15 mM,-61.47412048,Bielefeld,frontal,37.0 +OP221027,Verji,2024-02-05,S3,7,22o27S3c7,D1,Ctrl,0.0,no,11.07,7.778175078,61.72579711,-73.16894531,42,100.0,89.5324707,-40.66162109,469.4824219,-112.9150391,15.3,258.2948995,20,,0.743927907,,,,,,8 mM,-58.90775345,Mitte,temporal,61.0 +OP240221,Verji,2024-06-19,S1_D2,2,24221S1c3,D2,high K,20.0,yes,30.81111111,12.58040096,46.37553368,-54.74853516,18,600.0,72.37548828,-31.28662109,290.5273438,-51.7578125,10.5,535.9252336,9,,1.148243515,357.1019034,,,,,8 mM,-61.02496414,Bielefeld,temporal,37.0 +OP230808,Verji,2024-04-02,S3,6,23808S3c6,D1,Ctrl,0.0,no,10.92722222,8.038596046,51.14812827,-78.36303711,16,100.0,87.65869141,-40.10620117,337.5244141,-71.53320313,27.9,567.4905028,19,679.8526618,1.078288991,,,,,,8 mM,-60.36881439,Hamburg,temporal,14.0 +OP231109,Verji,2024-01-12,S1,5,23n09S1c5,D1,Ctrl,0.0,no,5.016944444,8.385924129,47.95658754,-71.57592773,33,150.0,86.98120117,-37.12768555,356.3232422,-75.07324219,15.25,375.8646108,3,,1.005146053,534.7078236,,,,,8 mM,-64.12757767,Mitte,temporal,44.0 +OP240321,Verji,2024-04-20,S2_D2,3,24321S2_D2c3,D2,Ctrl,17.0,no,29.73333333,8.921244372,43.72266465,-67.20581055,20,250.0,86.76757813,-36.16943359,414.4287109,-82.88574219,16.45,491.8189781,35; exclude; Rs_end > 30,,0.92514504,452.6850895,,,,,8 mM,-62.13482056,Bielefeld,temporal,31.0 +OP220111,Rosie,2024-06-15,S6_D2,4,22112S6_D2c4,D2,high K,16.5,no,30.92916667,13.09082698,145.6466002,-74.93286133,9,200.0,80.28564453,-40.06958008,292.7246094,-59.81445313,8.75,77.26219348,9,,1.151921611,,,,,,15 mM,-74.72934097,Bielefeld,temporal,51.0 +OP230109,Verji,2024-02-27,S3,7,2311S3c7,D1,Ctrl,0.0,yes,23.58111111,7.438506459,36.42467711,-68.23120117,30,300.0,87.35961914,-35.90087891,373.046875,-56.88476563,9.2,257.8833191,17,,1.229653193,,,,,,8 mM,-61.02633377,Bielefeld,temporal,42.0 +OP230314,Verji,2024-07-24,S4,1,23314S4c1,D1,Ctrl,0.0,no,10.49277778,9.761997828,71.49183068,-70.14160156,38,150.0,82.09228516,-34.26513672,337.7685547,-89.23339844,16.35,246.6651934,21,,0.799909185,,,384.462815,,,8 mM,-61.7113356,Virchow,temporal,12.0 +OP240117,Verji,2024-07-31,S2_D2,5,24117S2_D2c5,D1,Ctrl,20.0,no,26.4242,27.92991758,140.091217,-70.42236328,56,100.0,82.68432617,-44.42138672,325.5615234,-96.92382813,18.85,226.1723911,4,,0.769120973,207.0069002,,,,,8 mM,-60.49522293,Hamburg,temporal,55.0 +OP220322,Verji,2024-06-30,S2_D2,2,22322S2_D2c2,D2,TTX,22.0,no,34.94305556,28.61894282,50.09540417,-73.07739258,1,400.0,62.13378906,-50.59814453,181.640625,-61.76757813,14.85,847.743554,18,,,,,,,,15 mM,-63.68787903,Bielefeld,temporal,52.0 +OP220602,,2024-06-27,S3_D2,6,22602S3c7,D2,TTX,22.0,yes,37.54944444,17.26096149,45.63275965,-68.29223633,22,300.0,52.25219727,-28.39355469,116.4550781,-51.26953125,14.2,407.447986,32,,0.949138602,,,,,,8 mM,-63.84489258,,, +OP220518,Verji,2024-07-10,S6_D2,1,22519s6c7,D2,Ctrl,24.0,yes,53.85388889,17.88181988,145.8902895,-79.66918945,21,100.0,89.19067383,-43.49975586,471.6796875,-94.48242188,13.65,111.2368068,manually corrected TH,,0.857959245,,,,,,15 mM,-61.09501831,Bielefeld,frontal,37.0 +OP220228,Verji,2024-05-18,S1,2,22228S1c2,D1,high K,0.0,no,13.01777778,9.854402653,38.16954234,-70.55664063,32,200.0,92.91381836,-40.61279297,367.9199219,-91.91894531,13.15,359.3821518,1,,0.848723013,,,,,,15 mM,-61.96286499,Bielefeld,temporal,33.0 +OP220228,Verji,2024-05-23,S3_D2,5,22228S3c6,D2,Ctrl,23.0,yes,40.96055556,7.185786002,30.06081623,-72.4609375,16,250.0,75.93383789,-26.99584961,272.4609375,-62.98828125,18.85,445.3329488,28,,0.975104163,,,,,,15 mM,-57.43344757,Bielefeld,temporal,33.0 +OP201029,Rosie,2024-03-14,S1,2,20o29S1c2,D1,Ctrl,0.0,no,6.178888889,13.10245103,61.44960671,-57.33642578,11,150.0,73.70605469,-43.18237305,154.6630859,-59.5703125,10.6,224.3803618,,,1.22505001,,,,,,15 mM,-57.33457535,Mitte,temporal,47.0 +OP220518,Verji,2024-07-06,S1,1,22519S1c1,D1,Ctrl,0.0,no,21.6325,7.619709179,38.97209824,-73.71826172,27,200.0,88.70849609,-41.52832031,436.0351563,-102.2949219,12.85,246.2390643,0,,0.740454363,,,,,,15 mM,-60.7403566,Bielefeld,frontal,37.0 +OP220228,Verji,2024-05-24,S3_D2,6,22228S3c7,D2,Ctrl,23.0,no,40.96055556,12.48911672,38.88908437,-62.32299805,20,250.0,80.45654297,-32.98339844,251.3427734,-82.15332031,18.8,392.3811465,29,,0.863327534,,,,,,15 mM,-63.55627686,Bielefeld,temporal,33.0 +OP240321,Verji,2024-04-19,S2_D2,1,24321S2c1,D2,Ctrl,17.0,yes,29.73333333,12.46686818,72.9304148,-72.67456055,15,100.0,71.35009766,-39.01367188,189.5751953,-86.66992188,25.85,428.4536166,33,,0.836918792,334.0311344,,,,,8 mM,-59.7174852,Bielefeld,temporal,31.0 +OP220111,Rosie,2024-06-12,S1_D2,5,22111S1c5,D2,TTX,21.0,yes,32.88027778,12.32981932,57.30539386,-62.17041016,5,250.0,47.8515625,-33.80126953,104.7363281,-33.44726563,20.75,378.794429,14,,1.044122541,,,,,,15 mM,-62.16383575,Bielefeld,temporal,51.0 +OP230808,Verji,2024-03-29,S2,2,23808S2c2,D1,high K,0.0,yes,9.599722222,12.54916517,39.81919675,-79.65087891,21,150.0,91.3269043,-41.07055664,424.3164063,-66.52832031,22.6,463.1374609,8,745.7648588,1.045329649,,,,,,8 mM,-63.82646912,Hamburg,temporal,14.0 +OP220127,Rosie,2024-01-19,S1,6,22127S1c6,D1,Ctrl,0.0,no,7.288611111,7.739818434,63.68184827,-79.03442383,20,100.0,82.44628906,-37.95166016,246.9482422,-85.69335938,20.65,299.4067257,3,,0.882909704,,,,,,15 mM,-60.67413681,Mitte,temporal,45.0 +OP220322,Verji,2024-06-25,S2,7,22322S2c7,D1,TTX,0.0,no,12.45194444,8.412073416,40.93494031,-66.56494141,16,250.0,78.44848633,-34.39941406,261.3525391,-75.56152344,8.55,197.9974558,7,,0.929696138,,,,,,15 mM,-45.82119965,Bielefeld,temporal,52.0 +OP221027,Verji,2024-02-06,S3_D2,8,22o27S3_D2c8,D2,Ctrl,24.0,no,37.03916667,7.800428113,61.56485253,-69.79980469,15,450.0,85.53466797,-38.37890625,468.5058594,-112.7929688,10.25,291.8088619,manually corrected HW,,0.718350859,,,,,,8 mM,-67.57936676,Mitte,temporal,61.0 +OP220127,Rosie,2024-07-06,S3,6,22128S3c6,D1,high K,0.0,yes,22.49333333,8.215774734,44.58214224,-75.46386719,28,400.0,85.64453125,-36.62719727,359.375,-92.89550781,12.2,361.1288166,17,,0.832365119,,,,,17.0,15 mM,-71.24718185,Mitte,temporal,45.0 +OP220602,,2024-03-27,S1,8,22602S1c8,D1,high K,0.0,no,12.15055556,7.916531985,30.71408799,-70.34301758,36,150.0,76.91040039,-33.06274414,208.2519531,-70.06835938,16.25,325.4767726,6,,0.977154402,,,,,,8 mM,-58.71802383,,, +OP220120,Rosie,2024-02-28,S1_D2,4,22122S1_D2c4,D2,high K,23.0,no,36.00722222,9.442730358,57.13025834,-70.94726563,17,200.0,85.32104492,-39.07470703,296.7529297,-75.68359375,17.75,333.5045872,13,,0.917070998,,,,,,15 mM,-61.23827911,Bielefeld,temporal,50.0 +OP201029,Rosie,2024-03-15,S1,5,20o29S1c5,D1,Ctrl,0.0,no,6.178888889,7.520268524,46.41137462,-63.03710938,25,150.0,77.81982422,-42.4987793,196.0449219,-62.62207031,16.15,380.1747126,,,1.130550148,,,,,,15 mM,-62.96300552,Mitte,temporal,47.0 +OP201027,Rosie,2024-03-27,S1_D2,2,20o27S1c2,D2,Ctrl,21.5,yes,29.13,8.953561606,72.08125103,-69.16503906,24,300.0,80.51147461,-33.33740234,232.5439453,-64.20898438,13.35,238.0047878,8,,1.129516944,,,,,,15 mM,-69.15920654,Mitte,temporal,33.0 +OP220623,Verji,2024-01-07,S3,4,22623S3c4,D1,Ctrl,0.0,no,11.15611111,7.299165038,29.26620304,-75.79956055,24,200.0,81.53686523,-34.28955078,267.2119141,-70.06835938,16.95,354.8994249,9,,0.989486403,,,,,,8 mM,-63.04627823,Mitte,frontal,32.0 +OP230314,Verji,2024-07-15,S2,3,23314S2c3,D1,high K,0.0,yes,7.5825,7.154596846,56.44163229,-60.91918945,27,250.0,88.79394531,-37.16430664,534.1796875,-83.25195313,15.2,363.2921955,8,,0.869486758,,,413.953798,,,8 mM,-62.7203743,Virchow,temporal,12.0 +OP220217,Verji,2024-06-02,S1_D2,3,22218S1_D2c3,D2,Ctrl,22.0,no,32.48944444,10.79297264,127.5612942,-75.32958984,37,100.0,90.82641602,-43.32275391,383.1787109,-99.97558594,16.3,168.1203651,20,,0.805372503,,,,,,15 mM,-60.69753983,Mitte,temporal,17.0 +OP220127,Rosie,2024-02-17,S4_D2,3,22127S4_D2c3,D2,TTX,23.0,no,36.85194444,8.382848446,46.40757293,-78.18603516,14,100.0,71.65527344,-29.15039063,242.0654297,-69.82421875,23.15,327.9633377,39,,0.908339906,,,,,,15 mM,-57.16958908,Mitte,temporal,45.0 +OP230817,Verji,2024-05-04,S1,7,23817S1c7,D1,TTX,0.0,no,5.061944444,6.913599369,52.17652454,-71.14257813,36,150.0,86.95068359,-35.88256836,359.4970703,-84.59472656,16.35,294.8578976,5,497.1466,0.869500032,,,,,,8 mM,-61.97882996,Mitte,temporal,47.0 +OP220623,Verji,2024-01-08,S3,7,22623S3c7,D1,Ctrl,0.0,no,11.15611111,6.431786593,33.43171949,-60.28442383,27,300.0,77.34375,-33.05053711,314.6972656,-74.95117188,10.25,317.4593573,12,,0.889394928,,,,,,8 mM,-59.64039612,Mitte,frontal,32.0 +OP220623,Verji,2024-01-07,S2,8,22623S2c8,D1,high K,0.0,no,9.266944444,10.76286348,43.03477568,-66.82739258,28,200.0,80.20019531,-34.03930664,260.0097656,-61.15722656,14.3,349.9495146,5,,1.080965273,,,,,,8 mM,-61.64262833,Mitte,frontal,32.0 +OP230817,Verji,2024-05-04,S2,2,23817S2c2,D1,high K,0.0,no,6.405833333,6.483930395,47.46929552,-75.40893555,34,150.0,83.08105469,-38.11645508,342.4072266,-92.65136719,18.9,367.7643705,8,629.301,0.840206329,,,,,,8 mM,-59.84307892,Mitte,temporal,47.0 +OP230817,Verji,2024-05-05,S2,4,23817S2c4,D1,high K,0.0,no,6.405833333,6.582894638,52.54811271,-74.21264648,32,150.0,88.51928711,-37.52441406,434.2041016,-69.82421875,15.7,326.639746,9,583.7295,1.037160565,,,,,,8 mM,-61.34804794,Mitte,temporal,47.0 +OP221020,Verji,2024-01-26,S4_D2,1,22o21S4_D2c1,D2,TTX,20.0,no,29.72861111,7.733713029,38.67799621,-50.33569336,7,600.0,52.19726563,-22.11303711,108.8867188,-20.5078125,13.1,375.227972,0,,2.22021895,,,,,,8 mM,-61.67611801,Mitte,temporal,25.0 +OP210323,Rosie,2024-06-04,S6_D2,2,2021_03_25_0S6_D2c3,D2,TTX,16.5,no,46.592222,10.29581833,223.0523837,-67.7734375,25,100.0,72.29614258,-29.62036133,244.3847656,-48.58398438,17.05,132.20407,39,,1.305696784,,,,,,15 mM,-67.61321548,Virchow,temporal,10.0 +OP240117,Verji,2024-07-30,S1_D2,4,24117S1_D2c4,D2,Ctrl,23.0,no,30.95694444,9.867377797,126.6741044,-63.36669922,33,150.0,77.00195313,-31.90917969,283.5693359,-74.09667969,18.45,245.8599431,6,,0.890606342,215.1671722,,,,,8 mM,-59.87040314,Hamburg,temporal,55.0 +OP210323,Rosie,2024-05-10,S3,8,2021_03_24_0S3c8,D1,Ctrl,0.0,yes,21.22833333,17.31978303,73.35879894,-71.66748047,22,400.0,77.75878906,-35.53466797,234.9853516,-66.40625,15.4,419.4739817,11,,1.050808948,,,,,,15 mM,-71.63009842,Virchow,temporal,10.0 +OP220518,Verji,2024-07-09,s6,7,22519s6c7,D1,Ctrl,0.0,yes,32.00833333,27.43543633,107.6959386,-58.36181641,22,200.0,79.62036133,-35.22338867,368.2861328,-83.74023438,5.5,118.2572178,26,,0.853316638,,,,,,15 mM,-60.22632568,Bielefeld,frontal,37.0 +OP230314,Verji,2024-07-13,S1,2,23314S1c2,D1,high K,0.0,no,5.940833333,7.941309249,48.3169072,-63.38500977,46,250.0,87.23754883,-34.80834961,453.125,-85.44921875,12.45,238.2953271,1,,0.812826422,,,325.450848,,,8 mM,-61.11683105,Virchow,temporal,12.0 +OP230314,Verji,2024-07-20,S3,4,23314S3c4,D1,TTX,0.0,no,8.987777778,17.84882679,71.3003024,-47.32666016,44,400.0,81.29272461,-35.18066406,344.3603516,-84.9609375,11.6,270.7327635,16,,0.852367313,,,169.50565,,,8 mM,-65.50192795,Virchow,temporal,12.0 +OP230817,Verji,2024-05-03,S1,4,23817S1c4,D1,TTX,0.0,no,5.061944444,5.188722636,28.31944714,-70.11108398,33,250.0,78.08227539,-33.99658203,281.6162109,-67.62695313,17.2,400.2909091,3,832.4977,0.972962143,,,,,,8 mM,-60.74189545,Mitte,temporal,47.0 +OP240201,Verji,2024-03-08,S2_D2,8,24201S2_D2c8,D2,Ctrl,20.0,no,31.16416667,27.10348399,73.51481375,-50.63476563,20,250.0,71.63085938,-30.60302734,243.7744141,-73.12011719,13.7,318.3841135,25,,0.862896929,221.8,,,,,8 mM,-63.22924316,Mitte,temporal,39.0 +OP230420,Verji,2024-01-06,S2_D2,7,23420S2_D2c7,D2,high K,19.0,no,31.39111111,9.301121412,48.02493093,-60.99243164,17,350.0,83.22753906,-30.51147461,270.5078125,-38.33007813,18.45,551.6145985,40,359.0886363,1.792339262,,,,,,8 mM,-60.2222229,Bielefeld,temporal,13.0 +OP230808,Verji,2024-04-01,S3,3,23808S3c3,D1,Ctrl,0.0,no,10.92722222,12.46878469,75.67539078,-83.21533203,21,50.0,86.2121582,-40.72265625,340.5761719,-72.75390625,31.7,408.3119497,16,565.6388546,1.0094401,,,,,,8 mM,-59.5631015,Hamburg,temporal,14.0 +OP230314,Verji,2024-07-24,S4,4,23314S4c4,D1,Ctrl,0.0,no,10.49277778,28.72395698,85.77712996,-64.7277832,46,250.0,69.70825195,-33.06884766,245.6054688,-76.78222656,14.2,260.9678071,24; exclude; Rs_end > 30,,0.87057997,,,365.71219,,,8 mM,-60.458452,Virchow,temporal,12.0 +OP210323,Rosie,2024-06-03,S6_D2,2,2021_03_25_0S6_D2c2,D2,TTX,16.5,no,46.235278,7.865393239,98.09996902,-69.03686523,18,300.0,74.95117188,-28.85131836,309.3261719,-53.58886719,18.45,282.5091589,38,,1.214651653,,,,,,15 mM,-69.39026535,Virchow,temporal,10.0 +OP230109,Verji,2024-03-01,S2_D2,7,2311S2_D2c7,D2,high K,24.0,no,46.55611111,9.9176544,93.757403,-62.43896484,22,250.0,90.99121094,-39.08081055,491.4550781,-74.82910156,13.1,233.293913,37,,0.929070607,,,,,,8 mM,-62.14580154,Bielefeld,temporal,42.0 +OP230420,Verji,2024-01-06,S2_D2,3,23420S2c6,D2,high K,19.0,yes,31.07722222,6.579656173,25.38582301,-61.50512695,17,700.0,76.82495117,-26.26342773,336.7919922,-56.640625,8.45,391.0870056,34,898.3632788,1.067489562,,,,,,8 mM,-64.32669205,Bielefeld,temporal,13.0 +OP240411,Verji,2024-02-10,S3_D2,5,24411S3c5,D2,Ctrl,18.0,yes,35.3,21.76884238,77.2707294,-60.96191406,33,300.0,71.69189453,-26.39770508,303.4667969,-71.53320313,11.25,219.6901073,43,,0.838723549,356.6218874,,,,,8 mM,-60.31371185,Bielefeld,temporal,46.0 +OP210615,Rosie,2024-03-12,S4_D2,4,2021_06_16_0S4_D1c2,D2,TTX,20.3,no,33.37333333,9.497902602,84.74858075,-75.93994141,23,250.0,77.49023438,-34.38720703,383.1787109,-77.88085938,15.7,317.9589617,manually_corrected,,0.838218612,,,,,,15 mM,-69.65374832,Virchow,temporal,19.0 +OP220127,Rosie,2024-06-30,S2,5,22128S2c5,D1,TTX,0.0,no,20.765,16.33300364,40.50569934,-60.14404297,5,900.0,74.68261719,-37.21313477,293.7011719,-90.45410156,6.05,353.3804,manually_adj_inj,,0.787689544,,,,,9.0,15 mM,-69.49935913,Mitte,temporal,45.0 +OP220228,Verji,2024-05-19,S1_D2,7,22228S1c7,D2,high K,23.0,yes,36.27416667,8.278934792,43.51478731,-75.69580078,23,150.0,69.17114258,-25.81787109,213.2568359,-62.25585938,17.9,343.6128881,18,,0.991119539,,,,,,15 mM,-59.53292999,Bielefeld,temporal,33.0 +OP230420,Verji,2024-01-05,S2,7,23420S2c7,D1,high K,0.0,yes,12.18805556,7.407777278,29.9454656,-70.00732422,25,300.0,89.69726563,-36.01074219,469.4824219,-79.34570313,16.75,585.1428571,11,730.2643421,0.95473797,,,,,,8 mM,-61.72656616,Bielefeld,temporal,13.0 +OP220120,Rosie,2024-02-22,S1,2,22121S1c2,D1,high K,0.0,no,12.61361111,7.033074679,28.799324,-55.30395508,2,200.0,57.3425293,-26.66625977,121.7041016,-34.66796875,8.8,361.8047679,1,,1.434036554,,,,,,15 mM,-45.52814224,Bielefeld,temporal,50.0 +OP220217,Verji,2024-05-28,S2,8,22217S2c8,D1,TTX,0.0,no,10.37611111,12.80201688,104.4378439,-48.66333008,35,50.0,86.23657227,-46.24023438,254.5166016,-104.2480469,9.85,110.6875171,10,,0.802457594,,,,,,15 mM,-57.77001999,Mitte,temporal,17.0 +OP230810,Verji,2024-05-14,S2,4,23810S2c4,D1,TTX,0.0,yes,7.043055556,11.56361098,53.10180243,-68.06640625,43,150.0,89.40429688,-38.63525391,432.3730469,-75.80566406,15.65,369.7326604,9,492.6164,0.938404113,,,,,,8 mM,-60.87508209,Mitte,temporal,63.0 +OP220426,Verji,2024-01-18,S3,1,22427S3c1,D1,high K,0.0,no,24.78472222,9.413326965,64.16138123,-68.84765625,26,200.0,81.87866211,-35.83374023,286.2548828,-85.44921875,16.5,264.2580645,6,,0.913302897,,,,,,15 mM,-60.5696228,Bielefeld,temporal,60.0 +OP220228,Verji,2024-05-24,S3_D2,3,22228S3_D2c3,D2,Ctrl,23.0,no,40.96055556,10.93334579,39.04474103,-67.7734375,19,250.0,77.72216797,-33.56933594,293.9453125,-69.70214844,15.9,434.5381151,27,,0.927382519,,,,,,15 mM,-61.42417953,Bielefeld,temporal,33.0 +OP230808,Verji,2024-03-29,S1,8,23808S1c8,D1,TTX,0.0,no,8.163333333,9.152405498,62.30493792,-80.56640625,24,150.0,86.15722656,-38.14697266,392.3339844,-93.87207031,25.7,491.9028037,7,721.5840528,0.820988123,,,,,,8 mM,-61.77982468,Hamburg,temporal,14.0 +OP240417,Verji,2024-02-16,S2,1,24417S2c1,D1,high K,0.0,no,13.59611111,12.4418003,66.61329506,-57.8918457,30,250.0,79.55322266,-33.61206055,345.0927734,-81.0546875,19.4,358.1403944,8,,0.826064891,250.9583653,,,,,8 mM,-61.81928131,Hamburg,temporal,29.0 +OP211209,Verji,2024-03-24,S4_D2,8,21d11S4_D2c8,D2,TTX,18.0,no,37.0275,8.15357475,48.82977763,-75.34790039,27,200.0,77.35595703,-30.10253906,226.1962891,-54.80957031,16.25,345.5418559,,,1.222325586,,,,,,15 mM,-61.48587662,Bielefeld,temporal,27.0 +OP231109,Verji,2024-01-13,S1,6,23n09S1c6,D1,Ctrl,0.0,no,5.016944444,6.30525859,45.78416717,-72.55249023,31,150.0,85.2722168,-34.19189453,318.7255859,-51.63574219,19.05,430.8008282,4,,1.253816758,598.2799427,,,,,8 mM,-61.03536026,Mitte,temporal,44.0 +OP220217,Verji,2024-05-29,S3,3,22217S3c3,D1,high K,0.0,yes,11.88,18.26345881,61.36442233,-67.62695313,42,200.0,74.2980957,-31.21337891,237.4267578,-76.53808594,12.0,197.9939577,12,,0.860289833,,,,,,15 mM,-60.90937561,Mitte,temporal,17.0 +OP230314,Verji,2024-07-24,S3,8,23314S3c8,D1,TTX,0.0,no,8.987777778,9.328132412,52.34553217,-71.77734375,39,200.0,92.05932617,-40.7043457,451.171875,-69.3359375,14.25,266.6727584,20,,1.050184387,,,188.751292,,,8 mM,-62.56940552,Virchow,temporal,12.0 +OP220602,,2024-06-11,S3,5,22602S3c5,D1,TTX,0.0,no,15.22916667,5.882555121,18.36780548,-65.18554688,10,600.0,71.94824219,-31.88476563,224.1210938,-80.68847656,9.9,387.1159905,16,,0.825629006,,,,,,8 mM,-61.76131134,,, +OP220127,Rosie,2024-01-28,S3_D2,2,22127S3c2,D2,TTX,23.0,yes,34.94666667,12.59543599,67.73057874,-78.43017578,22,250.0,78.30810547,-37.55493164,207.8857422,-63.4765625,11.2,176.5279461,31,,1.083172438,,,,,,15 mM,-62.56948532,Mitte,temporal,45.0 +OP240321,Verji,2024-04-13,S3,6,24321S3c6,D1,Ctrl,0.0,no,13.06416667,8.644345294,113.0677186,-80.44433594,40,100.0,82.91015625,-34.8449707,330.8105469,-93.13964844,19.55,196.5074847,18,,0.80391467,316.6305544,,,,,8 mM,-61.41717209,Bielefeld,temporal,31.0 +OP230523,Verji,2024-03-10,S1,5,23523S1c5,D1,TTX,0.0,no,9.898888889,9.56637439,47.13365556,-68.78662109,14,250.0,75.26245117,-35.09521484,277.0996094,-41.74804688,20.75,441.5168831,4; exclude; Rs_end > 30,234.4578153,1.554472238,,,,,,8 mM,-59.42656448,Hamburg,temporal,16.0 +OP221024,Verji,2024-06-10,S1,6,22o24S1c6,D1,high K,0.0,no,21.08555556,8.813492369,38.19798036,-63.28125,28,250.0,85.21118164,-31.57958984,375.2441406,-65.30761719,10.6,243.7479298,5,,1.011249184,,,,,,8 mM,-58.7995285,Bielefeld,temporal,42.0 +OP210323,Rosie,2024-04-10,S1_D2,2,2021_03_24_0S1c1,D2,TTX,22.0,yes,41.045278,6.974139607,35.95676004,-72.3449707,12,600.0,57.80029297,-22.49145508,149.2919922,-44.31152344,7.25,266.3318386,27,,1.235949067,,,,,,15 mM,-71.11264114,Virchow,temporal,10.0 +OP230109,Verji,2024-02-23,S1_D2,6,2311S1c8,D2,TTX,24.0,yes,44.01333333,9.818375264,27.65569897,-63.96484375,21,700.0,70.75195313,-25.02441406,281.3720703,-88.13476563,6.0,260.407947,21; exclude; Rs_end > 30,,0.713587031,,,,,,8 mM,-63.07123352,Bielefeld,temporal,42.0 +OP230209,Verji,2024-04-22,S2_D2,6,23209S2c6,D2,high K,25.0,yes,21.84833333,9.67236673,50.64075204,-50.13427734,27,100.0,73.74267578,-31.67114258,263.9160156,-71.41113281,16.1,213.5889879,32,433.531118,0.948468432,,,,,,8 mM,-50.13308899,Bielefeld,temporal,63.0 +OP220602,,2024-06-28,S1_D2,6,22602S1_D2c6,D2,high K,22.0,no,34.6875,7.808003045,62.99865047,-75.24414063,31,150.0,83.22143555,-38.0859375,283.0810547,-66.04003906,12.55,175.9685066,23,,1.033359313,,,,,,8 mM,-61.69442871,,, +OP231130,Verji,2024-01-23,S2_D2,1,23n30S2c8,D2,Ctrl,21.0,yes,34.04833333,11.22861787,67.26239848,-69.43359375,31,300.0,74.03564453,-29.44946289,198.2421875,-52.36816406,14.95,296.0009668,13,,1.262300492,530.2376746,,,,,8 mM,-61.09348236,Bielefeld,temporal,39.0 +OP230314,Verji,2024-07-19,S3,3,23314S3c3,D1,TTX,0.0,yes,8.987777778,7.91233133,53.23603301,-72.25952148,21,200.0,85.59570313,-38.76342773,372.0703125,-81.42089844,16.8,294.0717949,15,,0.884459374,,,273.234108,,,8 mM,-60.18942566,Virchow,temporal,12.0 +OP231130,Verji,2024-01-24,S1_D2,2,23n30S1_D2c2,D2,wash in high K,21.0,no,32.69944444,7.426442253,65.8047933,-67.54455566,61,250.0,77.71606445,-36.50512695,246.4599609,-74.34082031,12.5,200.2933985,8; exclude; Rs_end > 30,,0.950157567,322.0907364,,,,,8 mM,-59.5793309,Bielefeld,temporal,39.0 +OP230817,Verji,2024-05-10,S2_D2,4,23817S2c6,D2,high K,23.0,no,29.09,7.618869229,40.55268468,-57.86743164,13,500.0,72.36938477,-29.37011719,229.7363281,-47.8515625,13.25,410.3742911,26; exclude; Rs_end > 30,729.2643,1.588326109,,,,,,8 mM,-60.08552902,Mitte,temporal,47.0 +OP220127,Rosie,2024-02-08,S4,3,22127S4c3,D1,TTX,0.0,no,13.14,10.60967198,56.25120325,-77.64892578,20,50.0,91.22314453,-40.90576172,329.8339844,-93.38378906,29.05,336.8401982,20,,0.906959599,,,,,,15 mM,-55.19751389,Mitte,temporal,45.0 +OP230817,Verji,2024-05-10,S2_D2,1,23817S2_D2c1,D2,high K,23.0,no,29.09,7.823500973,44.06787432,-69.62890625,24,250.0,80.10253906,-33.06274414,311.4013672,-81.42089844,14.5,325.4356164,25,248.9183,0.918503011,,,,,,8 mM,-58.62247513,Mitte,temporal,47.0 +OP240321,Verji,2024-04-09,S1,4,24321S1c4,D1,high K,0.0,no,9.830277778,10.03188268,60.08927934,-67.578125,34,200.0,81.55517578,-37.74414063,290.1611328,-80.93261719,20.45,328.322195,2,,0.906199841,326.3808794,,,,,8 mM,-59.26156143,Bielefeld,temporal,31.0 +OP220217,Verji,2024-05-28,S2,6,22217S2c6,D1,TTX,0.0,yes,10.37611111,12.01298187,73.54153582,-74.78637695,33,150.0,73.08349609,-37.54882813,151.3671875,-74.21875,20.0,244.2638837,8,,0.951468494,,,,,,15 mM,-65.0912529,Mitte,temporal,17.0 +OP220127,Rosie,2024-02-09,S4,5,22127S4c5,D1,TTX,0.0,no,13.14,9.644875894,62.17304058,-78.18603516,22,-300.0,88.8671875,-42.05322266,318.2373047,-81.90917969,24.65,274.8319837,22,,0.978935421,,,,,,15 mM,-55.92334946,Mitte,temporal,45.0 +OP220914,Verji,2024-07-06,S2_D2,7,22915S2_D2c7,D2,TTX,24.0,no,48.89638889,24.52496757,227.0266854,-62.49389648,9,50.0,39.06860352,-22.87597656,21.484375,-13.42773438,19.25,93.69934641,23,,2.069203723,,,,,,8 mM,-69.56908951,Bielefeld,temporal,21.0 +OP201027,Rosie,2024-03-27,S1,4,20o27S1c4,D1,Ctrl,0.0,no,7.045277778,9.230981121,27.55662542,-81.76879883,4,1400.0,59.92431641,-48.91967773,173.7060547,-43.70117188,5.25,363.7040169,2,,,,,,,,15 mM,-81.81085358,Mitte,temporal,33.0 +OP210323,Rosie,2024-06-07,S4_D2,5,2021_03_25_0S4_D2c5,D2,TTX,24.0,no,49.273056,6.970003936,77.30509513,-81.63452148,17,250.0,76.31835938,-33.48999023,298.2177734,-66.52832031,20.25,384.2223509,45,,1.031087162,,,,,,15 mM,-71.60202118,Virchow,temporal,10.0 +OP220217,Verji,2024-06-04,S2_D2,1,22218S2_D2c1,D2,TTX,22.0,no,34.75305556,11.40083441,201.6532817,-72.02148438,27,0.0,73.01635742,-32.21435547,290.8935547,-100.8300781,23.75,288.7717996,26,,0.72147361,,,,,,15 mM,-51.81500977,Mitte,temporal,17.0 +OP230109,Verji,2024-02-28,S1_D2,2,2311S1_D2c2,D2,TTX,24.0,no,44.32472222,8.621053829,59.98245962,-67.44384766,23,150.0,71.86889648,-28.69873047,269.53125,-60.05859375,17.4,235.6046281,23,,1.063718469,,,,,,8 mM,-57.1927832,Bielefeld,temporal,42.0 +OP230314,Verji,2024-07-18,S2,8,23314S2c8,D1,high K,0.0,no,7.5825,8.139952432,140.7020241,-73.33984375,43,100.0,84.23461914,-35.72387695,453.3691406,-105.3466797,14.5,172.3380486,12,,0.687150771,,,294.924831,,,8 mM,-60.19325272,Virchow,temporal,12.0 +OP220228,Verji,2024-05-24,S3_D2,7,22228S3_D2c7,D2,Ctrl,23.0,no,40.96055556,9.227520643,63.30278717,-69.68383789,32,150.0,83.72192383,-32.41577148,335.4492188,-71.65527344,13.3,216.285062,30,,0.995608196,,,,,,15 mM,-61.25755585,Bielefeld,temporal,33.0 +OP220602,,2024-02-28,S1,5,22602S1c5,D1,high K,0.0,yes,12.15055556,9.08721242,60.33503047,-74.61547852,33,50.0,82.41577148,-39.99633789,306.5185547,-90.45410156,17.05,168.9940714,3,,0.828606287,,,,,,8 mM,-57.93476059,,, +OP220623,Verji,2024-01-07,S3,2,22623S3c2,D1,Ctrl,0.0,no,11.15611111,8.286958234,73.17783032,-78.94897461,31,150.0,79.66918945,-35.22338867,283.203125,-113.1591797,14.9,175.9434955,7,,0.667559582,,,,,,8 mM,-59.97206573,Mitte,frontal,32.0 +OP240411,Verji,2024-02-07,S2,6,24411S2c6,D1,high K,0.0,no,13.15111111,26.52061106,70.27418804,-45.02563477,38,350.0,56.99462891,-28.82080078,148.5595703,-60.79101563,8.1,149.8705816,13; exclude; Rs_end > 30,,0.920958014,233.9477983,,,,,8 mM,-62.49560654,Bielefeld,temporal,46.0 +OP230817,Verji,2024-05-08,S3,7,23817S3c7,D1,Ctrl,0.0,no,7.576388889,7.766765984,94.94505367,-69.30541992,25,100.0,68.70117188,-26.60522461,172.2412109,-40.52734375,13.75,226.0712494,18,289.3896,1.452765621,,,,,,8 mM,-58.00519043,Mitte,temporal,47.0 +OP240417,Verji,2024-02-12,S1,2,24417S1c2,D1,Ctrl,0.0,yes,9.533055556,13.25477331,84.31330615,-59.32617188,25,150.0,82.97119141,-36.59667969,365.3564453,-85.44921875,21.9,367.8212199,1,,0.8484865,158.9152972,,,,,8 mM,-61.03942688,Hamburg,temporal,29.0 +OP220426,Verji,2024-01-20,S3_D2,3,22427S3c3,D2,high K,24.0,yes,48.90805556,7.368074757,33.91831019,-60.25390625,14,350.0,77.66113281,-25.88500977,316.0400391,-70.55664063,17.3,441.1567315,30,,0.933136291,,,,,,15 mM,-59.35913712,Bielefeld,temporal,60.0 +OP240221,Verji,2024-06-20,S2,2,24221S2c2,D1,Ctrl,0.0,no,13.15805556,25.21255814,103.1874499,-72.39990234,40,100.0,80.06591797,-40.85693359,328.6132813,-62.86621094,16.75,311.5005675,7,,1.054828584,334.6311544,,,,,8 mM,-62.44723831,Bielefeld,temporal,37.0 +OP230426,Verji,2024-01-15,S2,8,23426S2c8,D1,high K,0.0,no,23.40777778,7.736325451,51.25116731,-70.17822266,30,200.0,88.26904297,-37.26196289,426.5136719,-88.37890625,17.3,357.2063012,7,478.845962,0.834236337,,,,,,8 mM,-60.40496033,Hamburg,temporal,58.0 +OP240321,Verji,2024-04-21,S2_D2,4,24321S2c6,D2,Ctrl,17.0,no,29.73333333,22.18658838,74.31214562,-67.67578125,26,100.0,77.13623047,-39.48364258,219.8486328,-87.890625,21.95,285.646386,36,,0.854383895,182.3460782,,,,,8 mM,-61.23827118,Bielefeld,temporal,31.0 +OP220602,,2024-06-02,S3,4,22602S3c4,D1,TTX,0.0,no,15.22916667,5.993252395,20.44051244,-70.25146484,28,300.0,76.94091797,-36.66992188,235.8398438,-71.41113281,9.65,298.5941454,15,,0.903412074,,,,,,8 mM,-60.80336823,,, +OP230314,Verji,2024-07-17,S2,4,23314S2c4,D1,high K,0.0,no,7.5825,9.896792721,83.7562448,-66.12548828,28,200.0,86.59667969,-35.72387695,493.6523438,-84.59472656,12.5,247.6420798,9,,0.836149723,,,328.585953,,,8 mM,-61.3783609,Virchow,temporal,12.0 +OP240321,Verji,2024-04-11,S2,2,24321S2c2,D1,Ctrl,0.0,no,11.53027778,12.97679765,61.18784607,-69.88525391,20,100.0,86.13891602,-44.7265625,342.8955078,-79.83398438,22.65,409.6,7,,0.952535749,278.3492783,,,,,8 mM,-61.1739859,Bielefeld,temporal,31.0 +OP221024,Verji,2024-06-14,S2,7,22o24S2c7,D1,TTX,0.0,no,22.44666667,7.802772031,44.335863,-74.07226563,32,150.0,86.82861328,-37.07885742,387.3291016,-81.29882813,12.95,257.9608511,13,,0.882211538,,,,,,8 mM,-60.75148544,Bielefeld,temporal,42.0 +OP230808,Verji,2024-03-28,S1,2,23808S1c2,D1,TTX,0.0,no,8.163333333,9.131297415,58.66048767,-80.29785156,22,150.0,90.56396484,-37.87841797,437.3779297,-81.17675781,25.85,492.1864033,1,702.9234308,0.938416634,,,,,,8 mM,-61.38620529,Hamburg,temporal,14.0 +OP210323,Rosie,2024-06-10,S5_D2,2,2021_03_25_0S5_D2c2,D2,Ctrl,23.5,no,50.3925,14.1468259,48.4656784,-68.58520508,26,450.0,91.28417969,-39.38598633,472.9003906,-73.85253906,15.45,496.3388235,manually_corrected,,0.985966418,,,,,,15 mM,-70.52503922,Virchow,temporal,10.0 +OP210323,Rosie,2024-05-29,S5,2,2021_03_24_0S5c3,D1,Ctrl,0.0,no,26.126389,8.042211714,64.82375542,-77.39257813,22,200.0,95.59936523,-40.5456543,521.1181641,-88.50097656,22.85,454.3378641,21,,0.894228711,,,,,,15 mM,-70.3273674,Virchow,temporal,10.0 +OP220518,Verji,2024-07-07,S2,1,22519S2c1,D1,high K,0.0,no,23.10222222,8.34737089,82.33904131,-72.66845703,13,300.0,76.62353516,-32.87353516,286.1328125,-83.0078125,8.45,126.8971586,5,,0.841426649,,,,,,15 mM,-63.95318436,Bielefeld,frontal,37.0 +OP220127,Rosie,2024-07-18,S4,6,22128S4c6,D1,Ctrl,0.0,no,25.40166667,9.014809401,44.57714123,-65.44189453,20,350.0,82.84301758,-36.38916016,322.0214844,-76.171875,12.3,352.3132867,23,,1.008693053,,,,,23.0,15 mM,-60.32395508,Mitte,temporal,45.0 +OP230808,Verji,2024-03-31,S2_D2,2,23808S2c8,D2,high K,25.0,yes,34.21527778,9.628695708,38.51179182,-76.57470703,13,200.0,86.27319336,-35.96191406,349.9755859,-75.31738281,18.75,459.5362752,62,842.3980799,1.079390253,,,,,,8 mM,-59.88091431,Hamburg,temporal,14.0 +OP210323,Rosie,2024-05-03,S3,4,2021_03_24_0S3c4,D1,Ctrl,0.0,no,20.55972222,21.03433289,92.00924737,-69.71435547,24,300.0,84.63134766,-40.27709961,374.5117188,-66.65039063,22.65,546.5354934,9,,1.067926945,,,,,,15 mM,-69.64972824,Virchow,temporal,10.0 +OP220308,Verji,2024-06-22,S3,3,22308S3c3,D1,TTX,0.0,no,15.60305556,10.91069673,55.31995891,-61.4440918,18,100.0,89.99023438,-44.2565918,301.7578125,-78.49121094,11.55,256.0692828,11,,1.016467515,,,,,,15 mM,-57.81399338,Bielefeld,temporal,52.0 +OP230808,Verji,2024-04-06,S6,6,23808S6c6,D1,high K,0.0,no,26.92027778,7.60856527,81.35938456,-80.96923828,19,100.0,90.67993164,-39.63012695,351.8066406,-74.34082031,31.15,445.5360978,36,500.2966766,1.077461204,,,,,,8 mM,-58.33286499,Hamburg,temporal,14.0 +OP240411,Verji,2024-02-06,S1,6,24411S1c6,D1,Ctrl,0.0,yes,11.24083333,9.301190898,94.74011558,-48.79760742,33,150.0,75.59204102,-33.57543945,264.1601563,-74.21875,15.7,228.8512456,5,,0.914748888,81.75272509,,,,,8 mM,-55.16677032,Bielefeld,temporal,46.0 +OP220308,Verji,2024-06-22,S2,8,22308S2c8,D1,high K,0.0,no,13.88583333,10.23112162,61.3139694,-49.26757813,39,200.0,87.15209961,-38.76342773,280.6396484,-74.82910156,10.55,184.7687867,9,,1.021300313,,,,,,15 mM,-54.41224365,Bielefeld,temporal,52.0 +OP210615,Rosie,2024-03-09,S2_D2,4,2021_06_16_0S2_D2c4,D2,Ctrl,19.25,no,30.18861111,6.355402422,79.81984421,-70.53222656,26,300.0,76.98364258,-36.62109375,308.3496094,-51.39160156,18.15,404.0347826,,,1.155930518,,,,,,15 mM,-70.51392471,Virchow,temporal,19.0 +OP230420,Verji,2024-01-02,S2,2,23420S2c2,D1,high K,0.0,yes,12.18805556,6.474840398,32.07293365,-69.54956055,23,350.0,83.7890625,-29.89501953,413.6962891,-70.55664063,16.4,516.7261538,7,201.3400447,1.027804266,,,,,,8 mM,-60.52478302,Bielefeld,temporal,13.0 +OP210615,Rosie,2024-03-06,S2,2,2021_06_15_0S2c3,D1,Ctrl,0.0,no,9.776944444,17.15509796,51.11096813,-70.73364258,41,450.0,88.61694336,-40.31982422,347.5341797,-71.04492188,8.95,273.8315593,,,1.038597411,,,,,,15 mM,-70.18915436,Virchow,temporal,19.0 +OP220228,Verji,2024-05-22,S3,5,22228S3c5,D1,Ctrl,0.0,no,16.45583333,11.25796831,53.66263697,-74.14550781,31,100.0,91.87011719,-38.70849609,354.4921875,-80.56640625,15.55,236.1178869,14,,0.959514409,,,,,,15 mM,-57.65140213,Bielefeld,temporal,33.0 +OP201029,Rosie,2024-03-16,S1,7,20o29S1c7,D1,Ctrl,0.0,no,6.178888889,7.899763862,54.53262202,-65.50292969,30,200.0,87.12158203,-37.06054688,275.5126953,-72.38769531,13.4,242.7259259,,,1.098270393,,,,,,15 mM,-65.44116592,Mitte,temporal,47.0 +OP230209,Verji,2024-04-22,S2,6,23209S2c6,D1,high K,0.0,yes,-2.874722222,7.160036434,52.54920547,-71.83837891,36,150.0,86.81030273,-35.88256836,363.1591797,-84.10644531,12.5,220.9277238,9,345.078169,0.851767522,,,,,,8 mM,-60.81187851,Bielefeld,temporal,63.0 +OP230523,Verji,2024-03-10,S2,8,23523S2c8,D1,high K,0.0,no,11.8525,11.05007298,69.02407708,-74.609375,28,50.0,85.89477539,-39.2578125,336.7919922,-81.42089844,25.45,375.3130513,13; exclude; Rs_end > 30,428.5342845,0.945738534,,,,,,8 mM,-54.57881302,Hamburg,temporal,16.0 +OP220127,Rosie,2024-06-28,S1,6,22128S1c6,D1,Ctrl,0.0,no,19.20166667,12.99175467,207.4835583,-79.52880859,42,50.0,85.87646484,-36.99951172,337.890625,-81.42089844,13.15,87.63457393,4,,0.923317588,,,,,4.0,15 mM,-61.53025314,Mitte,temporal,45.0 +OP220127,Rosie,2024-07-26,S3_D2,5,22129S3_D2c5,D2,high K,24.0,no,49.07583333,7.44178551,38.08705558,-75.97045898,10,350.0,69.56787109,-28.34472656,245.3613281,-81.54296875,13.4,366.5202003,36,,0.802176132,,,,,36.0,15 mM,-60.42506363,Mitte,temporal,45.0 +OP211123,Rosie,2024-01-12,S2_D2,5,21n24S2_D2c5,D2,high K,23.0,no,36.54972222,6.950422649,38.99079437,-65.47241211,27,350.0,87.28027344,-36.99951172,386.71875,-70.92285156,18.55,531.7991251,,,0.952164,,,,,,15 mM,-60.51705048,Bielefeld,temporal,68.0 +OP230817,Verji,2024-05-05,S2,5,23817S2c5,D1,high K,0.0,no,6.405833333,7.644675671,46.62568164,-69.96459961,32,150.0,91.08276367,-39.28222656,369.0185547,-84.59472656,15.0,328.9959839,10,478.1559,0.907917358,,,,,,8 mM,-61.11205521,Mitte,temporal,47.0 +OP220111,Rosie,2024-06-16,S6_D2,7,22112S6_D2c7,D2,high K,16.5,no,31.72083333,21.46716111,412.26701,-59.42993164,35,250.0,67.60864258,-39.36767578,207.3974609,-62.37792969,12.05,215.1795095,12,,1.047212056,,,,,,15 mM,-59.3745256,Bielefeld,temporal,51.0 +OP230808,Verji,2024-04-05,S6,2,23808S6c2,D1,high K,0.0,yes,26.92027778,8.334968781,79.12469902,-79.67529297,25,150.0,87.5,-37.27416992,316.0400391,-88.37890625,24.95,346.7182358,32,506.7168906,0.879915703,,,,,,8 mM,-59.53879135,Hamburg,temporal,14.0 +OP211209,Verji,2024-03-12,S1,8,21d10S1c8,D1,high K,0.0,no,11.50583333,10.52287748,209.0864877,-65.86303711,47,50.0,86.42578125,-38.0859375,305.6640625,-97.29003906,18.85,118.7383314,,,0.791526052,,,,,,15 mM,-59.77544846,Bielefeld,temporal,27.0 +OP220426,Verji,2024-01-21,S4,6,22427S4c6,D1,Ctrl,0.0,yes,26.92055556,9.702328093,29.98075961,-59.43603516,34,450.0,80.84716797,-37.87841797,246.9482422,-69.94628906,6.35,320.6114022,16,,0.948891491,,,,,,15 mM,-61.3225766,Bielefeld,temporal,60.0 +OP240417,Verji,2024-02-14,S1,5,24417S1c5,D1,Ctrl,0.0,yes,9.533055556,11.80760956,183.1272351,-73.06518555,27,100.0,85.62011719,-38.62915039,368.6523438,-95.703125,20.9,200.1318527,4,,0.819130955,203.0767692,,,,,8 mM,-59.52498276,Hamburg,temporal,29.0 +OP211123,Rosie,2024-04-05,S3,4,2021_11_24_0S3c4,D1,Ctrl,0.0,no,25.49694444,10.12735137,41.93613648,-71.60644531,25,150.0,94.27490234,-39.41650391,458.984375,-100.2197266,19.35,421.8634731,,,0.793332276,,,,,,15 mM,-61.80375305,Bielefeld,temporal,68.0 +OP221027,Verji,2024-02-05,S3,4,22o27S3c4,D1,Ctrl,0.0,yes,11.07,8.179952821,52.91854894,-72.16186523,38,100.0,90.05126953,-37.3840332,415.0390625,-79.95605469,18.4,336.8330726,18,,0.926687357,,,,,,8 mM,-59.85078659,Mitte,temporal,61.0 +OP230209,Verji,2024-04-25,S3,3,23209S3c3,D1,Ctrl,0.0,yes,-1.504722222,12.78519343,164.0469717,-71.33178711,12,100.0,80.6640625,-38.84887695,291.015625,-125.7324219,13.75,99.329806,13,118.295915,0.64325168,,,,,,8 mM,-62.18372925,Bielefeld,temporal,63.0 +OP230808,Verji,2024-04-07,S2_D2,7,23808S2_D2c7,D2,high K,25.0,no,34.48722222,7.118036377,48.02908089,-78.93066406,12,200.0,83.75854492,-35.62011719,387.0849609,-79.71191406,24.5,502.7025673,66,741.5047168,0.901209983,,,,,,8 mM,-62.0711113,Hamburg,temporal,14.0 +OP210323,Rosie,2024-04-23,S1,6,2021_03_24_0S1c6,D1,TTX,0.0,yes,17.50694444,12.48069087,64.80078922,-69.07958984,24,350.0,77.78320313,-33.0078125,274.9023438,-53.34472656,21.4,364.0888889,4; exclude; Rs_end > 30,,1.24616835,,,,,,15 mM,-68.93887619,Virchow,temporal,10.0 +OP230314,Verji,2024-07-17,S2,6,23314S2c6,D1,high K,0.0,no,7.5825,16.09137431,63.50362604,-46.7956543,26,250.0,78.50952148,-40.97900391,391.1132813,-57.86132813,12.25,333.9500832,10,,1.123476204,,,158.39028,,,8 mM,-59.48166794,Virchow,temporal,12.0 +OP240503,Verji,2024-05-01,S3_D2,1,24503S3_D2c1,D2,high K,17.0,no,29.17055556,13.83757686,159.3446453,-76.4465332,38,100.0,71.05712891,-31.34765625,242.6757813,-73.48632813,27.65,238.7444532,31,,0.846090907,243.9981333,,,,,8 mM,-61.21821198,Mitte,temporal,36.0 +OP230109,Verji,2024-03-03,S3_D2,8,2311S3_D2c8,D2,Ctrl,24.0,no,48.30694444,12.25239064,86.00234923,-66.34521484,36,200.0,94.09179688,-36.10229492,513.0615234,-80.68847656,16.8,288.372132,50,,0.871664657,,,,,,8 mM,-61.00419952,Bielefeld,temporal,42.0 +OP220111,Rosie,2024-06-12,S1,5,22111S1c5,D1,TTX,0.0,yes,11.38083333,8.865712234,48.01649219,-65.19165039,25,200.0,86.1328125,-39.42871094,361.8164063,-68.84765625,16.95,327.68,1,,1.048150492,,,,,,15 mM,-65.05620407,Bielefeld,temporal,51.0 +OP230109,Verji,2024-02-22,S1_D2,1,2311S1c2,D2,TTX,24.0,yes,43.80138889,8.451131063,39.68067578,-65.84472656,30,250.0,79.52880859,-33.81958008,305.7861328,-57.98339844,7.6,204.6317173,19,,1.106972822,,,,,,8 mM,-63.41109406,Bielefeld,temporal,42.0 +OP221024,Verji,2024-06-15,S2,8,22o24S2c8,D1,TTX,0.0,no,22.44666667,8.514457236,42.01692264,-70.56884766,34,200.0,91.51611328,-38.4765625,433.9599609,-95.703125,11.3,311.9447346,14,,0.825236419,,,,,,8 mM,-61.10428894,Bielefeld,temporal,42.0 +OP210323,Rosie,2024-04-29,S3_D2,7,2021_03_24_0S3c2,D2,Ctrl,21.0,yes,44.139722,6.895863932,47.44795246,-73.83422852,22,400.0,85.08300781,-33.84399414,392.7001953,-76.90429688,13.6,408.8484404,35,,0.991053972,,,,,,15 mM,-71.8719931,Virchow,temporal,10.0 +OP210323,Rosie,2024-06-05,S4_D2,2,2021_03_25_0S4_D2c2,D2,TTX,24.0,no,48.896944,15.97549328,309.7782092,-62.41455078,11,100.0,78.47290039,-31.10961914,379.3945313,-58.71582031,11.65,82.23765618,43; exclude; Rs_end > 30,,1.13602231,,,,,,15 mM,-66.21055649,Virchow,temporal,10.0 +OP230314,Verji,2024-07-25,S4_D2,8,23314S4c7,D2,Ctrl,23.0,yes,34.25055556,36.97933472,79.19794232,-60.6262207,24,200.0,81.4453125,-36.18164063,412.4755859,-85.9375,16.75,528.7707129,51,,0.792207822,,,252.683423,,,8 mM,-60.41819473,Virchow,temporal,12.0 +OP210323,Rosie,2024-05-30,S6,2,2021_03_24_0S6c4,D1,TTX,0.0,no,27.870556,9.783036107,87.63307009,-49.04174805,20,300.0,72.44873047,-29.67529297,250.2441406,-36.49902344,15.15,288.9611176,25,,1.564747298,,,,,,15 mM,-68.7065889,Virchow,temporal,10.0 +OP210323,Rosie,2024-05-13,S4,1,2021_03_24_0S4c1,D1,TTX,0.0,no,23.04833333,18.48066084,94.8868367,-70.73364258,14,200.0,78.10058594,-40.46020508,244.5068359,-73.73046875,21.9,380.0949153,12,,0.959393646,,,,,,15 mM,-70.73405838,Virchow,temporal,10.0 +OP220426,Verji,2024-01-20,S3,4,22427S3c4,D1,high K,0.0,no,24.78472222,6.555757205,37.19217609,-71.13647461,25,250.0,89.13574219,-35.90698242,311.5234375,-83.984375,16.4,440.4878689,9,,0.930810631,,,,,,15 mM,-62.88617523,Bielefeld,temporal,60.0 +OP211209,Verji,2024-03-12,S2,5,21d10S2c5,D1,Ctrl,0.0,no,13.29888889,9.959714493,58.55580093,-71.98486328,25,150.0,84.75952148,-32.80029297,297.7294922,-69.58007813,17.65,273.7128254,,,1.020502952,,,,,,15 mM,-57.84879105,Bielefeld,temporal,27.0 +OP221027,Verji,2024-02-02,S2,4,22o27S2c4,D1,TTX,0.0,no,9.679166667,7.056790213,63.5187133,-73.92578125,33,-300.0,90.17333984,-38.69628906,388.3056641,-75.31738281,30.7,380.9078379,11,,0.939451805,,,,,,8 mM,-53.84588562,Mitte,temporal,61.0 +OP220127,Rosie,2024-07-22,S2_D2,4,22129S2_D2c4,D2,TTX,24.0,no,46.64972222,9.341780506,43.28359964,-55.71899414,26,500.0,70.79467773,-34.46655273,316.1621094,-49.19433594,7.15,270.8568786,30,,1.102941,,,,,30.0,15 mM,-60.70385468,Mitte,temporal,45.0 +OP220111,Rosie,2024-06-13,S1_D2,6,22111S1c7,D2,TTX,21.0,yes,33.08916667,8.52033192,67.21989847,-57.21435547,18,50.0,64.99633789,-32.82470703,247.5585938,-67.13867188,26.05,292.8323842,15,,0.809548455,,,,,,15 mM,-57.30517929,Bielefeld,temporal,51.0 +OP230109,Verji,2024-02-28,S3,8,2311S3c8,D1,Ctrl,0.0,no,23.58111111,7.378515708,42.43448927,-66.83959961,36,250.0,90.08178711,-36.40136719,504.1503906,-93.13964844,10.5,284.1156069,18,,0.777427384,,,,,,8 mM,-61.80401093,Bielefeld,temporal,42.0 +OP230209,Verji,2024-04-21,S1,5,23209S1c5,D1,TTX,0.0,no,-4.47,8.73383873,45.79290202,-71.02661133,31,200.0,86.58447266,-35.21728516,412.8417969,-72.14355469,14.9,279.4752147,2,356.11187,0.951907612,,,,,,8 mM,-60.94531128,Bielefeld,temporal,63.0 +OP220322,Verji,2024-06-24,S1,6,22322S1c6,D1,Ctrl,0.0,no,10.66527778,7.45147952,31.63924085,-65.67993164,27,150.0,85.31494141,-37.8112793,258.7890625,-76.04980469,13.45,276.6664156,2,,0.996761814,,,,,,15 mM,-73.95379166,Bielefeld,temporal,52.0 +OP230314,Verji,2024-07-25,S2_D2,1,23314S2_D2c1,D2,high K,23.0,no,30.87,24.47965169,78.74419611,-67.55371094,38,200.0,77.33154297,-38.07983398,378.90625,-90.08789063,13.85,271.7585629,29,,0.764771287,,,322.760759,,,8 mM,-61.67677628,Virchow,temporal,12.0 +OP230810,Verji,2024-05-15,S2,6,23810S2c6,D1,TTX,0.0,no,7.043055556,12.92801965,91.54312954,-74.8840332,43,50.0,94.64111328,-44.40917969,489.3798828,-119.6289063,15.8,211.5792399,11,304.9002,0.776494495,,,,,,8 mM,-61.72165741,Mitte,temporal,63.0 +OP230817,Verji,2024-05-07,S2,7,23817S2c7,D1,high K,0.0,no,6.405833333,7.393000209,73.23189237,-73.19946289,31,100.0,83.37402344,-35.25390625,251.0986328,-52.00195313,17.6,259.4901237,12,415.8439,1.29745339,,,,,,8 mM,-61.26763275,Mitte,temporal,47.0 +OP220623,Verji,2024-01-09,S4_d2,8,22623S4c1,D2,TTX,22.0,yes,35.0525,29.64063094,78.98804495,-62.21313477,24,250.0,62.70141602,-32.11669922,180.9082031,-58.10546875,7.75,185.2312181,23,,0.999206084,,,,,,8 mM,-62.48835083,Mitte,frontal,32.0 +OP210323,Rosie,2024-04-27,S2,7,2021_03_24_0S2c7,D1,Ctrl,0.0,no,18.80583333,8.838272195,67.96920659,-71.6796875,19,250.0,88.23852539,-37.31689453,411.9873047,-72.99804688,16.6,404.2726124,6,,1.028903305,,,,,,15 mM,-71.6670575,Virchow,temporal,10.0 +OP220127,Rosie,2024-02-02,S3,6,22127S3c6,D1,TTX,0.0,yes,11.24444444,10.04846295,60.15896023,-79.94384766,18,150.0,83.19702148,-38.15307617,213.7451172,-67.13867188,20.85,311.8269283,15,,1.113690015,,,,,,15 mM,-59.30215271,Mitte,temporal,45.0 +OP221027,Verji,2024-02-05,S3_D2,5,22o27S3_D2c5,D2,Ctrl,24.0,no,37.03916667,16.82096288,62.58066213,-67.77954102,26,100.0,93.75,-43.11523438,564.9414063,-120.2392578,15.7,310.8505136,39,,0.67740102,,,,,,8 mM,-62.29583862,Mitte,temporal,61.0 +OP230808,Verji,2024-03-31,S3,1,23808S3c1,D1,Ctrl,0.0,no,10.92722222,10.50058477,64.13097997,-82.65380859,21,50.0,84.56420898,-39.54467773,291.9921875,-82.88574219,31.65,460.5271758,15,650.4516817,0.904627918,,,,,,8 mM,-60.33710159,Hamburg,temporal,14.0 +OP210323,Rosie,2024-06-04,S6_D2,2,2021_03_25_0S6_D2c5,D2,TTX,16.5,no,47.127222,9.878971327,240.1846873,-67.8527832,17,150.0,71.11816406,-28.74755859,265.625,-93.50585938,11.5,67.2674045,41,,0.736362814,,,,,,15 mM,-68.24160522,Virchow,temporal,10.0 +OP240417,Verji,2024-02-21,S2_D2,7,24417S2c7,D2,high K,16.0,yes,29.90805556,12.56057291,60.17618042,-50.78125,18,150.0,81.28051758,-35.22949219,378.5400391,-101.1962891,13.85,228.7483871,33,,0.758878733,113.9137971,,,,,8 mM,-63.64973099,Hamburg,temporal,29.0 +OP230209,Verji,2024-04-23,S2,7,23209S2c7,D1,high K,0.0,yes,-2.874722222,8.656874488,76.18848902,-67.00439453,40,150.0,87.05444336,-33.63037109,381.3476563,-89.47753906,10.45,156.2873574,10,229.541477,0.839826694,,,,,,8 mM,-60.04600006,Bielefeld,temporal,63.0 +OP240215,Verji,2024-02-10,S1,2,24215S1c2,D1,Ctrl,0.0,no,11.72583333,10.06559083,59.87388673,-69.70214844,25,100.0,91.96777344,-40.3503418,370.3613281,-95.703125,23.75,486.0961899,1,,0.85751271,408.0136005,,,,,8 mM,-59.18205887,Bielefeld,temporal,30.0 +OP220228,Verji,2024-05-17,S1,1,22228S1c1,D1,high K,0.0,no,13.01777778,9.703039696,57.82823928,-71.13037109,48,200.0,81.67114258,-35.25390625,301.6357422,-68.359375,15.8,227.8760563,0,,0.94154616,,,,,,15 mM,-58.48133881,Bielefeld,temporal,33.0 +OP230420,Verji,2024-01-04,S2,5,23420S2c5,D1,high K,0.0,no,12.18805556,8.999843286,44.60996072,-75.38452148,28,200.0,84.31396484,-36.4074707,395.1416016,-76.29394531,21.0,445.1021992,9,192.7797593,1.011750103,,,,,,8 mM,-61.64437424,Bielefeld,temporal,13.0 +OP230810,Verji,2024-05-11,S1,1,23810S1c1,D1,high K,0.0,no,5.660833333,10.53595993,45.08421063,-66.61987305,42,200.0,84.10644531,-35.43701172,318.9697266,-57.86132813,10.05,243.0394096,0,411.0737,1.137813516,,,,,,8 mM,-62.12011597,Mitte,temporal,63.0 diff --git a/exercises/tabular_window_functions/window_functions.ipynb b/exercises/tabular_window_functions/window_functions.ipynb new file mode 100644 index 0000000..7bb8898 --- /dev/null +++ b/exercises/tabular_window_functions/window_functions.ipynb @@ -0,0 +1,407 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: For each patcher, compute the average number of days they waited between experiments\n", + "\n", + "Here is how to proceed\n", + "1. Use a window function to compute the number of days that elapse between experiment (i.e., the distance between `date`), for each `patcher`. Add that as a new column, `'days from prev'`\n", + "2. Compute the average `'days from prev'` per patcher\n", + "\n", + "With your new awesome vectorization skills, it should take two lines!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "b6b1abff", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('shuffled_QC_passed_2024-07-04_collected_v1.csv', parse_dates=['date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "c0237922", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPpatcherdateslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_age
0OP211209Verji2024-03-13S2821d10S2c8D1Ctrl0.0no13.29888914.470281166.878916-67.9626463450.083.190918-36.132812302.124023-72.63183620.75152.623120NaNNaN0.966102NaNNaNNaNNaNNaN15 mM-59.101382Bielefeldtemporal27.0
1OP221024Verji2024-06-16S3422o24S3c4D1Ctrl0.0no23.96416711.521243137.820797-71.7895514150.093.322754-42.968750465.820312-83.74023414.85124.32417017NaN0.959995NaNNaNNaNNaNNaN8 mM-62.265689Bielefeldtemporal42.0
2OP230810Verji2024-05-14S2523810S2c5D1TTX0.0no7.04305610.12063767.739416-70.62988347100.091.973877-37.817383415.771484-107.66601613.00228.65485810402.0134000.760052NaNNaNNaNNaNNaN8 mM-61.329228Mittetemporal63.0
3OP230209Verji2024-04-27S2_D2323209S2_D2c3D2high K25.0no21.8483337.74550343.009610-68.37158231500.067.163086-29.284668212.036133-61.64550811.05215.78450530672.2024070.958735NaNNaNNaNNaNNaN8 mM-62.577472Bielefeldtemporal63.0
4OP240321Verji2024-04-11S2424321S2c4D1Ctrl0.0no11.5302787.63294132.884808-52.45361321200.084.008789-36.785889403.442383-71.89941414.80695.7911058NaN1.063838324.520817NaNNaNNaNNaN8 mM-63.149769Bielefeldtemporal31.0
\n", + "
" + ], + "text/plain": [ + " OP patcher date slice cell_ch cell_ID day treatment \\\n", + "0 OP211209 Verji 2024-03-13 S2 8 21d10S2c8 D1 Ctrl \n", + "1 OP221024 Verji 2024-06-16 S3 4 22o24S3c4 D1 Ctrl \n", + "2 OP230810 Verji 2024-05-14 S2 5 23810S2c5 D1 TTX \n", + "3 OP230209 Verji 2024-04-27 S2_D2 3 23209S2_D2c3 D2 high K \n", + "4 OP240321 Verji 2024-04-11 S2 4 24321S2c4 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 13.298889 14.470281 166.878916 \n", + "1 0.0 no 23.964167 11.521243 137.820797 \n", + "2 0.0 no 7.043056 10.120637 67.739416 \n", + "3 25.0 no 21.848333 7.745503 43.009610 \n", + "4 0.0 no 11.530278 7.632941 32.884808 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -67.962646 34 50.0 83.190918 -36.132812 302.124023 \n", + "1 -71.789551 41 50.0 93.322754 -42.968750 465.820312 \n", + "2 -70.629883 47 100.0 91.973877 -37.817383 415.771484 \n", + "3 -68.371582 31 500.0 67.163086 -29.284668 212.036133 \n", + "4 -52.453613 21 200.0 84.008789 -36.785889 403.442383 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -72.631836 20.75 152.623120 NaN NaN \n", + "1 -83.740234 14.85 124.324170 17 NaN \n", + "2 -107.666016 13.00 228.654858 10 402.013400 \n", + "3 -61.645508 11.05 215.784505 30 672.202407 \n", + "4 -71.899414 14.80 695.791105 8 NaN \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 0.966102 NaN NaN NaN NaN NaN \n", + "1 0.959995 NaN NaN NaN NaN NaN \n", + "2 0.760052 NaN NaN NaN NaN NaN \n", + "3 0.958735 NaN NaN NaN NaN NaN \n", + "4 1.063838 324.520817 NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \n", + "0 15 mM -59.101382 Bielefeld temporal 27.0 \n", + "1 8 mM -62.265689 Bielefeld temporal 42.0 \n", + "2 8 mM -61.329228 Mitte temporal 63.0 \n", + "3 8 mM -62.577472 Bielefeld temporal 63.0 \n", + "4 8 mM -63.149769 Bielefeld temporal 31.0 " + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f7c93d25", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff2c32f0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "612215d0", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/tabular_window_functions/window_functions_solution.ipynb b/exercises/tabular_window_functions/window_functions_solution.ipynb new file mode 100644 index 0000000..0f096a8 --- /dev/null +++ b/exercises/tabular_window_functions/window_functions_solution.ipynb @@ -0,0 +1,526 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6f6aa857", + "metadata": {}, + "source": [ + "# Exercise: For each patcher, compute the average number of days they waited between experiments\n", + "\n", + "Here is how to proceed\n", + "1. Use a window function to compute the number of days that elapse between experiment (i.e., the distance between `date`), for each `patcher`. Add that as a new column, `'days from prev'`\n", + "2. Compute the average `'days from prev'` per patcher\n", + "\n", + "With your new awesome vectorization skills, it should take two lines!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8f9bc8b1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Set some Pandas options: maximum number of rows/columns it's going to display\n", + "pd.set_option('display.max_rows', 1000)\n", + "pd.set_option('display.max_columns', 100)" + ] + }, + { + "cell_type": "markdown", + "id": "1be11d54", + "metadata": {}, + "source": [ + "# Load the neural data" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "8dfc3020", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('shuffled_QC_passed_2024-07-04_collected_v1.csv', parse_dates=['date'])" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "0430951e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OPpatcherdateslicecell_chcell_IDdaytreatmenthrs_incubationrepatchhrs_after_OPRsRinresting_potentialmax_spikesRheobaseAP_heigthTHmax_depolmax_repolmembra_time_constant_taucapacitancecommentsrheo_rampAP_halfwidthRheobse_rampUnnamed: 27rheos_rampcommenthigh K concentrationRMP_from_chartissue_sourceareapatient_age
0OP211209Verji2024-03-13S2821d10S2c8D1Ctrl0.0no13.29888914.470281166.878916-67.9626463450.083.190918-36.132812302.124023-72.63183620.75152.623120NaNNaN0.966102NaNNaNNaNNaNNaN15 mM-59.101382Bielefeldtemporal27.0
1OP221024Verji2024-06-16S3422o24S3c4D1Ctrl0.0no23.96416711.521243137.820797-71.7895514150.093.322754-42.968750465.820312-83.74023414.85124.32417017NaN0.959995NaNNaNNaNNaNNaN8 mM-62.265689Bielefeldtemporal42.0
2OP230810Verji2024-05-14S2523810S2c5D1TTX0.0no7.04305610.12063767.739416-70.62988347100.091.973877-37.817383415.771484-107.66601613.00228.65485810402.0134000.760052NaNNaNNaNNaNNaN8 mM-61.329228Mittetemporal63.0
3OP230209Verji2024-04-27S2_D2323209S2_D2c3D2high K25.0no21.8483337.74550343.009610-68.37158231500.067.163086-29.284668212.036133-61.64550811.05215.78450530672.2024070.958735NaNNaNNaNNaNNaN8 mM-62.577472Bielefeldtemporal63.0
4OP240321Verji2024-04-11S2424321S2c4D1Ctrl0.0no11.5302787.63294132.884808-52.45361321200.084.008789-36.785889403.442383-71.89941414.80695.7911058NaN1.063838324.520817NaNNaNNaNNaN8 mM-63.149769Bielefeldtemporal31.0
\n", + "
" + ], + "text/plain": [ + " OP patcher date slice cell_ch cell_ID day treatment \\\n", + "0 OP211209 Verji 2024-03-13 S2 8 21d10S2c8 D1 Ctrl \n", + "1 OP221024 Verji 2024-06-16 S3 4 22o24S3c4 D1 Ctrl \n", + "2 OP230810 Verji 2024-05-14 S2 5 23810S2c5 D1 TTX \n", + "3 OP230209 Verji 2024-04-27 S2_D2 3 23209S2_D2c3 D2 high K \n", + "4 OP240321 Verji 2024-04-11 S2 4 24321S2c4 D1 Ctrl \n", + "\n", + " hrs_incubation repatch hrs_after_OP Rs Rin \\\n", + "0 0.0 no 13.298889 14.470281 166.878916 \n", + "1 0.0 no 23.964167 11.521243 137.820797 \n", + "2 0.0 no 7.043056 10.120637 67.739416 \n", + "3 25.0 no 21.848333 7.745503 43.009610 \n", + "4 0.0 no 11.530278 7.632941 32.884808 \n", + "\n", + " resting_potential max_spikes Rheobase AP_heigth TH max_depol \\\n", + "0 -67.962646 34 50.0 83.190918 -36.132812 302.124023 \n", + "1 -71.789551 41 50.0 93.322754 -42.968750 465.820312 \n", + "2 -70.629883 47 100.0 91.973877 -37.817383 415.771484 \n", + "3 -68.371582 31 500.0 67.163086 -29.284668 212.036133 \n", + "4 -52.453613 21 200.0 84.008789 -36.785889 403.442383 \n", + "\n", + " max_repol membra_time_constant_tau capacitance comments rheo_ramp \\\n", + "0 -72.631836 20.75 152.623120 NaN NaN \n", + "1 -83.740234 14.85 124.324170 17 NaN \n", + "2 -107.666016 13.00 228.654858 10 402.013400 \n", + "3 -61.645508 11.05 215.784505 30 672.202407 \n", + "4 -71.899414 14.80 695.791105 8 NaN \n", + "\n", + " AP_halfwidth Rheobse_ramp Unnamed: 27 rheos_ramp comment \\\n", + "0 0.966102 NaN NaN NaN NaN NaN \n", + "1 0.959995 NaN NaN NaN NaN NaN \n", + "2 0.760052 NaN NaN NaN NaN NaN \n", + "3 0.958735 NaN NaN NaN NaN NaN \n", + "4 1.063838 324.520817 NaN NaN NaN NaN \n", + "\n", + " high K concentration RMP_from_char tissue_source area patient_age \n", + "0 15 mM -59.101382 Bielefeld temporal 27.0 \n", + "1 8 mM -62.265689 Bielefeld temporal 42.0 \n", + "2 8 mM -61.329228 Mitte temporal 63.0 \n", + "3 8 mM -62.577472 Bielefeld temporal 63.0 \n", + "4 8 mM -63.149769 Bielefeld temporal 31.0 " + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "685a6b77", + "metadata": {}, + "outputs": [], + "source": [ + "df['days from prev'] = df['date'] - df.sort_values('date').groupby('patcher')['date'].shift()" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "75a262c6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
patcherdatedays from prev
251Rosie2024-01-01NaT
102Rosie2024-01-043 days
355Rosie2024-01-040 days
47Rosie2024-01-051 days
477Rosie2024-01-050 days
\n", + "
" + ], + "text/plain": [ + " patcher date days from prev\n", + "251 Rosie 2024-01-01 NaT\n", + "102 Rosie 2024-01-04 3 days\n", + "355 Rosie 2024-01-04 0 days\n", + "47 Rosie 2024-01-05 1 days\n", + "477 Rosie 2024-01-05 0 days" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values(['patcher', 'date'])[['patcher', 'date', 'days from prev']].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "dc9a1853", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "patcher\n", + "Rosie 1 days 05:45:15.789473684\n", + "Verji 0 days 10:53:42.269807280\n", + "Name: days from prev, dtype: timedelta64[ns]" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('patcher')['days from prev'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "de6ee1a8", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61a39610", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d63a56b1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercises/view_or_copy/.ipynb_checkpoints/view_or_copy_solution-checkpoint.ipynb b/exercises/view_or_copy/.ipynb_checkpoints/view_or_copy_solution-checkpoint.ipynb new file mode 100644 index 0000000..b38876a --- /dev/null +++ b/exercises/view_or_copy/.ipynb_checkpoints/view_or_copy_solution-checkpoint.ipynb @@ -0,0 +1,415 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "774cc021", + "metadata": {}, + "source": [ + "# Is it a view or a copy?\n", + "\n", + "- For every operations on the array `x`, decide whether it returns a view of `x`, or a copy\n", + "- If it's a view, derive the new values for the metadata (ndim, shape, strides)\n", + "- You can verify your answers with the function `print_info` defined below" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "4ccf18f3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "\n", + "def is_view(a, x):\n", + " \"\"\" Is `a` a view of `x`? \"\"\"\n", + " return a.base is x\n", + "\n", + "\n", + "def print_info(a, x):\n", + " txt = f\"\"\"\n", + "Is it a view? {is_view(a, x)}\n", + "\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + " print(a)\n", + " print(txt)\n", + "\n", + "\n", + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "b68308e8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 4)\n", + "strides\t(64, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x[::2, :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "85feedb0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4 5 6 7]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(4,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[1, :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "dbbb9a7f", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[4 5 6 7]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(4,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[1]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "4957469c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[5 9 2]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(3,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[[1, 2, 0], [1, 1, 2]]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "aa8effeb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "# Get the first and third row\n", + "y = x[[0, 2], :]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "d1649515", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1]\n", + " [ 2 3]\n", + " [ 4 5]\n", + " [ 6 7]\n", + " [ 8 9]\n", + " [10 11]]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(6, 2)\n", + "strides\t(16, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x.reshape((6, 2))\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "15b0d7ad", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 1 2 3 4 5 6 7 8 9 10 11]\n", + "\n", + "Is it a view? True\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(12,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x.ravel()\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "38cc1ef3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 0 4 8 1 5 9 2 6 10 3 7 11]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(12,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x.T.ravel()\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "b7d0cc63", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1 3 5 7 9 11]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(6,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "# Get all the odd elements\n", + "y = x[(x % 2) == 1]\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "4474f8cf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 2 3 4 5]\n", + " [ 6 7 8 9]\n", + " [10 11 12 13]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x + 2\n", + "print_info(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "866e842a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "Is it a view? False\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = np.sort(x, axis=1)\n", + "print_info(y ,x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a074c89b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "320cfb50", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/.DS_Store b/notebooks/.DS_Store new file mode 100644 index 0000000..05193f2 Binary files /dev/null and b/notebooks/.DS_Store differ diff --git a/notebooks/.ipynb_checkpoints/notebook-1-sorting-examples-checkpoint.ipynb b/notebooks/.ipynb_checkpoints/notebook-1-sorting-examples-checkpoint.ipynb new file mode 100644 index 0000000..39070d5 --- /dev/null +++ b/notebooks/.ipynb_checkpoints/notebook-1-sorting-examples-checkpoint.ipynb @@ -0,0 +1,386 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "8685ea3a", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import timeit\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "markdown", + "id": "048881d0", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Example: Find common words" + ] + }, + { + "cell_type": "markdown", + "id": "2464a282", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Problem: given two lists of words, extract all the words that are in common" + ] + }, + { + "cell_type": "markdown", + "id": "71740eab", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Implementation with 2x for-loops" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f175c775", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "%%timeit\n", + "\n", + "scaling_factor = 1 #10, 100\n", + "\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach'] * scaling_factor\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana'] * scaling_factor\n", + "\n", + "common_for = []\n", + "for w in words1:\n", + " if w in words2:\n", + " common_for.append(w) # 612 ns, 12.3 us, 928 us " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "affab857", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "input_size = [1, 10, 100]\n", + "results_for_loop = [(612/10**9)/(612/10**9), (12.4 /10**6)/(612/10**9), (928/10**6)/(612/10**9)] # in seconds\n", + "\n", + "x = np.linspace(0,100,100)\n", + "fit1 = np.polyfit(input_size,results_for_loop,2)\n", + "eval1 = np.polyval(fit1, x)\n", + "\n", + "plt.plot(x,eval1,c = 'orange')\n", + "plt.scatter(input_size, results_for_loop, c = 'orange', s = 100, label = '2 for loops')\n", + "\n", + "plt.xlabel('input size')\n", + "plt.ylabel('processing time')\n", + "plt.yticks(results_for_loop, ['T', str(int((12.4 /10**6)/(513/10**9)))+ 'x T', str(int((928/10**6)/(513/10**9))) + 'x T'])\n", + "plt.legend()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2a61bf38", + "metadata": { + "slideshow": { + "slide_type": "skip" + } + }, + "outputs": [], + "source": [ + "print('Data increase 1x, 10x, 100x')\n", + "print('Time increase 513 ns, 12.4 µs, 928 µs')\n", + "print('time1, ~ 24x time1, ~ 1800x time1')" + ] + }, + { + "cell_type": "markdown", + "id": "38e47397", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "What is the big-O complexity of this implementation? " + ] + }, + { + "cell_type": "markdown", + "id": "4118b38d", + "metadata": { + "slideshow": { + "slide_type": "skip" + } + }, + "source": [ + "n * n ~ O(n2)" + ] + }, + { + "cell_type": "markdown", + "id": "31cd0e74", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Implementation with sorted lists" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c13a24f4", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "%%timeit\n", + "scaling_factor = 100 #10, 100\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach'] * scaling_factor\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana'] *scaling_factor\n", + "words1 = sorted(words1)\n", + "words2 = sorted(words2)\n", + "\n", + "common_sort_list = []\n", + "idx2 = 0\n", + "for w in words1:\n", + " while idx2 < len(words2) and words2[idx2] < w:\n", + " idx2 += 1\n", + " if idx2 >= len(words2):\n", + " break\n", + " if words2[idx2] == w:\n", + " common_sort_list.append(w) #1.94 ns, 17.3 us, 204 us" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f1e8fed2", + "metadata": { + "slideshow": { + "slide_type": "notes" + } + }, + "outputs": [], + "source": [ + "# 1.9 * 10**6\n", + "# 17.9 * 10**6\n", + "# 205 * 10**6" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8ce798ab", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "input_size = [1, 10, 100]\n", + "results_sorted_lists = [(1.9 * 10**6)/(1.9 * 10**6), (17.9 * 10**6)/(1.9 * 10**6), (205 * 10**6)/(1.9 * 10**6)]\n", + "fit2 = np.polyfit(input_size, results_sorted_lists, 2)\n", + "eval2 = np.polyval(fit2, x)\n", + "plt.plot(x,eval1,c = 'orange')\n", + "plt.plot(x,eval2,c = 'pink')\n", + "plt.scatter(input_size, results_for_loop, c = 'orange', s = 100, label = '2 for loops')\n", + "plt.scatter(input_size, results_sorted_lists, c = 'pink', s = 100, label = 'sorted lists')\n", + "plt.xlabel('input size')\n", + "plt.ylabel('processing time')\n", + "plt.yticks(results_for_loop + results_sorted_lists[1:], ['T', str(int((12.4 /10**6)/(513/10**9)))+ 'x T', str(int((928/10**6)/(513/10**9))) + 'x T',\n", + " str(int((17.9 * 10**6)/(1.9 * 10**6)))+ 'x T', str(int((205 * 10**6)/(1.9 * 10**6))) + 'x T',])\n", + "plt.legend()" + ] + }, + { + "cell_type": "markdown", + "id": "1da4c22f", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "What is the big-O complexity of this implementation? " + ] + }, + { + "cell_type": "markdown", + "id": "4b068a1b", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "2 * sorting + traversing two lists = 2*n log2 + 2*n ~ O(n * logn)" + ] + }, + { + "cell_type": "markdown", + "id": "13c96239", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Implementation with sets" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61edb9f3", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "%%timeit\n", + "\n", + "scaling_factor = 1\n", + "\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach'] * scaling_factor\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana'] *scaling_factor\n", + "\n", + "words2 = set(words2)\n", + "\n", + "common_sets = []\n", + "for w in words1:\n", + " if w in words2:\n", + " common_sets.append(w) # 630 ns, 3.13 us, 28.6 us" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c90d8e68", + "metadata": { + "slideshow": { + "slide_type": "notes" + } + }, + "outputs": [], + "source": [ + "# 630 * 10**9\n", + "# 3.13 * 10**6\n", + "# 28.6 * 10**6" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "236c132d", + "metadata": { + "scrolled": true, + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "results_sets = [(630 * 10**9)/(630 * 10**9), (3.13 * 10**6)/(630 * 10**9), (28.6 * 10**6)/(630 * 10**9)]\n", + "fit3 = np.polyfit(input_size, results_sets, 2)\n", + "eval3 = np.polyval(fit3, x)\n", + "plt.plot(x,eval1,c = 'orange')\n", + "plt.plot(x,eval2,c = 'pink')\n", + "plt.plot(x, eval3, c = 'blue')\n", + "plt.scatter(input_size, results_for_loop, c = 'orange', s = 100, label = '2 for loops')\n", + "plt.scatter(input_size, results_sorted_lists, c = 'pink', s = 100, label = 'sorted lists')\n", + "plt.scatter(input_size, results_sets, c = 'blue', s = 100, label = 'sets')\n", + "plt.xlabel('input size')\n", + "plt.ylabel('processing time')\n", + "plt.yticks(results_for_loop + results_sorted_lists[1:], ['T', str(int((12.4 /10**6)/(513/10**9)))+ 'x T', str(int((928/10**6)/(513/10**9))) + 'x T', str(int((17.9 * 10**6)/(1.9 * 10**6)))+ 'x T', str(int((205 * 10**6)/(1.9 * 10**6))) + 'x T'])\n", + "plt.legend()\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "c9780532", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "What is the big-O complexity of this implementation? " + ] + }, + { + "cell_type": "markdown", + "id": "297bcd7d", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "transforming one list to set + 1 for loop = 2 * n ~ O(n)\n", + "\n", + "It’s the exact same code as for lists, but now looking up an element in sets \u000b", + "(if w in words2) takes constant time!\n", + "How could you have known that set lookup is fast? Learning about data structures!" + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/.ipynb_checkpoints/notebook-2-numpy_SOLUTIONS-checkpoint.ipynb b/notebooks/.ipynb_checkpoints/notebook-2-numpy_SOLUTIONS-checkpoint.ipynb new file mode 100644 index 0000000..13ce2b1 --- /dev/null +++ b/notebooks/.ipynb_checkpoints/notebook-2-numpy_SOLUTIONS-checkpoint.ipynb @@ -0,0 +1,1070 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "81bfa588", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Numpy arrays" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "87f078ef", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "id": "4670f195", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Numpy arrays in memory (representation)\n", + "**reminder**" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "f006625e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0 1 2]\n", + " [3 4 5]\n", + " [6 7 8]]\n" + ] + } + ], + "source": [ + "X = np.arange(0,9).reshape(3,3)\n", + "print(X)" + ] + }, + { + "cell_type": "markdown", + "id": "0dfd22f3", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "![memory_lists1](images/memory_layout_array3.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "08bf5b5e", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 1, 2, 3, 4, 5, 6, 7, 8])" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# flatten\n", + "X.ravel()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "45e1988e", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 3, 6],\n", + " [1, 4, 7],\n", + " [2, 5, 8]])" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transpose\n", + "X.T" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0aab72b3", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 2],\n", + " [6, 8]])" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# slice\n", + "X[::2, ::2]" + ] + }, + { + "cell_type": "markdown", + "id": "d9518a25", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "![numpy_meta](images/numpy_metadata.png)" + ] + }, + { + "cell_type": "markdown", + "id": "7d938ab8", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "![numpy_magic](images/numpy_views.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "5c8ad61e", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "cecb3364", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Views and Copies: an important distinction!\n", + "\n", + "\n", + "**View**\n", + "\n", + "- accessing the array without changing the databuffer \n", + "- **regular indexing** and **slicing** give views\n", + "- *in-place* operations can be done in views\n", + "\n", + "\n", + "**Copy**\n", + "- when a new array is created by duplicating the data buffer as well as the array metadata\n", + "- **fancy indexing** give always copies\n", + "- a copy can be forced by method **.copy()**\n", + "\n", + "How to know? with ```base```" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "a169f158", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "def is_view(a, x): #checks if the base of a is the same as the base of x\n", + " return a.base is x" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "23f95dca", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a = [1 2 3 4 5 6]\n" + ] + } + ], + "source": [ + "a = np.arange(1,7)\n", + "print('a = ',a)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "c3150638", + "metadata": { + "lines_to_next_cell": 2, + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a_slice = [3 4 5]\n", + "The base of a_slice is [1 2 3 4 5 6]\n", + "Is a_slice a view of a? True\n" + ] + } + ], + "source": [ + "# create slice of a and print its base\n", + "a_slice = a[2:5]\n", + "\n", + "print('a_slice = ', a_slice)\n", + "print('The base of a_slice is ', a_slice.base)\n", + "\n", + "print('Is a_slice a view of a?', is_view(a_slice, a))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "19d2ae59", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a_copy = [[1 2 3]\n", + " [4 5 6]]\n", + "the base of a_copy None\n", + "a and a_copy have the same base False\n" + ] + } + ], + "source": [ + "# create a copy of a and print its base\n", + "\n", + "a_copy = np.reshape(a, (2,3)).copy()\n", + "\n", + "print('a_copy = ', a_copy)\n", + "print('the base of a_copy ', a_copy.base)\n", + "print('a and a_copy have the same base ', is_view(a_copy, a))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "c2e2e7ab", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1 2 3]\n", + " [4 5 6]]\n", + "True\n", + "True\n", + "False\n" + ] + } + ], + "source": [ + "## ! DON'T understand\n", + "\n", + "# create a copy of a and print its base\n", + "a_2_3 = np.reshape(a, (2,3))\n", + "\n", + "b = np.reshape(a_2_3, (2,3))\n", + "print(b)\n", + "print(is_view(b, a))\n", + "print(is_view(a_2_3, a))\n", + "print(is_view(b, a_2_3)) #??????" + ] + }, + { + "cell_type": "markdown", + "id": "6446c6a7", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "As a copy is a different array in memory, modifiying it will *not* change the base array" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "728a2740", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a [1 2 3 4 5 6]\n", + "a_copy [[ 1 2 3]\n", + " [ 4 666 6]]\n" + ] + } + ], + "source": [ + "a = np.arange(1, 7)\n", + "\n", + "# create a copy\n", + "a_copy = np.reshape(a, (2,3)).copy()\n", + "\n", + "a_copy[1,1] = 666\n", + "\n", + "print('a ', a)\n", + "print('a_copy ', a_copy)" + ] + }, + { + "cell_type": "markdown", + "id": "3978394b", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "# change an element in the copy, print original array\n" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "4763cc05", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a [ 1 2 3 4 101 6]\n", + "a_view: [[ 1 2 3]\n", + " [ 4 101 6]]\n", + "a_view strides: (24, 8)\n", + "a_copy [[ 1. 2. 3. ]\n", + " [ 4. 666.44 6. ]]\n", + "a_copy strides: (24, 8)\n", + "a_copy base: None\n" + ] + } + ], + "source": [ + "a = np.arange(1, 7)\n", + "\n", + "# create a copy\n", + "a_copy = np.reshape(a, (2,3)).astype('float64')\n", + "a_view = np.reshape(a, (2,3))\n", + "\n", + "a_copy[1,1] = 666.44\n", + "a_view[1,1] = 101.6555 # the data type in the original array (int) stays the same \n", + "\n", + "print('a ', a)\n", + "print('a_view: ', a_view)\n", + "print('a_view strides: ', a_view.strides)\n", + "print('a_copy ', a_copy)\n", + "print('a_copy strides: ', a_view.strides)\n", + "print('a_copy base: ', a_copy.base)" + ] + }, + { + "cell_type": "markdown", + "id": "adaf1f45", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "The same operation with a *view*, however, will carry the change " + ] + }, + { + "cell_type": "markdown", + "id": "94fc8724", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "**Take-away**: you **do** need to know if you are using a **view** or a **copy**, particularly when you are operating on the array **in-place**" + ] + }, + { + "cell_type": "markdown", + "id": "512588d1", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### 1.2.1 Strides - why some indexing gives copies and others views?\n", + "\n", + "- how does numpy arrange data in memory? - When you create an array, numpy allocates certain memory that depends on the type you choose" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "f94ffd04", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0 1 2]\n", + " [3 4 5]\n", + " [6 7 8]]\n" + ] + } + ], + "source": [ + "a = np.arange(9).reshape(3,3)\n", + "print(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "2f3e051a", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "8" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a.itemsize" + ] + }, + { + "cell_type": "markdown", + "id": "b141572c", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "In this example the array has 8 bytes allocated per item.\n", + "\n", + "Memory is *linear*, that means, the 2-D array will look in memory something like this (blue boxes) \n", + "\n", + "![linear_mem](images/memory_linear.png)\n", + "\n", + "However, the user 'sees' the array in 2D (green boxes).\n", + "\n", + "How does numpy accomplishes this? By defining ```strides```.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "f8dffd3a", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(24, 8)" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a.strides" + ] + }, + { + "cell_type": "markdown", + "id": "10883b65", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "Strides tell you by how many bytes you should move in memory when moving one step in that dimension.\n", + "\n", + "![strides](images/strides.png)\n", + "\n", + "To go from the first item in the first row to the first item in the second row, you need to move (3*8) 24 bytes. To move from the column-wise, you just need to move 8 bytes." + ] + }, + { + "cell_type": "markdown", + "id": "7be8064c", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "**Views** are created when you use other strides to read your data. Slicing and regular indexing allows that, as you know how many byte steps you need to take to get the data.\n", + "\n", + "**Fancy indexing** does not allow that, because the data you are asking **cannot** be obtained by just changing the strides. Thus, numpy need to make a **copy** of it in memory." + ] + }, + { + "cell_type": "markdown", + "id": "66a2711b", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Now, you can change the strides of an array at will." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "541bb33c", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 3, 6],\n", + " [1, 4, 7],\n", + " [2, 5, 8]])" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a.strides=(8,24)\n", + "a" + ] + }, + { + "cell_type": "markdown", + "id": "05a3e933", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + " But be careful! Changing the strides to something non-sensical will also **give you non-sense**. And numpy will not complain. " + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "8c20fea5", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a.strides=(8, 9)" + ] + }, + { + "cell_type": "markdown", + "id": "e7bccdc1", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Exercises on indexing, views/copies\n" + ] + }, + { + "cell_type": "markdown", + "id": "694ed250", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 1: indexing, dimensionality of the output, view or copy?\n", + "\n", + "Look at the following code examples and before running it, try to answer for each case: \\\n", + "(1) what is the dimensionality of v? \\\n", + "(2) is v a view or a copy?" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "cc625fdd", + "metadata": {}, + "outputs": [], + "source": [ + "x = np.arange(0,12).reshape(3,4)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "02319316", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0, 1, 2, 3],\n", + " [ 8, 9, 10, 11]])" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[::2, :] #dim, view or copy\n", + "\n", + "#is_view(x[::2, :], x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "c3336d1e", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([4, 5, 6, 7])" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[1, :]\n", + "\n", + "#is_view(x[1, :], x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "1c8449f8", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[1]\n", + "\n", + "#is_view(x[1], x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "b635ea0e", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n" + ] + }, + { + "data": { + "text/plain": [ + "array([5, 9, 2])" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print(x)\n", + "x[[1, 2, 0], [1, 1, 2]]\n", + "\n", + "#is_view(x[[1, 2, 0], [1, 1, 2]], x.base)" + ] + }, + { + "cell_type": "markdown", + "id": "ab7c3609", + "metadata": {}, + "source": [ + "### Fancy indexing\n", + "\n", + "![fancy](images/fancy_indexing_lookup.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "1371c65a", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[[0, 2], :]\n", + "\n", + "#is_view(x[[0, 2], :], x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "9db68cf6", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x.reshape((6, 2))\n", + "\n", + "#is_view(x.reshape((6, 2)), x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9374de16", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "x.ravel()\n", + "\n", + "#is_view(x.ravel(), x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4dce1b10", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "x.T.ravel()\n", + "\n", + "#is_view(x.T.ravel(), x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "fd4bd129", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(32, 8)" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x[(x % 2) == 1]\n", + "\n", + "#is_view(x[(x % 2) == 1], x.base)" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "baf5b337", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 82, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "y = x + 2\n", + "\n", + "##### Is this because \n", + "\n", + "#is_view(y, x)" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "id": "a5e79e50", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "y = np.sort(x, axis=1)\n", + "\n", + "#is_view(y, x)" + ] + }, + { + "cell_type": "markdown", + "id": "08b9c593", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Sources + other resources\n", + "\n", + "\n", + "ASPP Bilbao 2022 - Lisa Schwetlick & Aina Frau-Pascual\n", + "https://github.com/ASPP/2022-bilbao-advanced-numpy\n", + "\n", + "\n", + "Scipy lecture notes, 2022.1\n", + "- Basic Numpy: http://scipy-lectures.org/intro/numpy/index.html\n", + "- Advanced Numpy: http://scipy-lectures.org/advanced/advanced_numpy/index.html\n", + "\n", + "Numpy chapter in \"Python Data Science Handbook\"\n", + "https://jakevdp.github.io/PythonDataScienceHandbook/02.00-introduction-to-numpy.html\n", + "\n", + "\n", + "\n", + "Further resources on strides: \n", + "- https://scipy-lectures.org/advanced/advanced_numpy/#indexing-scheme-strides\n", + "- https://ajcr.net/stride-guide-part-1/\n" + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + }, + "rise": { + "scroll": true + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/.ipynb_checkpoints/numpy_views_and_copies-checkpoint.ipynb b/notebooks/.ipynb_checkpoints/numpy_views_and_copies-checkpoint.ipynb new file mode 100644 index 0000000..c785239 --- /dev/null +++ b/notebooks/.ipynb_checkpoints/numpy_views_and_copies-checkpoint.ipynb @@ -0,0 +1,693 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "20df51b1", + "metadata": {}, + "source": [ + "# NumPy views and copies\n", + "\n", + "- Operations that only require changing the metadata always do so, and return a **view**\n", + "- Operations that cannot be executed by changing the metadata create a new memory block, and return a **copy**" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "4ed67e38", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "\n", + "def print_info(a):\n", + " \"\"\" Print the content of an array, and its metadata. \"\"\"\n", + " \n", + " txt = f\"\"\"\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + "\n", + " print(a)\n", + " print(txt)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "53bd92f9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x)" + ] + }, + { + "cell_type": "markdown", + "id": "d2ee43d7", + "metadata": {}, + "source": [ + "# Views" + ] + }, + { + "cell_type": "markdown", + "id": "f4838e77", + "metadata": {}, + "source": [ + "Operations that only require changing the metadata always do so, and return a **view**" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "f1b82845", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 1 3]\n", + " [ 9 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 2)\n", + "strides\t(64, 16)\n", + " \n" + ] + } + ], + "source": [ + "y = x[0::2, 1::2]\n", + "print_info(y)" + ] + }, + { + "cell_type": "markdown", + "id": "3199b45b", + "metadata": {}, + "source": [ + "A view shares the same memory block as the original array. \n", + "\n", + "CAREFUL: Modifying the view changes the original array and all an other views of that array as well!" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "28ea1c71", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3 4 5 6 7 8 9 10 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(1, 12)\n", + "strides\t(96, 8)\n", + " \n" + ] + } + ], + "source": [ + "z = x.reshape(1, 12)\n", + "print_info(z)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "46822b5a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[101 103]\n", + " [109 111]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(2, 2)\n", + "strides\t(64, 16)\n", + " \n" + ] + } + ], + "source": [ + "y += 100\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "ad9a7950", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 101 2 103]\n", + " [ 4 5 6 7]\n", + " [ 8 109 10 111]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n", + "[[ 0 101 2 103 4 5 6 7 8 109 10 111]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(1, 12)\n", + "strides\t(96, 8)\n", + " \n" + ] + } + ], + "source": [ + "print_info(x)\n", + "print_info(z)" + ] + }, + { + "cell_type": "markdown", + "id": "4fc789c1", + "metadata": {}, + "source": [ + "Functions that take an array as an input should avoid modifying it in place! \n", + "\n", + "Always make a copy or be super extra clear in the docstring." + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "aa25ac4b", + "metadata": {}, + "outputs": [], + "source": [ + "def robust_log(a, cte=1e-10):\n", + " \"\"\" Returns the log of an array, avoiding troubles when a value is 0.\n", + " \n", + " Add a tiny constant to the values of `a` so that they are not 0. \n", + " `a` is expected to have non-negative values.\n", + " \"\"\"\n", + " a[a == 0] += cte\n", + " return np.log(a)\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "471d9d6b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_48764/1018405258.py:2: RuntimeWarning: divide by zero encountered in log\n", + " np.log(a)\n" + ] + }, + { + "data": { + "text/plain": [ + "array([[-1.2039728 , -4.60517019],\n", + " [ -inf, 0. ]])" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.array([[0.3, 0.01], [0, 1]])\n", + "np.log(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "6c05d356", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0. 1.]\n", + "\n", + "dtype\tfloat64\n", + "ndim\t1\n", + "shape\t(2,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "# This is a view of `a`\n", + "b = a[1, :]\n", + "print_info(b)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "9d96fb61", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ -1.2039728 , -4.60517019],\n", + " [-23.02585093, 0. ]])" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "robust_log(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "35d0327d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[3.e-01, 1.e-02],\n", + " [1.e-10, 1.e+00]])" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "4a2b95c5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([1.e-10, 1.e+00])" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "b" + ] + }, + { + "cell_type": "markdown", + "id": "fa8cf77a", + "metadata": {}, + "source": [ + "Better to make a copy!" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "c5359eac", + "metadata": {}, + "outputs": [], + "source": [ + "def robust_log(a, cte=1e-10):\n", + " \"\"\" Returns the log of an array, avoiding troubles when a value is 0.\n", + " \n", + " Add a tiny constant to the values of `a` so that they are not 0. \n", + " `a` is expected to have non-negative values.\n", + " \"\"\"\n", + " a = a.copy()\n", + " a[a == 0] += cte\n", + " return np.log(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "0bf9b2d5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ -1.2039728 , -4.60517019],\n", + " [-23.02585093, 0. ]])" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.array([[0.3, 0.01], [0, 1]])\n", + "b = a[1, :]\n", + "\n", + "robust_log(a)" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "895209ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0.3 , 0.01],\n", + " [0. , 1. ]])" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "18004050", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0., 1.])" + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "b" + ] + }, + { + "cell_type": "markdown", + "id": "d664b462", + "metadata": {}, + "source": [ + "# Copies\n", + "\n", + "Operations that cannot be executed by changing the metadata create a new memory block, and return a **copy**" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "8c8f77e1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x)" + ] + }, + { + "cell_type": "markdown", + "id": "716aec53", + "metadata": {}, + "source": [ + "Choosing row, columns, or individual elements of an array by giving explicitly their indices (a.k.a \"fancy indexing\") it's an operation that in general cannot be executed by changing the metadata alone.\n", + "\n", + "Therefore, **fancy indexing always returns a copy**." + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "40fb1777", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0 1]\n", + " [4 5]\n", + " [8 9]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 2)\n", + "strides\t(8, 24)\n", + " \n" + ] + } + ], + "source": [ + "# Get the first and second column\n", + "y = x[:, [0, 1]]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "id": "b8ed81d5", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[2000 2001]\n", + " [2004 2005]\n", + " [2008 2009]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 2)\n", + "strides\t(8, 24)\n", + " \n", + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y += 1000\n", + "print_info(y)\n", + "# the original array is unchanged => not a view!\n", + "print_info(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "6c50e46e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 1 0 11]\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(3,)\n", + "strides\t(8,)\n", + " \n" + ] + } + ], + "source": [ + "y = x[[0, 0, 2], [1, 0, 3]]\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "id": "9d65a5c3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1001 1000 1011]\n", + "\n", + "dtype\tint64\n", + "ndim\t1\n", + "shape\t(3,)\n", + "strides\t(8,)\n", + " \n", + "[[ 0 1 2 3]\n", + " [ 4 5 6 7]\n", + " [ 8 9 10 11]]\n", + "\n", + "dtype\tint64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y += 1000\n", + "print_info(y)\n", + "# the original array is unchanged => not a view!\n", + "print_info(x)" + ] + }, + { + "cell_type": "markdown", + "id": "5e76ea7a", + "metadata": {}, + "source": [ + "Any operation that computes new values also returns a copy." + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "b8a3d44c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[ 0. 7.1 14.2 21.3]\n", + " [28.4 35.5 42.6 49.7]\n", + " [56.8 63.9 71. 78.1]]\n", + "\n", + "dtype\tfloat64\n", + "ndim\t2\n", + "shape\t(3, 4)\n", + "strides\t(32, 8)\n", + " \n" + ] + } + ], + "source": [ + "y = x * 7.1\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9e50edfd", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "022e7b98", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/.ipynb_checkpoints/when_copying_is_convenient-checkpoint.ipynb b/notebooks/.ipynb_checkpoints/when_copying_is_convenient-checkpoint.ipynb new file mode 100644 index 0000000..363fcab --- /dev/null +++ b/notebooks/.ipynb_checkpoints/when_copying_is_convenient-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/.ipynb_checkpoints/which_data_structure_intro-checkpoint.ipynb b/notebooks/.ipynb_checkpoints/which_data_structure_intro-checkpoint.ipynb new file mode 100644 index 0000000..38856a6 --- /dev/null +++ b/notebooks/.ipynb_checkpoints/which_data_structure_intro-checkpoint.ipynb @@ -0,0 +1,103 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "3ae332a0", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "aa7bbab6", + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "sound_data = np.random.rand(100)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "626eafc7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0.66709183, 0.55973494, 0.95416669, 0.60810949, 0.05188879,\n", + " 0.58619063, 0.25555136, 0.72451477, 0.2646681 , 0.08694215,\n", + " 0.75592186, 0.67261696, 0.62847452, 0.06232598, 0.20549438,\n", + " 0.11718457, 0.25184725, 0.48625729, 0.8103058 , 0.18100915,\n", + " 0.81113341, 0.62055231, 0.9046905 , 0.56664205, 0.73235338,\n", + " 0.74382869, 0.64856368, 0.80644398, 0.46199345, 0.78516632,\n", + " 0.91298397, 0.48290914, 0.20847714, 0.99162659, 0.26374781,\n", + " 0.3602381 , 0.07173351, 0.8584085 , 0.32248766, 0.39167573,\n", + " 0.67944923, 0.00930429, 0.21714217, 0.58810089, 0.17668711,\n", + " 0.57444803, 0.25760187, 0.43785728, 0.39119371, 0.68268063,\n", + " 0.95954499, 0.45934239, 0.03616905, 0.23896063, 0.61872801,\n", + " 0.76332531, 0.96272817, 0.57169277, 0.50225193, 0.01361629,\n", + " 0.15357459, 0.8057233 , 0.0642748 , 0.95013941, 0.38712684,\n", + " 0.97231498, 0.20261775, 0.74184693, 0.26629893, 0.84672705,\n", + " 0.67662718, 0.96055977, 0.64942314, 0.66487937, 0.86867536,\n", + " 0.40815661, 0.1139344 , 0.95638066, 0.87436447, 0.18407227,\n", + " 0.64457074, 0.19233097, 0.24012179, 0.90399279, 0.39093908,\n", + " 0.26389161, 0.97537645, 0.14209784, 0.75261696, 0.10078122,\n", + " 0.87468408, 0.77990102, 0.92983283, 0.45841805, 0.61470669,\n", + " 0.87939755, 0.09266009, 0.41177209, 0.46973971, 0.43152144])" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sound_data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef55bee9", + "metadata": {}, + "outputs": [], + "source": [ + "synonyms = {\n", + " 'hot': ['blazing', 'boiling', 'heated'],\n", + " 'airplane': ['aircraft', 'airliner', \n", + " 'cab', 'jet', 'plane'],\n", + " 'beach': ['coast', 'shore', 'waterfront'],\n", + " # ...\n", + "}" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/010_data_structures/.DS_Store b/notebooks/010_data_structures/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/notebooks/010_data_structures/.DS_Store differ diff --git a/notebooks/010_data_structures/.ipynb_checkpoints/big_O_example_with_plots-checkpoint.ipynb b/notebooks/010_data_structures/.ipynb_checkpoints/big_O_example_with_plots-checkpoint.ipynb new file mode 100644 index 0000000..8e9ac97 --- /dev/null +++ b/notebooks/010_data_structures/.ipynb_checkpoints/big_O_example_with_plots-checkpoint.ipynb @@ -0,0 +1,446 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "8685ea3a", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "import timeit" + ] + }, + { + "cell_type": "code", + "execution_count": 164, + "id": "cd404fc3", + "metadata": {}, + "outputs": [], + "source": [ + "def plot_style(figsize=(12, 6), labelsize=20, titlesize=24, ticklabelsize=14, **kwargs):\n", + " basic_style = {\n", + " 'figure.figsize': figsize,\n", + " 'axes.labelsize': labelsize,\n", + " 'axes.titlesize': titlesize,\n", + " 'xtick.labelsize': ticklabelsize,\n", + " 'ytick.labelsize': ticklabelsize,\n", + " 'axes.spines.top': False,\n", + " 'axes.spines.right': False,\n", + " 'axes.spines.left': True,\n", + " 'axes.grid': True,\n", + " 'axes.grid.axis': 'both',\n", + " }\n", + " basic_style.update(kwargs)\n", + " return plt.rc_context(rc=basic_style)\n", + "\n", + "\n", + "def plot_time_increase(multipliers, timing, ax=None, color='red', ls='-'): \n", + " if ax is None:\n", + " ax = plt.gca()\n", + " ax.plot(multipliers, timing, lw=3, ls=ls, color=color)\n", + " ax.set_xticks(list(range(1, multipliers[-1] + 2, 2)))\n", + " ax.set_xlabel('N')\n", + " ax.set_ylabel('Time (s)')\n", + " ax.set_xlim(0, multipliers[-1] + 1.1)\n", + " ax.set_ylim(0, 0.06)\n", + "\n", + "\n", + "def measure_time_increase(func, words1, words2, max_mult=20, z=1):\n", + " timing = []\n", + " multipliers = list(range(1, max_mult + 1))\n", + " for mult in multipliers:\n", + " mult_words1 = words1 * mult\n", + " mult_words2 = words2 * mult\n", + " t = timeit.repeat(\n", + " 'func(words1, words2)', \n", + " globals={'func': func, 'words1': mult_words1, 'words2': mult_words2}, \n", + " repeat=3,\n", + " number=3000\n", + " )\n", + " timing.append(min(t) * z)\n", + " return multipliers, timing" + ] + }, + { + "cell_type": "markdown", + "id": "048881d0", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Example: Find common words" + ] + }, + { + "cell_type": "markdown", + "id": "2464a282", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Problem: given two lists of words, extract all the words that are in common" + ] + }, + { + "cell_type": "code", + "execution_count": 165, + "id": "b8d7a1eb", + "metadata": {}, + "outputs": [], + "source": [ + "results = {}" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "id": "01d8c3d7", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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jRo11L9//0z9DR8+XL6+vlq0aJEmTpwow7j2rdXhw4c1cOBASdLgwYPtV04AALhRisWqF2ZuUVq6zaH9X/2iVC4o+5kZAaCk8eggEhMTo3Hjxslms+mhhx5SrVq1FBUVpejoaJ0+fVrdu3fXsGHDHI5JTEzU4cOHderUqUz91axZU1OnTpWXl5dGjBihiIgIRUdHq06dOtq9e7datGihiRMnFtbDAwB4oAn/3aXdpy85tA26taY61K3gpooAoGjy6CAiXbsqsmDBAnXu3FkJCQnat2+fmjRposmTJ2vevHny9vbOVX8DBgzQypUr1aNHDyUnJ2vHjh2KjIzU2LFjtWrVKgUFBbnokQAAPN3yXWf09ZpDDm31w4I1/I567ikIAIowj50163o9evRQjx49nNp37NixGjt27E33adeunRYsWJDvuh577DE99thj+e4HAFD0nb2UquGz4xza/Hy89PGDzeVvzt2XYgBQEnj8FREAANzNMAyNyGKq3te6N1CdSsFuqgoAijaCCAAA+fTNmkNafsNUvV0aVNTDbau7qSIAKPoIIgAA5EN2U/W+17epTMzVCwDZIogAAJBHN52qt5Sfm6oCAM9AEAEAII+YqhcA8o4gAgBAHizfnXmq3gaVQzTiTqbqBQBnEEQAAMils5dSNXxW5ql6/92/mfx8mKoXAJxBEAEAIBeYqhcACkaBLWh45swZbd26VYcOHdL58+eVnJysgIAAhYaGqkaNGoqKilKFCtwzCwDwbEzVCwAFI89BxDAMLVmyRHPmzNHvv/+uw4cP53hMjRo1dMcdd6hPnz7q0qUL0xoCADwKU/UCQMHJdRA5f/68Pv30U3322Wc6ceKEvd0wjByPPXTokD7//HN9/vnnqlKlip5++mk988wzCg0NzW0ZAAAUKqbqBYCC5XQQuXTpkiZOnKjJkyfrypUrDsEjMDBQLVu2VIMGDVSuXDmFhoYqJCRESUlJOn/+vBISErRz505t3LhRV69elSQdP35cY8aM0YQJE/TSSy/p5ZdfVkhISME/QgAACgBT9QJAwXIqiHz77bd65ZVXdObMGXsAueWWW3TfffepU6dOatq0qby9c54lxGq1auvWrfrrr780e/ZsrVmzRleuXNE777yjqVOn6v3339cjjzySv0cEAEABY6peACh4TgWRxx57TJIUHBysJ598Uk899ZRq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paU7vo9/cF+UqpThNg7A0z333HMymUy67777Mm2zWCwqVaqUTCaTKlSokOUdN3fccYdMJpPGjBmTaZvVatWXX36pzp07q3z58vLz81N4eLj69eunFStWuOLh2K1YsUL9+vVTeHi4/Pz8VL58ed1+++366quvZLXe/Cru/v379cwzz6hOnToKCAhQSEiIoqOj9dZbbykpKSnb82WMtZGkjRs36r777lPlypXl7++v2rVra/jw4UpMTMz2vLt27dKTTz6punXrKjAwUAEBAYqIiFDbtm01atQo7dq1K9tj8yNfQeQ///mPrFarypQpoz/++EN169Z16riWLVvKMAxt27YtP6fX2rVrNWrUKHl5eWnGjBnav3+/4uLiFBsbq0qVKmn+/PmaNGmS0/0dOnRIgwYNktVq1fvvv6+jR48qNjZWe/fuVb169bRhwwaNGDEi03EdO3bUL7/8ovPnz+vYsWPauHGj9u3bp/3796tz585KSEjQI488kq/HCgAliWEYem3ONh04d8WhffCtNdWlYdb3mAPwLJ07d5Z07YP0jUFj/fr19nEl586dy/SZ0WKxaPXq1ZKk2267zWHbxYsX1aVLFw0aNEjLly9XYmKiAgMDdfLkSc2ePVu33Xabhg8f7pLHNHToUN12222aPXu2Tp48qcDAQCUmJmrZsmUaOHCgunXrpkuXLmV57E8//aRGjRrps88+0759+2Q2m5WWlqbNmzfrjTfeUOPGjbVz586bnn/evHmKiYnRzz//rKtXr8owDO3fv18ffPCBmjVrpkOHDmU6ZvHixWrWrJmmTp2qvXv3Kj09Xf7+/jp27JjWrVun8ePH64cffiiIpyeTfAWRZcuWyWQyacCAAdkOPspK9erVJUlHjx7Nz+n19ttvyzAMDR48WA8++KC9PSoqyh5AJkyYIIvF4lR/EydOVGpqqrp166bhw4fbk2X16tX15ZdfSpKmTJmS6Varrl27qk+fPgoJCXFor169umbOnCmTyaTt27dr7969eX6sAFCSzNp4THO3nHBoi6paWiPurO+milDS2WyGEi6nFssfm+3m43tdpVOnTjKZTEpISFBcXJzDtoy7ZjI+Wy1btsxh+7p163TlyhX5+fnplltucdg2aNAgrVixQr6+vvr3v/+tpKQkXbhwQSdOnLBPlPTBBx/os88+K9DH85///EcffvihJOnJ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GiLStQ/sGQFk5syZevrpp+0LYF+9elUff/yxfR2UBx54INOVhXfeeUdms1n79u3THXfcYV9J3mazaeHChbr77ruVnp6uWrVq6amnnsq2jpMnT6p79+7avXu3pGufPWfPnq377rtP0rWrLxnTAEvXZihr2rSpPvzwQ+3cuVM227Wp0w3D0Jo1a/TMM89IujZQvkmTJvl8ljIrsJWhwsLCNGnSJJ05c0bx8fH69ddf9f3332vu3LnauHGjzp07p3//+98Ot23lR0hIiD3FTps2LdP2WbNmKSkpSeXKlVOnTp1y7M9kMtnHrGTV35o1a7Rr1y6ZzWb7lLzOSE9P12+//SZJDgv1AEBJlpZu0/MzY3Up1fELmrd6NlbdSsFuqgqAu1wfPCpWrJhpEb2WLVsqOPh/7w03+1J72rRp6tixo9LS0vT888+rdOnSCg0NVZUqVexXSV5++WU9/fTTBfoYnnvuOfsssp9//rkqV66s0NBQlS5dWkOGDJHFYtFtt92mqVOnZjq2efPm+u677+Tr66tVq1apadOmKl26tIKCgtS9e3edOHFCERERWrBggUqVKpVtDd98841Wrlyp+vXrq0yZMipVqpT69eun8+fPq1q1apo9e3amALdt2zYNHTpUDRs2lL+/v8qXL2+/HW7btm0KCQnRjBkziu4VkRs1bNhQd999tx566CH17NnTfu9bQRs9erRMJpO++OILh8Vd4uLi7IO+R4wY4TCwZvLkyapRo4b90t31hg8fLl9fXy1atEgTJ060z+l8+PBhDRw4UJI0ePDgTGHqscce0/r16+37Z9i+fbt69eqlXbt2KSwszJ5GAaCke//3XYo7dtGhrXezKurXsqqbKgLgTtcHi6xCho+Pj9q3b3/TfTKULl1aS5cu1bRp09SpUycFBwfr8uXLCgsLU9++fbV8+XJNnDixYB/A/5k0aZKWLVumvn37qlKlSrp8+bKCg4N122236csvv9TixYsdAtX1HnjgAW3fvl1PPfWUatWqpdTUVPn4+KhZs2Z68803FR8frwYNGtz0/L169dKaNWvUt29f+fv7yzAM1axZU8OGDdOWLVtUs2ZNh/1btWqln376Sc8884xatGih8uXL6+LFi/L391ezZs00YsQI7dy50+G5L1CGh3v77bcNSYYkIzIy0mjatKnh5eVlSDK6d+9upKenO+z/xhtv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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def two_loops(words1, words2):\n", + " common = []\n", + " for w in words1:\n", + " if w in words2:\n", + " common.append(w)\n", + " return common\n", + "\n", + "\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach']\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana']\n", + "multipliers, timing = measure_time_increase(two_loops, words1, words2)\n", + "\n", + "results['Two loops'] = (multipliers, timing)\n", + "with plot_style(figsize=(6, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(1, 0.5), frameon=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "944f65b2", + "metadata": {}, + "outputs": [], + "source": [ + "common = []\n", + "for w in words1: # O(N)\n", + " if w in words2: # O(N)\n", + " common.append(w) # O(1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 169, + "id": "68088136", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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woiIiKBChQrs3buXWrVqERUVZXdeYGAgv/76KyEhIXz11VcUKVKEunXrUrRoUT788EO8vb2ZNGkSVapUcdnXQkRERETkXuXRoQZSZ2sWLlxIs2bNuHDhAgcOHKBatWpMnDiR+fPn4+3tnanxevbsydq1a2nTpg0JCQns3r2bsmXLMmLECNatW0dwcLDD82rXrs0///xD//79CQ4OZseOHQA89thjbNiwgV69emX1pYqIiIiIiAMeu6Tzjdq0aUObNm0ydOyIESMYMWLELY9p0KABCxcuzHQdpUqVYvLkyZk+T0RERERE7pzHz9SIiIiIiMi9TaFGREREREQ8mkKNiIiIiIh4NIUaERERERHxaAo1IiIiIiLi0RRqRERERETEoynUiIiIiIiIR1OoERERERERj6ZQIyIiIiIiHk2hRkREREREPJpCjYiIiIiIeDSFGhERERER8WgKNSIiIiIi4tEUakRERERExKMp1IiIiIiIiEdTqBEREREREY+mUCMiIiIiIh5NoUZERERERDyaQo2IiIiIiHg0hRoREREREfFoCjUiIiIiIuLRFGpERERERMSjKdSIiIiIiIhHU6gRERERERGPplAjIiIiIiIeTaFGREREREQ8mkKNiIiIiIh4NIUaERERERHxaAo1IiIiIiLi0RRqRERERETEoynUiIiISLayWCzuLkFE7jIKNSIiIpKtnp25jZG/7ybuerK7SxGRu4SPuwsQERGRe8e6/edZuvsMAHO3neDlZuXp+UBp/Hz0PquI3Dn9BBEREZFsYTJb+GDRv9bPLycY+XrNIYwmsxurEpG7gUKNiIiIZIt52//j31PxNm0DW95HsL9uHBGRrFGoEREREZdLSDYxbslem7aKhXPTpXaYmyoSkbuJQo2IiIi43NR1hzgdn2jTNqRVJby9DG6qSETuJgo1IiIi4lJnryTy1eqDNm2NKhTgofsKuqkiEbnbKNSIiIiIS01cvp9rySbr5wYDDHm0MgaDZmlExDkUakRERMRl9p+5wo+bj9m0PR5RgirFQtxUkYjcjRRqRERExGVG/7kHs+V/nwf4ejGwZUX3FSQidyWFGhEREXGJ9QfOs3LPWZu2ZxqVpUieADdVJCJ3K4UaERERcTqz2cIHf/xr01Yglz/PPFTOTRWJyN1MoUZEREScbt72/9h900abA1rcRy5ttCkiLqBQ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Mna78xtN1iY5OZnx48cTFhaGn58f3bt3Z/HixRQVFV3xed9++y333HMPERER+Pr6EhMTw+OPP865c+fqlUNERERERGrn9qVm2bJljBkzhk2bNhEcHExsbCx79uxh5syZTJw48aqLzYoVKxg0aBAfffQRVquVbt26cfjwYRYsWMDgwYMpKChw+rzNmzcTFxfHypUrKS8v58Ybb+TkyZO88MILxMXFcerUqYb4ckVERERE5DJuXWqSk5OZP38+Hh4erFy5kiNHjrBnzx5SUlJo27YtH330ES+++GKdt5eRkcH06dMpLy/nj3/8I8ePHyclJYW0tDS6du3Kjh07eOKJJ6o978KFC0yePJnCwkJmzpxJVlYWu3bt4tixYyQmJpKens706dMb8ksXEREREZGfuHWpWbJkCYZhMGPGDO6++27HeO/evR1lZtmyZXW+L8t///d/U1xczM9+9jPmzJmDxVJxY8oOHTrwf//3fwC8+uqr1Y66vPLKK5w5c4Zu3brx4osv4u3tDUBISAgrV67Ey8uLTz75hJSUlGv+mkVEREREpCq3LTXnz5/ns88+A3B6FGTSpEkEBgaSk5PD5s2ba92eYRh88MEHNW5v4MCB3HDDDZSWlvLhhx9WWbZmzRoA7r33Xjw9Passa9++PcOHDwdg9erVdfjKRERERETkarhtqUlNTaWkpARfX1/69etXbbm3tzfx8fEAbNu2rdbtHTt2jOzsbAASExOdrlM5fun2ysrK2LVr11U/T0REREREGobblpq0tDSg4kiIl5eX03U6depUZd26bM9qtRIZGVnn7WVkZDhOb6tcfi05RERERETk6jhvA24gNzcXgODg4BrXqVxWuW5dthcUFOS4lqYu27v045qy1DVHcXExxcXFjs/z8vIAOHv2bJ2vC6qL0tJSCgoKyMnJcVz/48qUt3Epb+NS3salvI3L3fN6e3sTEBBQ4//rInL9cNtSU3nPGB8fnxrXsVqtABQWFjba9i69d01Nz61rjueee47f//731cY7dux4xeeJiIiIc3l5eQQGBpodQ0QamduWGl9fXwBKSkpqXKfyqIefn1+jba/yeZXPvfTzq80xb948Zs+e7fjcbrdz9uxZQkJCGvSvTOfPnycqKorjx4+7xS965W1cytu4lLdxKW/juh7yBgQEmJxKRJqC25aaupzSVZdT1C7f3rlz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gQP55JNPmDhxIoZhMGvWLAzDMDtqjSr3w0mTJuHr62tymv/o37+/45Sye++9t8r1K9u2basydXJT/VykpKTw6KOPArBkyRJiYmKa5HVFxDWp1IjLmjRpEklJSWzbto2TJ0+ydetWoqOjWbp0KQ8//LDZ8Wrl4+PjuG/Cli1bXPpIwr59+9izZw8Wi4WpU6eaHcfB19eXVatWERAQQFJSEu3bt6dHjx7YbDbGjh3ruPEfQMuWLU1Oe30aNGgQSUlJJCcnk5mZyYEDBxgwYACvvvoqt99+u9nx6sRisbBs2TIAjhw5wt69e01O5FxOTg7r168HYNq0aSanqW7FihWEh4fz7bff0q1bN7p27UrHjh0ZMGAABQUFjiNLTbEvHj16lLFjxzr+4PH44483+muKiGtTqRG30b9/f9avX4/VauXVV1/lhx9+MDtSrW6++Wag4kL29PR0k9PU7K233gJg8ODBTmcZM9Mtt9xCSkoK999/P+Hh4Y6/EP/mN79h586djqN27nIRuLvr1q0b69ato23btmzYsOGK91pxJV26dKF169YAHD582OQ0zq1atYrS0lKio6O55ZZbzI5TTdeuXUlNTeXRRx8lOjqajIwM8vPzueeee0hJSSEwMBBo/H3x5MmTjBgxguzsbMaMGcM///lPLBZLo76miLg+TRQgbiUyMpI+ffqwbds29uzZ43JvwC936c1Dy8rKTExSM7vdzttvvw241qlnl4qNjeX111+vNl5WVsaePXsAmnS2pebO39+foUOHsmrVKlJSUlzyDbgzlfujq+6LlaeeTZ061WXfpIeHh/PSSy/x0ksvVVtWee1gY+6LZ8+eZcSIERw5coQhQ4bw3nvvVfk9KyLNl47UiNupfEPiqm9MLnXgwAHHx+3atTMxSc02b95MZmYmvr6+3HnnnWbHuSobN27k4sWLREZGuuQ039czd9oPAX788UfHvYxccV88cuSIY6psVzoFtK4OHDjAd999h6+vL8OHD2+U17h48SKjR49m//79xMfHs27dOk3jLCIOKjXiVjIyMhx/me/du7fJaWr3wgsvABU3K6zp/g5mqzz1bNy4cS55z5GalJSUsGDBAgAefPBBPD09TU7UfOTl5bF582YA+vTpY26YOnrxxRcxDINWrVq5zOx+l6rcDxMSEujatavJaa6OYRjMmzcPgHvuuYfg4OAGf43i4mLGjx/Ptm3buPHGG9mwYQMBAQEN/joi4r5UasSl7Nq1i4ULFzq9/mTDhg2MGjWKsrIyRo8e7RIz3Xz66afMmzePo0ePVhnPy8tj5syZjtO6Kt98u5rCwkLHtMiueurZ+vXr2bZtW5Wx48ePM2HCBFJSUujevTtz5swxKd316cSJEzz22GNVjjRW2rp1KyNHjuTs2bP07NmTIUOGmJCwugMHDvDQQw9Vy1xUVMTSpUt5/vnnAXjyySfx8fExI+IVrVixAnDd/RAgKSmJTZs2VZk9Licnh/vuu89xnVXlhAwNqby8nClTpvD5558TExPDp59+6rg+SkTEwZDrXlJSkhESEuJ4WK1WAzBatGhRZfzYsWNmRzU2b95sAAZghIeHGzfddJPRq1cvIygoyDEeHx9vnDlzxuyohmEYxgcffODIZbPZjPj4eKNPnz6Gj4+PARgWi8VYuHCh2TFrtHLlSgMwwsLCjNLSUrPjOPXoo48agBEcHGz07dvX6Natm2GxWAzA6N69u5GZmdnkmeqzTx07dqzKMj8/PwMwrFZrlfGkpCTT8x49etTxc926dWujX79+Rt++fY3Q0FDHeExMjHH48OEGz1rfzKmpqY5sYWFhRlxcnBEXF2e0aNHCMT59+nTDbre7RN5LffPNNwZgeHt7N9nvtvrk/dOf/mQARkBAgNGrVy+jZ8+ehpeXl+P33759+xola+XvKcDo3LmzkZiY6PRx5513VnmemfuciDQ9TRTQDJSWlpKTk1NtvKCggIKCAsfnrnDvl969e7N8+XI2bdrEgQMHOHToECUlJYSEhHDzzTdz1113MXXqVLy8XONHNy4ujqeeeork5GQOHz7M/v37MQwDm83GoEGDeOihh+jfv7/ZMWtUecrLlClTXOZ7erkJEyaQnZ3N9u3b+fbbb7FarcTHxzN58mR++9vfYrVamzxTffap8vJyp88pLi6muLi4yrYb2tXmDQ8P529/+xubNm1i9+7dHDlyhPz8fIKDgxk2bBgTJkxgxowZjXo9w9Vmjo6OZvHixXzzzTccOnSI7777jpKSEtq0acPo0aOZMWMGP//5z10m76Uq98ORI0cSGhraaBkvVZ+8Q4cOZdq0aSQnJ3PkyBEsFgvdu3fn9ttvZ9asWY7ZzxrapftHWloaaWlpTte7fOIYM/c5EWl6FsNw4buQiYiIiIiI1ELX1IiIiIiIiFtTqREREREREbemUiMiIiIiIm5NpUZERERERNyaSo2IiIiIiLg1lRoREREREXFrKjUiIiIiIuLWVGpERERERMStqdSIiIiIiIhbU6kRERERERG3plIjIlIDi8VS5fHxxx/X+pyysjLH+tHR0Y0fUkRERFRqRETqau7cudjtdrNjiIiIyGVUakRE6ujAgQO88cYbZscQERGRy6jUiIjUwtfXFw+Pil+XCxYsoKioyOREIiIicimVGhGRWoSEhDBt2jQAMjMz+fOf/2xyIhEREbmUxTAMw+wQIiKuyGKxAGCz2UhOTqZLly4UFRURFBREeno6wcHB1Z5TVlaGt7c3AB06dCAjI6MpI4uIiDRLOlIjIlIHUVFRPPLIIwCcO3eOpUuXmpxIREREKulIjYhIDS49UpOZmUlubi4xMTHk5uZitVr5/vvvad++fZXn6EiNiIhI09ORGhGROgoODmbevHkAFBcXs2DBApMTiYiICKjUiIhclUceeYSoqCgA3nrrLfbt22dyIhEREVGpERG5Cr6+vvzhD38AwG63M3fuXJMTiYiIiEqNiMhVmjZtGj169ABg/fr1fPHFFyYnEhERad5UakRErpKHhwfLli1zfP7EE0+YmEZERERUakRE6mHMmDEMGTIEgO3bt7N69WqTE4mIiDRfKjUiIvX0/PPPOz6eP38+ZWVlJqYRERFpvlRqRETqqX///txxxx0ApKWl8dprr5mcSEREpHlSqRERuQZLly7Fy8sLgD/84Q/k5+ebnEhERKT5UakREbkGXbp0YcaMGQCcPHmSF154weREIiIizY/FMAzD7BAiIq7IYrEAYLPZyMzMrHG9kydPEhsbS35+Pv7+/o6jNR06dCAjI6MpooqIiDRrOlIjInKNwsPDmT17NoBOPxMRETGBSo2ISAOYM2cOYWFhZscQERFpllRqREQaQEBAAM8884zZMURERJolXVMjIiIiIiJuTUdqRERERETEranUiIiIiIiIW1OpERERERERt6ZSIyIiIiIibk2lRkRERERE3JpKjYiIiIiIuDWVGhERERERcWsqNSIiIiIi4tZUakRERERExK2p1IiIiIiIiFtTqREREREREbemUiMiIiIiIm5NpUZERERERNyaSo2IiIiIiLg1lRoREREREXFr/w8fx0jZUFsCTwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def sorted_lists(words1, words2):\n", + " words1 = sorted(words1)\n", + " words2 = sorted(words2)\n", + "\n", + " common = []\n", + " idx2 = 0\n", + " for w in words1:\n", + " while idx2 < len(words2) and words2[idx2] < w:\n", + " idx2 += 1\n", + "\n", + " if idx2 >= len(words2):\n", + " break\n", + "\n", + " if words2[idx2] == w:\n", + " common.append(w)\n", + " \n", + " return common\n", + "\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach']\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana']\n", + "multipliers, timing = measure_time_increase(sorted_lists, words1, words2)\n", + "\n", + "results['Sorted lists'] = (multipliers, timing)\n", + "with plot_style(figsize=(6, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plot_time_increase(*results['Sorted lists'], ax=None, color='tab:orange', ls='-')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(1, 0.5), frameon=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "13625669", + "metadata": {}, + "outputs": [], + "source": [ + "words1 = sorted(words1) # O(N * log(N))\n", + "words2 = sorted(words2) # O(N * log(N))\n", + "\n", + "common = []\n", + "idx2 = 0\n", + "for w in words1: # O(N)\n", + " while idx2 < len(words2) and words2[idx2] < w: # O(N) in total\n", + " idx2 += 1\n", + "\n", + " if idx2 >= len(words2): # O(1)\n", + " break\n", + "\n", + " if words2[idx2] == w: # O(1)\n", + " common.append(w)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 196, + "id": "d7a6a1be", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def sets(words1, words2):\n", + " words2 = set(words2)\n", + "\n", + " common = []\n", + " for w in words1:\n", + " if w in words2:\n", + " common.append(w)\n", + "\n", + " return common\n", + "\n", + "\n", + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach']\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana']\n", + "multipliers, timing = measure_time_increase(sets, words1, words2)\n", + "\n", + "results['Sets'] = (multipliers, timing)\n", + "with plot_style(figsize=(6, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plot_time_increase(*results['Sorted lists'], ax=None, color='tab:orange', ls='-')\n", + " plot_time_increase(*results['Sets'], ax=None, color='tab:green', ls='-')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(0.05, 0.85), frameon=True, facecolor='white', framealpha=0.8, edgecolor='white')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ca3700a5", + "metadata": {}, + "outputs": [], + "source": [ + "words2 = set(words2) # O(N)\n", + "\n", + "common = []\n", + "for w in words1: # O(N)\n", + " if w in words2: # O(1)\n", + " common.append(w) # O(1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "93c8e164", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 172, + "id": "2c760f1c", + "metadata": {}, + "outputs": [], + "source": [ + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach']\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana']\n", + "multipliers, timing = measure_time_increase(two_loops, words1, words2, z=0.6)\n", + "\n", + "results['Two loops (fast)'] = (multipliers, timing)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 197, + "id": "57cff0ad", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "with plot_style(figsize=(6, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plot_time_increase(*results['Sorted lists'], ax=None, color='tab:orange', ls='-')\n", + " plot_time_increase(*results['Sets'], ax=None, color='tab:green', ls='-')\n", + " plot_time_increase(*results['Two loops (fast)'], ax=None, color='tab:blue', ls='--')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(0.05, 0.85), frameon=True, facecolor='white', framealpha=0.8, edgecolor='white')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 182, + "id": "0496ee17", + "metadata": {}, + "outputs": [], + "source": [ + "words1 = ['apple', 'orange', 'banana', 'melon', 'peach']\n", + "words2 = ['orange', 'kiwi', 'avocado', 'apple', 'banana']\n", + "results_longer = {}\n", + "max_mult = 40\n", + "results_longer['Two loops'] = measure_time_increase(two_loops, words1, words2, max_mult=max_mult)\n", + "results_longer['Two loops (fast)'] = measure_time_increase(two_loops, words1, words2, z=0.6, max_mult=max_mult)\n", + "results_longer['Sorted lists'] = measure_time_increase(sorted_lists, words1, words2, max_mult=max_mult)\n", + "results_longer['Sets'] = measure_time_increase(sets, words1, words2, max_mult=max_mult)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 201, + "id": "de3857e9", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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DiqKwpEjR3j33XeB1En8NWvWzOa7JET+sjDNXK7CdrB1ZmROlxAFXIsWLYw9McWLFzduyGlQv359XFxcjEfoZDS0aLB48WIePnzIgQMHeP/99/nwww9xcXEhKirKuDXDuHHjGDFiRI6+hpEjRxIcHMzcuXP56aef+PnnnylSpAixsbHG7TCaN2/OwoUL07WtW7cuv/32G/379+fQoUPUqlULV1dXkpKSjD1XXl5ebN26FWfnzJexL1u2jB49elClShXc3NxISEggMTF1VZa3tzfr169Pl6wGBgYyZswYxowZg42NDa6urkRHRxtjdnV1ZeXKldLTJQqUa+GP2X1JvZK3sB1snRl5B4Qo4J5OojJKqKytrWnatOkz6xi4ubmxZ88eFi9eTLNmzXBxceHx48eULFmS7t27s2/fPmbNmpWzL+D/zZkzh71799K9e3dKlCjB48ePcXFxoXnz5vzyyy/s2rULFxeXDNv26tWL8+fP884771ChQgUSExOxtramTp06TJs2jaCgIKpWrfrM53fu3JkjR47QvXt37O3tURSF8uXLM3bsWM6ePUv58urNHhs0aMDatWt59913qVevHp6enkRHR2Nvb0+dOnWYMGECFy9eVL33Qlg6vV7hsz8uFPqDrTOjUdKehissXkxMDG5ubkRHRxvP18tMcnKycYglswnE+Y1erycmJgZXV1eLWr1oiXEX9pj3799vTEJz81elJb7PYJm/PyTm3PXTget8+dclVdl7zSswvm0VM0WUNYb3unPnzrlyf8v52y2EEEKIfOt0yCNm7bisKivmbMvQVwrvZqhpSdIlhBBCiGyJjk/mg1VnSNH/2yOsQeGbHjUp6mS+TaLzG0m6hBBCCPHCFEVh4sZzhD6KV5W3LqPQ2NfDTFHlT5J0CSGEEOKFrTgWwrbAe6qy+uWK8LpXxpsoF2aSdAkhRCaaNWuGoii5OoleCEt28W4Mn/1xQVVWxNGGOT1qYVW490HNkCRdQgghhMiyuKQURq48TVKKukdr1pu1KeWWM5sjFzSSdAkhhBAiy6ZuOc/1NAdaD2riQ+tqJcwUUf4nSZcQQgghsmTz2TDWngxVldUo48pH7SxjPy5zkaRLCCGEECa78fAJkzYGqsqcbK2Y38cPO2s50upZCkTStW3bNlq1aoW7uztOTk74+fkxf/584wGzprp37x6//vor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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "with plot_style(figsize=(6, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results_longer['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plot_time_increase(*results_longer['Sorted lists'], ax=None, color='tab:orange', ls='-')\n", + " plot_time_increase(*results_longer['Sets'], ax=None, color='tab:green', ls='-')\n", + " plot_time_increase(*results_longer['Two loops (fast)'], ax=None, color='tab:blue', ls='--')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(0.05, 0.85), frameon=True, facecolor='white', framealpha=0.8, edgecolor='white')\n", + " plt.ylim(0, 0.2)\n", + " plt.xticks(list(range(1, max_mult + 2, 4)))" + ] + }, + { + "cell_type": "code", + "execution_count": 203, + "id": "b512aa6d", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABC0AAAIuCAYAAACbyPKfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3iTZd/G8W/SvaEtm0KZsvcUUEYBFVQEEcTFdiEOEAeICA5ciPLogwKCC1RABATZS6bM0rJ3KZuWDuhu8v7Rt3kISaGlM+X8HEcPm/u6r/s+E6A2v1zDYDabzYiIiIiIiIiIFDHGwg4gIiIiIiIiImKPihYiIiIiIiIiUiSpaCEiIiIiIiIiRZKKFiIiIiIiIiJSJKloISIiIiIiIiJFkooWIiIiIiIiIlIkqWghIiIiIiIiIkWSihYiIiIiIiIiUiSpaCEiIiIiIiIiRZKKFiIiIiIiIiJSJBWLosXSpUsJCQnB398fLy8vmjRpwpQpUzCZTDm6zu7duxk7diz33nsvgYGBuLi4ULp0ae6//34WLFhwy/4HDhzgiSeeoFy5cri7u1OtWjVGjhxJTEzMTfudOXOGoUOHEhQUhJubG5UqVeLZZ5/lzJkzOcovIiIiIiIiUpwYzGazubBD5MbEiRN56623AKhatSre3t6Eh4djMpl46KGHWLBgAUbjrWszx44do3r16pbHVapUwd/fn+PHj3PlyhUAnnnmGb7//nu711u7di3dunUjMTGRUqVKERQUxMGDB0lISKBq1aps3ryZMmXK2PTbv38/7dq1Izo6Gj8/P6pVq8axY8eIjY0lICCAjRs3UqtWrdt9eUREREREREQclkOPtNiyZQtvv/02RqOR2bNnc+zYMUJDQ9m1axdlypRh0aJFTJo0KVvXMpvNlCtXjo8//pizZ89y/PhxduzYweXLl5kyZQoGg4EffviBb775xqZvfHw8ffr0ITExkeHDh3PmzBl27txJREQEbdq04fjx4wwaNMimX3p6Or179yY6OppevXpx9uxZdu7cyZkzZ+jZsydRUVH06dMnxyNGRERERERERIoDhx5p0a1bN5YuXcrQoUP59ttvrdpmz57NE088QUBAAOfOncPFxeWm10pKSsJkMuHp6Wm3/fnnn2fq1Kk0aNCA0NBQq7ZPP/2UUaNGUbt2bcLCwnBycrK0RUREUK1aNdLS0ti5cydNmjSxtM2dO5fHHnuMgIAATpw4gY+Pj6UtPj6eKlWqEBUVxR9//MEjjzyS7ddFREREREREpDhw2JEWcXFxrFq1CsDuKIbevXvj6+tLVFQUa9euveX13N3dsyxYAHTp0gWAw4cP27T98ccfAPTv39+qYAFQqVIlQkJCAJg3b57dfo899phVwQLAx8eH3r17AxnFDREREREREZE7jcMWLXbv3k1KSgru7u5Woxcyubi40Lx5cwC2bduW6/slJSUB4OHhYXU8cwQFQJs2bez2zTx+Y46tW7feVj8RERERERGRO4HDFi2OHDkCZIxkcHZ2tntO1apVrc7Njd9//x2wLTCcPHmS1NRUq/tlJ0dKSgoRERHZ6nf9PURERERERETuFPbf7TuAzB09SpYsmeU5mW2Z596uFStW8OeffwLw+uuv281xsyz2csTGxloW2LxVP5PJRFxcHAEBAXbPS05OJjk52fLYbDaTkpJCYGAgBoPhZk9NREREREREpMhy2KJF5nQNV1fXLM9xc3MDIDEx8bbvExERwRNPPAHACy+8wD333GM3x82y2MuRk3439r3RRx99xHvvvWdzfPbs2Tddp0NEREREREQcy8VEmHHIifOJth9QNw000beqCVcnOx0LwMMPP5zn13TYooW7uzuQMc0iK5mjD25chyK7oqOjuf/++7l8+TLt27e3u31qZo7MLNc/vlmOG/vdLP+NfW/01ltv8dprr1kex8XFERQURJcuXfD19c2yX06lpqaycuVKOnfufMvdWIoSR8ytzAXDETODY+ZW5oLhiJnBMXMrc8FwxMzgmLmVuWA4YmZwzNzFNfP6w5f4am4Y8UlpVseNBnija00G3F25wEfbX587Pzhs0SI7Uz+yM4UkK1evXuWBBx5g//79NG3alEWLFlmNfLgxR+b9ypUrl60cfn5+GI1GTCZTls8h87jRaLxp8cHNzc1uNhcXl3z5B5pf181vjphbmQuGI2YGx8ytzAXDETODY+ZW5oLhiJnBMXMrc8FwxMzgmLmLS2az2cx/1x/j0+WHMJutzy/h6cJ/Hm9C2xqBBZjSVn69zg67EGeNGjWAjOkbaWlpds85fvy41bnZlZyczMMPP8y2bduoU6cOy5Yts9mSNFNwcLDlDyfzftnJ4erqSqVKlbLV7/p7iIiIiIiIyJ0jISWNYXN288ky24JFrbI+LHqxbaEXLPKTwxYtGjdujIuLC0lJSezatcumPTU1le3btwPQsmXLbF83LS2Nxx57jDVr1lC1alVWrlxJYGDWfwGcnZ0tW65u2rTJ7jmZx2/Mkfk4p/1ERERERESk+IuISqDnN5tZsvecTVu3BuX444W7qRRQvNcxdNiiha+vLyEhIQDMmDHDpn3u3LmWHTfat2+frWuazWb69+/PokWLKF++PKtWraJ8+fK37NezZ08AZs2aRXp6ulVbREQEq1atAqBXr152+/3+++/Ex8dbtcXHxzN37lwAHn300WzlFxERERERkeJh45HLPPT1Rg6et36vaDDAG/fV4j+PN8bT1WFXfMg2hy1aAIwePRqDwcD06dOZM2eO5XhoaKhlYcpRo0ZZ7c4xefJkgoOD6du3r831Xn75ZX755RcCAwNZtWoVVapUyVaO5557jsDAQA4cOMBrr71GamoqAFFRUfTr14+0tDTuv/9+mjZtatWvV69e1KpVi6ioKAYMGEBCQgIA165dY8CAAURFRVGvXj169OiRo9dFREREREREHJPZbGb6P8d5+vttxCSkWrX5uDvzff/mPN++WoEvuFlYHLos06ZNGyZMmMCYMWPo168fY8aMwdvbm/DwcEwmE926dWPEiBFWfWJiYjh16hTBwcFWx7ds2cKUKVOAjJ06hgwZkuV9N27caPXY19eXX3/9le7du/PVV18xZ84cKlWqxIEDB0hISCA4OJjvv//e5jpOTk7MnTuXe+65h/nz57Nq1SqqV6/O0aNHiY2Nxd/fn99++w2j0aFrSyIiIiIiIpINKekwcl44i+xMB6lR2pvvnm5GlUCvQkhWeBy6aAEZoy0aNmzIF198wc6dOzl//jz169dnwIABDBs2DCen7G1Qe/32oqdPn+b06dM5ytGpUyd27NjB+++/z5o1awgLC6NChQo88sgjjBkzJssdTOrVq0doaCjjx4/n77//JiwsjFKlSvHYY48xduxYKlasmKMcIiIiIiIi4njOxiTy5T4nIq/ZFiy61CnDpD6N8HZz+LfwOVYsnnH37t3p3r17ts4dN24c48aNsznevn17zDcuxZpDdevWtZqmkl1BQUFMmzYtV/cWERERERERx2A2m4m8kkjYmVj2RsYSdiaG3RExJKTYTvl4rXNNhnWojtF4Z0wHuVGxKFqI3Iq3t3dhR8gxZS4Y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9ddfefXVV3OcoXnz5lSsWNFuW0JCArt37wagdevWds/x9fWlfv36dtvKlSuX4zwiIiIiIiKOIt1kZsbG43y24jApabYfPNcu58ukxxpSu5xvIaSTwubQRYstW7bw9ttvYzQa+fnnn3n88ccBCA0NpWvXrixatIhJkyYxcuTIbF3P19eXzp0706JFC1q0aMGqVauYMmXKLfvNnTs3y7bp06czZMgQypUrR6dOneye07hxY9atW5etjCIiIiIiIsXFycvXGDk3lB2nrti0ORkNvNC+Gi91rIGrc7GYJCC3waGLFu+//z5ms5khQ4ZYChYADRs2ZNKkSTzxxBNMnDiRl19+GRcXl1teb+DAgQwcONDyeNeuXbnO+NNPPwHQr18/nJyccn09ERERERGR4uDnraf4YMkBElPTbdqql/bm894NaRhUouCDSZHisOWquLg4Vq1aBcCgQYNs2nv37o2vry9RUVGsXbu2oOMBcOrUKf755x8AnnrqqULJICIiIiIiUtTM+TeCMX+G2xQsDAYYek9V/nqprQoWAjjwSIvdu3eTkpKCu7s7TZo0sWl3cXGhefPmrF69mm3bttGlS5cCz/jLL79gNpupX78+DRs2zPK8iIgI+vfvz+nTp/H09KRevXr06dOHRo0aFVxYERERERGRAhCflMonyw7aHK/k78nnjzWkebB/IaSSosphixZHjhwBoFKlSjg7238aVatWZfXq1ZZzC9rPP/8M3HqUxYkTJzhx4oTl8V9//cXEiRN58cUX+fLLL285rSQ5OZnk5GTL47i4OABSU1NJTU293fg2Mq+Vl9fMC87OzpjNttshZcpsM5vNOd5RprAoc8FwxMzgGLkNBgNpaWmWx0X158fNKHPBccTcylwwHDEzOGZuZS4YjpgZ8j73tPXHuJJgfa0nWgTxepcaeLk558l9HPG1dsTMYJ07O8sy5JTBfLN3e0XYp59+yqhRo2jZsiVbt261e84bb7zBJ598Qvfu3Vm8eHGO7zFu3Djee+89Bg0axPTp03PUd8eOHTRv3hyj0UhERAQVKlSwOWfbtm18++23PPnkk9SqVYvAwECOHz/Ot99+y5dffonZbGbEiBF89tln2cp5o9mzZ+Pp6Zmj3I7G29ub1q1bk5aWVmTfvEnx1KBBA06fPs3XX39Nv379ctS3ZMmSACxevJi2bdtmu81RGI1GnJ2d2bJlC1evXi3sOCIiIlKEXEuF93Y7kZxusByrX9LE4Fr6Xb44ePjhh/P8mg470iIpKQkAV1fXLM9xc3MDIDExsUAyXS9zlEXHjh3tFiwAWrZsScuWLa2O1apViy+++ILg4GBeeeUVJk+ezIsvvkiVKlWyvNdbb73Fa6+9ZnkcFxdHUFAQXbp0wdc377YFSk1NZeXKlXTu3DlfKmi3KzsjLeLj4/Hx8cFgMGR5XlFSWJnNZjPz5s1jzpw57N69m4sXL+Lk5ESZMmUoV64czZs3p23btnTq1Mnm71ZBZD558iQ//PADAO+++26ur5ebzJlbKbu7u9/2vzNPT88s+96sLSe5MwuazzzzDMHBwbeV83YYDAbuuecey+Oi+vPjZpS54DhibmUuGI6YGRwztzIXDEfMDHmb++Plh0lOP2l5bDDAxCfaULOMTy5TWnPE19oRM4N17vzgsEULd3d3AFJSUrI8J3PKhIeHR4FkypSWlsacOXMAePrpp2/rGsOGDeOzzz4jMjKSRYsW8fLLL2d5rpubm6VAcz0XF5d8+cueX9fNjZu9ccscgWEwGCxvNIu6wsgcExNDjx49WL9+veWYs7Mznp6eREREcPz4cTZt2sTkyZOZOXMm/fv3L/DMERERjB8/HsDu6KKcyovMRqMxT/veddddQMYooqyum5Pcma9Xhw4dqFq16m3lvF32fk4UxZ8ft6LMBccRcytzwXDEzOCYuZW5YDhiZsh97gtxSfy0NcLqWI9GFahbMf/WsHDE19oRM4P93/3ygsMWLTKHUF+5Yrufb6bMtsxzC8qKFSu4ePEiXl5ePPLII7d1DScnJ1q0aEFkZCRHjx7N44Qitp5++mnWr1+Pk5MTr7zyCs8++yzVqlXDaDSSlpbG/v37WbZsGbNnzy7sqMXawYO2i1KJiIiIFAdT1hwhOe1/00CcjQZeCalRiInEEThs0aJGjYy/3BEREaSlpdldjPP48eNW5xaUzKkhjzzyCN7e3rd9ncxK1fWL2YnkhyNHjljWfXn//fd58803rdqdnZ1p0KABDRo0YNSoUYUy5UpEREREHFdEVAK//nva6thjzYOoHOBVSInEUTjGWHk7GjdujIuLC0lJSezatcumPTU1le3btwPYrBuRn+Lj41m4cCFw611DbmXfvn0AVKxYMde5RG5mz549lu+zs3jOzaZc/fHHH3Tv3p0yZcrg6upKmTJl6N69OwsWLMiyT//+/TEYDPTv3x+z2cz06dNp27YtAQEBGAwGZs2aRXBwMB06dLD0MRgMVl83TleBjLVvvvrqK+69914CAwNxdXWlbNmy9OjRg2XLlt30OSYmJvL+++9Tp04dPDw8KF26NA888ACrV6++5euTG5nPZ926dTZtV65cYezYsTRr1oxKlSrh7u5O2bJladCgAc8995xVtszXNFOHDh2sXq8b17eIjIzk1VdfpW7dunh5eeHm5kb58uVp2rQpr776quXnqYiIiMjtmLzqMGmm/61D5+psZHhHjbKQW3PYkRa+vr6EhITw999/M2PGDFq0aGHVPnfuXOLi4ggICKB9+/YFlmv+/PkkJCRQrlw5OnXqdNvXWbFiBeHh4QCEhITkVTyRW4qMjKR27do57peSksLAgQMtxQmj0Yifnx+XL19myZIlLFmyhMcff5wffvghy/luZrOZxx57jHnz5ln6Z67ZUKpUKeLi4izTvsqUKWPV18/Pz+rxkSNH6Natm2XLY4PBgK+vLxcuXGDhwoUsXLiQ5557jo8++sgmR3R0NCEhIezevRvIGGmSmprK33//zbJly/j6669z/PrkVmRkJG3atCEiImMe6PWv74ULFwgLC+PgwYOWnzt+fn6UKVOGCxcuABnT5K5fuLhUqVKW70NDQ+nQoYPltXVycsLX15fz589z7tw5du3axZUrV5g1a1YBPVsREREpTg5fiGfBnjNWx55pXZmyfu6FlEgcicOOtAAYPXo0BoOB6dOnWxa+hIxfwDN30xg1apTVL+qTJ08mODiYvn375kumzKkh/fr1w8nJ6abn9u3blzVr1lht1Wk2m1mwYIElX5cuXQp0pEixYzLBtcsYEqLg2mWH+rpl5jzc4rV58+aWT+VHjBjB4cOHc3yN0aNHs2DBAgwGA++88w5RUVFER0dz+fJl3n77bQDmzJnDO++8k+U1/vjjD/78808+++wzrly5QnR0NLGxsXTt2pXt27fzxx9/WM49f/681deXX35paYuJiaFLly4cOXKEjh07smHDBhITE4mJiSEmJoZJkybh7e3N1KlTmTp1qk2OwYMHs3v3btzc3Jg6dSrx8fFcuXKFkydP0qNHD15++WUuXbqU49coN8aNG0dERATBwcGWdXMuX75McnIyJ0+e5L///S+tWrWy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mPyyYsUK1q5dy8aNG4mIiODChQsAVK9enXbt2vHiiy/StGlTm36ZIyW+/fZbwsLCOHfunNV0kAoVKrBo0SLWrl3Lli1biIyM5OLFizg7O1O9enU6dOjAyy+/TI0aNQrmiYqIiIjDmr0tgrOxSVbHXu96V5HblU0ci4oWIgJkvPkdPny4ZZrH7erZsyePPvpojvrMmjXLMpLjVtzc3Hj33Xd59913b3mus7MzTz31lGV0xo0ytzy1x9PTk7FjxzJ27Fi77ddPocmpmy2KmVVb586d6dy5M2C9VWt2tvF98sknLcWLG7m4uPDggw/y4IMPZiO5iIiIiH3XktP4eu1Rq2OtqvrTtnpgISWS4kLTQ0RERERERCRXZm0+yeWr1tNuNcpC8oKKFiIiIiIiInLbYhNSmbr+mNWxjrVK07Sy1sOS3FPRQkRERERERG7btxuOEZ+UZnVsRJeahZRGihsVLUREREREROS2XIxPYuamk1bHujcoR93yfoUTSIodFS1ERERERETktnyz9hiJqemWx05GA6911igLyTsqWoiIiIiIiEiORV5JYPa2CKtjjzapSNVS3oWUSIojFS1EREREREQkx75afYSUdJPlsauTkeEhNQoxkRRHKlqIiIiIiIhIjhy7dJV5OyOtjj3RqhIVSngUUiIprlS0EBERERERkRyZtPIwJvP/Hnu6OvFC++qFF0iKLRUtREREREREJNvCz8SyZO85q2MD2gRTysetkBJJcaaihYiIiIiIiGTb5ysOWT32dXdmaLtqhZRGijsVLURERERERCRbtp+MZu2hS1bHnr23Gn6eLoWUSIo7FS1ERERERETklsxmM58utx5lEejtyoA2wYUTSO4IKlqIiIiIiIjILW08FsW/J6Ktjg3rUB1PV+dCSiR3AhUtRERERERE5KbMZpi08qjVsQolPHi8ZaVCSiR3ChUtRERERERE5Kb2RhsIPxtndezlkBq4OTsVUiK5U6hoISIiIiIiIllKN5lZctr6rWPVUl70bFyhkBLJnURFCxEREREREcnSotBzXEg0WB0b0fkunJ30dlLyn1ZMERELs9nMvHnzmD17Nrt27eLixYs4OTlRpkwZypUrR4sWLWjXrh2dOnXC19c3T+65Z88e/vzzT0qUKMErr7ySJ9cUERERkbyRkmbiqzXWa1nUKefL/fXKFlIiudOoaCEi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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "with plot_style(figsize=(12, 6), ticklabelsize=16, labelsize=22):\n", + " plot_time_increase(*results_longer['Two loops'], ax=None, color='tab:blue', ls='-')\n", + " plot_time_increase(*results_longer['Sorted lists'], ax=None, color='tab:orange', ls='-')\n", + " plot_time_increase(*results_longer['Sets'], ax=None, color='tab:green', ls='-')\n", + " plot_time_increase(*results_longer['Two loops (fast)'], ax=None, color='tab:blue', ls='--')\n", + " plt.legend(['Two loops', 'Sorted lists', 'Sets'], \n", + " title=None, fontsize=18, loc='center left', \n", + " bbox_to_anchor=(0.05, 0.85), frameon=True, facecolor='white', framealpha=0.8, edgecolor='white')\n", + " plt.ylim(0, 0.2)\n", + " plt.xticks(list(range(1, max_mult + 2, 2)))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0263826e", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/020_numpy/.DS_Store b/notebooks/020_numpy/.DS_Store new file mode 100644 index 0000000..bb0ba71 Binary files /dev/null and b/notebooks/020_numpy/.DS_Store differ diff --git a/notebooks/020_numpy/001_numpy_views_and_copies.ipynb b/notebooks/020_numpy/001_numpy_views_and_copies.ipynb new file mode 100644 index 0000000..13ccfe6 --- /dev/null +++ b/notebooks/020_numpy/001_numpy_views_and_copies.ipynb @@ -0,0 +1,452 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "86b10564", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "def print_info(a):\n", + " \"\"\" Print the content of an array, and its metadata. \"\"\"\n", + " \n", + " txt = f\"\"\"\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + "\n", + " print(a)\n", + " print(txt)" + ] + }, + { + "cell_type": "markdown", + "id": "a5bbf650", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# NumPy views and copies\n", + "\n", + "- Operations that only require changing the metadata always do so, and return a **view**\n", + "- Operations that cannot be executed by changing the metadata create a new memory block, and return a **copy**" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "53bd92f9", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x)" + ] + }, + { + "cell_type": "markdown", + "id": "d2ee43d7", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Views" + ] + }, + { + "cell_type": "markdown", + "id": "f4838e77", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Operations that only require changing the metadata always do so, and return a **view**" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f1b82845", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "# slice\n", + "y = x[0::2, 1::2]\n", + "print_info(y)" + ] + }, + { + "cell_type": "markdown", + "id": "3199b45b", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "A view shares the same memory block as the original array. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "28ea1c71", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "z = x.reshape(1, 12)\n", + "print_info(z)" + ] + }, + { + "cell_type": "markdown", + "id": "d88fbf5d", + "metadata": {}, + "source": [ + "CAREFUL: Modifying the view **changes the original array** and all other views of that array as well!" + ] + }, + { + "cell_type": "markdown", + "id": "7f35dcc3", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "##### in place operations" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "46822b5a", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "y += 100\n", + "print_info(y)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ad9a7950", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "print_info(x)\n", + "print_info(z)" + ] + }, + { + "cell_type": "markdown", + "id": "4fc789c1", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "Functions that take an array as an input should **avoid modifying it in place!***\n", + "\n", + "Always make a copy or be super extra clear in the docstring." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "aa25ac4b", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "def robust_log(x, cte=1e-10):\n", + " \"\"\" Returns the log of an array, deals with values that are 0.\n", + "\n", + " `x` is expected to have non-negative values.\n", + " \"\"\"\n", + " x[x == 0] += cte\n", + " return np.log(x)\n", + " \n", + "# this is not being very clear" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "471d9d6b", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "outputs": [], + "source": [ + "a = np.array([[0.3, 0.01], [0, 1]])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6c05d356", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "# This is a view of `a`\n", + "b = a[1, :]\n", + "print_info(b)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9d96fb61", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "# what is the output?\n", + "robust_log(a)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "35d0327d", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "# what is the output?\n", + "b # what about b??" + ] + }, + { + "cell_type": "markdown", + "id": "fa8cf77a", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "Better to make a copy!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c5359eac", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "def robust_log(x, cte=1e-10):\n", + " \"\"\" Returns the log of an array, deals with values that are 0.\n", + "\n", + " `x` is expected to have non-negative values.\n", + " \"\"\"\n", + " x = x.copy()\n", + " x[x == 0] += cte\n", + " return np.log(x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0bf9b2d5", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.array([[0.3, 0.01], [0, 1]])\n", + "b = a[1, :]\n", + "\n", + "#robust_sqrt(a)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "895209ce", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a # what is the output? \n", + "# b" + ] + }, + { + "cell_type": "markdown", + "id": "d664b462", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Copies\n", + "\n", + "- Operations that cannot be executed by changing the metadata create a new memory block, and return a **copy**\n", + "\n", + "- How to find out view or copy?" + ] + }, + { + "cell_type": "markdown", + "id": "716aec53", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "Choosing row, columns, or individual elements of an array by giving explicitly their indices (a.k.a \"fancy indexing\") it's an operation that in general cannot be executed by changing the metadata alone.\n", + "\n", + "Therefore, **fancy indexing always returns a copy**." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fbcf3100", + "metadata": {}, + "outputs": [], + "source": [ + "x = np.arange(12).reshape(3, 4).copy()\n", + "print_info(x)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6c50e46e", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "#print(x)\n", + "z = x[[0, 0, 2], [1, 0, 3]]\n", + "# Can you guess what's z equal to?\n", + "\n", + "print_info(z)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9d65a5c3", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "z += 1000\n", + "print_info(z)\n", + "\n", + "# the original array is unchanged => not a view!\n", + "print_info(x)" + ] + }, + { + "cell_type": "markdown", + "id": "25aa99a4", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "**Views** are created, when you use other strides to read your data. Slicing and regular indexing allows that, as you know how many byte steps you need to take to get the data.\n", + "\n", + "**Fancy indexing** does not allow that, because the data you are asking **cannot** be obtained by just changing the strides. Thus, numpy needs to create a **copy** of it in memory." + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/020_numpy/if_time_002_broadcasting.ipynb b/notebooks/020_numpy/if_time_002_broadcasting.ipynb new file mode 100644 index 0000000..677364d --- /dev/null +++ b/notebooks/020_numpy/if_time_002_broadcasting.ipynb @@ -0,0 +1,1336 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "id": "282817dd", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:23.900532Z", + "start_time": "2023-06-27T20:08:22.963157Z" + }, + "slideshow": { + "slide_type": "skip" + } + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "\n", + "def print_info(a):\n", + " \"\"\" Print the content of an array, and its metadata. \"\"\"\n", + " \n", + " txt = f\"\"\"\n", + "dtype\\t{a.dtype}\n", + "ndim\\t{a.ndim}\n", + "shape\\t{a.shape}\n", + "strides\\t{a.strides}\n", + " \"\"\"\n", + "\n", + " print(a)\n", + " print(txt)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "3fbf8e4a", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:26.353134Z", + "start_time": "2023-06-27T20:08:26.089698Z" + }, + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[2, 4, 6],\n", + " [2, 4, 6]])" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.array([1, 2, 3])\n", + "b = np.array([[1, 2, 3], [1, 2, 3]])\n", + "a + b" + ] + }, + { + "cell_type": "markdown", + "id": "7f116ff0", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "## Broadcasting\n", + ">The term broadcasting describes how NumPy treats arrays with different shapes during arithmetic operations" + ] + }, + { + "cell_type": "markdown", + "id": "f3d30c66", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Array operations" + ] + }, + { + "cell_type": "markdown", + "id": "be283ee9", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "> NumPy operations are usually done on pairs of arrays on an element-by-element basis. Arrays of the same size are added element by element" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "f272c2e6", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:36.530322Z", + "start_time": "2023-06-27T20:08:36.521998Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0 2 4 6]\n", + "[1 3 5 7]\n" + ] + } + ], + "source": [ + "x = np.array([0, 2, 4, 6])\n", + "y = np.array([1, 3, 5, 7])\n", + "print(x)\n", + "print(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "96b821a8", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:37.005874Z", + "start_time": "2023-06-27T20:08:36.985938Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 1, 5, 9, 13])" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x + y" + ] + }, + { + "cell_type": "markdown", + "id": "d1c4aa4a", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "in numpy, we can just as easily add a scalar to x" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "5a475ee0", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:39.241200Z", + "start_time": "2023-06-27T20:08:39.233969Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0 2 4 6]\n" + ] + } + ], + "source": [ + "print(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "c609b563", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:39.802413Z", + "start_time": "2023-06-27T20:08:39.793716Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([3, 5, 7, 9])" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x + 3 # why added to the full array and not just to the first element? --> broadcasting" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "782d1a33", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:42.052098Z", + "start_time": "2023-06-27T20:08:42.042180Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Inefficient [3 5 7 9]\n", + "\n", + "Inefficient [3 5 7 9]\n" + ] + } + ], + "source": [ + "# Alterenative \n", + "# that no one does, hopefully\n", + "# Make a new copy of array\n", + "# Loop through array and add 3\n", + "newx = x.copy()\n", + "for i in np.arange(x.size):\n", + " newx[i] = newx[i] + 3\n", + "print('Inefficient', newx)\n", + "\n", + "print()\n", + "\n", + "# Stretch out 3 to the same shape of array\n", + "# Add x + 3\n", + "new3 = [3, 3, 3, 3]\n", + "x = x + new3\n", + "print('Inefficient', x)" + ] + }, + { + "cell_type": "markdown", + "id": "85c8fa78", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-26T16:39:13.224713Z", + "start_time": "2023-06-26T16:39:13.213500Z" + }, + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Broadcasting\n", + "\n", + "We can think of broadcasting as an operation that stretches or duplicates the value 3 into the array [3, 3, 3, 3], and adds the results. \n", + "\n", + "The code in the first example is more efficient than that in the first because broadcasting moves less memory around during the addition (3 is a scalar rather than an array)" + ] + }, + { + "cell_type": "markdown", + "id": "ea75d6f8", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "![broadcast_1D.png](images/broadcast_1D.png)" + ] + }, + { + "cell_type": "markdown", + "id": "8cef6a65", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## 2D broadcasting" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "88403cf2", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:49.074246Z", + "start_time": "2023-06-27T20:08:49.065491Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 2 3]\n", + "\n", + "[[4 5 6]\n", + " [7 8 9]]\n" + ] + } + ], + "source": [ + "a = np.array([1, 2, 3]) \n", + "b = np.array([[4, 5, 6], [7, 8, 9]])\n", + "\n", + "print(a)\n", + "print('')\n", + "print(b)" + ] + }, + { + "cell_type": "markdown", + "id": "2fa45377", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Adding 'a' to each row of 'b'" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "e1bdb80f", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:54.384721Z", + "start_time": "2023-06-27T20:08:54.370392Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 5, 7, 9],\n", + " [ 8, 10, 12]])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a + b" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "88c2ac1b", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:08:54.837311Z", + "start_time": "2023-06-27T20:08:54.826312Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "# I don't need to loop through each row of b and add a\n", + "print('Inefficient')\n", + "for i in b:\n", + " print(i + a)\n", + "\n", + "print()\n", + "\n", + "print('Inefficient')\n", + "#Or repeat a to match the dimensions of b\n", + "newa = np.array([[1, 2, 3], [1, 2, 3]])\n", + "newa = np.tile(a, (2, 1))\n", + "print(newa+b)" + ] + }, + { + "cell_type": "markdown", + "id": "f0405c0e", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "The advantage of NumPy's broadcasting is that this duplication of values **does not actually take place**, but it is a useful mental model as we think about broadcasting." + ] + }, + { + "cell_type": "markdown", + "id": "e503116b", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Why does understanding broadcasting matter?\n", + "+ Efficient element-wise operations with numpy\n", + "+ Simplifies code\n", + "+ Flexibly manipulate data\n", + "+ Understand broadcasting errors" + ] + }, + { + "cell_type": "markdown", + "id": "bd0c6d0f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "Three rules of Broadcasting\n", + "\n", + "When operating on two arrays, NumPy compares their shapes." + ] + }, + { + "cell_type": "markdown", + "id": "4a4810e6", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "Rule 1: If the two arrays differ in their number of dimensions, the shape of the one with fewer dimensions is padded with ones on its leading LEFT side : **Pad**\n", + "\n", + "Rule 2: If the shape of the two arrays does not match in any dimension, the array with shape equal to 1 in that dimension is stretched to match the other shape : **Stretch**\n", + "\n", + "Rule 3: If in any dimension the sizes disagree and neither is equal to 1, an error is raised : **Check**" + ] + }, + { + "cell_type": "markdown", + "id": "30bb103b", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + " Pad, Stretch, Check " + ] + }, + { + "cell_type": "markdown", + "id": "c65b5dcf", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Broadcasting example 1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b37486ef", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:16:55.153853Z", + "start_time": "2023-06-27T20:16:55.144099Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.array([1, 2, 3])\n", + "b = np.array([[4, 5, 6], [7, 8, 9]])\n", + "\n", + "print(a)\n", + "print('')\n", + "print(b)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1d948492", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:16:55.456925Z", + "start_time": "2023-06-27T20:16:55.448580Z" + } + }, + "outputs": [], + "source": [ + "print(a.shape)\n", + "print()\n", + "print(b.shape)" + ] + }, + { + "cell_type": "markdown", + "id": "cd4286d9", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "### Rule 1: Pad\n", + "\n", + ">If the two arrays differ in their number of dimensions, the shape of the one with fewer dimensions is padded with ones on its leading (left) side" + ] + }, + { + "cell_type": "markdown", + "id": "7e69836a", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "We see by rule 1 that the array a has fewer dimensions, so we pad it on the left with ones:\n", + "\n", + "a.shape -> (1, 3)\n", + "\n", + "b.shape -> (2, 3)" + ] + }, + { + "cell_type": "markdown", + "id": "e5219f11", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "### Rule 2: Stretch\n", + "\n", + "> If the shape of the two arrays does not match in any dimension, the array with shape equal to 1 in that dimension is stretched or \"broadcast\" to match the other shape.\n" + ] + }, + { + "cell_type": "markdown", + "id": "f434a4d9", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "By rule 2, we now see that the first dimension disagrees, so we stretch this dimension in a to match:\n", + "\n", + "a.shape -> (2, 3)\n", + "\n", + "b.shape -> (2, 3)\n", + "\n", + "The shapes match, and we see that the final shape will be (2, 3)" + ] + }, + { + "cell_type": "markdown", + "id": "2fac50f0", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "### Rule 3: Check\n", + "\n", + "> If in any dimension the sizes disagree and neither is equal to 1, an error is raised : Check" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3545ef93", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:13:25.685732Z", + "start_time": "2023-06-27T20:13:25.675680Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "(a+b).shape" + ] + }, + { + "cell_type": "markdown", + "id": "a718ef31", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Broadcasting example 2" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "be17841c", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:24.820033Z", + "start_time": "2023-06-27T20:29:24.813695Z" + } + }, + "outputs": [], + "source": [ + "a = np.arange(3)\n", + "b = np.arange(4).reshape(4, 1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "419709a9", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:25.101341Z", + "start_time": "2023-06-27T20:29:25.094246Z" + } + }, + "outputs": [], + "source": [ + "print(a.shape)\n", + "print()\n", + "print(b.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a583f31c", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:25.391210Z", + "start_time": "2023-06-27T20:29:25.381999Z" + } + }, + "outputs": [], + "source": [ + "(a+b).shape" + ] + }, + { + "cell_type": "markdown", + "id": "53603d10", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Broadcasting example 3" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "1001798b", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:26.282334Z", + "start_time": "2023-06-27T20:29:26.276961Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "a = np.ones((3, 2))\n", + "b = np.array([4, 5, 6])" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "6969597a", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:26.524280Z", + "start_time": "2023-06-27T20:29:26.514221Z" + }, + "slideshow": { + "slide_type": "-" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(3, 2)\n", + "\n", + "(3,)\n" + ] + } + ], + "source": [ + "print(a.shape)\n", + "print()\n", + "print(b.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "adabdf3d", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:29:27.021351Z", + "start_time": "2023-06-27T20:29:27.006776Z" + }, + "slideshow": { + "slide_type": "-" + }, + "tags": [ + "raises-exception" + ] + }, + "outputs": [ + { + "ename": "ValueError", + "evalue": "operands could not be broadcast together with shapes (3,2) (3,) ", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[14], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m (\u001b[43ma\u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43mb\u001b[49m)\u001b[38;5;241m.\u001b[39mshape\n", + "\u001b[0;31mValueError\u001b[0m: operands could not be broadcast together with shapes (3,2) (3,) " + ] + } + ], + "source": [ + "(a+b).shape" + ] + }, + { + "cell_type": "markdown", + "id": "c48fa3cb", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "![Notcompatible.png](images/Notcompatible.png)" + ] + }, + { + "cell_type": "markdown", + "id": "9aa28998", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "### Rule 3 : Check\n", + ">If in any dimension the sizes disagree and neither is equal to 1, an error is raised." + ] + }, + { + "cell_type": "markdown", + "id": "2d84ff92", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "But numpy should have just padded on the right....\n", + ">thats not how the broadcasting rules work! It would lead to potential areas of ambiguity. If right-side padding is what you'd like, you can do this explicitly by reshaping the array " + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "103cdcdb", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:34:53.502018Z", + "start_time": "2023-06-27T20:34:53.496501Z" + }, + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "a = np.ones((3, 2))\n", + "b = np.array([4, 5, 6])[:, np.newaxis]\n", + "# b = np.array([4, 5, 6]).reshape((3, 1))" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "847e919f", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:34:53.940537Z", + "start_time": "2023-06-27T20:34:53.932615Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(3, 2)\n", + "\n", + "(3, 1)\n" + ] + } + ], + "source": [ + "print(a.shape)\n", + "print()\n", + "print(b.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "fb7cd974", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T20:34:54.863120Z", + "start_time": "2023-06-27T20:34:54.849693Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(3, 2)" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(a+b).shape" + ] + }, + { + "cell_type": "markdown", + "id": "7f3dffb8", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "![newaxis.png](images/newaxis.png)" + ] + }, + { + "cell_type": "markdown", + "id": "c0c21eac", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Recap" + ] + }, + { + "cell_type": "markdown", + "id": "cf9e9234", + "metadata": { + "slideshow": { + "slide_type": "-" + } + }, + "source": [ + "```\n", + "Scalar 2D 3D Bad\n", + "\n", + "( ,) (3, 4) (3, 5, 1) (3, 5, 2)\n", + "(3,) (3, 1) ( 8) ( 8)\n", + "---- ------ --------- ---------\n", + "(3,) (3, 4) (3, 5, 8) XXX\n", + "```" + ] + }, + { + "cell_type": "markdown", + "id": "6cd0f8cf", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + " Mind-on exercises " + ] + }, + { + "cell_type": "markdown", + "id": "acba732f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 1: warm up\n", + "\n", + "```What is the expected output shape for each operation?```" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "a41d0f74", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.881059Z", + "start_time": "2023-06-27T19:58:57.830Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(5,)" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.arange(5)\n", + "b = 5\n", + "\n", + "np.shape(a-b)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "6f82a2fb", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.884966Z", + "start_time": "2023-06-27T19:58:57.833Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(7, 7)" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.ones((7, 1))\n", + "b = np.arange(7)\n", + "np.shape(a*b)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "808095ad", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.888119Z", + "start_time": "2023-06-27T19:58:57.836Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 3, 3)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "a = np.random.randint(0, 50, (2, 3, 3))\n", + "b = np.random.randint(0, 10, (3, 1))\n", + "\n", + "np.shape(a-b)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "d9a12a90", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.891462Z", + "start_time": "2023-06-27T19:58:57.839Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "ename": "ValueError", + "evalue": "operands could not be broadcast together with shapes (10,10) (9,) ", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[25], line 4\u001b[0m\n\u001b[1;32m 1\u001b[0m a \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39marange(\u001b[38;5;241m100\u001b[39m)\u001b[38;5;241m.\u001b[39mreshape(\u001b[38;5;241m10\u001b[39m, \u001b[38;5;241m10\u001b[39m)\n\u001b[1;32m 2\u001b[0m b \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39marange(\u001b[38;5;241m1\u001b[39m, \u001b[38;5;241m10\u001b[39m)\n\u001b[0;32m----> 4\u001b[0m np\u001b[38;5;241m.\u001b[39mshape(\u001b[43ma\u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43mb\u001b[49m)\n", + "\u001b[0;31mValueError\u001b[0m: operands could not be broadcast together with shapes (10,10) (9,) " + ] + } + ], + "source": [ + "a = np.arange(100).reshape(10, 10)\n", + "b = np.arange(1, 10)\n", + "\n", + "np.shape(a+b)" + ] + }, + { + "cell_type": "markdown", + "id": "69632f95", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 2\n", + "\n", + "```\n", + "1. Create a random 2D array of dimension (5, 3)\n", + "2. Calculate the maximum value of each row\n", + "3. Divide each row by its maximum\n", + "```\n", + "\n", + "Remember to use broadcasting : NO FOR LOOPS!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "54e2a53e", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.894433Z", + "start_time": "2023-06-27T19:58:57.843Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "## Your code here" + ] + }, + { + "cell_type": "markdown", + "id": "b9facc0f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "### Exercise 3" + ] + }, + { + "cell_type": "markdown", + "id": "7e8156d0", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Task: Find the closest **cluster** to the **observation**. \n", + "\n", + "Again, use broadcasting: DO NOT iterate cluster by cluster" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2969994e", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.899204Z", + "start_time": "2023-06-27T19:58:57.847Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "observation = np.array([30.0, 99.0]) #Observation\n", + "\n", + "#Clusters\n", + "clusters = np.array([[102.0, 203.0],\n", + " [132.0, 193.0],\n", + " [45.0, 155.0], \n", + " [57.0, 173.0]])" + ] + }, + { + "cell_type": "markdown", + "id": "f13352ff", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Lets plot this data\n", + "\n", + "In the plot below, **+** is the observation and dots are the cluster coordinates" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b9f6b5cf", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.906715Z", + "start_time": "2023-06-27T19:58:57.850Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt \n", + "\n", + "plt.scatter(clusters[:, 0], clusters[:, 1]) #Scatter plot of clusters\n", + "for n, x in enumerate(clusters):\n", + " print('cluster %d' %n)\n", + " plt.annotate('cluster%d' %n, (x[0], x[1])) #Label each cluster\n", + "plt.plot(observation[0], observation[1], '+'); #Plot observation" + ] + }, + { + "cell_type": "markdown", + "id": "4f9b84e2", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Closest cluster as seen by the plot is **2**. Your task is to write a function to calculate this" + ] + }, + { + "cell_type": "markdown", + "id": "8aea6781", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-26T19:25:08.202848Z", + "start_time": "2023-06-26T19:25:08.194923Z" + } + }, + "source": [ + "\n", + "**hint:** Find the distance between the observation and each row in the cluster. The cluster to which the observation belongs to is the row with the minimum distance.\n", + "\n", + "distance = $\\sqrt {\\left( {x_1 - x_2 } \\right)^2 + \\left( {y_1 - y_2 } \\right)^2 }$" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ea8a7240", + "metadata": { + "ExecuteTime": { + "end_time": "2023-06-27T19:58:58.916610Z", + "start_time": "2023-06-27T19:58:57.854Z" + }, + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "## Your code here" + ] + }, + { + "cell_type": "markdown", + "id": "beaee243", + "metadata": { + "slideshow": { + "slide_type": "skip" + } + }, + "source": [ + "## Sources + Resources\n", + "\n", + "ASPP 2016 - Stéfan van der Walt - https://github.com/ASPP/2016_numpy\n", + "\n", + "Basic Numpy: http://scipy-lectures.org/intro/numpy/index.html\n", + "\n", + "Advanced Numpy: http://scipy-lectures.org/advanced/advanced_numpy/index.html\n", + "\n", + "Numpy chapter in \"Python Data Science Handbook\" https://jakevdp.github.io/PythonDataScienceHandbook/02.00-introduction-to-numpy.html" + ] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + }, + "rise": { + "scroll": true + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/020_numpy/if_time_003_vectorization.ipynb b/notebooks/020_numpy/if_time_003_vectorization.ipynb new file mode 100644 index 0000000..f20bb9a --- /dev/null +++ b/notebooks/020_numpy/if_time_003_vectorization.ipynb @@ -0,0 +1,305 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "id": "807f94ad", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "markdown", + "id": "aa4ee33f", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Avoid for-loops (element-after-element operations)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c4290b53", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "def compute_reciprocals(values):\n", + " output = np.empty(len(values))\n", + " for i in range(len(values)):\n", + " output[i] = 1.0 / values[i]\n", + " return output" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "b6e6dca6", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "18.4 µs ± 155 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)\n" + ] + } + ], + "source": [ + "%%timeit\n", + "\n", + "np.random.seed(0)\n", + " \n", + "values = np.random.randint(1, 10, size=5)\n", + "compute_reciprocals(values)" + ] + }, + { + "cell_type": "markdown", + "id": "bd70d5d3", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "source": [ + "Very slow! Each time the reciprocal is computed, Python first examines the object's **type** and does a dynamic lookup of the **correct function** to use for that type" + ] + }, + { + "cell_type": "markdown", + "id": "cfd3f5d5", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Basic functions\n", + "\n", + "In NumPy - convenient interface for just this kind of statically typed, compiled routine. --> vectorized operations\n", + "- performing an operation on the array, which will then be applied to each element\n", + "- pushes the loop into the compiled layer that underlies NumPy --> much faster execution\n", + "\n", + "- basic funcs quickly execute repeated operations on values in NumPy arrays --> extremely flexible" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "28eb2782", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.81 µs ± 173 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)\n" + ] + } + ], + "source": [ + "%%timeit\n", + "values = np.random.randint(1, 10, size=5)\n", + "#compute_reciprocals(values)\n", + "1.0 / values" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "8fa81fb7", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x = [0 1 2 3]\n", + "x + 5 = [5 6 7 8]\n", + "x - 5 = [-5 -4 -3 -2]\n", + "x * 2 = [0 2 4 6]\n" + ] + } + ], + "source": [ + "# simple vectorized functions \n", + "x = np.arange(4)\n", + "print(\"x =\", x)\n", + "print(\"x + 5 =\", x + 5)\n", + "print(\"x - 5 =\", x - 5)\n", + "print(\"x * 2 =\", x * 2)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "84b8ac14", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "x = [1, 2, 3]\n", + "e^x = [ 2.71828183 7.3890561 20.08553692]\n", + "2^x = [2. 4. 8.]\n", + "3^x = [ 3 9 27]\n" + ] + } + ], + "source": [ + "# exponents and logarithms\n", + "x = [1, 2, 3]\n", + "print(\"x =\", x)\n", + "print(\"e^x =\", np.exp(x))\n", + "print(\"2^x =\", np.exp2(x))\n", + "print(\"3^x =\", np.power(3, x))" + ] + }, + { + "cell_type": "markdown", + "id": "10ec3b82", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "## Mgrid" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "289495f1", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [], + "source": [ + "x = np.arange(1,10) # timepoints\n", + "y = np.arange(-70, 100, 10) # voltage change\n", + "\n", + "# for loop solution\n", + "xx, yy = np.zeros((len(x), len(y))), np.zeros((len(y), len(x)))\n", + "for a, i in enumerate(x):\n", + " xx[a] = np.repeat(i, len(y))\n", + "\n", + "for b, j in enumerate(y):\n", + " yy[b] = np.repeat(j, len(x))\n", + "yy = yy.T\n", + "\n", + "# 1-line mgrid solution\n", + "# works like broadcasting\n", + "XX, YY = np.mgrid[1:10:1, -70:100:10] # two arrays with shape (9,17); (len(x), len(y))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "25bce1f0", + "metadata": { + "slideshow": { + "slide_type": "fragment" + } + }, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig = plt.figure()\n", + "ax = fig.add_subplot()\n", + "ax.scatter(xx, yy)\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "7b8a8d1e", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "source": [ + "# Hands on exercises\n", + "\n", + "- Open notebook exercises/numpy_vectorize.ipynb\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1fb78b62", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "celltoolbar": "Slideshow", + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/020_numpy/images/Notcompatible.png b/notebooks/020_numpy/images/Notcompatible.png new file mode 100644 index 0000000..956936e Binary files /dev/null and b/notebooks/020_numpy/images/Notcompatible.png differ diff --git a/notebooks/020_numpy/images/broadcast_1D.png b/notebooks/020_numpy/images/broadcast_1D.png new file mode 100644 index 0000000..fbd963b Binary files /dev/null and b/notebooks/020_numpy/images/broadcast_1D.png differ diff --git a/notebooks/020_numpy/images/fancy_indexing_lookup.png b/notebooks/020_numpy/images/fancy_indexing_lookup.png new file mode 100644 index 0000000..cc90791 Binary files /dev/null and b/notebooks/020_numpy/images/fancy_indexing_lookup.png differ diff --git a/notebooks/020_numpy/images/newaxis.png b/notebooks/020_numpy/images/newaxis.png new file mode 100644 index 0000000..e93325c Binary files /dev/null and b/notebooks/020_numpy/images/newaxis.png differ diff --git a/notebooks/020_numpy/images/strides.png b/notebooks/020_numpy/images/strides.png new file mode 100644 index 0000000..3593136 Binary files /dev/null and b/notebooks/020_numpy/images/strides.png differ diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/010_pandas_introduction-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/010_pandas_introduction-checkpoint.ipynb new file mode 100644 index 0000000..da99369 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/010_pandas_introduction-checkpoint.ipynb @@ -0,0 +1,1362 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "8cc1c960", + "metadata": {}, + "source": [ + "# Pandas, quick introduction" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "0f55dab1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "4b377c42", + "metadata": {}, + "source": [ + "# Pandas introduces a tabular data structure, the DataFrame\n", + "\n", + "* Columns can be of any C-native type\n", + "* Columns and rows have indices, i.e. labels that identify each column or row" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ec75edbe", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(\n", + " data = [\n", + " ['Anthony', 28, 1.53], \n", + " ['Maria', 31, 1.76], \n", + " ['Emma', 26, 1.83], \n", + " ['Philip', 41, 1.81], \n", + " ['Bill', 27, None],\n", + " ],\n", + " columns = ['name', 'age', 'height'],\n", + " index=['A484', 'C012', 'A123', 'B663', 'A377'],\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "37318480", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "b97a9336", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d3c5fea6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A377Bill27NaN
C012Maria311.76
A484Anthony281.53
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A377 Bill 27 NaN\n", + "C012 Maria 31 1.76\n", + "A484 Anthony 28 1.53" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sample(3)" + ] + }, + { + "cell_type": "markdown", + "id": "e31f21c6", + "metadata": {}, + "source": [ + "## DataFrame attributes" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "41c213bf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(5, 3)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "8921c1c6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name object\n", + "age int64\n", + "height float64\n", + "dtype: object" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Each column can be a different dtype\n", + "# All dtypes are native data types, as in NumPy\n", + "df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "84451023", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['name', 'age', 'height'], dtype='object')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "223462e3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['A484', 'C012', 'A123', 'B663', 'A377'], dtype='object')" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.index" + ] + }, + { + "cell_type": "markdown", + "id": "cb2f33b9", + "metadata": {}, + "source": [ + "## Indexing rows and columns" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "e3420312", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 28\n", + "C012 31\n", + "A123 26\n", + "B663 41\n", + "A377 27\n", + "Name: age, dtype: int64" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Default indexing is by column\n", + "df['age']" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "58b29585", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
agename
A48428Anthony
C01231Maria
A12326Emma
B66341Philip
A37727Bill
\n", + "
" + ], + "text/plain": [ + " age name\n", + "A484 28 Anthony\n", + "C012 31 Maria\n", + "A123 26 Emma\n", + "B663 41 Philip\n", + "A377 27 Bill" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Use a list to select multiple columns (like in NumPy's fancy indexing)\n", + "df[['age', 'name']]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "6458bc59", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.53" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Indexing by row / column name\n", + "df.loc['A484', 'height']" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "41496582", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.53" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Indexing by element position like in NumPy (it's a bit of a smell)\n", + "df.iloc[0, 2]" + ] + }, + { + "cell_type": "markdown", + "id": "43ab5233", + "metadata": {}, + "source": [ + "## Examining a column" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "a0929b25", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Anthony', 'Maria', 'Emma', 'Philip', 'Bill'], dtype=object)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "b6087787", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "bdd587c7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 4.000000\n", + "mean 1.732500\n", + "std 0.138173\n", + "min 1.530000\n", + "25% 1.702500\n", + "50% 1.785000\n", + "75% 1.815000\n", + "max 1.830000\n", + "Name: height, dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['height'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "fc081b90", + "metadata": {}, + "source": [ + "# Filtering" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "7d294f17", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
C012Maria311.76
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "C012 Maria 31 1.76\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df['age'] > 30]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "85604657", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "is_old_and_tall = (df['age'] > 30) & (df['height'] > 1.8)\n", + "df[is_old_and_tall]" + ] + }, + { + "cell_type": "markdown", + "id": "a570023a", + "metadata": {}, + "source": [ + "# Basic operations are by column (unlike NumPy)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "6eb50844", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "26" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['age'].min()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "a95e0e90", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name Anthony\n", + "age 26\n", + "height 1.53\n", + "dtype: object" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.min()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "d5c3f2f4", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_80457/1061404192.py:2: FutureWarning: The default value of numeric_only in DataFrame.mean is deprecated. In a future version, it will default to False. In addition, specifying 'numeric_only=None' is deprecated. Select only valid columns or specify the value of numeric_only to silence this warning.\n", + " df.mean()\n" + ] + }, + { + "data": { + "text/plain": [ + "age 30.6000\n", + "height 1.7325\n", + "dtype: float64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Note that Pandas operations ignore NaNs (they consider them as \"missing\")\n", + "df.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "fdb4e73e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "age 30.6000\n", + "height 1.7325\n", + "dtype: float64" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.mean(numeric_only=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "efc0dcc9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
A377Bill27NaN
A123Emma261.83
C012Maria311.76
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "A377 Bill 27 NaN\n", + "A123 Emma 26 1.83\n", + "C012 Maria 31 1.76\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Operations that change the order of the rows keep the index and column labels intact\n", + "df.sort_values('name', axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "2ba681da", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "7cf9b5d7", + "metadata": {}, + "source": [ + "# Operations on strings" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "c76ca899", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 t\n", + "C012 r\n", + "A123 m\n", + "B663 i\n", + "A377 l\n", + "Name: name, dtype: object" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Use `.str` to access string operations\n", + "# Third character of each name\n", + "df['name'].str[2]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "c9d8494d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 ANTHONY\n", + "C012 MARIA\n", + "A123 EMMA\n", + "B663 PHILIP\n", + "A377 BILL\n", + "Name: name, dtype: object" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Third character of each name\n", + "df['name'].str.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "5767c6aa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 0\n", + "C012 2\n", + "A123 1\n", + "B663 0\n", + "A377 0\n", + "Name: name, dtype: int64" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].str.count('a')" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "a98f79da", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 1\n", + "C012 2\n", + "A123 1\n", + "B663 0\n", + "A377 0\n", + "Name: name, dtype: int64" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].str.lower().str.count('a')" + ] + }, + { + "cell_type": "markdown", + "id": "b2d162d2", + "metadata": {}, + "source": [ + "# Adding new columns" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "5cdbb3cd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "0e97e98b", + "metadata": {}, + "outputs": [], + "source": [ + "df['name_upper'] = df['name'].str.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "4f35c1df", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheightname_upper
A484Anthony281.53ANTHONY
C012Maria311.76MARIA
A123Emma261.83EMMA
B663Philip411.81PHILIP
A377Bill27NaNBILL
\n", + "
" + ], + "text/plain": [ + " name age height name_upper\n", + "A484 Anthony 28 1.53 ANTHONY\n", + "C012 Maria 31 1.76 MARIA\n", + "A123 Emma 26 1.83 EMMA\n", + "B663 Philip 41 1.81 PHILIP\n", + "A377 Bill 27 NaN BILL" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e354ace", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/011_pandas_introduction_tutor-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/011_pandas_introduction_tutor-checkpoint.ipynb new file mode 100644 index 0000000..770b63c --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/011_pandas_introduction_tutor-checkpoint.ipynb @@ -0,0 +1,316 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "8cc1c960", + "metadata": {}, + "source": [ + "# Pandas, quick introduction" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "0f55dab1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "4b377c42", + "metadata": {}, + "source": [ + "# Pandas introduces a tabular data structure, the DataFrame\n", + "\n", + "* Columns can be of any C-native type\n", + "* Columns and rows have indices, i.e. labels that identify each column or row" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ec75edbe", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(\n", + " data = [\n", + " ['Anthony', 28, 1.53], \n", + " ['Maria', 31, 1.76], \n", + " ['Emma', 26, 1.83], \n", + " ['Philip', 41, 1.81], \n", + " ['Bill', 27, None],\n", + " ],\n", + " columns = ['name', 'age', 'height'],\n", + " index=['A484', 'C012', 'A123', 'B663', 'A377'],\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "37318480", + "metadata": {}, + "outputs": [], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fe1c5739", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dedad6f3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "e31f21c6", + "metadata": {}, + "source": [ + "## DataFrame attributes" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4109f1eb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "708f9bb5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "cb2f33b9", + "metadata": {}, + "source": [ + "## Indexing rows and columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "19ef2738", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8f354ffc", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "94563f03", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "43ab5233", + "metadata": {}, + "source": [ + "## Examining a column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f2cb544c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86388f86", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "fc081b90", + "metadata": {}, + "source": [ + "# Filtering" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "263ae06c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "318da062", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "a570023a", + "metadata": {}, + "source": [ + "# Basic operations are by column (unlike NumPy)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7260d212", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "49b7057a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f5a0f053", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7e1ffe32", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "7cf9b5d7", + "metadata": {}, + "source": [ + "# Operations on strings" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b78bc237", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0236069f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5761725b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ce3d54ad", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "8c5584db", + "metadata": {}, + "source": [ + "# Adding new columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f6e09176", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f9a552f0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e354ace", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/020_join_operations-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/020_join_operations-checkpoint.ipynb new file mode 100644 index 0000000..eac6568 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/020_join_operations-checkpoint.ipynb @@ -0,0 +1,1009 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "86d2536c", + "metadata": {}, + "source": [ + "# Combine information across tables: joins and anti-joins" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f949f7", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "1d2a4eab", + "metadata": {}, + "source": [ + "# \"Load\" some experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a9450803", + "metadata": {}, + "outputs": [], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['711', 'A2', 0.44, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "a7e8b09b", + "metadata": {}, + "source": [ + "Each experiment belongs to one experimental condition, but the parameters of each condition are not in the table" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "455471d7", + "metadata": {}, + "outputs": [], + "source": [ + "condition_to_orientation = {\n", + " 'A1': 0,\n", + " 'A2': 0,\n", + " 'B1': 45,\n", + " 'B2': 45,\n", + " 'C1': 90,\n", + "}\n", + "\n", + "condition_to_duration = {\n", + " 'A1': 0.1,\n", + " 'A2': 0.01,\n", + " 'B1': 0.1,\n", + " 'B2': 0.01,\n", + " 'C1': 0.2,\n", + "}\n", + "\n", + "condition_to_surround = {\n", + " 'A1': 'FULL',\n", + " 'A2': 'NONE',\n", + " 'B1': 'NONE',\n", + " 'B2': 'FULL',\n", + " 'C1': 'FULL',\n", + "}\n", + "\n", + "\n", + "condition_to_stimulus_type = {\n", + " 'A1': 'LINES',\n", + " 'A2': 'DOTS',\n", + " 'B1': 'PLAID',\n", + " 'B2': 'PLAID',\n", + " 'C1': 'WIGGLES',\n", + "}\n" + ] + }, + { + "cell_type": "markdown", + "id": "5ccfd7e7", + "metadata": {}, + "source": [ + "# Manually adding the condition parameters to the table" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "cc32110c", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties = data.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "c322a9af", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 A1\n", + "1 A2\n", + "2 C2\n", + "3 A1\n", + "4 A2\n", + "5 A1\n", + "6 B1\n", + "7 A2\n", + "8 A2\n", + "9 B2\n", + "10 B1\n", + "11 C2\n", + "12 B1\n", + "Name: condition_id, dtype: object" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties['condition_id']" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "id": "0dbee78b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0.0\n", + "1 0.0\n", + "2 NaN\n", + "3 0.0\n", + "4 0.0\n", + "5 0.0\n", + "6 45.0\n", + "7 0.0\n", + "8 0.0\n", + "9 45.0\n", + "10 45.0\n", + "11 NaN\n", + "12 45.0\n", + "Name: condition_id, dtype: float64" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties['condition_id'].map(condition_to_orientation)" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "id": "3fb3e3af", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties['orientation'] = data_with_properties['condition_id'].map(condition_to_orientation)\n", + "data_with_properties['duration'] = data_with_properties['condition_id'].map(condition_to_duration)\n", + "data_with_properties['surround'] = data_with_properties['condition_id'].map(condition_to_surround)\n", + "data_with_properties['stimulus_type'] = data_with_properties['condition_id'].map(condition_to_stimulus_type)" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "995eff91", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponseorientationdurationsurroundstimulus_type
0312A10.12LEFT0.00.10FULLLINES
1312A20.37LEFT0.00.01NONEDOTS
2312C20.68LEFTNaNNaNNaNNaN
3711A14.01RIGHT0.00.10FULLLINES
4711A20.44LEFT0.00.01NONEDOTS
5313A10.07RIGHT0.00.10FULLLINES
6313B10.08RIGHT45.00.10NONEPLAID
7712A23.29LEFT0.00.01NONEDOTS
8314A20.29LEFT0.00.01NONEDOTS
9714B23.32RIGHT45.00.01FULLPLAID
10314B10.14RIGHT45.00.10NONEPLAID
11314C20.73RIGHTNaNNaNNaNNaN
12713B15.74LEFT45.00.10NONEPLAID
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response orientation duration \\\n", + "0 312 A1 0.12 LEFT 0.0 0.10 \n", + "1 312 A2 0.37 LEFT 0.0 0.01 \n", + "2 312 C2 0.68 LEFT NaN NaN \n", + "3 711 A1 4.01 RIGHT 0.0 0.10 \n", + "4 711 A2 0.44 LEFT 0.0 0.01 \n", + "5 313 A1 0.07 RIGHT 0.0 0.10 \n", + "6 313 B1 0.08 RIGHT 45.0 0.10 \n", + "7 712 A2 3.29 LEFT 0.0 0.01 \n", + "8 314 A2 0.29 LEFT 0.0 0.01 \n", + "9 714 B2 3.32 RIGHT 45.0 0.01 \n", + "10 314 B1 0.14 RIGHT 45.0 0.10 \n", + "11 314 C2 0.73 RIGHT NaN NaN \n", + "12 713 B1 5.74 LEFT 45.0 0.10 \n", + "\n", + " surround stimulus_type \n", + "0 FULL LINES \n", + "1 NONE DOTS \n", + "2 NaN NaN \n", + "3 FULL LINES \n", + "4 NONE DOTS \n", + "5 FULL LINES \n", + "6 NONE PLAID \n", + "7 NONE DOTS \n", + "8 NONE DOTS \n", + "9 FULL PLAID \n", + "10 NONE PLAID \n", + "11 NaN NaN \n", + "12 NONE PLAID " + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties" + ] + }, + { + "cell_type": "markdown", + "id": "d6e71b13", + "metadata": {}, + "source": [ + "# Using a join operation" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d9835d7c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
orientationdurationsurroundstimulus_type
A100.1FULLLINES
A200.01NONEDOTS
B1450.1NONEPLAID
B2450.01FULLPLAID
C1900.2FULLWIGGLES
\n", + "
" + ], + "text/plain": [ + " orientation duration surround stimulus_type\n", + "A1 0 0.1 FULL LINES\n", + "A2 0 0.01 NONE DOTS\n", + "B1 45 0.1 NONE PLAID\n", + "B2 45 0.01 FULL PLAID\n", + "C1 90 0.2 FULL WIGGLES" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Often, this is done using a spreadsheet\n", + "condition_properties = pd.DataFrame(\n", + " [condition_to_orientation, condition_to_duration, condition_to_surround, condition_to_stimulus_type],\n", + " index=['orientation', 'duration', 'surround', 'stimulus_type'],\n", + ").T\n", + "condition_properties" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a9087876", + "metadata": {}, + "outputs": [], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61cb65be", + "metadata": {}, + "outputs": [], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True, how='left')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7b4d23df", + "metadata": {}, + "outputs": [], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True, how='outer')" + ] + }, + { + "cell_type": "markdown", + "id": "cba9534f", + "metadata": {}, + "source": [ + "# Anti-join: filter out unwanted data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "1cb2bbdb", + "metadata": {}, + "outputs": [], + "source": [ + "# We are given a list of subjects that are outliers and should be disregarded in the analysis\n", + "outliers = pd.DataFrame([['711'], ['712'], ['713'], ['714'], ['888']], columns=['subject_id'])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "e2e627d5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0711A14.01RIGHT
1711A20.44LEFT
2712A23.29LEFT
3714B23.32RIGHT
4713B15.74LEFT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 711 A1 4.01 RIGHT\n", + "1 711 A2 0.44 LEFT\n", + "2 712 A2 3.29 LEFT\n", + "3 714 B2 3.32 RIGHT\n", + "4 713 B1 5.74 LEFT" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(outliers, on='subject_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "eb809fe0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse_merge
0312A10.12LEFTleft_only
1312A20.37LEFTleft_only
2312C20.68LEFTleft_only
3711A14.01RIGHTboth
4711A20.44LEFTboth
5313A10.07RIGHTleft_only
6313B10.08RIGHTleft_only
7712A23.29LEFTboth
8314A20.29LEFTleft_only
9314B10.14RIGHTleft_only
10314C20.73RIGHTleft_only
11714B23.32RIGHTboth
12713B15.74LEFTboth
13888NaNNaNNaNright_only
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response _merge\n", + "0 312 A1 0.12 LEFT left_only\n", + "1 312 A2 0.37 LEFT left_only\n", + "2 312 C2 0.68 LEFT left_only\n", + "3 711 A1 4.01 RIGHT both\n", + "4 711 A2 0.44 LEFT both\n", + "5 313 A1 0.07 RIGHT left_only\n", + "6 313 B1 0.08 RIGHT left_only\n", + "7 712 A2 3.29 LEFT both\n", + "8 314 A2 0.29 LEFT left_only\n", + "9 314 B1 0.14 RIGHT left_only\n", + "10 314 C2 0.73 RIGHT left_only\n", + "11 714 B2 3.32 RIGHT both\n", + "12 713 B1 5.74 LEFT both\n", + "13 888 NaN NaN NaN right_only" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(outliers, on='subject_id', how='outer', indicator=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "6fdb696e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse_merge
0312A10.12LEFTleft_only
1312A20.37LEFTleft_only
2312C20.68LEFTleft_only
5313A10.07RIGHTleft_only
6313B10.08RIGHTleft_only
8314A20.29LEFTleft_only
9314B10.14RIGHTleft_only
10314C20.73RIGHTleft_only
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response _merge\n", + "0 312 A1 0.12 LEFT left_only\n", + "1 312 A2 0.37 LEFT left_only\n", + "2 312 C2 0.68 LEFT left_only\n", + "5 313 A1 0.07 RIGHT left_only\n", + "6 313 B1 0.08 RIGHT left_only\n", + "8 314 A2 0.29 LEFT left_only\n", + "9 314 B1 0.14 RIGHT left_only\n", + "10 314 C2 0.73 RIGHT left_only" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "temp = data.merge(outliers, on='subject_id', how='outer', indicator=True)\n", + "data_without_outliers = temp[temp['_merge'] == 'left_only']\n", + "data_without_outliers" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6c3e6baa", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/021_join_operations_tutor-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/021_join_operations_tutor-checkpoint.ipynb new file mode 100644 index 0000000..e4129c0 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/021_join_operations_tutor-checkpoint.ipynb @@ -0,0 +1,462 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "37957eb0", + "metadata": {}, + "source": [ + "# Combine information across tables: joins and anti-joins" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f949f7", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "6a7fcf90", + "metadata": {}, + "source": [ + "# \"Load\" some experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a9450803", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3711A14.01RIGHT
4711A20.44LEFT
5313A10.07RIGHT
6313B10.08RIGHT
7712A23.29LEFT
8314A20.29LEFT
9714B23.32RIGHT
10314B10.14RIGHT
11314C20.73RIGHT
12713B15.74LEFT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 711 A1 4.01 RIGHT\n", + "4 711 A2 0.44 LEFT\n", + "5 313 A1 0.07 RIGHT\n", + "6 313 B1 0.08 RIGHT\n", + "7 712 A2 3.29 LEFT\n", + "8 314 A2 0.29 LEFT\n", + "9 714 B2 3.32 RIGHT\n", + "10 314 B1 0.14 RIGHT\n", + "11 314 C2 0.73 RIGHT\n", + "12 713 B1 5.74 LEFT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['711', 'A2', 0.44, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "9f6de0d6", + "metadata": {}, + "source": [ + "Each experiment belongs to one experimental condition, but the parameters of each condition are not in the table" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "455471d7", + "metadata": {}, + "outputs": [], + "source": [ + "condition_to_orientation = {\n", + " 'A1': 0,\n", + " 'A2': 0,\n", + " 'B1': 45,\n", + " 'B2': 45,\n", + " 'C1': 90,\n", + "}\n", + "\n", + "condition_to_duration = {\n", + " 'A1': 0.1,\n", + " 'A2': 0.01,\n", + " 'B1': 0.1,\n", + " 'B2': 0.01,\n", + " 'C1': 0.2,\n", + "}\n", + "\n", + "condition_to_surround = {\n", + " 'A1': 'FULL',\n", + " 'A2': 'NONE',\n", + " 'B1': 'NONE',\n", + " 'B2': 'FULL',\n", + " 'C1': 'FULL',\n", + "}\n", + "\n", + "\n", + "condition_to_stimulus_type = {\n", + " 'A1': 'LINES',\n", + " 'A2': 'DOTS',\n", + " 'B1': 'PLAID',\n", + " 'B2': 'PLAID',\n", + " 'C1': 'WIGGLES',\n", + "}\n" + ] + }, + { + "cell_type": "markdown", + "id": "5ccfd7e7", + "metadata": {}, + "source": [ + "# Manually adding the condition parameters to the table" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "cc32110c", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties = data.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "06263dc6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b96962b2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "d6e71b13", + "metadata": {}, + "source": [ + "# Using a join operation" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d9835d7c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
orientationdurationsurroundstimulus_type
A100.1FULLLINES
A200.01NONEDOTS
B1450.1NONEPLAID
B2450.01FULLPLAID
C1900.2FULLWIGGLES
\n", + "
" + ], + "text/plain": [ + " orientation duration surround stimulus_type\n", + "A1 0 0.1 FULL LINES\n", + "A2 0 0.01 NONE DOTS\n", + "B1 45 0.1 NONE PLAID\n", + "B2 45 0.01 FULL PLAID\n", + "C1 90 0.2 FULL WIGGLES" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Often, this is done using a spreadsheet\n", + "condition_properties = pd.DataFrame(\n", + " [condition_to_orientation, condition_to_duration, condition_to_surround, condition_to_stimulus_type],\n", + " index=['orientation', 'duration', 'surround', 'stimulus_type'],\n", + ").T\n", + "condition_properties" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c27ea9f3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5e563cd0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "cba9534f", + "metadata": {}, + "source": [ + "# Anti-join: filter out unwanted data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "1cb2bbdb", + "metadata": {}, + "outputs": [], + "source": [ + "# We are given a list of subjects that are outliers and should be disregarded in the analysis\n", + "outliers = pd.DataFrame([['711'], ['712'], ['713'], ['714'], ['888']], columns=['subject_id'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e0e2c3c5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "90d92640", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/030_split-apply-combine-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/030_split-apply-combine-checkpoint.ipynb new file mode 100644 index 0000000..5c199e3 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/030_split-apply-combine-checkpoint.ipynb @@ -0,0 +1,814 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Split-apply-combine operations for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ba193f3f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3313A10.07RIGHT
4313B10.08RIGHT
5314A20.29LEFT
6314B10.14RIGHT
7314C20.73RIGHT
8711A14.01RIGHT
9712A23.29LEFT
10713B15.74LEFT
11714B23.32RIGHT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 313 A1 0.07 RIGHT\n", + "4 313 B1 0.08 RIGHT\n", + "5 314 A2 0.29 LEFT\n", + "6 314 B1 0.14 RIGHT\n", + "7 314 C2 0.73 RIGHT\n", + "8 711 A1 4.01 RIGHT\n", + "9 712 A2 3.29 LEFT\n", + "10 713 B1 5.74 LEFT\n", + "11 714 B2 3.32 RIGHT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "8a239e0c", + "metadata": {}, + "source": [ + "# Group-by" + ] + }, + { + "cell_type": "markdown", + "id": "31eba91e", + "metadata": {}, + "source": [ + "We want to compute the mean response time by condition.\n", + "\n", + "Let's start by doing it by hand, using for loops!" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "e8331039", + "metadata": {}, + "outputs": [], + "source": [ + "conditions = data['condition_id'].unique()\n", + "results_dict = {}\n", + "for condition in conditions:\n", + " group = data[data['condition_id'] == condition]\n", + " results_dict[condition] = group['response_time'].mean()\n", + "\n", + "results = pd.DataFrame([results_dict], index=['response_time']).T" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "09cb04c4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
response_time
A11.400000
A21.316667
C20.705000
B11.986667
B23.320000
\n", + "
" + ], + "text/plain": [ + " response_time\n", + "A1 1.400000\n", + "A2 1.316667\n", + "C2 0.705000\n", + "B1 1.986667\n", + "B2 3.320000" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results" + ] + }, + { + "cell_type": "markdown", + "id": "2bc09c66", + "metadata": {}, + "source": [ + "This is a basic operation, and we would need to repeat his pattern a million times!\n", + "\n", + "Pandas and all other tools for tabular data provide a command for performing operations on groups." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "0500cd4a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# df.groupby(column_name) groups a DataFrame by the values in the column\n", + "data.groupby('condition_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c5857c4e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 3\n", + "A2 3\n", + "B1 3\n", + "B2 1\n", + "C2 2\n", + "dtype: int64" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The group-by object can by used as a DataFrame. \n", + "# Operations are executed on each group individually, then aggregated\n", + "data.groupby('condition_id').size()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "5c865cc1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 1.400000\n", + "A2 1.316667\n", + "B1 1.986667\n", + "B2 3.320000\n", + "C2 0.705000\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.groupby('condition_id')['response_time'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "615a4515", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 4.01\n", + "A2 3.29\n", + "B1 5.74\n", + "B2 3.32\n", + "C2 0.73\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.groupby('condition_id')['response_time'].max()" + ] + }, + { + "cell_type": "markdown", + "id": "b0441458", + "metadata": {}, + "source": [ + "# Pivot tables" + ] + }, + { + "cell_type": "markdown", + "id": "3feec98d", + "metadata": {}, + "source": [ + "We want to look at response time biases when the subjects respond LEFT vs RIGHT. In principle, we expect them to have the same response time in both cases.\n", + "\n", + "We compute a summary table with 1) condition_id on the rows; 2) response on the columns; 3) the average response time for all experiments with a that condition and response\n", + "\n", + "We can do it with `groupby`, with some table manipulation commands." + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "4a8a7d0d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id response\n", + "A1 LEFT 0.120000\n", + " RIGHT 2.040000\n", + "A2 LEFT 1.316667\n", + "B1 LEFT 5.740000\n", + " RIGHT 0.110000\n", + "B2 RIGHT 3.320000\n", + "C2 LEFT 0.680000\n", + " RIGHT 0.730000\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "summary = data.groupby(['condition_id', 'response'])['response_time'].mean()\n", + "summary" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "e5a645e0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
responseLEFTRIGHT
condition_id
A10.1200002.04
A21.316667NaN
B15.7400000.11
B2NaN3.32
C20.6800000.73
\n", + "
" + ], + "text/plain": [ + "response LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04\n", + "A2 1.316667 NaN\n", + "B1 5.740000 0.11\n", + "B2 NaN 3.32\n", + "C2 0.680000 0.73" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "summary.unstack(level=1)" + ] + }, + { + "cell_type": "markdown", + "id": "3307fcc6", + "metadata": {}, + "source": [ + "Pandas has a command called `pivot_table` that can be used to perform this kind of operation straightforwardly." + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "8941edfe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
responseLEFTRIGHT
condition_id
A10.1200002.04
A21.316667NaN
B15.7400000.11
B2NaN3.32
C20.6800000.73
\n", + "
" + ], + "text/plain": [ + "response LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04\n", + "A2 1.316667 NaN\n", + "B1 5.740000 0.11\n", + "B2 NaN 3.32\n", + "C2 0.680000 0.73" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.pivot_table(index='condition_id', columns='response', values='response_time', aggfunc='mean')" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "a7d1d998", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
meanstdcount
responseLEFTRIGHTLEFTRIGHTLEFTRIGHT
condition_id
A10.1200002.04NaN2.7860011.02.0
A21.316667NaN1.709425NaN3.0NaN
B15.7400000.11NaN0.0424261.02.0
B2NaN3.32NaNNaNNaN1.0
C20.6800000.73NaNNaN1.01.0
\n", + "
" + ], + "text/plain": [ + " mean std count \n", + "response LEFT RIGHT LEFT RIGHT LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04 NaN 2.786001 1.0 2.0\n", + "A2 1.316667 NaN 1.709425 NaN 3.0 NaN\n", + "B1 5.740000 0.11 NaN 0.042426 1.0 2.0\n", + "B2 NaN 3.32 NaN NaN NaN 1.0\n", + "C2 0.680000 0.73 NaN NaN 1.0 1.0" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(\n", + " data\n", + " .pivot_table(\n", + " index='condition_id', \n", + " columns='response', \n", + " values='response_time', \n", + " aggfunc=['mean', 'std', 'count'],\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a770b812", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/031_split-apply-combine_tutor-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/031_split-apply-combine_tutor-checkpoint.ipynb new file mode 100644 index 0000000..7087a60 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/031_split-apply-combine_tutor-checkpoint.ipynb @@ -0,0 +1,335 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Split-apply-combine operations for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ba193f3f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3313A10.07RIGHT
4313B10.08RIGHT
5314A20.29LEFT
6314B10.14RIGHT
7314C20.73RIGHT
8711A14.01RIGHT
9712A23.29LEFT
10713B15.74LEFT
11714B23.32RIGHT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 313 A1 0.07 RIGHT\n", + "4 313 B1 0.08 RIGHT\n", + "5 314 A2 0.29 LEFT\n", + "6 314 B1 0.14 RIGHT\n", + "7 314 C2 0.73 RIGHT\n", + "8 711 A1 4.01 RIGHT\n", + "9 712 A2 3.29 LEFT\n", + "10 713 B1 5.74 LEFT\n", + "11 714 B2 3.32 RIGHT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "8a239e0c", + "metadata": {}, + "source": [ + "# Group-by" + ] + }, + { + "cell_type": "markdown", + "id": "31eba91e", + "metadata": {}, + "source": [ + "We want to compute the mean response time by condition.\n", + "\n", + "Let's start by doing it by hand, using for loops!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff3f890b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "805d04c7", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "2bc09c66", + "metadata": {}, + "source": [ + "This is a basic operation, and we would need to repeat his pattern a million times!\n", + "\n", + "Pandas and all other tools for tabular data provide a command for performing operations on groups." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dcc8c9c7", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "818b8346", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "b0441458", + "metadata": {}, + "source": [ + "# Pivot tables" + ] + }, + { + "cell_type": "markdown", + "id": "3feec98d", + "metadata": {}, + "source": [ + "We want to look at response time biases when the subjects respond LEFT vs RIGHT. In principle, we expect them to have the same response time in both cases.\n", + "\n", + "We compute a summary table with 1) condition_id on the rows; 2) response on the columns; 3) the average response time for all experiments with a that condition and response\n", + "\n", + "We can do it with `groupby`, with some table manipulation commands." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "04f6ff60", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62600721", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "3307fcc6", + "metadata": {}, + "source": [ + "Pandas has a command called `pivot_table` that can be used to perform this kind of operation straightforwardly." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a770b812", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/040_window_functions-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/040_window_functions-checkpoint.ipynb new file mode 100644 index 0000000..b6b118f --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/040_window_functions-checkpoint.ipynb @@ -0,0 +1,1429 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Window functions for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "8c3508da", + "metadata": {}, + "source": [ + "# Load experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8e22f6d4", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('timed_responses.csv', index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c4504d72", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracy
5743540RIGHT0.04
11902552LEFT0.43
189521036LEFT0.36
533257RIGHT0.11
1582743RIGHT0.32
5513619LEFT0.25
1602143RIGHT0.65
4131471LEFT0.80
7851121LEFT0.10
13932903RIGHT0.33
6292353LEFT0.17
18293768RIGHT0.26
90211093LEFT0.34
148623RIGHT0.29
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy\n", + "574 3 540 RIGHT 0.04\n", + "1190 2 552 LEFT 0.43\n", + "1895 2 1036 LEFT 0.36\n", + "53 3 257 RIGHT 0.11\n", + "158 2 743 RIGHT 0.32\n", + "551 3 619 LEFT 0.25\n", + "1602 1 43 RIGHT 0.65\n", + "413 1 471 LEFT 0.80\n", + "785 1 121 LEFT 0.10\n", + "1393 2 903 RIGHT 0.33\n", + "629 2 353 LEFT 0.17\n", + "1829 3 768 RIGHT 0.26\n", + "902 1 1093 LEFT 0.34\n", + "1486 2 3 RIGHT 0.29" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "a72f45c6", + "metadata": {}, + "source": [ + "# Split-apply-combine operations return one aggregated value per group" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "0234ccf2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "subject_id\n", + "1 0.80\n", + "2 0.43\n", + "3 0.26\n", + "Name: accuracy, dtype: float64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('subject_id')['accuracy'].max()" + ] + }, + { + "cell_type": "markdown", + "id": "b8926b52", + "metadata": {}, + "source": [ + "# However, for some calculations we need to have a value per row\n", + "\n", + "For example: for each subject, rank the responses by decreasing accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "574 1.0\n", + "1190 6.0\n", + "1895 5.0\n", + "53 2.0\n", + "158 3.0\n", + "551 3.0\n", + "1602 3.0\n", + "413 4.0\n", + "785 1.0\n", + "1393 4.0\n", + "629 1.0\n", + "1829 4.0\n", + "902 2.0\n", + "1486 2.0\n", + "Name: accuracy, dtype: float64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('subject_id')['accuracy'].rank()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6803bea3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rank
5743540RIGHT0.044.0
11902552LEFT0.431.0
189521036LEFT0.362.0
533257RIGHT0.113.0
1582743RIGHT0.324.0
5513619LEFT0.252.0
1602143RIGHT0.652.0
4131471LEFT0.801.0
7851121LEFT0.104.0
13932903RIGHT0.333.0
6292353LEFT0.176.0
18293768RIGHT0.261.0
90211093LEFT0.343.0
148623RIGHT0.295.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank\n", + "574 3 540 RIGHT 0.04 4.0\n", + "1190 2 552 LEFT 0.43 1.0\n", + "1895 2 1036 LEFT 0.36 2.0\n", + "53 3 257 RIGHT 0.11 3.0\n", + "158 2 743 RIGHT 0.32 4.0\n", + "551 3 619 LEFT 0.25 2.0\n", + "1602 1 43 RIGHT 0.65 2.0\n", + "413 1 471 LEFT 0.80 1.0\n", + "785 1 121 LEFT 0.10 4.0\n", + "1393 2 903 RIGHT 0.33 3.0\n", + "629 2 353 LEFT 0.17 6.0\n", + "1829 3 768 RIGHT 0.26 1.0\n", + "902 1 1093 LEFT 0.34 3.0\n", + "1486 2 3 RIGHT 0.29 5.0" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['accuracy_rank'] = df.groupby('subject_id')['accuracy'].rank(ascending=False)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "5690feee", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rank
4131471LEFT0.801.0
1602143RIGHT0.652.0
90211093LEFT0.343.0
7851121LEFT0.104.0
11902552LEFT0.431.0
189521036LEFT0.362.0
13932903RIGHT0.333.0
1582743RIGHT0.324.0
148623RIGHT0.295.0
6292353LEFT0.176.0
18293768RIGHT0.261.0
5513619LEFT0.252.0
533257RIGHT0.113.0
5743540RIGHT0.044.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank\n", + "413 1 471 LEFT 0.80 1.0\n", + "1602 1 43 RIGHT 0.65 2.0\n", + "902 1 1093 LEFT 0.34 3.0\n", + "785 1 121 LEFT 0.10 4.0\n", + "1190 2 552 LEFT 0.43 1.0\n", + "1895 2 1036 LEFT 0.36 2.0\n", + "1393 2 903 RIGHT 0.33 3.0\n", + "158 2 743 RIGHT 0.32 4.0\n", + "1486 2 3 RIGHT 0.29 5.0\n", + "629 2 353 LEFT 0.17 6.0\n", + "1829 3 768 RIGHT 0.26 1.0\n", + "551 3 619 LEFT 0.25 2.0\n", + "53 3 257 RIGHT 0.11 3.0\n", + "574 3 540 RIGHT 0.04 4.0" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values(['subject_id', 'accuracy_rank'])" + ] + }, + { + "cell_type": "markdown", + "id": "f57d47c8", + "metadata": {}, + "source": [ + "# In many cases, a window functions is combined with a sorting operation\n", + "\n", + "For example: for each subject, count the number of \"LEFT\" responses up until any moment in the experiment" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "f032f5db", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rankis_left
5743540RIGHT0.044.0False
11902552LEFT0.431.0True
189521036LEFT0.362.0True
533257RIGHT0.113.0False
1582743RIGHT0.324.0False
5513619LEFT0.252.0True
1602143RIGHT0.652.0False
4131471LEFT0.801.0True
7851121LEFT0.104.0True
13932903RIGHT0.333.0False
6292353LEFT0.176.0True
18293768RIGHT0.261.0False
90211093LEFT0.343.0True
148623RIGHT0.295.0False
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank is_left\n", + "574 3 540 RIGHT 0.04 4.0 False\n", + "1190 2 552 LEFT 0.43 1.0 True\n", + "1895 2 1036 LEFT 0.36 2.0 True\n", + "53 3 257 RIGHT 0.11 3.0 False\n", + "158 2 743 RIGHT 0.32 4.0 False\n", + "551 3 619 LEFT 0.25 2.0 True\n", + "1602 1 43 RIGHT 0.65 2.0 False\n", + "413 1 471 LEFT 0.80 1.0 True\n", + "785 1 121 LEFT 0.10 4.0 True\n", + "1393 2 903 RIGHT 0.33 3.0 False\n", + "629 2 353 LEFT 0.17 6.0 True\n", + "1829 3 768 RIGHT 0.26 1.0 False\n", + "902 1 1093 LEFT 0.34 3.0 True\n", + "1486 2 3 RIGHT 0.29 5.0 False" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add a flag column \"is_left\", so that we can count the number of LEFT reponses using a cumulative sum\n", + "df['is_left'] = df['response'] == 'LEFT'\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "f9420c3d", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rankis_leftnr_lefts
1602143RIGHT0.652.0False0
4131471LEFT0.801.0True1
7851121LEFT0.104.0True2
90211093LEFT0.343.0True3
11902552LEFT0.431.0True1
189521036LEFT0.362.0True2
1582743RIGHT0.324.0False2
13932903RIGHT0.333.0False2
6292353LEFT0.176.0True3
148623RIGHT0.295.0False3
5743540RIGHT0.044.0False0
533257RIGHT0.113.0False0
5513619LEFT0.252.0True1
18293768RIGHT0.261.0False1
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank is_left \\\n", + "1602 1 43 RIGHT 0.65 2.0 False \n", + "413 1 471 LEFT 0.80 1.0 True \n", + "785 1 121 LEFT 0.10 4.0 True \n", + "902 1 1093 LEFT 0.34 3.0 True \n", + "1190 2 552 LEFT 0.43 1.0 True \n", + "1895 2 1036 LEFT 0.36 2.0 True \n", + "158 2 743 RIGHT 0.32 4.0 False \n", + "1393 2 903 RIGHT 0.33 3.0 False \n", + "629 2 353 LEFT 0.17 6.0 True \n", + "1486 2 3 RIGHT 0.29 5.0 False \n", + "574 3 540 RIGHT 0.04 4.0 False \n", + "53 3 257 RIGHT 0.11 3.0 False \n", + "551 3 619 LEFT 0.25 2.0 True \n", + "1829 3 768 RIGHT 0.26 1.0 False \n", + "\n", + " nr_lefts \n", + "1602 0 \n", + "413 1 \n", + "785 2 \n", + "902 3 \n", + "1190 1 \n", + "1895 2 \n", + "158 2 \n", + "1393 2 \n", + "629 3 \n", + "1486 3 \n", + "574 0 \n", + "53 0 \n", + "551 1 \n", + "1829 1 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Without sorting, we get the number of LEFT responses... in no particular order\n", + "df['nr_lefts'] = df.groupby('subject_id')['is_left'].cumsum()\n", + "df.sort_values(['subject_id'])" + ] + }, + { + "cell_type": "markdown", + "id": "ca1e8032", + "metadata": {}, + "source": [ + "# Window functions are also useful to compute changes in the data for each group\n", + "\n", + "In this case, the window function often uses the `shift(n)` method that lags the data by `n` rows" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "18f440d3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)shifted time
1602143NaN
785112143.0
4131471121.0
90211093471.0
148623NaN
62923533.0
11902552353.0
1582743552.0
13932903743.0
189521036903.0
533257NaN
5743540257.0
5513619540.0
18293768619.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) shifted time\n", + "1602 1 43 NaN\n", + "785 1 121 43.0\n", + "413 1 471 121.0\n", + "902 1 1093 471.0\n", + "1486 2 3 NaN\n", + "629 2 353 3.0\n", + "1190 2 552 353.0\n", + "158 2 743 552.0\n", + "1393 2 903 743.0\n", + "1895 2 1036 903.0\n", + "53 3 257 NaN\n", + "574 3 540 257.0\n", + "551 3 619 540.0\n", + "1829 3 768 619.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['shifted time'] = (\n", + " df\n", + " .sort_values('time (ms)')\n", + " .groupby('subject_id')['time (ms)']\n", + " .shift(1)\n", + ")\n", + "df.sort_values(['subject_id', 'time (ms)'])[['subject_id', 'time (ms)', 'shifted time']]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "4f1cb393", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)time from prev
1602143NaN
785112178.0
4131471350.0
90211093622.0
148623NaN
6292353350.0
11902552199.0
1582743191.0
13932903160.0
189521036133.0
533257NaN
5743540283.0
551361979.0
18293768149.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) time from prev\n", + "1602 1 43 NaN\n", + "785 1 121 78.0\n", + "413 1 471 350.0\n", + "902 1 1093 622.0\n", + "1486 2 3 NaN\n", + "629 2 353 350.0\n", + "1190 2 552 199.0\n", + "158 2 743 191.0\n", + "1393 2 903 160.0\n", + "1895 2 1036 133.0\n", + "53 3 257 NaN\n", + "574 3 540 283.0\n", + "551 3 619 79.0\n", + "1829 3 768 149.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['time from prev'] = df['time (ms)'] - df['shifted time']\n", + "df.sort_values(['subject_id', 'time (ms)'])[['subject_id', 'time (ms)', 'time from prev']]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3d06a890", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "87a52b7c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61badaf1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/.ipynb_checkpoints/041_window_functions_tutor-checkpoint.ipynb b/notebooks/030_tabular_data/.ipynb_checkpoints/041_window_functions_tutor-checkpoint.ipynb new file mode 100644 index 0000000..99b7fe8 --- /dev/null +++ b/notebooks/030_tabular_data/.ipynb_checkpoints/041_window_functions_tutor-checkpoint.ipynb @@ -0,0 +1,320 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Window functions for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "83bbd275", + "metadata": {}, + "source": [ + "# Load experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "88b9e189", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('timed_responses.csv', index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "987a3518", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracy
5743540RIGHT0.04
11902552LEFT0.43
189521036LEFT0.36
533257RIGHT0.11
1582743RIGHT0.32
5513619LEFT0.25
1602143RIGHT0.65
4131471LEFT0.80
7851121LEFT0.10
13932903RIGHT0.33
6292353LEFT0.17
18293768RIGHT0.26
90211093LEFT0.34
148623RIGHT0.29
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy\n", + "574 3 540 RIGHT 0.04\n", + "1190 2 552 LEFT 0.43\n", + "1895 2 1036 LEFT 0.36\n", + "53 3 257 RIGHT 0.11\n", + "158 2 743 RIGHT 0.32\n", + "551 3 619 LEFT 0.25\n", + "1602 1 43 RIGHT 0.65\n", + "413 1 471 LEFT 0.80\n", + "785 1 121 LEFT 0.10\n", + "1393 2 903 RIGHT 0.33\n", + "629 2 353 LEFT 0.17\n", + "1829 3 768 RIGHT 0.26\n", + "902 1 1093 LEFT 0.34\n", + "1486 2 3 RIGHT 0.29" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "5c41cd93", + "metadata": {}, + "source": [ + "# Split-apply-combine operations return one aggregated value per group" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [ + "df.groupby('subject_id')['accuracy'].max()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2b2a1796", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "2bb99152", + "metadata": {}, + "source": [ + "# However, for some calculations we need to have a value per row\n", + "\n", + "For example: for each subject, rank the responses by decreasing accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3aed0755", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "17f3d40f", + "metadata": {}, + "source": [ + "# In many cases, a window functions is combined with a sorting operation\n", + "\n", + "For example: for each subject, count the number of \"LEFT\" responses up until any moment in the experiment" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "67efdd56", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "a00b4f39", + "metadata": {}, + "source": [ + "# Window functions are also useful to compute changes in the data for each group\n", + "\n", + "In this case, the window function often uses the `shift(n)` method that lags the data by `n` rows" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e553c17f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f2973e3d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c9ca46b0", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/010_pandas_introduction.ipynb b/notebooks/030_tabular_data/010_pandas_introduction.ipynb new file mode 100644 index 0000000..da99369 --- /dev/null +++ b/notebooks/030_tabular_data/010_pandas_introduction.ipynb @@ -0,0 +1,1362 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "8cc1c960", + "metadata": {}, + "source": [ + "# Pandas, quick introduction" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "0f55dab1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "4b377c42", + "metadata": {}, + "source": [ + "# Pandas introduces a tabular data structure, the DataFrame\n", + "\n", + "* Columns can be of any C-native type\n", + "* Columns and rows have indices, i.e. labels that identify each column or row" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ec75edbe", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(\n", + " data = [\n", + " ['Anthony', 28, 1.53], \n", + " ['Maria', 31, 1.76], \n", + " ['Emma', 26, 1.83], \n", + " ['Philip', 41, 1.81], \n", + " ['Bill', 27, None],\n", + " ],\n", + " columns = ['name', 'age', 'height'],\n", + " index=['A484', 'C012', 'A123', 'B663', 'A377'],\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "37318480", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "b97a9336", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d3c5fea6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A377Bill27NaN
C012Maria311.76
A484Anthony281.53
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A377 Bill 27 NaN\n", + "C012 Maria 31 1.76\n", + "A484 Anthony 28 1.53" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sample(3)" + ] + }, + { + "cell_type": "markdown", + "id": "e31f21c6", + "metadata": {}, + "source": [ + "## DataFrame attributes" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "41c213bf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(5, 3)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "8921c1c6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name object\n", + "age int64\n", + "height float64\n", + "dtype: object" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Each column can be a different dtype\n", + "# All dtypes are native data types, as in NumPy\n", + "df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "84451023", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['name', 'age', 'height'], dtype='object')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "223462e3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['A484', 'C012', 'A123', 'B663', 'A377'], dtype='object')" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.index" + ] + }, + { + "cell_type": "markdown", + "id": "cb2f33b9", + "metadata": {}, + "source": [ + "## Indexing rows and columns" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "e3420312", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 28\n", + "C012 31\n", + "A123 26\n", + "B663 41\n", + "A377 27\n", + "Name: age, dtype: int64" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Default indexing is by column\n", + "df['age']" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "58b29585", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
agename
A48428Anthony
C01231Maria
A12326Emma
B66341Philip
A37727Bill
\n", + "
" + ], + "text/plain": [ + " age name\n", + "A484 28 Anthony\n", + "C012 31 Maria\n", + "A123 26 Emma\n", + "B663 41 Philip\n", + "A377 27 Bill" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Use a list to select multiple columns (like in NumPy's fancy indexing)\n", + "df[['age', 'name']]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "6458bc59", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.53" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Indexing by row / column name\n", + "df.loc['A484', 'height']" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "41496582", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.53" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Indexing by element position like in NumPy (it's a bit of a smell)\n", + "df.iloc[0, 2]" + ] + }, + { + "cell_type": "markdown", + "id": "43ab5233", + "metadata": {}, + "source": [ + "## Examining a column" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "a0929b25", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Anthony', 'Maria', 'Emma', 'Philip', 'Bill'], dtype=object)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "b6087787", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "bdd587c7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 4.000000\n", + "mean 1.732500\n", + "std 0.138173\n", + "min 1.530000\n", + "25% 1.702500\n", + "50% 1.785000\n", + "75% 1.815000\n", + "max 1.830000\n", + "Name: height, dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['height'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "fc081b90", + "metadata": {}, + "source": [ + "# Filtering" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "7d294f17", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
C012Maria311.76
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "C012 Maria 31 1.76\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df['age'] > 30]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "85604657", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "is_old_and_tall = (df['age'] > 30) & (df['height'] > 1.8)\n", + "df[is_old_and_tall]" + ] + }, + { + "cell_type": "markdown", + "id": "a570023a", + "metadata": {}, + "source": [ + "# Basic operations are by column (unlike NumPy)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "6eb50844", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "26" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['age'].min()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "a95e0e90", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name Anthony\n", + "age 26\n", + "height 1.53\n", + "dtype: object" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.min()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "d5c3f2f4", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_80457/1061404192.py:2: FutureWarning: The default value of numeric_only in DataFrame.mean is deprecated. In a future version, it will default to False. In addition, specifying 'numeric_only=None' is deprecated. Select only valid columns or specify the value of numeric_only to silence this warning.\n", + " df.mean()\n" + ] + }, + { + "data": { + "text/plain": [ + "age 30.6000\n", + "height 1.7325\n", + "dtype: float64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Note that Pandas operations ignore NaNs (they consider them as \"missing\")\n", + "df.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "fdb4e73e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "age 30.6000\n", + "height 1.7325\n", + "dtype: float64" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.mean(numeric_only=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "efc0dcc9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
A377Bill27NaN
A123Emma261.83
C012Maria311.76
B663Philip411.81
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "A377 Bill 27 NaN\n", + "A123 Emma 26 1.83\n", + "C012 Maria 31 1.76\n", + "B663 Philip 41 1.81" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Operations that change the order of the rows keep the index and column labels intact\n", + "df.sort_values('name', axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "2ba681da", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "7cf9b5d7", + "metadata": {}, + "source": [ + "# Operations on strings" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "c76ca899", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 t\n", + "C012 r\n", + "A123 m\n", + "B663 i\n", + "A377 l\n", + "Name: name, dtype: object" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Use `.str` to access string operations\n", + "# Third character of each name\n", + "df['name'].str[2]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "c9d8494d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 ANTHONY\n", + "C012 MARIA\n", + "A123 EMMA\n", + "B663 PHILIP\n", + "A377 BILL\n", + "Name: name, dtype: object" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Third character of each name\n", + "df['name'].str.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "5767c6aa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 0\n", + "C012 2\n", + "A123 1\n", + "B663 0\n", + "A377 0\n", + "Name: name, dtype: int64" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].str.count('a')" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "a98f79da", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "A484 1\n", + "C012 2\n", + "A123 1\n", + "B663 0\n", + "A377 0\n", + "Name: name, dtype: int64" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['name'].str.lower().str.count('a')" + ] + }, + { + "cell_type": "markdown", + "id": "b2d162d2", + "metadata": {}, + "source": [ + "# Adding new columns" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "5cdbb3cd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheight
A484Anthony281.53
C012Maria311.76
A123Emma261.83
B663Philip411.81
A377Bill27NaN
\n", + "
" + ], + "text/plain": [ + " name age height\n", + "A484 Anthony 28 1.53\n", + "C012 Maria 31 1.76\n", + "A123 Emma 26 1.83\n", + "B663 Philip 41 1.81\n", + "A377 Bill 27 NaN" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "0e97e98b", + "metadata": {}, + "outputs": [], + "source": [ + "df['name_upper'] = df['name'].str.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "4f35c1df", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
nameageheightname_upper
A484Anthony281.53ANTHONY
C012Maria311.76MARIA
A123Emma261.83EMMA
B663Philip411.81PHILIP
A377Bill27NaNBILL
\n", + "
" + ], + "text/plain": [ + " name age height name_upper\n", + "A484 Anthony 28 1.53 ANTHONY\n", + "C012 Maria 31 1.76 MARIA\n", + "A123 Emma 26 1.83 EMMA\n", + "B663 Philip 41 1.81 PHILIP\n", + "A377 Bill 27 NaN BILL" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e354ace", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/011_pandas_introduction_tutor.ipynb b/notebooks/030_tabular_data/011_pandas_introduction_tutor.ipynb new file mode 100644 index 0000000..770b63c --- /dev/null +++ b/notebooks/030_tabular_data/011_pandas_introduction_tutor.ipynb @@ -0,0 +1,316 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "8cc1c960", + "metadata": {}, + "source": [ + "# Pandas, quick introduction" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "0f55dab1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "4b377c42", + "metadata": {}, + "source": [ + "# Pandas introduces a tabular data structure, the DataFrame\n", + "\n", + "* Columns can be of any C-native type\n", + "* Columns and rows have indices, i.e. labels that identify each column or row" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ec75edbe", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(\n", + " data = [\n", + " ['Anthony', 28, 1.53], \n", + " ['Maria', 31, 1.76], \n", + " ['Emma', 26, 1.83], \n", + " ['Philip', 41, 1.81], \n", + " ['Bill', 27, None],\n", + " ],\n", + " columns = ['name', 'age', 'height'],\n", + " index=['A484', 'C012', 'A123', 'B663', 'A377'],\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "37318480", + "metadata": {}, + "outputs": [], + "source": [ + "df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fe1c5739", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dedad6f3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "e31f21c6", + "metadata": {}, + "source": [ + "## DataFrame attributes" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4109f1eb", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "708f9bb5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "cb2f33b9", + "metadata": {}, + "source": [ + "## Indexing rows and columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "19ef2738", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8f354ffc", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "94563f03", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "43ab5233", + "metadata": {}, + "source": [ + "## Examining a column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f2cb544c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86388f86", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "fc081b90", + "metadata": {}, + "source": [ + "# Filtering" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "263ae06c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "318da062", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "a570023a", + "metadata": {}, + "source": [ + "# Basic operations are by column (unlike NumPy)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7260d212", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "49b7057a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f5a0f053", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7e1ffe32", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "7cf9b5d7", + "metadata": {}, + "source": [ + "# Operations on strings" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b78bc237", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0236069f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5761725b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ce3d54ad", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "8c5584db", + "metadata": {}, + "source": [ + "# Adding new columns" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f6e09176", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f9a552f0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2e354ace", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/020_join_operations.ipynb b/notebooks/030_tabular_data/020_join_operations.ipynb new file mode 100644 index 0000000..542859b --- /dev/null +++ b/notebooks/030_tabular_data/020_join_operations.ipynb @@ -0,0 +1,1789 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "86d2536c", + "metadata": {}, + "source": [ + "# Combine information across tables: joins and anti-joins" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f949f7", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "1d2a4eab", + "metadata": {}, + "source": [ + "# \"Load\" some experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a9450803", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3711A14.01RIGHT
4711A20.44LEFT
5313A10.07RIGHT
6313B10.08RIGHT
7712A23.29LEFT
8314A20.29LEFT
9714B23.32RIGHT
10314B10.14RIGHT
11314C20.73RIGHT
12713B15.74LEFT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 711 A1 4.01 RIGHT\n", + "4 711 A2 0.44 LEFT\n", + "5 313 A1 0.07 RIGHT\n", + "6 313 B1 0.08 RIGHT\n", + "7 712 A2 3.29 LEFT\n", + "8 314 A2 0.29 LEFT\n", + "9 714 B2 3.32 RIGHT\n", + "10 314 B1 0.14 RIGHT\n", + "11 314 C2 0.73 RIGHT\n", + "12 713 B1 5.74 LEFT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['711', 'A2', 0.44, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "a7e8b09b", + "metadata": {}, + "source": [ + "Each experiment belongs to one experimental condition, but the parameters of each condition are not in the table" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "455471d7", + "metadata": {}, + "outputs": [], + "source": [ + "condition_to_orientation = {\n", + " 'A1': 0,\n", + " 'A2': 0,\n", + " 'B1': 45,\n", + " 'B2': 45,\n", + " 'C1': 90,\n", + "}\n", + "\n", + "condition_to_duration = {\n", + " 'A1': 0.1,\n", + " 'A2': 0.01,\n", + " 'B1': 0.1,\n", + " 'B2': 0.01,\n", + " 'C1': 0.2,\n", + "}\n", + "\n", + "condition_to_surround = {\n", + " 'A1': 'FULL',\n", + " 'A2': 'NONE',\n", + " 'B1': 'NONE',\n", + " 'B2': 'FULL',\n", + " 'C1': 'FULL',\n", + "}\n", + "\n", + "\n", + "condition_to_stimulus_type = {\n", + " 'A1': 'LINES',\n", + " 'A2': 'DOTS',\n", + " 'B1': 'PLAID',\n", + " 'B2': 'PLAID',\n", + " 'C1': 'WIGGLES',\n", + "}\n" + ] + }, + { + "cell_type": "markdown", + "id": "5ccfd7e7", + "metadata": {}, + "source": [ + "# Manually adding the condition parameters to the table" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "cc32110c", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties = data.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c322a9af", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 A1\n", + "1 A2\n", + "2 C2\n", + "3 A1\n", + "4 A2\n", + "5 A1\n", + "6 B1\n", + "7 A2\n", + "8 A2\n", + "9 B2\n", + "10 B1\n", + "11 C2\n", + "12 B1\n", + "Name: condition_id, dtype: object" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties['condition_id']" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "0dbee78b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0.0\n", + "1 0.0\n", + "2 NaN\n", + "3 0.0\n", + "4 0.0\n", + "5 0.0\n", + "6 45.0\n", + "7 0.0\n", + "8 0.0\n", + "9 45.0\n", + "10 45.0\n", + "11 NaN\n", + "12 45.0\n", + "Name: condition_id, dtype: float64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties['condition_id'].map(condition_to_orientation)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "3fb3e3af", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties['orientation'] = data_with_properties['condition_id'].map(condition_to_orientation)\n", + "data_with_properties['duration'] = data_with_properties['condition_id'].map(condition_to_duration)\n", + "data_with_properties['surround'] = data_with_properties['condition_id'].map(condition_to_surround)\n", + "data_with_properties['stimulus_type'] = data_with_properties['condition_id'].map(condition_to_stimulus_type)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "995eff91", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponseorientationdurationsurroundstimulus_type
0312A10.12LEFT0.00.10FULLLINES
1312A20.37LEFT0.00.01NONEDOTS
2312C20.68LEFTNaNNaNNaNNaN
3711A14.01RIGHT0.00.10FULLLINES
4711A20.44LEFT0.00.01NONEDOTS
5313A10.07RIGHT0.00.10FULLLINES
6313B10.08RIGHT45.00.10NONEPLAID
7712A23.29LEFT0.00.01NONEDOTS
8314A20.29LEFT0.00.01NONEDOTS
9714B23.32RIGHT45.00.01FULLPLAID
10314B10.14RIGHT45.00.10NONEPLAID
11314C20.73RIGHTNaNNaNNaNNaN
12713B15.74LEFT45.00.10NONEPLAID
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response orientation duration \\\n", + "0 312 A1 0.12 LEFT 0.0 0.10 \n", + "1 312 A2 0.37 LEFT 0.0 0.01 \n", + "2 312 C2 0.68 LEFT NaN NaN \n", + "3 711 A1 4.01 RIGHT 0.0 0.10 \n", + "4 711 A2 0.44 LEFT 0.0 0.01 \n", + "5 313 A1 0.07 RIGHT 0.0 0.10 \n", + "6 313 B1 0.08 RIGHT 45.0 0.10 \n", + "7 712 A2 3.29 LEFT 0.0 0.01 \n", + "8 314 A2 0.29 LEFT 0.0 0.01 \n", + "9 714 B2 3.32 RIGHT 45.0 0.01 \n", + "10 314 B1 0.14 RIGHT 45.0 0.10 \n", + "11 314 C2 0.73 RIGHT NaN NaN \n", + "12 713 B1 5.74 LEFT 45.0 0.10 \n", + "\n", + " surround stimulus_type \n", + "0 FULL LINES \n", + "1 NONE DOTS \n", + "2 NaN NaN \n", + "3 FULL LINES \n", + "4 NONE DOTS \n", + "5 FULL LINES \n", + "6 NONE PLAID \n", + "7 NONE DOTS \n", + "8 NONE DOTS \n", + "9 FULL PLAID \n", + "10 NONE PLAID \n", + "11 NaN NaN \n", + "12 NONE PLAID " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_with_properties" + ] + }, + { + "cell_type": "markdown", + "id": "d6e71b13", + "metadata": {}, + "source": [ + "# Using a join operation" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "d9835d7c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
orientationdurationsurroundstimulus_type
A100.1FULLLINES
A200.01NONEDOTS
B1450.1NONEPLAID
B2450.01FULLPLAID
C1900.2FULLWIGGLES
\n", + "
" + ], + "text/plain": [ + " orientation duration surround stimulus_type\n", + "A1 0 0.1 FULL LINES\n", + "A2 0 0.01 NONE DOTS\n", + "B1 45 0.1 NONE PLAID\n", + "B2 45 0.01 FULL PLAID\n", + "C1 90 0.2 FULL WIGGLES" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Often, this is done using a spreadsheet\n", + "condition_properties = pd.DataFrame(\n", + " [condition_to_orientation, condition_to_duration, condition_to_surround, condition_to_stimulus_type],\n", + " index=['orientation', 'duration', 'surround', 'stimulus_type'],\n", + ").T\n", + "condition_properties" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "a9087876", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponseorientationdurationsurroundstimulus_type
0312A10.12LEFT00.1FULLLINES
3711A14.01RIGHT00.1FULLLINES
5313A10.07RIGHT00.1FULLLINES
1312A20.37LEFT00.01NONEDOTS
4711A20.44LEFT00.01NONEDOTS
7712A23.29LEFT00.01NONEDOTS
8314A20.29LEFT00.01NONEDOTS
6313B10.08RIGHT450.1NONEPLAID
10314B10.14RIGHT450.1NONEPLAID
12713B15.74LEFT450.1NONEPLAID
9714B23.32RIGHT450.01FULLPLAID
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response orientation duration \\\n", + "0 312 A1 0.12 LEFT 0 0.1 \n", + "3 711 A1 4.01 RIGHT 0 0.1 \n", + "5 313 A1 0.07 RIGHT 0 0.1 \n", + "1 312 A2 0.37 LEFT 0 0.01 \n", + "4 711 A2 0.44 LEFT 0 0.01 \n", + "7 712 A2 3.29 LEFT 0 0.01 \n", + "8 314 A2 0.29 LEFT 0 0.01 \n", + "6 313 B1 0.08 RIGHT 45 0.1 \n", + "10 314 B1 0.14 RIGHT 45 0.1 \n", + "12 713 B1 5.74 LEFT 45 0.1 \n", + "9 714 B2 3.32 RIGHT 45 0.01 \n", + "\n", + " surround stimulus_type \n", + "0 FULL LINES \n", + "3 FULL LINES \n", + "5 FULL LINES \n", + "1 NONE DOTS \n", + "4 NONE DOTS \n", + "7 NONE DOTS \n", + "8 NONE DOTS \n", + "6 NONE PLAID \n", + "10 NONE PLAID \n", + "12 NONE PLAID \n", + "9 FULL PLAID " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "61cb65be", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponseorientationdurationsurroundstimulus_type
0312A10.12LEFT00.1FULLLINES
1312A20.37LEFT00.01NONEDOTS
2312C20.68LEFTNaNNaNNaNNaN
3711A14.01RIGHT00.1FULLLINES
4711A20.44LEFT00.01NONEDOTS
5313A10.07RIGHT00.1FULLLINES
6313B10.08RIGHT450.1NONEPLAID
7712A23.29LEFT00.01NONEDOTS
8314A20.29LEFT00.01NONEDOTS
9714B23.32RIGHT450.01FULLPLAID
10314B10.14RIGHT450.1NONEPLAID
11314C20.73RIGHTNaNNaNNaNNaN
12713B15.74LEFT450.1NONEPLAID
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response orientation duration \\\n", + "0 312 A1 0.12 LEFT 0 0.1 \n", + "1 312 A2 0.37 LEFT 0 0.01 \n", + "2 312 C2 0.68 LEFT NaN NaN \n", + "3 711 A1 4.01 RIGHT 0 0.1 \n", + "4 711 A2 0.44 LEFT 0 0.01 \n", + "5 313 A1 0.07 RIGHT 0 0.1 \n", + "6 313 B1 0.08 RIGHT 45 0.1 \n", + "7 712 A2 3.29 LEFT 0 0.01 \n", + "8 314 A2 0.29 LEFT 0 0.01 \n", + "9 714 B2 3.32 RIGHT 45 0.01 \n", + "10 314 B1 0.14 RIGHT 45 0.1 \n", + "11 314 C2 0.73 RIGHT NaN NaN \n", + "12 713 B1 5.74 LEFT 45 0.1 \n", + "\n", + " surround stimulus_type \n", + "0 FULL LINES \n", + "1 NONE DOTS \n", + "2 NaN NaN \n", + "3 FULL LINES \n", + "4 NONE DOTS \n", + "5 FULL LINES \n", + "6 NONE PLAID \n", + "7 NONE DOTS \n", + "8 NONE DOTS \n", + "9 FULL PLAID \n", + "10 NONE PLAID \n", + "11 NaN NaN \n", + "12 NONE PLAID " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True, how='left')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "7b4d23df", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponseorientationdurationsurroundstimulus_type
0.0312A10.12LEFT00.1FULLLINES
3.0711A14.01RIGHT00.1FULLLINES
5.0313A10.07RIGHT00.1FULLLINES
1.0312A20.37LEFT00.01NONEDOTS
4.0711A20.44LEFT00.01NONEDOTS
7.0712A23.29LEFT00.01NONEDOTS
8.0314A20.29LEFT00.01NONEDOTS
2.0312C20.68LEFTNaNNaNNaNNaN
11.0314C20.73RIGHTNaNNaNNaNNaN
6.0313B10.08RIGHT450.1NONEPLAID
10.0314B10.14RIGHT450.1NONEPLAID
12.0713B15.74LEFT450.1NONEPLAID
9.0714B23.32RIGHT450.01FULLPLAID
NaNNaNC1NaNNaN900.2FULLWIGGLES
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response orientation duration \\\n", + "0.0 312 A1 0.12 LEFT 0 0.1 \n", + "3.0 711 A1 4.01 RIGHT 0 0.1 \n", + "5.0 313 A1 0.07 RIGHT 0 0.1 \n", + "1.0 312 A2 0.37 LEFT 0 0.01 \n", + "4.0 711 A2 0.44 LEFT 0 0.01 \n", + "7.0 712 A2 3.29 LEFT 0 0.01 \n", + "8.0 314 A2 0.29 LEFT 0 0.01 \n", + "2.0 312 C2 0.68 LEFT NaN NaN \n", + "11.0 314 C2 0.73 RIGHT NaN NaN \n", + "6.0 313 B1 0.08 RIGHT 45 0.1 \n", + "10.0 314 B1 0.14 RIGHT 45 0.1 \n", + "12.0 713 B1 5.74 LEFT 45 0.1 \n", + "9.0 714 B2 3.32 RIGHT 45 0.01 \n", + "NaN NaN C1 NaN NaN 90 0.2 \n", + "\n", + " surround stimulus_type \n", + "0.0 FULL LINES \n", + "3.0 FULL LINES \n", + "5.0 FULL LINES \n", + "1.0 NONE DOTS \n", + "4.0 NONE DOTS \n", + "7.0 NONE DOTS \n", + "8.0 NONE DOTS \n", + "2.0 NaN NaN \n", + "11.0 NaN NaN \n", + "6.0 NONE PLAID \n", + "10.0 NONE PLAID \n", + "12.0 NONE PLAID \n", + "9.0 FULL PLAID \n", + "NaN FULL WIGGLES " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(condition_properties, left_on='condition_id', right_index=True, how='outer')" + ] + }, + { + "cell_type": "markdown", + "id": "cba9534f", + "metadata": {}, + "source": [ + "# Anti-join: filter out unwanted data" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "1cb2bbdb", + "metadata": {}, + "outputs": [], + "source": [ + "# We are given a list of subjects that are outliers and should be disregarded in the analysis\n", + "outliers = pd.DataFrame([['711'], ['712'], ['713'], ['714'], ['888']], columns=['subject_id'])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "e2e627d5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0711A14.01RIGHT
1711A20.44LEFT
2712A23.29LEFT
3714B23.32RIGHT
4713B15.74LEFT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 711 A1 4.01 RIGHT\n", + "1 711 A2 0.44 LEFT\n", + "2 712 A2 3.29 LEFT\n", + "3 714 B2 3.32 RIGHT\n", + "4 713 B1 5.74 LEFT" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(outliers, on='subject_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "eb809fe0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse_merge
0312A10.12LEFTleft_only
1312A20.37LEFTleft_only
2312C20.68LEFTleft_only
3711A14.01RIGHTboth
4711A20.44LEFTboth
5313A10.07RIGHTleft_only
6313B10.08RIGHTleft_only
7712A23.29LEFTboth
8314A20.29LEFTleft_only
9314B10.14RIGHTleft_only
10314C20.73RIGHTleft_only
11714B23.32RIGHTboth
12713B15.74LEFTboth
13888NaNNaNNaNright_only
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response _merge\n", + "0 312 A1 0.12 LEFT left_only\n", + "1 312 A2 0.37 LEFT left_only\n", + "2 312 C2 0.68 LEFT left_only\n", + "3 711 A1 4.01 RIGHT both\n", + "4 711 A2 0.44 LEFT both\n", + "5 313 A1 0.07 RIGHT left_only\n", + "6 313 B1 0.08 RIGHT left_only\n", + "7 712 A2 3.29 LEFT both\n", + "8 314 A2 0.29 LEFT left_only\n", + "9 314 B1 0.14 RIGHT left_only\n", + "10 314 C2 0.73 RIGHT left_only\n", + "11 714 B2 3.32 RIGHT both\n", + "12 713 B1 5.74 LEFT both\n", + "13 888 NaN NaN NaN right_only" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.merge(outliers, on='subject_id', how='outer', indicator=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "6fdb696e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse_merge
0312A10.12LEFTleft_only
1312A20.37LEFTleft_only
2312C20.68LEFTleft_only
5313A10.07RIGHTleft_only
6313B10.08RIGHTleft_only
8314A20.29LEFTleft_only
9314B10.14RIGHTleft_only
10314C20.73RIGHTleft_only
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response _merge\n", + "0 312 A1 0.12 LEFT left_only\n", + "1 312 A2 0.37 LEFT left_only\n", + "2 312 C2 0.68 LEFT left_only\n", + "5 313 A1 0.07 RIGHT left_only\n", + "6 313 B1 0.08 RIGHT left_only\n", + "8 314 A2 0.29 LEFT left_only\n", + "9 314 B1 0.14 RIGHT left_only\n", + "10 314 C2 0.73 RIGHT left_only" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "temp = data.merge(outliers, on='subject_id', how='outer', indicator=True)\n", + "data_without_outliers = temp[temp['_merge'] == 'left_only']\n", + "data_without_outliers" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6c3e6baa", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/021_join_operations_tutor.ipynb b/notebooks/030_tabular_data/021_join_operations_tutor.ipynb new file mode 100644 index 0000000..e4129c0 --- /dev/null +++ b/notebooks/030_tabular_data/021_join_operations_tutor.ipynb @@ -0,0 +1,462 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "37957eb0", + "metadata": {}, + "source": [ + "# Combine information across tables: joins and anti-joins" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b6f949f7", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "6a7fcf90", + "metadata": {}, + "source": [ + "# \"Load\" some experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a9450803", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3711A14.01RIGHT
4711A20.44LEFT
5313A10.07RIGHT
6313B10.08RIGHT
7712A23.29LEFT
8314A20.29LEFT
9714B23.32RIGHT
10314B10.14RIGHT
11314C20.73RIGHT
12713B15.74LEFT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 711 A1 4.01 RIGHT\n", + "4 711 A2 0.44 LEFT\n", + "5 313 A1 0.07 RIGHT\n", + "6 313 B1 0.08 RIGHT\n", + "7 712 A2 3.29 LEFT\n", + "8 314 A2 0.29 LEFT\n", + "9 714 B2 3.32 RIGHT\n", + "10 314 B1 0.14 RIGHT\n", + "11 314 C2 0.73 RIGHT\n", + "12 713 B1 5.74 LEFT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['711', 'A2', 0.44, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "9f6de0d6", + "metadata": {}, + "source": [ + "Each experiment belongs to one experimental condition, but the parameters of each condition are not in the table" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "455471d7", + "metadata": {}, + "outputs": [], + "source": [ + "condition_to_orientation = {\n", + " 'A1': 0,\n", + " 'A2': 0,\n", + " 'B1': 45,\n", + " 'B2': 45,\n", + " 'C1': 90,\n", + "}\n", + "\n", + "condition_to_duration = {\n", + " 'A1': 0.1,\n", + " 'A2': 0.01,\n", + " 'B1': 0.1,\n", + " 'B2': 0.01,\n", + " 'C1': 0.2,\n", + "}\n", + "\n", + "condition_to_surround = {\n", + " 'A1': 'FULL',\n", + " 'A2': 'NONE',\n", + " 'B1': 'NONE',\n", + " 'B2': 'FULL',\n", + " 'C1': 'FULL',\n", + "}\n", + "\n", + "\n", + "condition_to_stimulus_type = {\n", + " 'A1': 'LINES',\n", + " 'A2': 'DOTS',\n", + " 'B1': 'PLAID',\n", + " 'B2': 'PLAID',\n", + " 'C1': 'WIGGLES',\n", + "}\n" + ] + }, + { + "cell_type": "markdown", + "id": "5ccfd7e7", + "metadata": {}, + "source": [ + "# Manually adding the condition parameters to the table" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "cc32110c", + "metadata": {}, + "outputs": [], + "source": [ + "data_with_properties = data.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "06263dc6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b96962b2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "d6e71b13", + "metadata": {}, + "source": [ + "# Using a join operation" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d9835d7c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
orientationdurationsurroundstimulus_type
A100.1FULLLINES
A200.01NONEDOTS
B1450.1NONEPLAID
B2450.01FULLPLAID
C1900.2FULLWIGGLES
\n", + "
" + ], + "text/plain": [ + " orientation duration surround stimulus_type\n", + "A1 0 0.1 FULL LINES\n", + "A2 0 0.01 NONE DOTS\n", + "B1 45 0.1 NONE PLAID\n", + "B2 45 0.01 FULL PLAID\n", + "C1 90 0.2 FULL WIGGLES" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Often, this is done using a spreadsheet\n", + "condition_properties = pd.DataFrame(\n", + " [condition_to_orientation, condition_to_duration, condition_to_surround, condition_to_stimulus_type],\n", + " index=['orientation', 'duration', 'surround', 'stimulus_type'],\n", + ").T\n", + "condition_properties" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c27ea9f3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5e563cd0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "cba9534f", + "metadata": {}, + "source": [ + "# Anti-join: filter out unwanted data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "1cb2bbdb", + "metadata": {}, + "outputs": [], + "source": [ + "# We are given a list of subjects that are outliers and should be disregarded in the analysis\n", + "outliers = pd.DataFrame([['711'], ['712'], ['713'], ['714'], ['888']], columns=['subject_id'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e0e2c3c5", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "90d92640", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/030_split-apply-combine.ipynb b/notebooks/030_tabular_data/030_split-apply-combine.ipynb new file mode 100644 index 0000000..5c199e3 --- /dev/null +++ b/notebooks/030_tabular_data/030_split-apply-combine.ipynb @@ -0,0 +1,814 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Split-apply-combine operations for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ba193f3f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3313A10.07RIGHT
4313B10.08RIGHT
5314A20.29LEFT
6314B10.14RIGHT
7314C20.73RIGHT
8711A14.01RIGHT
9712A23.29LEFT
10713B15.74LEFT
11714B23.32RIGHT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 313 A1 0.07 RIGHT\n", + "4 313 B1 0.08 RIGHT\n", + "5 314 A2 0.29 LEFT\n", + "6 314 B1 0.14 RIGHT\n", + "7 314 C2 0.73 RIGHT\n", + "8 711 A1 4.01 RIGHT\n", + "9 712 A2 3.29 LEFT\n", + "10 713 B1 5.74 LEFT\n", + "11 714 B2 3.32 RIGHT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "8a239e0c", + "metadata": {}, + "source": [ + "# Group-by" + ] + }, + { + "cell_type": "markdown", + "id": "31eba91e", + "metadata": {}, + "source": [ + "We want to compute the mean response time by condition.\n", + "\n", + "Let's start by doing it by hand, using for loops!" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "e8331039", + "metadata": {}, + "outputs": [], + "source": [ + "conditions = data['condition_id'].unique()\n", + "results_dict = {}\n", + "for condition in conditions:\n", + " group = data[data['condition_id'] == condition]\n", + " results_dict[condition] = group['response_time'].mean()\n", + "\n", + "results = pd.DataFrame([results_dict], index=['response_time']).T" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "09cb04c4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
response_time
A11.400000
A21.316667
C20.705000
B11.986667
B23.320000
\n", + "
" + ], + "text/plain": [ + " response_time\n", + "A1 1.400000\n", + "A2 1.316667\n", + "C2 0.705000\n", + "B1 1.986667\n", + "B2 3.320000" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results" + ] + }, + { + "cell_type": "markdown", + "id": "2bc09c66", + "metadata": {}, + "source": [ + "This is a basic operation, and we would need to repeat his pattern a million times!\n", + "\n", + "Pandas and all other tools for tabular data provide a command for performing operations on groups." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "0500cd4a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# df.groupby(column_name) groups a DataFrame by the values in the column\n", + "data.groupby('condition_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c5857c4e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 3\n", + "A2 3\n", + "B1 3\n", + "B2 1\n", + "C2 2\n", + "dtype: int64" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The group-by object can by used as a DataFrame. \n", + "# Operations are executed on each group individually, then aggregated\n", + "data.groupby('condition_id').size()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "5c865cc1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 1.400000\n", + "A2 1.316667\n", + "B1 1.986667\n", + "B2 3.320000\n", + "C2 0.705000\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.groupby('condition_id')['response_time'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "615a4515", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id\n", + "A1 4.01\n", + "A2 3.29\n", + "B1 5.74\n", + "B2 3.32\n", + "C2 0.73\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.groupby('condition_id')['response_time'].max()" + ] + }, + { + "cell_type": "markdown", + "id": "b0441458", + "metadata": {}, + "source": [ + "# Pivot tables" + ] + }, + { + "cell_type": "markdown", + "id": "3feec98d", + "metadata": {}, + "source": [ + "We want to look at response time biases when the subjects respond LEFT vs RIGHT. In principle, we expect them to have the same response time in both cases.\n", + "\n", + "We compute a summary table with 1) condition_id on the rows; 2) response on the columns; 3) the average response time for all experiments with a that condition and response\n", + "\n", + "We can do it with `groupby`, with some table manipulation commands." + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "4a8a7d0d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "condition_id response\n", + "A1 LEFT 0.120000\n", + " RIGHT 2.040000\n", + "A2 LEFT 1.316667\n", + "B1 LEFT 5.740000\n", + " RIGHT 0.110000\n", + "B2 RIGHT 3.320000\n", + "C2 LEFT 0.680000\n", + " RIGHT 0.730000\n", + "Name: response_time, dtype: float64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "summary = data.groupby(['condition_id', 'response'])['response_time'].mean()\n", + "summary" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "e5a645e0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
responseLEFTRIGHT
condition_id
A10.1200002.04
A21.316667NaN
B15.7400000.11
B2NaN3.32
C20.6800000.73
\n", + "
" + ], + "text/plain": [ + "response LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04\n", + "A2 1.316667 NaN\n", + "B1 5.740000 0.11\n", + "B2 NaN 3.32\n", + "C2 0.680000 0.73" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "summary.unstack(level=1)" + ] + }, + { + "cell_type": "markdown", + "id": "3307fcc6", + "metadata": {}, + "source": [ + "Pandas has a command called `pivot_table` that can be used to perform this kind of operation straightforwardly." + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "8941edfe", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
responseLEFTRIGHT
condition_id
A10.1200002.04
A21.316667NaN
B15.7400000.11
B2NaN3.32
C20.6800000.73
\n", + "
" + ], + "text/plain": [ + "response LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04\n", + "A2 1.316667 NaN\n", + "B1 5.740000 0.11\n", + "B2 NaN 3.32\n", + "C2 0.680000 0.73" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.pivot_table(index='condition_id', columns='response', values='response_time', aggfunc='mean')" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "a7d1d998", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
meanstdcount
responseLEFTRIGHTLEFTRIGHTLEFTRIGHT
condition_id
A10.1200002.04NaN2.7860011.02.0
A21.316667NaN1.709425NaN3.0NaN
B15.7400000.11NaN0.0424261.02.0
B2NaN3.32NaNNaNNaN1.0
C20.6800000.73NaNNaN1.01.0
\n", + "
" + ], + "text/plain": [ + " mean std count \n", + "response LEFT RIGHT LEFT RIGHT LEFT RIGHT\n", + "condition_id \n", + "A1 0.120000 2.04 NaN 2.786001 1.0 2.0\n", + "A2 1.316667 NaN 1.709425 NaN 3.0 NaN\n", + "B1 5.740000 0.11 NaN 0.042426 1.0 2.0\n", + "B2 NaN 3.32 NaN NaN NaN 1.0\n", + "C2 0.680000 0.73 NaN NaN 1.0 1.0" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(\n", + " data\n", + " .pivot_table(\n", + " index='condition_id', \n", + " columns='response', \n", + " values='response_time', \n", + " aggfunc=['mean', 'std', 'count'],\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a770b812", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/031_split-apply-combine_tutor.ipynb b/notebooks/030_tabular_data/031_split-apply-combine_tutor.ipynb new file mode 100644 index 0000000..7087a60 --- /dev/null +++ b/notebooks/030_tabular_data/031_split-apply-combine_tutor.ipynb @@ -0,0 +1,335 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Split-apply-combine operations for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ba193f3f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idcondition_idresponse_timeresponse
0312A10.12LEFT
1312A20.37LEFT
2312C20.68LEFT
3313A10.07RIGHT
4313B10.08RIGHT
5314A20.29LEFT
6314B10.14RIGHT
7314C20.73RIGHT
8711A14.01RIGHT
9712A23.29LEFT
10713B15.74LEFT
11714B23.32RIGHT
\n", + "
" + ], + "text/plain": [ + " subject_id condition_id response_time response\n", + "0 312 A1 0.12 LEFT\n", + "1 312 A2 0.37 LEFT\n", + "2 312 C2 0.68 LEFT\n", + "3 313 A1 0.07 RIGHT\n", + "4 313 B1 0.08 RIGHT\n", + "5 314 A2 0.29 LEFT\n", + "6 314 B1 0.14 RIGHT\n", + "7 314 C2 0.73 RIGHT\n", + "8 711 A1 4.01 RIGHT\n", + "9 712 A2 3.29 LEFT\n", + "10 713 B1 5.74 LEFT\n", + "11 714 B2 3.32 RIGHT" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(\n", + " data=[\n", + " ['312', 'A1', 0.12, 'LEFT'],\n", + " ['312', 'A2', 0.37, 'LEFT'],\n", + " ['312', 'C2', 0.68, 'LEFT'],\n", + " ['313', 'A1', 0.07, 'RIGHT'],\n", + " ['313', 'B1', 0.08, 'RIGHT'],\n", + " ['314', 'A2', 0.29, 'LEFT'],\n", + " ['314', 'B1', 0.14, 'RIGHT'],\n", + " ['314', 'C2', 0.73, 'RIGHT'],\n", + " ['711', 'A1', 4.01, 'RIGHT'],\n", + " ['712', 'A2', 3.29, 'LEFT'],\n", + " ['713', 'B1', 5.74, 'LEFT'],\n", + " ['714', 'B2', 3.32, 'RIGHT'],\n", + " ],\n", + " columns=['subject_id', 'condition_id', 'response_time', 'response'],\n", + ")\n", + "data" + ] + }, + { + "cell_type": "markdown", + "id": "8a239e0c", + "metadata": {}, + "source": [ + "# Group-by" + ] + }, + { + "cell_type": "markdown", + "id": "31eba91e", + "metadata": {}, + "source": [ + "We want to compute the mean response time by condition.\n", + "\n", + "Let's start by doing it by hand, using for loops!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ff3f890b", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "805d04c7", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "2bc09c66", + "metadata": {}, + "source": [ + "This is a basic operation, and we would need to repeat his pattern a million times!\n", + "\n", + "Pandas and all other tools for tabular data provide a command for performing operations on groups." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dcc8c9c7", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "818b8346", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "b0441458", + "metadata": {}, + "source": [ + "# Pivot tables" + ] + }, + { + "cell_type": "markdown", + "id": "3feec98d", + "metadata": {}, + "source": [ + "We want to look at response time biases when the subjects respond LEFT vs RIGHT. In principle, we expect them to have the same response time in both cases.\n", + "\n", + "We compute a summary table with 1) condition_id on the rows; 2) response on the columns; 3) the average response time for all experiments with a that condition and response\n", + "\n", + "We can do it with `groupby`, with some table manipulation commands." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "04f6ff60", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "62600721", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "3307fcc6", + "metadata": {}, + "source": [ + "Pandas has a command called `pivot_table` that can be used to perform this kind of operation straightforwardly." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a770b812", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/040_window_functions.ipynb b/notebooks/030_tabular_data/040_window_functions.ipynb new file mode 100644 index 0000000..b6b118f --- /dev/null +++ b/notebooks/030_tabular_data/040_window_functions.ipynb @@ -0,0 +1,1429 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Window functions for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "8c3508da", + "metadata": {}, + "source": [ + "# Load experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8e22f6d4", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('timed_responses.csv', index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c4504d72", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracy
5743540RIGHT0.04
11902552LEFT0.43
189521036LEFT0.36
533257RIGHT0.11
1582743RIGHT0.32
5513619LEFT0.25
1602143RIGHT0.65
4131471LEFT0.80
7851121LEFT0.10
13932903RIGHT0.33
6292353LEFT0.17
18293768RIGHT0.26
90211093LEFT0.34
148623RIGHT0.29
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy\n", + "574 3 540 RIGHT 0.04\n", + "1190 2 552 LEFT 0.43\n", + "1895 2 1036 LEFT 0.36\n", + "53 3 257 RIGHT 0.11\n", + "158 2 743 RIGHT 0.32\n", + "551 3 619 LEFT 0.25\n", + "1602 1 43 RIGHT 0.65\n", + "413 1 471 LEFT 0.80\n", + "785 1 121 LEFT 0.10\n", + "1393 2 903 RIGHT 0.33\n", + "629 2 353 LEFT 0.17\n", + "1829 3 768 RIGHT 0.26\n", + "902 1 1093 LEFT 0.34\n", + "1486 2 3 RIGHT 0.29" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "a72f45c6", + "metadata": {}, + "source": [ + "# Split-apply-combine operations return one aggregated value per group" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "0234ccf2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "subject_id\n", + "1 0.80\n", + "2 0.43\n", + "3 0.26\n", + "Name: accuracy, dtype: float64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('subject_id')['accuracy'].max()" + ] + }, + { + "cell_type": "markdown", + "id": "b8926b52", + "metadata": {}, + "source": [ + "# However, for some calculations we need to have a value per row\n", + "\n", + "For example: for each subject, rank the responses by decreasing accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "0c77c2dc", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "574 1.0\n", + "1190 6.0\n", + "1895 5.0\n", + "53 2.0\n", + "158 3.0\n", + "551 3.0\n", + "1602 3.0\n", + "413 4.0\n", + "785 1.0\n", + "1393 4.0\n", + "629 1.0\n", + "1829 4.0\n", + "902 2.0\n", + "1486 2.0\n", + "Name: accuracy, dtype: float64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby('subject_id')['accuracy'].rank()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "6803bea3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rank
5743540RIGHT0.044.0
11902552LEFT0.431.0
189521036LEFT0.362.0
533257RIGHT0.113.0
1582743RIGHT0.324.0
5513619LEFT0.252.0
1602143RIGHT0.652.0
4131471LEFT0.801.0
7851121LEFT0.104.0
13932903RIGHT0.333.0
6292353LEFT0.176.0
18293768RIGHT0.261.0
90211093LEFT0.343.0
148623RIGHT0.295.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank\n", + "574 3 540 RIGHT 0.04 4.0\n", + "1190 2 552 LEFT 0.43 1.0\n", + "1895 2 1036 LEFT 0.36 2.0\n", + "53 3 257 RIGHT 0.11 3.0\n", + "158 2 743 RIGHT 0.32 4.0\n", + "551 3 619 LEFT 0.25 2.0\n", + "1602 1 43 RIGHT 0.65 2.0\n", + "413 1 471 LEFT 0.80 1.0\n", + "785 1 121 LEFT 0.10 4.0\n", + "1393 2 903 RIGHT 0.33 3.0\n", + "629 2 353 LEFT 0.17 6.0\n", + "1829 3 768 RIGHT 0.26 1.0\n", + "902 1 1093 LEFT 0.34 3.0\n", + "1486 2 3 RIGHT 0.29 5.0" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['accuracy_rank'] = df.groupby('subject_id')['accuracy'].rank(ascending=False)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "5690feee", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rank
4131471LEFT0.801.0
1602143RIGHT0.652.0
90211093LEFT0.343.0
7851121LEFT0.104.0
11902552LEFT0.431.0
189521036LEFT0.362.0
13932903RIGHT0.333.0
1582743RIGHT0.324.0
148623RIGHT0.295.0
6292353LEFT0.176.0
18293768RIGHT0.261.0
5513619LEFT0.252.0
533257RIGHT0.113.0
5743540RIGHT0.044.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank\n", + "413 1 471 LEFT 0.80 1.0\n", + "1602 1 43 RIGHT 0.65 2.0\n", + "902 1 1093 LEFT 0.34 3.0\n", + "785 1 121 LEFT 0.10 4.0\n", + "1190 2 552 LEFT 0.43 1.0\n", + "1895 2 1036 LEFT 0.36 2.0\n", + "1393 2 903 RIGHT 0.33 3.0\n", + "158 2 743 RIGHT 0.32 4.0\n", + "1486 2 3 RIGHT 0.29 5.0\n", + "629 2 353 LEFT 0.17 6.0\n", + "1829 3 768 RIGHT 0.26 1.0\n", + "551 3 619 LEFT 0.25 2.0\n", + "53 3 257 RIGHT 0.11 3.0\n", + "574 3 540 RIGHT 0.04 4.0" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.sort_values(['subject_id', 'accuracy_rank'])" + ] + }, + { + "cell_type": "markdown", + "id": "f57d47c8", + "metadata": {}, + "source": [ + "# In many cases, a window functions is combined with a sorting operation\n", + "\n", + "For example: for each subject, count the number of \"LEFT\" responses up until any moment in the experiment" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "f032f5db", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rankis_left
5743540RIGHT0.044.0False
11902552LEFT0.431.0True
189521036LEFT0.362.0True
533257RIGHT0.113.0False
1582743RIGHT0.324.0False
5513619LEFT0.252.0True
1602143RIGHT0.652.0False
4131471LEFT0.801.0True
7851121LEFT0.104.0True
13932903RIGHT0.333.0False
6292353LEFT0.176.0True
18293768RIGHT0.261.0False
90211093LEFT0.343.0True
148623RIGHT0.295.0False
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank is_left\n", + "574 3 540 RIGHT 0.04 4.0 False\n", + "1190 2 552 LEFT 0.43 1.0 True\n", + "1895 2 1036 LEFT 0.36 2.0 True\n", + "53 3 257 RIGHT 0.11 3.0 False\n", + "158 2 743 RIGHT 0.32 4.0 False\n", + "551 3 619 LEFT 0.25 2.0 True\n", + "1602 1 43 RIGHT 0.65 2.0 False\n", + "413 1 471 LEFT 0.80 1.0 True\n", + "785 1 121 LEFT 0.10 4.0 True\n", + "1393 2 903 RIGHT 0.33 3.0 False\n", + "629 2 353 LEFT 0.17 6.0 True\n", + "1829 3 768 RIGHT 0.26 1.0 False\n", + "902 1 1093 LEFT 0.34 3.0 True\n", + "1486 2 3 RIGHT 0.29 5.0 False" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add a flag column \"is_left\", so that we can count the number of LEFT reponses using a cumulative sum\n", + "df['is_left'] = df['response'] == 'LEFT'\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "f9420c3d", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracyaccuracy_rankis_leftnr_lefts
1602143RIGHT0.652.0False0
4131471LEFT0.801.0True1
7851121LEFT0.104.0True2
90211093LEFT0.343.0True3
11902552LEFT0.431.0True1
189521036LEFT0.362.0True2
1582743RIGHT0.324.0False2
13932903RIGHT0.333.0False2
6292353LEFT0.176.0True3
148623RIGHT0.295.0False3
5743540RIGHT0.044.0False0
533257RIGHT0.113.0False0
5513619LEFT0.252.0True1
18293768RIGHT0.261.0False1
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy accuracy_rank is_left \\\n", + "1602 1 43 RIGHT 0.65 2.0 False \n", + "413 1 471 LEFT 0.80 1.0 True \n", + "785 1 121 LEFT 0.10 4.0 True \n", + "902 1 1093 LEFT 0.34 3.0 True \n", + "1190 2 552 LEFT 0.43 1.0 True \n", + "1895 2 1036 LEFT 0.36 2.0 True \n", + "158 2 743 RIGHT 0.32 4.0 False \n", + "1393 2 903 RIGHT 0.33 3.0 False \n", + "629 2 353 LEFT 0.17 6.0 True \n", + "1486 2 3 RIGHT 0.29 5.0 False \n", + "574 3 540 RIGHT 0.04 4.0 False \n", + "53 3 257 RIGHT 0.11 3.0 False \n", + "551 3 619 LEFT 0.25 2.0 True \n", + "1829 3 768 RIGHT 0.26 1.0 False \n", + "\n", + " nr_lefts \n", + "1602 0 \n", + "413 1 \n", + "785 2 \n", + "902 3 \n", + "1190 1 \n", + "1895 2 \n", + "158 2 \n", + "1393 2 \n", + "629 3 \n", + "1486 3 \n", + "574 0 \n", + "53 0 \n", + "551 1 \n", + "1829 1 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Without sorting, we get the number of LEFT responses... in no particular order\n", + "df['nr_lefts'] = df.groupby('subject_id')['is_left'].cumsum()\n", + "df.sort_values(['subject_id'])" + ] + }, + { + "cell_type": "markdown", + "id": "ca1e8032", + "metadata": {}, + "source": [ + "# Window functions are also useful to compute changes in the data for each group\n", + "\n", + "In this case, the window function often uses the `shift(n)` method that lags the data by `n` rows" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "18f440d3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)shifted time
1602143NaN
785112143.0
4131471121.0
90211093471.0
148623NaN
62923533.0
11902552353.0
1582743552.0
13932903743.0
189521036903.0
533257NaN
5743540257.0
5513619540.0
18293768619.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) shifted time\n", + "1602 1 43 NaN\n", + "785 1 121 43.0\n", + "413 1 471 121.0\n", + "902 1 1093 471.0\n", + "1486 2 3 NaN\n", + "629 2 353 3.0\n", + "1190 2 552 353.0\n", + "158 2 743 552.0\n", + "1393 2 903 743.0\n", + "1895 2 1036 903.0\n", + "53 3 257 NaN\n", + "574 3 540 257.0\n", + "551 3 619 540.0\n", + "1829 3 768 619.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['shifted time'] = (\n", + " df\n", + " .sort_values('time (ms)')\n", + " .groupby('subject_id')['time (ms)']\n", + " .shift(1)\n", + ")\n", + "df.sort_values(['subject_id', 'time (ms)'])[['subject_id', 'time (ms)', 'shifted time']]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "4f1cb393", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)time from prev
1602143NaN
785112178.0
4131471350.0
90211093622.0
148623NaN
6292353350.0
11902552199.0
1582743191.0
13932903160.0
189521036133.0
533257NaN
5743540283.0
551361979.0
18293768149.0
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) time from prev\n", + "1602 1 43 NaN\n", + "785 1 121 78.0\n", + "413 1 471 350.0\n", + "902 1 1093 622.0\n", + "1486 2 3 NaN\n", + "629 2 353 350.0\n", + "1190 2 552 199.0\n", + "158 2 743 191.0\n", + "1393 2 903 160.0\n", + "1895 2 1036 133.0\n", + "53 3 257 NaN\n", + "574 3 540 283.0\n", + "551 3 619 79.0\n", + "1829 3 768 149.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['time from prev'] = df['time (ms)'] - df['shifted time']\n", + "df.sort_values(['subject_id', 'time (ms)'])[['subject_id', 'time (ms)', 'time from prev']]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3d06a890", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "87a52b7c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "61badaf1", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/041_window_functions_tutor.ipynb b/notebooks/030_tabular_data/041_window_functions_tutor.ipynb new file mode 100644 index 0000000..99b7fe8 --- /dev/null +++ b/notebooks/030_tabular_data/041_window_functions_tutor.ipynb @@ -0,0 +1,320 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "247bbf84", + "metadata": {}, + "source": [ + "# Window functions for tabular data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "44584190", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "83bbd275", + "metadata": {}, + "source": [ + "# Load experimental data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "88b9e189", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('timed_responses.csv', index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "987a3518", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtime (ms)responseaccuracy
5743540RIGHT0.04
11902552LEFT0.43
189521036LEFT0.36
533257RIGHT0.11
1582743RIGHT0.32
5513619LEFT0.25
1602143RIGHT0.65
4131471LEFT0.80
7851121LEFT0.10
13932903RIGHT0.33
6292353LEFT0.17
18293768RIGHT0.26
90211093LEFT0.34
148623RIGHT0.29
\n", + "
" + ], + "text/plain": [ + " subject_id time (ms) response accuracy\n", + "574 3 540 RIGHT 0.04\n", + "1190 2 552 LEFT 0.43\n", + "1895 2 1036 LEFT 0.36\n", + "53 3 257 RIGHT 0.11\n", + "158 2 743 RIGHT 0.32\n", + "551 3 619 LEFT 0.25\n", + "1602 1 43 RIGHT 0.65\n", + "413 1 471 LEFT 0.80\n", + "785 1 121 LEFT 0.10\n", + "1393 2 903 RIGHT 0.33\n", + "629 2 353 LEFT 0.17\n", + "1829 3 768 RIGHT 0.26\n", + "902 1 1093 LEFT 0.34\n", + "1486 2 3 RIGHT 0.29" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" + ] + }, + { + "cell_type": "markdown", + "id": "5c41cd93", + "metadata": {}, + "source": [ + "# Split-apply-combine operations return one aggregated value per group" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0234ccf2", + "metadata": {}, + "outputs": [], + "source": [ + "df.groupby('subject_id')['accuracy'].max()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2b2a1796", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "2bb99152", + "metadata": {}, + "source": [ + "# However, for some calculations we need to have a value per row\n", + "\n", + "For example: for each subject, rank the responses by decreasing accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3aed0755", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "17f3d40f", + "metadata": {}, + "source": [ + "# In many cases, a window functions is combined with a sorting operation\n", + "\n", + "For example: for each subject, count the number of \"LEFT\" responses up until any moment in the experiment" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "67efdd56", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "a00b4f39", + "metadata": {}, + "source": [ + "# Window functions are also useful to compute changes in the data for each group\n", + "\n", + "In this case, the window function often uses the `shift(n)` method that lags the data by `n` rows" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e553c17f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f2973e3d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c9ca46b0", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/notebooks/030_tabular_data/timed_responses.csv b/notebooks/030_tabular_data/timed_responses.csv new file mode 100644 index 0000000..6f3d2da --- /dev/null +++ b/notebooks/030_tabular_data/timed_responses.csv @@ -0,0 +1,15 @@ +,subject_id,time (ms),response,accuracy +574,3,540,RIGHT,0.04 +1190,2,552,LEFT,0.43 +1895,2,1036,LEFT,0.36 +53,3,257,RIGHT,0.11 +158,2,743,RIGHT,0.32 +551,3,619,LEFT,0.25 +1602,1,43,RIGHT,0.65 +413,1,471,LEFT,0.8 +785,1,121,LEFT,0.1 +1393,2,903,RIGHT,0.33 +629,2,353,LEFT,0.17 +1829,3,768,RIGHT,0.26 +902,1,1093,LEFT,0.34 +1486,2,3,RIGHT,0.29